Skip to content

Commit

Permalink
Release 2.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jlalagrone committed Aug 30, 2022
1 parent e7bf66e commit c5ab427
Show file tree
Hide file tree
Showing 40 changed files with 233 additions and 89 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 @@ -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;
Expand Down Expand Up @@ -1129,11 +1129,11 @@ SWIFT_CLASS_NAMED("OrdersManager")
@end



@interface FlyBuyOrdersManager (SWIFT_EXTENSION(FlyBuy)) <CLLocationManagerDelegate>
@end



enum OrdersManagerErrorType : NSInteger;

/// Error that may be returned from OrdersManager methods.
Expand Down Expand Up @@ -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
Expand Down
Binary file modified FlyBuy.xcframework/ios-arm64/FlyBuy.framework/Info.plist
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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])
}
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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<T>(_ value: T?)
Expand Down Expand Up @@ -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?
Expand Down Expand Up @@ -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
}
}
Expand All @@ -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 {}
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -1131,11 +1131,11 @@ SWIFT_CLASS_NAMED("OrdersManager")
@end



@interface FlyBuyOrdersManager (SWIFT_EXTENSION(FlyBuy)) <CLLocationManagerDelegate>
@end



enum OrdersManagerErrorType : NSInteger;

/// Error that may be returned from OrdersManager methods.
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -2533,11 +2534,11 @@ SWIFT_CLASS_NAMED("OrdersManager")
@end



@interface FlyBuyOrdersManager (SWIFT_EXTENSION(FlyBuy)) <CLLocationManagerDelegate>
@end



enum OrdersManagerErrorType : NSInteger;

/// Error that may be returned from OrdersManager methods.
Expand Down Expand Up @@ -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
Expand Down
Binary file not shown.
Loading

0 comments on commit c5ab427

Please sign in to comment.