diff --git a/FlyBuy.xcframework/ios-arm64/FlyBuy.framework/FlyBuy b/FlyBuy.xcframework/ios-arm64/FlyBuy.framework/FlyBuy index d42fcdb..7fdef87 100644 Binary files a/FlyBuy.xcframework/ios-arm64/FlyBuy.framework/FlyBuy and b/FlyBuy.xcframework/ios-arm64/FlyBuy.framework/FlyBuy differ diff --git a/FlyBuy.xcframework/ios-arm64/FlyBuy.framework/Headers/FlyBuy-Swift.h b/FlyBuy.xcframework/ios-arm64/FlyBuy.framework/Headers/FlyBuy-Swift.h index 4f549e5..be85af2 100644 --- a/FlyBuy.xcframework/ios-arm64/FlyBuy.framework/Headers/FlyBuy-Swift.h +++ b/FlyBuy.xcframework/ios-arm64/FlyBuy.framework/Headers/FlyBuy-Swift.h @@ -656,19 +656,19 @@ SWIFT_CLASS_NAMED("Order") @property (nonatomic, readonly, copy) NSString * _Nullable siteDescription; @property (nonatomic, readonly, copy) NSString * _Nullable siteCoverPhotoURL; @property (nonatomic, readonly, copy) NSString * _Nullable sitePartnerIdentifier; -@property (nonatomic, readonly, copy) NSString * _Nullable projectAccentColor; -@property (nonatomic, readonly, copy) NSString * _Nullable projectAccentTextColor; +@property (nonatomic, readonly, copy) NSString * _Nullable projectAccentColor SWIFT_DEPRECATED_MSG("Use order.sitePickupConfig.projectAccentColor instead"); +@property (nonatomic, readonly, copy) NSString * _Nullable projectAccentTextColor SWIFT_DEPRECATED_MSG("Use order.sitePickupConfig.projectAccentTextColor instead"); @property (nonatomic, readonly, copy) NSString * _Nullable projectLogoURL; @property (nonatomic, readonly, copy) NSString * _Nullable customerName; @property (nonatomic, readonly, copy) NSString * _Nullable customerCarType; @property (nonatomic, readonly, copy) NSString * _Nullable customerCarColor; @property (nonatomic, readonly, copy) NSString * _Nullable customerLicensePlate; -@property (nonatomic, readonly) BOOL projectMobileFlowAlwaysShowVehicleInfoFields; -@property (nonatomic, readonly) BOOL projectMobileFlowCustomerNameEditingEnabled; -@property (nonatomic, readonly) BOOL projectMobileFlowPickupTypeSelectionEnabled; -@property (nonatomic, readonly) BOOL projectMobileFlowRequireVehicleInfoIfVisible SWIFT_DEPRECATED_MSG("Please use PickupTypeConfig.requireVehicleInfo: Bool"); -@property (nonatomic, readonly, copy) NSString * _Nullable curbsideLocalizedString; -@property (nonatomic, readonly, copy) NSString * _Nullable pickupLocalizedString; +@property (nonatomic, readonly) BOOL projectMobileFlowAlwaysShowVehicleInfoFields SWIFT_DEPRECATED_MSG("Use showVehicleInfoFields for the pickup type in sitePickupConfig.availablePickupTypes"); +@property (nonatomic, readonly) BOOL projectMobileFlowCustomerNameEditingEnabled SWIFT_DEPRECATED_MSG("Use order.sitePickupConfig.customerNameEditingEnabled instead"); +@property (nonatomic, readonly) BOOL projectMobileFlowPickupTypeSelectionEnabled SWIFT_DEPRECATED_MSG("Use order.sitePickupConfig.pickupTypeSelectionEnabled instead"); +@property (nonatomic, readonly) BOOL projectMobileFlowRequireVehicleInfoIfVisible SWIFT_DEPRECATED_MSG("Use requiredVehicleInfo for the pickup type in sitePickupConfig.availablePickupTypes"); +@property (nonatomic, readonly, copy) NSString * _Nullable curbsideLocalizedString SWIFT_DEPRECATED_MSG("Use pickupTypeLocalizedString for the pickup type in sitePickupConfig.availablePickupTypes"); +@property (nonatomic, readonly, copy) NSString * _Nullable pickupLocalizedString SWIFT_DEPRECATED_MSG("Use pickupTypeLocalizedString for the pickup type in sitePickupConfig.availablePickupTypes"); @property (nonatomic, copy) NSString * _Nullable pushToken; @property (nonatomic, copy) NSString * _Nullable spotIdentifer; @property (nonatomic, copy) NSString * _Nullable spotIdentifierInputType; @@ -1129,11 +1129,11 @@ SWIFT_CLASS_NAMED("OrdersManager") @end - @interface FlyBuyOrdersManager (SWIFT_EXTENSION(FlyBuy)) @end + enum OrdersManagerErrorType : NSInteger; /// Error that may be returned from OrdersManager methods. @@ -1245,6 +1245,7 @@ SWIFT_CLASS_NAMED("Site") - (NSNumber * _Nullable)distanceFrom:(CLLocation * _Nonnull)loc SWIFT_WARN_UNUSED_RESULT; @end + @class CLCircularRegion; /// Manager for site operations diff --git a/FlyBuy.xcframework/ios-arm64/FlyBuy.framework/Info.plist b/FlyBuy.xcframework/ios-arm64/FlyBuy.framework/Info.plist index 5c21790..b2a0673 100644 Binary files a/FlyBuy.xcframework/ios-arm64/FlyBuy.framework/Info.plist and b/FlyBuy.xcframework/ios-arm64/FlyBuy.framework/Info.plist differ diff --git a/FlyBuy.xcframework/ios-arm64/FlyBuy.framework/Modules/FlyBuy.swiftmodule/arm64-apple-ios.swiftinterface b/FlyBuy.xcframework/ios-arm64/FlyBuy.framework/Modules/FlyBuy.swiftmodule/arm64-apple-ios.swiftinterface index 6040a59..e619419 100644 --- a/FlyBuy.xcframework/ios-arm64/FlyBuy.framework/Modules/FlyBuy.swiftmodule/arm64-apple-ios.swiftinterface +++ b/FlyBuy.xcframework/ios-arm64/FlyBuy.framework/Modules/FlyBuy.swiftmodule/arm64-apple-ios.swiftinterface @@ -41,6 +41,13 @@ extension FlyBuy.PickupLocationFilterData { final public let defaultGeofenceRadiusMeters: Swift.Double final public let defaultSiteSearchRadiusMeters: Swift.Double final public let analyticsEventLimit: Swift.Int? + public var sitesFetchLongitudePrecision: Swift.Int { + get + } + public var sitesFetchLatitudePrecision: Swift.Int { + get + } + public static let defaultGeoPrecision: Swift.Int @objc deinit public func encode(to encoder: Swift.Encoder) throws required public init(from decoder: Swift.Decoder) throws @@ -133,6 +140,11 @@ extension FlyBuy._AnyEncodable { @objc deinit required public init(from decoder: Swift.Decoder) throws } +extension FlyBuy.Site { + public var pickupConfig: FlyBuy.PickupConfig { + get + } +} @objc(FlyBuyGeofence) open class Geofence : ObjectiveC.NSObject, Swift.Codable { @objc final public let latitude: Swift.String @objc final public let longitude: Swift.String @@ -301,6 +313,13 @@ extension FlyBuy.PickupConfig : FlyBuy.PersistableCodable { public static let defaultSiteLimit: Swift.Int public static let defaultWorstAccuracyLimit: Swift.Double public static let defaultWrongSiteSearchRadius: Swift.Double + public var sitesFetchLatitudePrecision: Swift.Int { + get + } + public var sitesFetchLongitudePrecision: Swift.Int { + get + } + public static let defaultGeoPrecision: Swift.Int @objc deinit public func encode(to encoder: Swift.Encoder) throws required public init(from decoder: Swift.Decoder) throws @@ -435,7 +454,7 @@ public struct BeaconRegion : Swift.Codable, Swift.Hashable { public init(from decoder: Swift.Decoder) throws } public protocol FlyBuyModuleManager { - func configUpdated(_ config: FlyBuy.AppConfig) + func configUpdated(_ config: FlyBuy.AppConfig, pushData: FlyBuy.PushData?) func set(logLevel: FlyBuy.LogLevel) func ordersUpdated(_ orders: [FlyBuy.Order]) } @@ -523,6 +542,9 @@ extension Foundation.DateFormatter { public static let iso8601Full: Foundation.DateFormatter public static let iso8601FullLocalTZ: Foundation.DateFormatter } +extension Swift.Double { + public func round(to places: Swift.Int) -> Swift.Double +} @_hasMissingDesignatedInitializers @objc(FlyBuyCustomer) open class Customer : ObjectiveC.NSObject, Swift.Decodable { @objc final public let id: Swift.Int @objc final public let token: Swift.String @@ -625,6 +647,19 @@ public protocol FlyBuyError : Foundation.LocalizedError { } @objc deinit } +public enum RemoteNotificationMessageType : Swift.String { + case backgroundSync + case orderUpdate + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct PushData { + public let messageType: FlyBuy.RemoteNotificationMessageType? + public let forceSyncNotifyCampaigns: Swift.Bool +} public struct AnyCodable : Swift.Codable { public let value: Any public init(_ value: T?) @@ -863,19 +898,26 @@ extension FlyBuy.OrdersManager : CoreLocation.CLLocationManagerDelegate { @objc final public let siteCoverPhotoURL: Swift.String? final public let siteBeaconRegions: [FlyBuy.BeaconRegion]? @objc final public let sitePartnerIdentifier: Swift.String? + @available(*, deprecated, message: "Use order.sitePickupConfig.projectAccentColor instead") @objc final public let projectAccentColor: Swift.String? + @available(*, deprecated, message: "Use order.sitePickupConfig.projectAccentTextColor instead") @objc final public let projectAccentTextColor: Swift.String? @objc final public let projectLogoURL: Swift.String? @objc final public let customerName: Swift.String? @objc final public let customerCarType: Swift.String? @objc final public let customerCarColor: Swift.String? @objc final public let customerLicensePlate: Swift.String? + @available(*, deprecated, message: "Use showVehicleInfoFields for the pickup type in sitePickupConfig.availablePickupTypes") @objc final public let projectMobileFlowAlwaysShowVehicleInfoFields: Swift.Bool + @available(*, deprecated, message: "Use order.sitePickupConfig.customerNameEditingEnabled instead") @objc final public let projectMobileFlowCustomerNameEditingEnabled: Swift.Bool + @available(*, deprecated, message: "Use order.sitePickupConfig.pickupTypeSelectionEnabled instead") @objc final public let projectMobileFlowPickupTypeSelectionEnabled: Swift.Bool - @available(*, deprecated, message: "Please use PickupTypeConfig.requireVehicleInfo: Bool") + @available(*, deprecated, message: "Use requiredVehicleInfo for the pickup type in sitePickupConfig.availablePickupTypes") @objc final public let projectMobileFlowRequireVehicleInfoIfVisible: Swift.Bool + @available(*, deprecated, message: "Use pickupTypeLocalizedString for the pickup type in sitePickupConfig.availablePickupTypes") @objc final public let curbsideLocalizedString: Swift.String? + @available(*, deprecated, message: "Use pickupTypeLocalizedString for the pickup type in sitePickupConfig.availablePickupTypes") @objc final public let pickupLocalizedString: Swift.String? @objc public var pushToken: Swift.String? public var isLocationTrackingEnabled: Swift.Bool? @@ -922,7 +964,7 @@ extension FlyBuy.Order : FlyBuy.PersistableCodable { } extension FlyBuy.Order { public func isOpen() -> Swift.Bool - public var pickupConfig: FlyBuy.PickupConfig { + public var sitePickupConfig: FlyBuy.PickupConfig { get } } @@ -943,6 +985,9 @@ extension FlyBuy.FlyBuyAPIErrorType : Swift.RawRepresentable {} extension FlyBuy.SitesManagerErrorType : Swift.Equatable {} extension FlyBuy.SitesManagerErrorType : Swift.Hashable {} extension FlyBuy.SitesManagerErrorType : Swift.RawRepresentable {} +extension FlyBuy.RemoteNotificationMessageType : Swift.Equatable {} +extension FlyBuy.RemoteNotificationMessageType : Swift.Hashable {} +extension FlyBuy.RemoteNotificationMessageType : Swift.RawRepresentable {} extension FlyBuy.OrdersManagerErrorType : Swift.Equatable {} extension FlyBuy.OrdersManagerErrorType : Swift.Hashable {} extension FlyBuy.OrdersManagerErrorType : Swift.RawRepresentable {} diff --git a/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/FlyBuy b/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/FlyBuy index 6200f71..54654c2 100644 Binary files a/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/FlyBuy and b/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/FlyBuy differ diff --git a/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/Headers/FlyBuy-Swift.h b/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/Headers/FlyBuy-Swift.h index 8ada7d7..465eb2e 100644 --- a/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/Headers/FlyBuy-Swift.h +++ b/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/Headers/FlyBuy-Swift.h @@ -658,19 +658,19 @@ SWIFT_CLASS_NAMED("Order") @property (nonatomic, readonly, copy) NSString * _Nullable siteDescription; @property (nonatomic, readonly, copy) NSString * _Nullable siteCoverPhotoURL; @property (nonatomic, readonly, copy) NSString * _Nullable sitePartnerIdentifier; -@property (nonatomic, readonly, copy) NSString * _Nullable projectAccentColor; -@property (nonatomic, readonly, copy) NSString * _Nullable projectAccentTextColor; +@property (nonatomic, readonly, copy) NSString * _Nullable projectAccentColor SWIFT_DEPRECATED_MSG("Use order.sitePickupConfig.projectAccentColor instead"); +@property (nonatomic, readonly, copy) NSString * _Nullable projectAccentTextColor SWIFT_DEPRECATED_MSG("Use order.sitePickupConfig.projectAccentTextColor instead"); @property (nonatomic, readonly, copy) NSString * _Nullable projectLogoURL; @property (nonatomic, readonly, copy) NSString * _Nullable customerName; @property (nonatomic, readonly, copy) NSString * _Nullable customerCarType; @property (nonatomic, readonly, copy) NSString * _Nullable customerCarColor; @property (nonatomic, readonly, copy) NSString * _Nullable customerLicensePlate; -@property (nonatomic, readonly) BOOL projectMobileFlowAlwaysShowVehicleInfoFields; -@property (nonatomic, readonly) BOOL projectMobileFlowCustomerNameEditingEnabled; -@property (nonatomic, readonly) BOOL projectMobileFlowPickupTypeSelectionEnabled; -@property (nonatomic, readonly) BOOL projectMobileFlowRequireVehicleInfoIfVisible SWIFT_DEPRECATED_MSG("Please use PickupTypeConfig.requireVehicleInfo: Bool"); -@property (nonatomic, readonly, copy) NSString * _Nullable curbsideLocalizedString; -@property (nonatomic, readonly, copy) NSString * _Nullable pickupLocalizedString; +@property (nonatomic, readonly) BOOL projectMobileFlowAlwaysShowVehicleInfoFields SWIFT_DEPRECATED_MSG("Use showVehicleInfoFields for the pickup type in sitePickupConfig.availablePickupTypes"); +@property (nonatomic, readonly) BOOL projectMobileFlowCustomerNameEditingEnabled SWIFT_DEPRECATED_MSG("Use order.sitePickupConfig.customerNameEditingEnabled instead"); +@property (nonatomic, readonly) BOOL projectMobileFlowPickupTypeSelectionEnabled SWIFT_DEPRECATED_MSG("Use order.sitePickupConfig.pickupTypeSelectionEnabled instead"); +@property (nonatomic, readonly) BOOL projectMobileFlowRequireVehicleInfoIfVisible SWIFT_DEPRECATED_MSG("Use requiredVehicleInfo for the pickup type in sitePickupConfig.availablePickupTypes"); +@property (nonatomic, readonly, copy) NSString * _Nullable curbsideLocalizedString SWIFT_DEPRECATED_MSG("Use pickupTypeLocalizedString for the pickup type in sitePickupConfig.availablePickupTypes"); +@property (nonatomic, readonly, copy) NSString * _Nullable pickupLocalizedString SWIFT_DEPRECATED_MSG("Use pickupTypeLocalizedString for the pickup type in sitePickupConfig.availablePickupTypes"); @property (nonatomic, copy) NSString * _Nullable pushToken; @property (nonatomic, copy) NSString * _Nullable spotIdentifer; @property (nonatomic, copy) NSString * _Nullable spotIdentifierInputType; @@ -1131,11 +1131,11 @@ SWIFT_CLASS_NAMED("OrdersManager") @end - @interface FlyBuyOrdersManager (SWIFT_EXTENSION(FlyBuy)) @end + enum OrdersManagerErrorType : NSInteger; /// Error that may be returned from OrdersManager methods. @@ -1247,6 +1247,7 @@ SWIFT_CLASS_NAMED("Site") - (NSNumber * _Nullable)distanceFrom:(CLLocation * _Nonnull)loc SWIFT_WARN_UNUSED_RESULT; @end + @class CLCircularRegion; /// Manager for site operations @@ -2060,19 +2061,19 @@ SWIFT_CLASS_NAMED("Order") @property (nonatomic, readonly, copy) NSString * _Nullable siteDescription; @property (nonatomic, readonly, copy) NSString * _Nullable siteCoverPhotoURL; @property (nonatomic, readonly, copy) NSString * _Nullable sitePartnerIdentifier; -@property (nonatomic, readonly, copy) NSString * _Nullable projectAccentColor; -@property (nonatomic, readonly, copy) NSString * _Nullable projectAccentTextColor; +@property (nonatomic, readonly, copy) NSString * _Nullable projectAccentColor SWIFT_DEPRECATED_MSG("Use order.sitePickupConfig.projectAccentColor instead"); +@property (nonatomic, readonly, copy) NSString * _Nullable projectAccentTextColor SWIFT_DEPRECATED_MSG("Use order.sitePickupConfig.projectAccentTextColor instead"); @property (nonatomic, readonly, copy) NSString * _Nullable projectLogoURL; @property (nonatomic, readonly, copy) NSString * _Nullable customerName; @property (nonatomic, readonly, copy) NSString * _Nullable customerCarType; @property (nonatomic, readonly, copy) NSString * _Nullable customerCarColor; @property (nonatomic, readonly, copy) NSString * _Nullable customerLicensePlate; -@property (nonatomic, readonly) BOOL projectMobileFlowAlwaysShowVehicleInfoFields; -@property (nonatomic, readonly) BOOL projectMobileFlowCustomerNameEditingEnabled; -@property (nonatomic, readonly) BOOL projectMobileFlowPickupTypeSelectionEnabled; -@property (nonatomic, readonly) BOOL projectMobileFlowRequireVehicleInfoIfVisible SWIFT_DEPRECATED_MSG("Please use PickupTypeConfig.requireVehicleInfo: Bool"); -@property (nonatomic, readonly, copy) NSString * _Nullable curbsideLocalizedString; -@property (nonatomic, readonly, copy) NSString * _Nullable pickupLocalizedString; +@property (nonatomic, readonly) BOOL projectMobileFlowAlwaysShowVehicleInfoFields SWIFT_DEPRECATED_MSG("Use showVehicleInfoFields for the pickup type in sitePickupConfig.availablePickupTypes"); +@property (nonatomic, readonly) BOOL projectMobileFlowCustomerNameEditingEnabled SWIFT_DEPRECATED_MSG("Use order.sitePickupConfig.customerNameEditingEnabled instead"); +@property (nonatomic, readonly) BOOL projectMobileFlowPickupTypeSelectionEnabled SWIFT_DEPRECATED_MSG("Use order.sitePickupConfig.pickupTypeSelectionEnabled instead"); +@property (nonatomic, readonly) BOOL projectMobileFlowRequireVehicleInfoIfVisible SWIFT_DEPRECATED_MSG("Use requiredVehicleInfo for the pickup type in sitePickupConfig.availablePickupTypes"); +@property (nonatomic, readonly, copy) NSString * _Nullable curbsideLocalizedString SWIFT_DEPRECATED_MSG("Use pickupTypeLocalizedString for the pickup type in sitePickupConfig.availablePickupTypes"); +@property (nonatomic, readonly, copy) NSString * _Nullable pickupLocalizedString SWIFT_DEPRECATED_MSG("Use pickupTypeLocalizedString for the pickup type in sitePickupConfig.availablePickupTypes"); @property (nonatomic, copy) NSString * _Nullable pushToken; @property (nonatomic, copy) NSString * _Nullable spotIdentifer; @property (nonatomic, copy) NSString * _Nullable spotIdentifierInputType; @@ -2533,11 +2534,11 @@ SWIFT_CLASS_NAMED("OrdersManager") @end - @interface FlyBuyOrdersManager (SWIFT_EXTENSION(FlyBuy)) @end + enum OrdersManagerErrorType : NSInteger; /// Error that may be returned from OrdersManager methods. @@ -2649,6 +2650,7 @@ SWIFT_CLASS_NAMED("Site") - (NSNumber * _Nullable)distanceFrom:(CLLocation * _Nonnull)loc SWIFT_WARN_UNUSED_RESULT; @end + @class CLCircularRegion; /// Manager for site operations diff --git a/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/Info.plist b/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/Info.plist index a382499..86b7509 100644 Binary files a/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/Info.plist and b/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/Info.plist differ diff --git a/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/Modules/FlyBuy.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/Modules/FlyBuy.swiftmodule/arm64-apple-ios-simulator.swiftinterface index 2a5186b..a78b6fb 100644 --- a/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/Modules/FlyBuy.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/Modules/FlyBuy.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -41,6 +41,13 @@ extension FlyBuy.PickupLocationFilterData { final public let defaultGeofenceRadiusMeters: Swift.Double final public let defaultSiteSearchRadiusMeters: Swift.Double final public let analyticsEventLimit: Swift.Int? + public var sitesFetchLongitudePrecision: Swift.Int { + get + } + public var sitesFetchLatitudePrecision: Swift.Int { + get + } + public static let defaultGeoPrecision: Swift.Int @objc deinit public func encode(to encoder: Swift.Encoder) throws required public init(from decoder: Swift.Decoder) throws @@ -133,6 +140,11 @@ extension FlyBuy._AnyEncodable { @objc deinit required public init(from decoder: Swift.Decoder) throws } +extension FlyBuy.Site { + public var pickupConfig: FlyBuy.PickupConfig { + get + } +} @objc(FlyBuyGeofence) open class Geofence : ObjectiveC.NSObject, Swift.Codable { @objc final public let latitude: Swift.String @objc final public let longitude: Swift.String @@ -301,6 +313,13 @@ extension FlyBuy.PickupConfig : FlyBuy.PersistableCodable { public static let defaultSiteLimit: Swift.Int public static let defaultWorstAccuracyLimit: Swift.Double public static let defaultWrongSiteSearchRadius: Swift.Double + public var sitesFetchLatitudePrecision: Swift.Int { + get + } + public var sitesFetchLongitudePrecision: Swift.Int { + get + } + public static let defaultGeoPrecision: Swift.Int @objc deinit public func encode(to encoder: Swift.Encoder) throws required public init(from decoder: Swift.Decoder) throws @@ -435,7 +454,7 @@ public struct BeaconRegion : Swift.Codable, Swift.Hashable { public init(from decoder: Swift.Decoder) throws } public protocol FlyBuyModuleManager { - func configUpdated(_ config: FlyBuy.AppConfig) + func configUpdated(_ config: FlyBuy.AppConfig, pushData: FlyBuy.PushData?) func set(logLevel: FlyBuy.LogLevel) func ordersUpdated(_ orders: [FlyBuy.Order]) } @@ -523,6 +542,9 @@ extension Foundation.DateFormatter { public static let iso8601Full: Foundation.DateFormatter public static let iso8601FullLocalTZ: Foundation.DateFormatter } +extension Swift.Double { + public func round(to places: Swift.Int) -> Swift.Double +} @_hasMissingDesignatedInitializers @objc(FlyBuyCustomer) open class Customer : ObjectiveC.NSObject, Swift.Decodable { @objc final public let id: Swift.Int @objc final public let token: Swift.String @@ -625,6 +647,19 @@ public protocol FlyBuyError : Foundation.LocalizedError { } @objc deinit } +public enum RemoteNotificationMessageType : Swift.String { + case backgroundSync + case orderUpdate + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct PushData { + public let messageType: FlyBuy.RemoteNotificationMessageType? + public let forceSyncNotifyCampaigns: Swift.Bool +} public struct AnyCodable : Swift.Codable { public let value: Any public init(_ value: T?) @@ -863,19 +898,26 @@ extension FlyBuy.OrdersManager : CoreLocation.CLLocationManagerDelegate { @objc final public let siteCoverPhotoURL: Swift.String? final public let siteBeaconRegions: [FlyBuy.BeaconRegion]? @objc final public let sitePartnerIdentifier: Swift.String? + @available(*, deprecated, message: "Use order.sitePickupConfig.projectAccentColor instead") @objc final public let projectAccentColor: Swift.String? + @available(*, deprecated, message: "Use order.sitePickupConfig.projectAccentTextColor instead") @objc final public let projectAccentTextColor: Swift.String? @objc final public let projectLogoURL: Swift.String? @objc final public let customerName: Swift.String? @objc final public let customerCarType: Swift.String? @objc final public let customerCarColor: Swift.String? @objc final public let customerLicensePlate: Swift.String? + @available(*, deprecated, message: "Use showVehicleInfoFields for the pickup type in sitePickupConfig.availablePickupTypes") @objc final public let projectMobileFlowAlwaysShowVehicleInfoFields: Swift.Bool + @available(*, deprecated, message: "Use order.sitePickupConfig.customerNameEditingEnabled instead") @objc final public let projectMobileFlowCustomerNameEditingEnabled: Swift.Bool + @available(*, deprecated, message: "Use order.sitePickupConfig.pickupTypeSelectionEnabled instead") @objc final public let projectMobileFlowPickupTypeSelectionEnabled: Swift.Bool - @available(*, deprecated, message: "Please use PickupTypeConfig.requireVehicleInfo: Bool") + @available(*, deprecated, message: "Use requiredVehicleInfo for the pickup type in sitePickupConfig.availablePickupTypes") @objc final public let projectMobileFlowRequireVehicleInfoIfVisible: Swift.Bool + @available(*, deprecated, message: "Use pickupTypeLocalizedString for the pickup type in sitePickupConfig.availablePickupTypes") @objc final public let curbsideLocalizedString: Swift.String? + @available(*, deprecated, message: "Use pickupTypeLocalizedString for the pickup type in sitePickupConfig.availablePickupTypes") @objc final public let pickupLocalizedString: Swift.String? @objc public var pushToken: Swift.String? public var isLocationTrackingEnabled: Swift.Bool? @@ -922,7 +964,7 @@ extension FlyBuy.Order : FlyBuy.PersistableCodable { } extension FlyBuy.Order { public func isOpen() -> Swift.Bool - public var pickupConfig: FlyBuy.PickupConfig { + public var sitePickupConfig: FlyBuy.PickupConfig { get } } @@ -943,6 +985,9 @@ extension FlyBuy.FlyBuyAPIErrorType : Swift.RawRepresentable {} extension FlyBuy.SitesManagerErrorType : Swift.Equatable {} extension FlyBuy.SitesManagerErrorType : Swift.Hashable {} extension FlyBuy.SitesManagerErrorType : Swift.RawRepresentable {} +extension FlyBuy.RemoteNotificationMessageType : Swift.Equatable {} +extension FlyBuy.RemoteNotificationMessageType : Swift.Hashable {} +extension FlyBuy.RemoteNotificationMessageType : Swift.RawRepresentable {} extension FlyBuy.OrdersManagerErrorType : Swift.Equatable {} extension FlyBuy.OrdersManagerErrorType : Swift.Hashable {} extension FlyBuy.OrdersManagerErrorType : Swift.RawRepresentable {} diff --git a/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/Modules/FlyBuy.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/Modules/FlyBuy.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 7ef3c89..770c371 100644 --- a/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/Modules/FlyBuy.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/Modules/FlyBuy.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -41,6 +41,13 @@ extension FlyBuy.PickupLocationFilterData { final public let defaultGeofenceRadiusMeters: Swift.Double final public let defaultSiteSearchRadiusMeters: Swift.Double final public let analyticsEventLimit: Swift.Int? + public var sitesFetchLongitudePrecision: Swift.Int { + get + } + public var sitesFetchLatitudePrecision: Swift.Int { + get + } + public static let defaultGeoPrecision: Swift.Int @objc deinit public func encode(to encoder: Swift.Encoder) throws required public init(from decoder: Swift.Decoder) throws @@ -133,6 +140,11 @@ extension FlyBuy._AnyEncodable { @objc deinit required public init(from decoder: Swift.Decoder) throws } +extension FlyBuy.Site { + public var pickupConfig: FlyBuy.PickupConfig { + get + } +} @objc(FlyBuyGeofence) open class Geofence : ObjectiveC.NSObject, Swift.Codable { @objc final public let latitude: Swift.String @objc final public let longitude: Swift.String @@ -301,6 +313,13 @@ extension FlyBuy.PickupConfig : FlyBuy.PersistableCodable { public static let defaultSiteLimit: Swift.Int public static let defaultWorstAccuracyLimit: Swift.Double public static let defaultWrongSiteSearchRadius: Swift.Double + public var sitesFetchLatitudePrecision: Swift.Int { + get + } + public var sitesFetchLongitudePrecision: Swift.Int { + get + } + public static let defaultGeoPrecision: Swift.Int @objc deinit public func encode(to encoder: Swift.Encoder) throws required public init(from decoder: Swift.Decoder) throws @@ -435,7 +454,7 @@ public struct BeaconRegion : Swift.Codable, Swift.Hashable { public init(from decoder: Swift.Decoder) throws } public protocol FlyBuyModuleManager { - func configUpdated(_ config: FlyBuy.AppConfig) + func configUpdated(_ config: FlyBuy.AppConfig, pushData: FlyBuy.PushData?) func set(logLevel: FlyBuy.LogLevel) func ordersUpdated(_ orders: [FlyBuy.Order]) } @@ -523,6 +542,9 @@ extension Foundation.DateFormatter { public static let iso8601Full: Foundation.DateFormatter public static let iso8601FullLocalTZ: Foundation.DateFormatter } +extension Swift.Double { + public func round(to places: Swift.Int) -> Swift.Double +} @_hasMissingDesignatedInitializers @objc(FlyBuyCustomer) open class Customer : ObjectiveC.NSObject, Swift.Decodable { @objc final public let id: Swift.Int @objc final public let token: Swift.String @@ -625,6 +647,19 @@ public protocol FlyBuyError : Foundation.LocalizedError { } @objc deinit } +public enum RemoteNotificationMessageType : Swift.String { + case backgroundSync + case orderUpdate + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct PushData { + public let messageType: FlyBuy.RemoteNotificationMessageType? + public let forceSyncNotifyCampaigns: Swift.Bool +} public struct AnyCodable : Swift.Codable { public let value: Any public init(_ value: T?) @@ -863,19 +898,26 @@ extension FlyBuy.OrdersManager : CoreLocation.CLLocationManagerDelegate { @objc final public let siteCoverPhotoURL: Swift.String? final public let siteBeaconRegions: [FlyBuy.BeaconRegion]? @objc final public let sitePartnerIdentifier: Swift.String? + @available(*, deprecated, message: "Use order.sitePickupConfig.projectAccentColor instead") @objc final public let projectAccentColor: Swift.String? + @available(*, deprecated, message: "Use order.sitePickupConfig.projectAccentTextColor instead") @objc final public let projectAccentTextColor: Swift.String? @objc final public let projectLogoURL: Swift.String? @objc final public let customerName: Swift.String? @objc final public let customerCarType: Swift.String? @objc final public let customerCarColor: Swift.String? @objc final public let customerLicensePlate: Swift.String? + @available(*, deprecated, message: "Use showVehicleInfoFields for the pickup type in sitePickupConfig.availablePickupTypes") @objc final public let projectMobileFlowAlwaysShowVehicleInfoFields: Swift.Bool + @available(*, deprecated, message: "Use order.sitePickupConfig.customerNameEditingEnabled instead") @objc final public let projectMobileFlowCustomerNameEditingEnabled: Swift.Bool + @available(*, deprecated, message: "Use order.sitePickupConfig.pickupTypeSelectionEnabled instead") @objc final public let projectMobileFlowPickupTypeSelectionEnabled: Swift.Bool - @available(*, deprecated, message: "Please use PickupTypeConfig.requireVehicleInfo: Bool") + @available(*, deprecated, message: "Use requiredVehicleInfo for the pickup type in sitePickupConfig.availablePickupTypes") @objc final public let projectMobileFlowRequireVehicleInfoIfVisible: Swift.Bool + @available(*, deprecated, message: "Use pickupTypeLocalizedString for the pickup type in sitePickupConfig.availablePickupTypes") @objc final public let curbsideLocalizedString: Swift.String? + @available(*, deprecated, message: "Use pickupTypeLocalizedString for the pickup type in sitePickupConfig.availablePickupTypes") @objc final public let pickupLocalizedString: Swift.String? @objc public var pushToken: Swift.String? public var isLocationTrackingEnabled: Swift.Bool? @@ -922,7 +964,7 @@ extension FlyBuy.Order : FlyBuy.PersistableCodable { } extension FlyBuy.Order { public func isOpen() -> Swift.Bool - public var pickupConfig: FlyBuy.PickupConfig { + public var sitePickupConfig: FlyBuy.PickupConfig { get } } @@ -943,6 +985,9 @@ extension FlyBuy.FlyBuyAPIErrorType : Swift.RawRepresentable {} extension FlyBuy.SitesManagerErrorType : Swift.Equatable {} extension FlyBuy.SitesManagerErrorType : Swift.Hashable {} extension FlyBuy.SitesManagerErrorType : Swift.RawRepresentable {} +extension FlyBuy.RemoteNotificationMessageType : Swift.Equatable {} +extension FlyBuy.RemoteNotificationMessageType : Swift.Hashable {} +extension FlyBuy.RemoteNotificationMessageType : Swift.RawRepresentable {} extension FlyBuy.OrdersManagerErrorType : Swift.Equatable {} extension FlyBuy.OrdersManagerErrorType : Swift.Hashable {} extension FlyBuy.OrdersManagerErrorType : Swift.RawRepresentable {} diff --git a/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/_CodeSignature/CodeResources b/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/_CodeSignature/CodeResources index 5144902..079ab42 100644 --- a/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/_CodeSignature/CodeResources +++ b/FlyBuy.xcframework/ios-arm64_x86_64-simulator/FlyBuy.framework/_CodeSignature/CodeResources @@ -6,7 +6,7 @@ Headers/FlyBuy-Swift.h - Mgxp2d4AwdIgRqRuzAkGGwz/R5k= + MWl0/XcuLGbo4g1JjqDiHjC72n0= Headers/FlyBuy.h @@ -14,7 +14,7 @@ Info.plist - 6XJCmHz4D7krWXkr311OwlA9wEU= + mZ13M3eI7iX1Op5we01H/aUlCUo= Modules/FlyBuy.swiftmodule/arm64-apple-ios-simulator.swiftdoc @@ -22,11 +22,11 @@ Modules/FlyBuy.swiftmodule/arm64-apple-ios-simulator.swiftinterface - kDolh8Lnb6PUrfE4m7OOpgi9iO0= + ZdAgS1XlZT4ahF6+LC37uG/fD0k= Modules/FlyBuy.swiftmodule/arm64-apple-ios-simulator.swiftmodule - sPFlbzW/0YzA8WUBglmQ7zNLVKY= + UjlrYQq/mZmuhj38GaWAG66cqlg= Modules/FlyBuy.swiftmodule/x86_64-apple-ios-simulator.swiftdoc @@ -34,11 +34,11 @@ Modules/FlyBuy.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - L1Xi9JymWQsDOezyuJPzV3u+rTg= + B7aXQwIqIaqZjusfX9B85VSu4ak= Modules/FlyBuy.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - Dy2hN9hLo5oAcLULPqnlPjkaoiw= + oLGoGvzD3anoelP/nnzdH50p0HE= Modules/module.modulemap @@ -51,7 +51,7 @@ hash2 - 8TLmfVTfPSK386Wrz8ORDlMs/fivzg/bYQZLsE4CvVA= + AGu5ZStxEI6gOBh9eszxoSjPdOLaABOZ4J4CbUGfM6I= Headers/FlyBuy.h @@ -72,14 +72,14 @@ hash2 - Skb/YloH1nUBBsyeP/o7qJ7A5x7r3HrXv2C4GzbL9Mw= + 2cn/eir0iPZESibK4sidsfJBrs5xLLMyru3r4T2XBOs= Modules/FlyBuy.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - bNJjfbYiVdYhNwFhlUtKSsH9VHM2Bhtqq+Y4aKg6XJE= + 1ahqByAMJ6tnjcEvF9yctcM1KXHdexPd93vne4j/X4w= Modules/FlyBuy.swiftmodule/x86_64-apple-ios-simulator.swiftdoc @@ -93,14 +93,14 @@ hash2 - JO9WuuKnB6SoE1RUZTo0+cQ0VRgUrlzajPaIDwaxLhI= + s4HoiwyLVtXvEtyhblTT2+AJoQTprw7MaLTwOKaemzk= Modules/FlyBuy.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - /IWMEmNoxWY+Z2niRWAf5Nym1/jQQ+aypO4wrNfmqA0= + BthelQu8btCvljzSt2cFRucrJhmMpTkwKBTk8kbQ3OI= Modules/module.modulemap diff --git a/FlyBuyNotify.xcframework/ios-arm64/FlyBuyNotify.framework/FlyBuyNotify b/FlyBuyNotify.xcframework/ios-arm64/FlyBuyNotify.framework/FlyBuyNotify index bf8c41b..6344651 100644 Binary files a/FlyBuyNotify.xcframework/ios-arm64/FlyBuyNotify.framework/FlyBuyNotify and b/FlyBuyNotify.xcframework/ios-arm64/FlyBuyNotify.framework/FlyBuyNotify differ diff --git a/FlyBuyNotify.xcframework/ios-arm64/FlyBuyNotify.framework/Info.plist b/FlyBuyNotify.xcframework/ios-arm64/FlyBuyNotify.framework/Info.plist index 8e6dfa1..6e9d437 100644 Binary files a/FlyBuyNotify.xcframework/ios-arm64/FlyBuyNotify.framework/Info.plist and b/FlyBuyNotify.xcframework/ios-arm64/FlyBuyNotify.framework/Info.plist differ diff --git a/FlyBuyNotify.xcframework/ios-arm64/FlyBuyNotify.framework/Modules/FlyBuyNotify.swiftmodule/arm64-apple-ios.swiftinterface b/FlyBuyNotify.xcframework/ios-arm64/FlyBuyNotify.framework/Modules/FlyBuyNotify.swiftmodule/arm64-apple-ios.swiftinterface index 362be90..4bb474b 100644 --- a/FlyBuyNotify.xcframework/ios-arm64/FlyBuyNotify.framework/Modules/FlyBuyNotify.swiftmodule/arm64-apple-ios.swiftinterface +++ b/FlyBuyNotify.xcframework/ios-arm64/FlyBuyNotify.framework/Modules/FlyBuyNotify.swiftmodule/arm64-apple-ios.swiftinterface @@ -13,6 +13,8 @@ import _Concurrency public enum SyncHistory { public static var writeToDefaultsEnabled: Swift.Bool public static func addBGTaskExpiredEvent() + public static func addPushSyncAttemptEvent() + public static func addPushSyncCompleteEvent(error: Swift.Error?) public static func addBGFetchAttemptEvent() public static func addBGFetchCompleteEvent(error: Swift.Error?) public static func appendHistory(_ str: Swift.String) @@ -52,7 +54,7 @@ extension FlyBuyNotify.Manager : FlyBuy.FlyBuyModuleManager { public func ordersUpdated(_ orders: [FlyBuy.Order]) public func set(logLevel: FlyBuy.LogLevel) public func set(logWriteEnabled: Swift.Bool) - public func configUpdated(_ config: FlyBuy.AppConfig) + public func configUpdated(_ config: FlyBuy.AppConfig, pushData: FlyBuy.PushData?) } @objc public enum NotifyErrorType : Swift.Int { case noLocationPermission diff --git a/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/FlyBuyNotify b/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/FlyBuyNotify index da50578..505fabc 100644 Binary files a/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/FlyBuyNotify and b/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/FlyBuyNotify differ diff --git a/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/Info.plist b/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/Info.plist index 1bd6a43..9401bc9 100644 Binary files a/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/Info.plist and b/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/Info.plist differ diff --git a/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/Modules/FlyBuyNotify.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/Modules/FlyBuyNotify.swiftmodule/arm64-apple-ios-simulator.swiftinterface index bcee2f1..7f20266 100644 --- a/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/Modules/FlyBuyNotify.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/Modules/FlyBuyNotify.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -13,6 +13,8 @@ import _Concurrency public enum SyncHistory { public static var writeToDefaultsEnabled: Swift.Bool public static func addBGTaskExpiredEvent() + public static func addPushSyncAttemptEvent() + public static func addPushSyncCompleteEvent(error: Swift.Error?) public static func addBGFetchAttemptEvent() public static func addBGFetchCompleteEvent(error: Swift.Error?) public static func appendHistory(_ str: Swift.String) @@ -52,7 +54,7 @@ extension FlyBuyNotify.Manager : FlyBuy.FlyBuyModuleManager { public func ordersUpdated(_ orders: [FlyBuy.Order]) public func set(logLevel: FlyBuy.LogLevel) public func set(logWriteEnabled: Swift.Bool) - public func configUpdated(_ config: FlyBuy.AppConfig) + public func configUpdated(_ config: FlyBuy.AppConfig, pushData: FlyBuy.PushData?) } @objc public enum NotifyErrorType : Swift.Int { case noLocationPermission diff --git a/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/Modules/FlyBuyNotify.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/Modules/FlyBuyNotify.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 16d671a..d0d3f6a 100644 --- a/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/Modules/FlyBuyNotify.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/Modules/FlyBuyNotify.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -13,6 +13,8 @@ import _Concurrency public enum SyncHistory { public static var writeToDefaultsEnabled: Swift.Bool public static func addBGTaskExpiredEvent() + public static func addPushSyncAttemptEvent() + public static func addPushSyncCompleteEvent(error: Swift.Error?) public static func addBGFetchAttemptEvent() public static func addBGFetchCompleteEvent(error: Swift.Error?) public static func appendHistory(_ str: Swift.String) @@ -52,7 +54,7 @@ extension FlyBuyNotify.Manager : FlyBuy.FlyBuyModuleManager { public func ordersUpdated(_ orders: [FlyBuy.Order]) public func set(logLevel: FlyBuy.LogLevel) public func set(logWriteEnabled: Swift.Bool) - public func configUpdated(_ config: FlyBuy.AppConfig) + public func configUpdated(_ config: FlyBuy.AppConfig, pushData: FlyBuy.PushData?) } @objc public enum NotifyErrorType : Swift.Int { case noLocationPermission diff --git a/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/_CodeSignature/CodeResources b/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/_CodeSignature/CodeResources index 3241a58..cf3a5ae 100644 --- a/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/_CodeSignature/CodeResources +++ b/FlyBuyNotify.xcframework/ios-arm64_x86_64-simulator/FlyBuyNotify.framework/_CodeSignature/CodeResources @@ -14,7 +14,7 @@ Info.plist - N82wmbsXGAv5BIE1CPYHSNDPKiM= + bWvco/fVipRdEtCDxLsLsCXRDLk= Modules/FlyBuyNotify.swiftmodule/arm64-apple-ios-simulator.swiftdoc @@ -22,11 +22,11 @@ Modules/FlyBuyNotify.swiftmodule/arm64-apple-ios-simulator.swiftinterface - 7WnTSQTLFwSJH6C4cAV5wnDz+GM= + 86NIgN78p3vntHqVvF765nngoos= Modules/FlyBuyNotify.swiftmodule/arm64-apple-ios-simulator.swiftmodule - g+imWzNPtBflYA6mxJ0PuNXuNiE= + hVsCPpUZ+4LFuxYAVlKGxiO5svU= Modules/FlyBuyNotify.swiftmodule/x86_64-apple-ios-simulator.swiftdoc @@ -34,11 +34,11 @@ Modules/FlyBuyNotify.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - Ac82iSkSEKPqZmnLn5AaTCRLhiY= + iTafCm9LN8e/LQZzoMYAlsYMG9M= Modules/FlyBuyNotify.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - E2TUTBEhnBbZ71BV4d/cgNS3aUA= + jtqFjROTftOPeO/zHLqSBc7M3Ag= Modules/module.modulemap @@ -72,14 +72,14 @@ hash2 - sP6KN6meOzdhtkX9H4/ophRz8FYVVwua/7dvhPX604Q= + Inyv0NLLFcucB1EpBCy9onMquGy7TJKfnyZcWHU8CrQ= Modules/FlyBuyNotify.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - idAZL3mhlJUd86L83fnueGTC4QKkMcf6Hbf9Z636zf0= + L5f3Gpc8TlVaY10B4IpDG8wA3oQ+3nQ6K0SmcJaKUxU= Modules/FlyBuyNotify.swiftmodule/x86_64-apple-ios-simulator.swiftdoc @@ -93,14 +93,14 @@ hash2 - idraQsjgCUYGoiRde0px8fjHe1GZXISOAYpF/P/0SLI= + /jsRXFdPmnB/tPlZnNnh48RsE47XFc6lR3sfOR1zEyo= Modules/FlyBuyNotify.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - cCCiIX/1YV9xIVJYPLEydmruQcGCfp1B/ErN7WTbFJ4= + 3TWRtA6umyMO7G18/Du32fvtQCQdkON6gAxWLyiyAfY= Modules/module.modulemap diff --git a/FlyBuyPickup.xcframework/ios-arm64/FlyBuyPickup.framework/FlyBuyPickup b/FlyBuyPickup.xcframework/ios-arm64/FlyBuyPickup.framework/FlyBuyPickup index be6ecdd..f06007d 100644 Binary files a/FlyBuyPickup.xcframework/ios-arm64/FlyBuyPickup.framework/FlyBuyPickup and b/FlyBuyPickup.xcframework/ios-arm64/FlyBuyPickup.framework/FlyBuyPickup differ diff --git a/FlyBuyPickup.xcframework/ios-arm64/FlyBuyPickup.framework/Info.plist b/FlyBuyPickup.xcframework/ios-arm64/FlyBuyPickup.framework/Info.plist index aa3a205..8555ebf 100644 Binary files a/FlyBuyPickup.xcframework/ios-arm64/FlyBuyPickup.framework/Info.plist and b/FlyBuyPickup.xcframework/ios-arm64/FlyBuyPickup.framework/Info.plist differ diff --git a/FlyBuyPickup.xcframework/ios-arm64/FlyBuyPickup.framework/Modules/FlyBuyPickup.swiftmodule/arm64-apple-ios.swiftinterface b/FlyBuyPickup.xcframework/ios-arm64/FlyBuyPickup.framework/Modules/FlyBuyPickup.swiftmodule/arm64-apple-ios.swiftinterface index 7f6e3e6..74f4aff 100644 --- a/FlyBuyPickup.xcframework/ios-arm64/FlyBuyPickup.framework/Modules/FlyBuyPickup.swiftmodule/arm64-apple-ios.swiftinterface +++ b/FlyBuyPickup.xcframework/ios-arm64/FlyBuyPickup.framework/Modules/FlyBuyPickup.swiftmodule/arm64-apple-ios.swiftinterface @@ -28,6 +28,6 @@ extension Foundation.NSNotification.Name { public static let locationAuthorizationChanged: Foundation.Notification.Name } extension FlyBuyPickup.Manager : FlyBuy.FlyBuyModuleManager { - public func configUpdated(_ config: FlyBuy.AppConfig) + public func configUpdated(_ config: FlyBuy.AppConfig, pushData: FlyBuy.PushData?) public func set(logLevel: FlyBuy.LogLevel) } diff --git a/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/FlyBuyPickup b/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/FlyBuyPickup index ae751df..be11143 100644 Binary files a/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/FlyBuyPickup and b/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/FlyBuyPickup differ diff --git a/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/Info.plist b/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/Info.plist index 5879f14..086ba5d 100644 Binary files a/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/Info.plist and b/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/Info.plist differ diff --git a/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/Modules/FlyBuyPickup.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/Modules/FlyBuyPickup.swiftmodule/arm64-apple-ios-simulator.swiftinterface index bce4041..b844907 100644 --- a/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/Modules/FlyBuyPickup.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/Modules/FlyBuyPickup.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -28,6 +28,6 @@ extension Foundation.NSNotification.Name { public static let locationAuthorizationChanged: Foundation.Notification.Name } extension FlyBuyPickup.Manager : FlyBuy.FlyBuyModuleManager { - public func configUpdated(_ config: FlyBuy.AppConfig) + public func configUpdated(_ config: FlyBuy.AppConfig, pushData: FlyBuy.PushData?) public func set(logLevel: FlyBuy.LogLevel) } diff --git a/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/Modules/FlyBuyPickup.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/Modules/FlyBuyPickup.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 1b53d70..c3c2a5e 100644 --- a/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/Modules/FlyBuyPickup.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/Modules/FlyBuyPickup.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -28,6 +28,6 @@ extension Foundation.NSNotification.Name { public static let locationAuthorizationChanged: Foundation.Notification.Name } extension FlyBuyPickup.Manager : FlyBuy.FlyBuyModuleManager { - public func configUpdated(_ config: FlyBuy.AppConfig) + public func configUpdated(_ config: FlyBuy.AppConfig, pushData: FlyBuy.PushData?) public func set(logLevel: FlyBuy.LogLevel) } diff --git a/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/_CodeSignature/CodeResources b/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/_CodeSignature/CodeResources index 844654e..8f19d46 100644 --- a/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/_CodeSignature/CodeResources +++ b/FlyBuyPickup.xcframework/ios-arm64_x86_64-simulator/FlyBuyPickup.framework/_CodeSignature/CodeResources @@ -14,7 +14,7 @@ Info.plist - Go+EVXSWoFX10UsU5F0dRHJxxXE= + u/x4oWBwljrfa94dFiHsJYCSi+c= Modules/FlyBuyPickup.swiftmodule/arm64-apple-ios-simulator.swiftdoc @@ -22,11 +22,11 @@ Modules/FlyBuyPickup.swiftmodule/arm64-apple-ios-simulator.swiftinterface - KG/AVlZKs9D+5t5lv4XlWfIiDJg= + GvPbkbwdHsHD4CdtFDfqpF6ki2c= Modules/FlyBuyPickup.swiftmodule/arm64-apple-ios-simulator.swiftmodule - KLFSlduXoKwze48v8vvQcLB/xWI= + d6X3jUKyrwTIE+jiq0//Wd8dflA= Modules/FlyBuyPickup.swiftmodule/x86_64-apple-ios-simulator.swiftdoc @@ -34,11 +34,11 @@ Modules/FlyBuyPickup.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - vH9SiFnvJRcpFhhXvMH2iGW1834= + ROErAdB5Ox+xK1JYvxDtvWmYvB8= Modules/FlyBuyPickup.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - 5ngIKCkE4jKvV9l/MRJgy9J/tbI= + 75TwOCtSh9JWf2uqj3SU+lwve18= Modules/module.modulemap @@ -72,14 +72,14 @@ hash2 - hhceoK7H62CAiucg4w1aVkOu1tkovsDN+596B+xBicA= + 8uDMz1e+JZK5GVAWHOSrRRExLK5G+BKeVJzytlNojKM= Modules/FlyBuyPickup.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - EkYVb8ViB2Jistr4anrFesQixwKVy4VK7K02nm4oeOg= + HGk++Uj9kp9FIW1rC+iVsJSNYQGfYvcyTKkrDjVO5a8= Modules/FlyBuyPickup.swiftmodule/x86_64-apple-ios-simulator.swiftdoc @@ -93,14 +93,14 @@ hash2 - /aq/SzDyxQO7eWn0gr+f/8GaipuBEDefo1oWljtYc+o= + KsQB7wQD8rcn7WKuhUk2TNegQ/ZDEkOJ12QNSLYuIXM= Modules/FlyBuyPickup.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - w6Eq7GmCQ8Esm1bVTeTAZpAgGH/i/arFizLG5IEXvSM= + nRAuHT/S+LrgmlFd8Cx/vjD276EQzieQHVV3A37mNq8= Modules/module.modulemap diff --git a/FlyBuyPresence.xcframework/ios-arm64/FlyBuyPresence.framework/FlyBuyPresence b/FlyBuyPresence.xcframework/ios-arm64/FlyBuyPresence.framework/FlyBuyPresence index 16bf30c..d7c1f5e 100644 Binary files a/FlyBuyPresence.xcframework/ios-arm64/FlyBuyPresence.framework/FlyBuyPresence and b/FlyBuyPresence.xcframework/ios-arm64/FlyBuyPresence.framework/FlyBuyPresence differ diff --git a/FlyBuyPresence.xcframework/ios-arm64/FlyBuyPresence.framework/Info.plist b/FlyBuyPresence.xcframework/ios-arm64/FlyBuyPresence.framework/Info.plist index e0dde59..15838f6 100644 Binary files a/FlyBuyPresence.xcframework/ios-arm64/FlyBuyPresence.framework/Info.plist and b/FlyBuyPresence.xcframework/ios-arm64/FlyBuyPresence.framework/Info.plist differ diff --git a/FlyBuyPresence.xcframework/ios-arm64/FlyBuyPresence.framework/Modules/FlyBuyPresence.swiftmodule/arm64-apple-ios.swiftinterface b/FlyBuyPresence.xcframework/ios-arm64/FlyBuyPresence.framework/Modules/FlyBuyPresence.swiftmodule/arm64-apple-ios.swiftinterface index 1de73c6..431e4e0 100644 --- a/FlyBuyPresence.xcframework/ios-arm64/FlyBuyPresence.framework/Modules/FlyBuyPresence.swiftmodule/arm64-apple-ios.swiftinterface +++ b/FlyBuyPresence.xcframework/ios-arm64/FlyBuyPresence.framework/Modules/FlyBuyPresence.swiftmodule/arm64-apple-ios.swiftinterface @@ -23,7 +23,7 @@ import _Concurrency @objc override dynamic public init() } extension FlyBuyPresence.Manager : FlyBuy.FlyBuyModuleManager { - public func configUpdated(_ config: FlyBuy.AppConfig) + public func configUpdated(_ config: FlyBuy.AppConfig, pushData: FlyBuy.PushData?) public func set(logLevel: FlyBuy.LogLevel) } @objc public enum PresenceErrorType : Swift.Int { diff --git a/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/FlyBuyPresence b/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/FlyBuyPresence index b51dd4e..d365100 100644 Binary files a/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/FlyBuyPresence and b/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/FlyBuyPresence differ diff --git a/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/Info.plist b/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/Info.plist index 826ebd2..4c5085b 100644 Binary files a/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/Info.plist and b/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/Info.plist differ diff --git a/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/Modules/FlyBuyPresence.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/Modules/FlyBuyPresence.swiftmodule/arm64-apple-ios-simulator.swiftinterface index de719ac..ed9b61b 100644 --- a/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/Modules/FlyBuyPresence.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/Modules/FlyBuyPresence.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -23,7 +23,7 @@ import _Concurrency @objc override dynamic public init() } extension FlyBuyPresence.Manager : FlyBuy.FlyBuyModuleManager { - public func configUpdated(_ config: FlyBuy.AppConfig) + public func configUpdated(_ config: FlyBuy.AppConfig, pushData: FlyBuy.PushData?) public func set(logLevel: FlyBuy.LogLevel) } @objc public enum PresenceErrorType : Swift.Int { diff --git a/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/Modules/FlyBuyPresence.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/Modules/FlyBuyPresence.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index f6f53e9..aacf269 100644 --- a/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/Modules/FlyBuyPresence.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/Modules/FlyBuyPresence.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -23,7 +23,7 @@ import _Concurrency @objc override dynamic public init() } extension FlyBuyPresence.Manager : FlyBuy.FlyBuyModuleManager { - public func configUpdated(_ config: FlyBuy.AppConfig) + public func configUpdated(_ config: FlyBuy.AppConfig, pushData: FlyBuy.PushData?) public func set(logLevel: FlyBuy.LogLevel) } @objc public enum PresenceErrorType : Swift.Int { diff --git a/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/_CodeSignature/CodeResources b/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/_CodeSignature/CodeResources index 79b74a4..9a4a7d6 100644 --- a/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/_CodeSignature/CodeResources +++ b/FlyBuyPresence.xcframework/ios-arm64_x86_64-simulator/FlyBuyPresence.framework/_CodeSignature/CodeResources @@ -14,7 +14,7 @@ Info.plist - /4HRkrDm444kdjIxYR9gGc8LNnk= + xju9vfXQs5Cq4V7jiuCgBHBcNvo= Modules/FlyBuyPresence.swiftmodule/arm64-apple-ios-simulator.swiftdoc @@ -22,11 +22,11 @@ Modules/FlyBuyPresence.swiftmodule/arm64-apple-ios-simulator.swiftinterface - 7G/Ygn/VF2jXgt8tEjuf0gUp4UI= + dLNxldsQ35aKS/pLVKSn2V/sHU0= Modules/FlyBuyPresence.swiftmodule/arm64-apple-ios-simulator.swiftmodule - xWPo0tTGjBhqctLOBKEy8NipjWw= + MMDzPEgtBqg8VaDcPJ6u/z57R4Q= Modules/FlyBuyPresence.swiftmodule/x86_64-apple-ios-simulator.swiftdoc @@ -34,11 +34,11 @@ Modules/FlyBuyPresence.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - 547LCAhA3lGlsZw6Fj7dkbAwzFE= + csIDy1Y3mPjMZzcJrCc/l4gXMpE= Modules/FlyBuyPresence.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - nA+TDFGxO3HPkHvgb+fLzgAghNM= + BqVvnJD2tSE4O1/yDegs/5x7Msc= Modules/module.modulemap @@ -72,14 +72,14 @@ hash2 - /m90nrRo7VY5Ck0mQr9ZmQn9SbuTIghgOxxMMhzzyM8= + 7wGcHvCxrYURx034GsAYl6nspYI/5JWenXPg20AKGC8= Modules/FlyBuyPresence.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - lPUCSz3EEm+QtufqQuBv3bmcDKQSh4Y104I+z6QNkbA= + NtWXMEOHlmN3FnHg5KE4m3fV+BhXCAVHDQUL8mQxbyA= Modules/FlyBuyPresence.swiftmodule/x86_64-apple-ios-simulator.swiftdoc @@ -93,14 +93,14 @@ hash2 - hok/DaC8SxBV1XQFSh7GDgFCoo0/GqGoqd+ToF326mo= + YVdh4J2hvVA/Qv7Zvk1sqAEwpevvY8LJIs+KS4lCW84= Modules/FlyBuyPresence.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - 04ASqr33gh5yiJnV2tbncjEe2xCOghoMPWg2LOp6PME= + wCsFFOGpamDEaF8Qbo2v4G81PSepM+WpFwd5r8kUPFM= Modules/module.modulemap diff --git a/FlyBuyTableside.xcframework/Info.plist b/FlyBuyTableside.xcframework/Info.plist index 3d8ad9e..e730333 100644 --- a/FlyBuyTableside.xcframework/Info.plist +++ b/FlyBuyTableside.xcframework/Info.plist @@ -6,30 +6,30 @@ LibraryIdentifier - ios-arm64_x86_64-simulator + ios-arm64 LibraryPath FlyBuyTableside.framework SupportedArchitectures arm64 - x86_64 SupportedPlatform ios - SupportedPlatformVariant - simulator LibraryIdentifier - ios-arm64 + ios-arm64_x86_64-simulator LibraryPath FlyBuyTableside.framework SupportedArchitectures arm64 + x86_64 SupportedPlatform ios + SupportedPlatformVariant + simulator CFBundlePackageType diff --git a/FlyBuyTableside.xcframework/ios-arm64/FlyBuyTableside.framework/FlyBuyTableside b/FlyBuyTableside.xcframework/ios-arm64/FlyBuyTableside.framework/FlyBuyTableside index bfe0c9d..a2a1251 100644 Binary files a/FlyBuyTableside.xcframework/ios-arm64/FlyBuyTableside.framework/FlyBuyTableside and b/FlyBuyTableside.xcframework/ios-arm64/FlyBuyTableside.framework/FlyBuyTableside differ diff --git a/FlyBuyTableside.xcframework/ios-arm64/FlyBuyTableside.framework/Info.plist b/FlyBuyTableside.xcframework/ios-arm64/FlyBuyTableside.framework/Info.plist index bc03275..d931526 100644 Binary files a/FlyBuyTableside.xcframework/ios-arm64/FlyBuyTableside.framework/Info.plist and b/FlyBuyTableside.xcframework/ios-arm64/FlyBuyTableside.framework/Info.plist differ diff --git a/FlyBuyTableside.xcframework/ios-arm64_x86_64-simulator/FlyBuyTableside.framework/FlyBuyTableside b/FlyBuyTableside.xcframework/ios-arm64_x86_64-simulator/FlyBuyTableside.framework/FlyBuyTableside index 4b4c821..f6e976c 100644 Binary files a/FlyBuyTableside.xcframework/ios-arm64_x86_64-simulator/FlyBuyTableside.framework/FlyBuyTableside and b/FlyBuyTableside.xcframework/ios-arm64_x86_64-simulator/FlyBuyTableside.framework/FlyBuyTableside differ diff --git a/FlyBuyTableside.xcframework/ios-arm64_x86_64-simulator/FlyBuyTableside.framework/Info.plist b/FlyBuyTableside.xcframework/ios-arm64_x86_64-simulator/FlyBuyTableside.framework/Info.plist index 285cf96..39ffdb0 100644 Binary files a/FlyBuyTableside.xcframework/ios-arm64_x86_64-simulator/FlyBuyTableside.framework/Info.plist and b/FlyBuyTableside.xcframework/ios-arm64_x86_64-simulator/FlyBuyTableside.framework/Info.plist differ diff --git a/FlyBuyTableside.xcframework/ios-arm64_x86_64-simulator/FlyBuyTableside.framework/_CodeSignature/CodeResources b/FlyBuyTableside.xcframework/ios-arm64_x86_64-simulator/FlyBuyTableside.framework/_CodeSignature/CodeResources index abb10aa..f51c70f 100644 --- a/FlyBuyTableside.xcframework/ios-arm64_x86_64-simulator/FlyBuyTableside.framework/_CodeSignature/CodeResources +++ b/FlyBuyTableside.xcframework/ios-arm64_x86_64-simulator/FlyBuyTableside.framework/_CodeSignature/CodeResources @@ -14,7 +14,7 @@ Info.plist - m/ak0oMDZZycp2LbxxtCr8qRTnM= + 45GtDfGUnWHqhcL4pe1R3z0D9tg= Modules/FlyBuyTableside.swiftmodule/arm64-apple-ios-simulator.swiftdoc