Skip to content

Commit

Permalink
Release 2.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
botnerd committed Oct 27, 2022
1 parent e530078 commit cb3afff
Show file tree
Hide file tree
Showing 35 changed files with 44 additions and 29 deletions.
Binary file modified FlyBuy.xcframework/ios-arm64/FlyBuy.framework/FlyBuy
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ SWIFT_CLASS_NAMED("ClaimOrderInfo")
@class FlyBuyCustomerManager;
@class FlyBuySitesManager;
@class FlyBuyLogger;
@class NSUUID;
@class NSData;

/// The main access point for Core functionality
Expand All @@ -268,6 +269,8 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FlyBuySitesM
+ (FlyBuySitesManager * _Nonnull)sites SWIFT_WARN_UNUSED_RESULT;
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FlyBuyLogger * _Nonnull logger;)
+ (FlyBuyLogger * _Nonnull)logger SWIFT_WARN_UNUSED_RESULT;
/// Set a callback to be notified when the app instance ID is updated.
+ (void)setAppInstanceIDUpdatedListenerWithCallback:(void (^ _Nullable)(NSUUID * _Nonnull))callback;
/// Configures FlyBuy with the given options
/// See <a href="https://www.radiusnetworks.com/developers/flybuy/#/">Flybuy Developer Docs</a> for additional details including all setup steps.
/// Example:
Expand Down
Binary file modified FlyBuy.xcframework/ios-arm64/FlyBuy.framework/Info.plist
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,7 @@ extension FlyBuy.FlyBuyModuleManager {
public static var isCoreConfigured: Swift.Bool {
get
}
@objc public static func setAppInstanceIDUpdatedListener(callback: ((Foundation.UUID) -> (Swift.Void))? = nil)
@objc public static func configure(_ opts: [Swift.String : Any])
public static func appInstanceID() -> Foundation.UUID
@objc public static func handleRemoteNotification(_ data: [Swift.AnyHashable : Any])
Expand Down Expand Up @@ -650,6 +651,7 @@ public protocol FlyBuyError : Foundation.LocalizedError {
public enum RemoteNotificationMessageType : Swift.String {
case backgroundSync
case orderUpdate
case appInstanceDeleted
public init?(rawValue: Swift.String)
public typealias RawValue = Swift.String
public var rawValue: Swift.String {
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ SWIFT_CLASS_NAMED("ClaimOrderInfo")
@class FlyBuyCustomerManager;
@class FlyBuySitesManager;
@class FlyBuyLogger;
@class NSUUID;
@class NSData;

/// The main access point for Core functionality
Expand All @@ -270,6 +271,8 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FlyBuySitesM
+ (FlyBuySitesManager * _Nonnull)sites SWIFT_WARN_UNUSED_RESULT;
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FlyBuyLogger * _Nonnull logger;)
+ (FlyBuyLogger * _Nonnull)logger SWIFT_WARN_UNUSED_RESULT;
/// Set a callback to be notified when the app instance ID is updated.
+ (void)setAppInstanceIDUpdatedListenerWithCallback:(void (^ _Nullable)(NSUUID * _Nonnull))callback;
/// Configures FlyBuy with the given options
/// See <a href="https://www.radiusnetworks.com/developers/flybuy/#/">Flybuy Developer Docs</a> for additional details including all setup steps.
/// Example:
Expand Down Expand Up @@ -1649,6 +1652,7 @@ SWIFT_CLASS_NAMED("ClaimOrderInfo")
@class FlyBuyCustomerManager;
@class FlyBuySitesManager;
@class FlyBuyLogger;
@class NSUUID;
@class NSData;

/// The main access point for Core functionality
Expand All @@ -1673,6 +1677,8 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FlyBuySitesM
+ (FlyBuySitesManager * _Nonnull)sites SWIFT_WARN_UNUSED_RESULT;
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FlyBuyLogger * _Nonnull logger;)
+ (FlyBuyLogger * _Nonnull)logger SWIFT_WARN_UNUSED_RESULT;
/// Set a callback to be notified when the app instance ID is updated.
+ (void)setAppInstanceIDUpdatedListenerWithCallback:(void (^ _Nullable)(NSUUID * _Nonnull))callback;
/// Configures FlyBuy with the given options
/// See <a href="https://www.radiusnetworks.com/developers/flybuy/#/">Flybuy Developer Docs</a> for additional details including all setup steps.
/// Example:
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,7 @@ extension FlyBuy.FlyBuyModuleManager {
public static var isCoreConfigured: Swift.Bool {
get
}
@objc public static func setAppInstanceIDUpdatedListener(callback: ((Foundation.UUID) -> (Swift.Void))? = nil)
@objc public static func configure(_ opts: [Swift.String : Any])
public static func appInstanceID() -> Foundation.UUID
@objc public static func handleRemoteNotification(_ data: [Swift.AnyHashable : Any])
Expand Down Expand Up @@ -650,6 +651,7 @@ public protocol FlyBuyError : Foundation.LocalizedError {
public enum RemoteNotificationMessageType : Swift.String {
case backgroundSync
case orderUpdate
case appInstanceDeleted
public init?(rawValue: Swift.String)
public typealias RawValue = Swift.String
public var rawValue: Swift.String {
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,7 @@ extension FlyBuy.FlyBuyModuleManager {
public static var isCoreConfigured: Swift.Bool {
get
}
@objc public static func setAppInstanceIDUpdatedListener(callback: ((Foundation.UUID) -> (Swift.Void))? = nil)
@objc public static func configure(_ opts: [Swift.String : Any])
public static func appInstanceID() -> Foundation.UUID
@objc public static func handleRemoteNotification(_ data: [Swift.AnyHashable : Any])
Expand Down Expand Up @@ -650,6 +651,7 @@ public protocol FlyBuyError : Foundation.LocalizedError {
public enum RemoteNotificationMessageType : Swift.String {
case backgroundSync
case orderUpdate
case appInstanceDeleted
public init?(rawValue: Swift.String)
public typealias RawValue = Swift.String
public var rawValue: Swift.String {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,39 +6,39 @@
<dict>
<key>Headers/FlyBuy-Swift.h</key>
<data>
MWl0/XcuLGbo4g1JjqDiHjC72n0=
eDGUbD/dd7nyqWBResfsg984IQ8=
</data>
<key>Headers/FlyBuy.h</key>
<data>
S43r1NqJgf26R41Z8FI+XDX8Np0=
</data>
<key>Info.plist</key>
<data>
/0BvsV31gSGkf+9Uah65pnxNpQA=
Sjy2MPG9i5BM5+LLRphxV5W4Nl4=
</data>
<key>Modules/FlyBuy.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
<data>
g1okGAYkdfuhUe1KeXosY88MJIY=
Q+Kgl6NBZF2zqKCJr6RgCt8PJXk=
</data>
<key>Modules/FlyBuy.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
<data>
ZdAgS1XlZT4ahF6+LC37uG/fD0k=
f+C81hBwUlXRjyXgzzhwGBcitxI=
</data>
<key>Modules/FlyBuy.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<data>
UjlrYQq/mZmuhj38GaWAG66cqlg=
5RQoHa7dEVPg6ZfJxnMYdTXHneQ=
</data>
<key>Modules/FlyBuy.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<data>
ZqFE5luqgspUc8E0t18KpkaUMKg=
fc6Cgh7MJzUMnDtdG2YVzpdiPV0=
</data>
<key>Modules/FlyBuy.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
<data>
B7aXQwIqIaqZjusfX9B85VSu4ak=
Xl4CHsgr2yE+FfsLgvm3sI4o9rw=
</data>
<key>Modules/FlyBuy.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<data>
oLGoGvzD3anoelP/nnzdH50p0HE=
qIBZ/DVKAEuqPwdNiHEiHovPnfw=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand All @@ -51,7 +51,7 @@
<dict>
<key>hash2</key>
<data>
AGu5ZStxEI6gOBh9eszxoSjPdOLaABOZ4J4CbUGfM6I=
8sna9g4xxyu4KZBS+QzPSeiX8f3aw9U7SLWFcxKp9cM=
</data>
</dict>
<key>Headers/FlyBuy.h</key>
Expand All @@ -65,42 +65,42 @@
<dict>
<key>hash2</key>
<data>
w7r5Fs3jqGYzv63Y3GQ0rdJSrUU26KMquFDhIKsw3lc=
PZStMQCdk+pZmHRs9kNIG5ouCPs605IKSsRFoaYE3+c=
</data>
</dict>
<key>Modules/FlyBuy.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
2cn/eir0iPZESibK4sidsfJBrs5xLLMyru3r4T2XBOs=
1PTQAQYGgp0Sb0/DYxk74k4Eu6ADWGw+gYhDF25wJh0=
</data>
</dict>
<key>Modules/FlyBuy.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
1ahqByAMJ6tnjcEvF9yctcM1KXHdexPd93vne4j/X4w=
UavtcWDjXKwisHME2fUBtHh7kv9yHfvg8MHaHAJKjV8=
</data>
</dict>
<key>Modules/FlyBuy.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<dict>
<key>hash2</key>
<data>
sevSMqBMrvj1lPMkmN2zNghHy9ADZNrKYJEXlSb/Abc=
fgt+EL8Jh71c+TTt8eIE5hJWc7z6XFR4dyDE9DwAbzo=
</data>
</dict>
<key>Modules/FlyBuy.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
s4HoiwyLVtXvEtyhblTT2+AJoQTprw7MaLTwOKaemzk=
GqEKWrcP1oBSB+Bhq6jGtJWdMsC6pTmNwCDlsW29YfU=
</data>
</dict>
<key>Modules/FlyBuy.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
BthelQu8btCvljzSt2cFRucrJhmMpTkwKBTk8kbQ3OI=
h3wxNeNnkZvvJ7ebVvr7Y76m7Z5eSmXM/vAwPxPVLaQ=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down
10 changes: 5 additions & 5 deletions FlyBuyNotify.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>FlyBuyNotify.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>FlyBuyNotify.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</data>
<key>Info.plist</key>
<data>
viqOa6Vp6h02XFVT7TeGkVJZ2Ug=
OxS6rwjjhp9W+A1BOpfKL5Tqkx0=
</data>
<key>Modules/FlyBuyNotify.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
<data>
Expand Down
10 changes: 5 additions & 5 deletions FlyBuyPickup.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>FlyBuyPickup.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>FlyBuyPickup.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</data>
<key>Info.plist</key>
<data>
j6//U0NHI2wVaO2gjHOcH2k+9AQ=
2Co7ZHAha/fzT6M337iATZFj8E4=
</data>
<key>Modules/FlyBuyPickup.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
<data>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</data>
<key>Info.plist</key>
<data>
/NrFDXAiauU2x3ax5KBDugDxLsM=
ZBopw1Eyrp4g+Soec3MzU9zEsjY=
</data>
<key>Modules/FlyBuyPresence.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
<data>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</data>
<key>Info.plist</key>
<data>
bji0v5zHDjVioOaAu+qtzdJkNeI=
qDIa/ySVLntNp04FTtRsTf6KixA=
</data>
<key>Modules/FlyBuyTableside.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
<data>
Expand Down

0 comments on commit cb3afff

Please sign in to comment.