Skip to content

Commit

Permalink
3.1.22 (#60)
Browse files Browse the repository at this point in the history
Co-authored-by: runner <[email protected]>
  • Loading branch information
namidan and runner authored Dec 22, 2023
1 parent f1cd660 commit 76109f0
Show file tree
Hide file tree
Showing 32 changed files with 134 additions and 230 deletions.
2 changes: 1 addition & 1 deletion Nami.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'Nami'
s.version = '3.1.21'
s.version = '3.1.22'
s.summary = 'Easy Apple StoreKit subscriptions & in-app purchases, with powerful built-in paywalls and A/B testing.'

s.description = <<-DESC
Expand Down
Binary file modified NamiApple.xcframework.zip
Binary file not shown.
14 changes: 7 additions & 7 deletions NamiApple.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>tvos-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>NamiApple.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>ios</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>tvos-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>NamiApple.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<string>tvos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,8 @@ SWIFT_CLASS("_TtC9NamiApple12NamiCampaign")
@property (nonatomic, copy) NSString * _Nullable value;
@property (nonatomic, copy) NSString * _Nullable external_segment;
@property (nonatomic, copy) NSString * _Nullable name;
- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
@property (nonatomic, readonly) NSUInteger hash;
@end

@class NSURL;
Expand Down
Binary file modified NamiApple.xcframework/ios-arm64/NamiApple.framework/Info.plist
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,10 @@ extension Swift.Array : Swift.Identifiable where Element : Swift.Hashable {
@objc public var value: Swift.String?
@objc public var external_segment: Swift.String?
@objc public var name: Swift.String?
@objc override dynamic public func isEqual(_ object: Any?) -> Swift.Bool
@objc override dynamic public var hash: Swift.Int {
@objc get
}
public typealias ID = Swift.String
@objc deinit
public func encode(to encoder: Swift.Encoder) throws
Expand All @@ -194,14 +198,10 @@ public enum PagingAnimation : Swift.Equatable {
public static var none: NamiApple.PagingAnimation
public static func == (a: NamiApple.PagingAnimation, b: NamiApple.PagingAnimation) -> Swift.Bool
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImage")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImage")
public struct BackportAsyncImage<Content> : SwiftUI.View where Content : SwiftUI.View {
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1) where Content == SwiftUI.Image
public init<I, P>(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, @SwiftUI.ViewBuilder content: @escaping (SwiftUI.Image) -> I, @SwiftUI.ViewBuilder placeholder: @escaping () -> P) where Content == SwiftUI._ConditionalContent<I, P>, I : SwiftUI.View, P : SwiftUI.View
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, transaction: SwiftUI.Transaction = Transaction(), @SwiftUI.ViewBuilder content: @escaping (NamiApple.AsyncImagePhase) -> Content)
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, transaction: SwiftUI.Transaction = Transaction(), @SwiftUI.ViewBuilder content: @escaping (NamiApple.BackportAsyncImagePhase) -> Content)
@_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {
get
}
Expand Down Expand Up @@ -918,11 +918,7 @@ public typealias NamiUUID = Swift.String
get
}
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImagePhase")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImagePhase")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImagePhase")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImagePhase")
public enum AsyncImagePhase {
public enum BackportAsyncImagePhase {
case empty
case success(SwiftUI.Image)
case failure(Swift.Error)
Expand All @@ -933,11 +929,6 @@ public enum AsyncImagePhase {
get
}
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImage")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImage")
public typealias AsyncImage = NamiApple.BackportAsyncImage
public enum NamiPaywallAction : Swift.String, Swift.Codable {
case close_paywall
case restore_purchases
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,10 @@ extension Swift.Array : Swift.Identifiable where Element : Swift.Hashable {
@objc public var value: Swift.String?
@objc public var external_segment: Swift.String?
@objc public var name: Swift.String?
@objc override dynamic public func isEqual(_ object: Any?) -> Swift.Bool
@objc override dynamic public var hash: Swift.Int {
@objc get
}
public typealias ID = Swift.String
@objc deinit
public func encode(to encoder: Swift.Encoder) throws
Expand All @@ -194,14 +198,10 @@ public enum PagingAnimation : Swift.Equatable {
public static var none: NamiApple.PagingAnimation
public static func == (a: NamiApple.PagingAnimation, b: NamiApple.PagingAnimation) -> Swift.Bool
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImage")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImage")
public struct BackportAsyncImage<Content> : SwiftUI.View where Content : SwiftUI.View {
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1) where Content == SwiftUI.Image
public init<I, P>(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, @SwiftUI.ViewBuilder content: @escaping (SwiftUI.Image) -> I, @SwiftUI.ViewBuilder placeholder: @escaping () -> P) where Content == SwiftUI._ConditionalContent<I, P>, I : SwiftUI.View, P : SwiftUI.View
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, transaction: SwiftUI.Transaction = Transaction(), @SwiftUI.ViewBuilder content: @escaping (NamiApple.AsyncImagePhase) -> Content)
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, transaction: SwiftUI.Transaction = Transaction(), @SwiftUI.ViewBuilder content: @escaping (NamiApple.BackportAsyncImagePhase) -> Content)
@_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {
get
}
Expand Down Expand Up @@ -918,11 +918,7 @@ public typealias NamiUUID = Swift.String
get
}
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImagePhase")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImagePhase")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImagePhase")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImagePhase")
public enum AsyncImagePhase {
public enum BackportAsyncImagePhase {
case empty
case success(SwiftUI.Image)
case failure(Swift.Error)
Expand All @@ -933,11 +929,6 @@ public enum AsyncImagePhase {
get
}
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImage")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImage")
public typealias AsyncImage = NamiApple.BackportAsyncImage
public enum NamiPaywallAction : Swift.String, Swift.Codable {
case close_paywall
case restore_purchases
Expand Down
Binary file modified NamiApple.xcframework/ios-arm64/NamiApple.framework/NamiApple
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,8 @@ SWIFT_CLASS("_TtC9NamiApple12NamiCampaign")
@property (nonatomic, copy) NSString * _Nullable value;
@property (nonatomic, copy) NSString * _Nullable external_segment;
@property (nonatomic, copy) NSString * _Nullable name;
- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
@property (nonatomic, readonly) NSUInteger hash;
@end

@class NSURL;
Expand Down Expand Up @@ -1637,6 +1639,8 @@ SWIFT_CLASS("_TtC9NamiApple12NamiCampaign")
@property (nonatomic, copy) NSString * _Nullable value;
@property (nonatomic, copy) NSString * _Nullable external_segment;
@property (nonatomic, copy) NSString * _Nullable name;
- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
@property (nonatomic, readonly) NSUInteger hash;
@end

@class NSURL;
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,10 @@ extension Swift.Array : Swift.Identifiable where Element : Swift.Hashable {
@objc public var value: Swift.String?
@objc public var external_segment: Swift.String?
@objc public var name: Swift.String?
@objc override dynamic public func isEqual(_ object: Any?) -> Swift.Bool
@objc override dynamic public var hash: Swift.Int {
@objc get
}
public typealias ID = Swift.String
@objc deinit
public func encode(to encoder: Swift.Encoder) throws
Expand All @@ -194,14 +198,10 @@ public enum PagingAnimation : Swift.Equatable {
public static var none: NamiApple.PagingAnimation
public static func == (a: NamiApple.PagingAnimation, b: NamiApple.PagingAnimation) -> Swift.Bool
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImage")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImage")
public struct BackportAsyncImage<Content> : SwiftUI.View where Content : SwiftUI.View {
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1) where Content == SwiftUI.Image
public init<I, P>(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, @SwiftUI.ViewBuilder content: @escaping (SwiftUI.Image) -> I, @SwiftUI.ViewBuilder placeholder: @escaping () -> P) where Content == SwiftUI._ConditionalContent<I, P>, I : SwiftUI.View, P : SwiftUI.View
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, transaction: SwiftUI.Transaction = Transaction(), @SwiftUI.ViewBuilder content: @escaping (NamiApple.AsyncImagePhase) -> Content)
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, transaction: SwiftUI.Transaction = Transaction(), @SwiftUI.ViewBuilder content: @escaping (NamiApple.BackportAsyncImagePhase) -> Content)
@_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {
get
}
Expand Down Expand Up @@ -918,11 +918,7 @@ public typealias NamiUUID = Swift.String
get
}
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImagePhase")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImagePhase")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImagePhase")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImagePhase")
public enum AsyncImagePhase {
public enum BackportAsyncImagePhase {
case empty
case success(SwiftUI.Image)
case failure(Swift.Error)
Expand All @@ -933,11 +929,6 @@ public enum AsyncImagePhase {
get
}
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImage")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImage")
public typealias AsyncImage = NamiApple.BackportAsyncImage
public enum NamiPaywallAction : Swift.String, Swift.Codable {
case close_paywall
case restore_purchases
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,10 @@ extension Swift.Array : Swift.Identifiable where Element : Swift.Hashable {
@objc public var value: Swift.String?
@objc public var external_segment: Swift.String?
@objc public var name: Swift.String?
@objc override dynamic public func isEqual(_ object: Any?) -> Swift.Bool
@objc override dynamic public var hash: Swift.Int {
@objc get
}
public typealias ID = Swift.String
@objc deinit
public func encode(to encoder: Swift.Encoder) throws
Expand All @@ -194,14 +198,10 @@ public enum PagingAnimation : Swift.Equatable {
public static var none: NamiApple.PagingAnimation
public static func == (a: NamiApple.PagingAnimation, b: NamiApple.PagingAnimation) -> Swift.Bool
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImage")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImage")
public struct BackportAsyncImage<Content> : SwiftUI.View where Content : SwiftUI.View {
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1) where Content == SwiftUI.Image
public init<I, P>(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, @SwiftUI.ViewBuilder content: @escaping (SwiftUI.Image) -> I, @SwiftUI.ViewBuilder placeholder: @escaping () -> P) where Content == SwiftUI._ConditionalContent<I, P>, I : SwiftUI.View, P : SwiftUI.View
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, transaction: SwiftUI.Transaction = Transaction(), @SwiftUI.ViewBuilder content: @escaping (NamiApple.AsyncImagePhase) -> Content)
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, transaction: SwiftUI.Transaction = Transaction(), @SwiftUI.ViewBuilder content: @escaping (NamiApple.BackportAsyncImagePhase) -> Content)
@_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {
get
}
Expand Down Expand Up @@ -918,11 +918,7 @@ public typealias NamiUUID = Swift.String
get
}
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImagePhase")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImagePhase")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImagePhase")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImagePhase")
public enum AsyncImagePhase {
public enum BackportAsyncImagePhase {
case empty
case success(SwiftUI.Image)
case failure(Swift.Error)
Expand All @@ -933,11 +929,6 @@ public enum AsyncImagePhase {
get
}
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImage")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImage")
public typealias AsyncImage = NamiApple.BackportAsyncImage
public enum NamiPaywallAction : Swift.String, Swift.Codable {
case close_paywall
case restore_purchases
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,10 @@ extension Swift.Array : Swift.Identifiable where Element : Swift.Hashable {
@objc public var value: Swift.String?
@objc public var external_segment: Swift.String?
@objc public var name: Swift.String?
@objc override dynamic public func isEqual(_ object: Any?) -> Swift.Bool
@objc override dynamic public var hash: Swift.Int {
@objc get
}
public typealias ID = Swift.String
@objc deinit
public func encode(to encoder: Swift.Encoder) throws
Expand All @@ -194,14 +198,10 @@ public enum PagingAnimation : Swift.Equatable {
public static var none: NamiApple.PagingAnimation
public static func == (a: NamiApple.PagingAnimation, b: NamiApple.PagingAnimation) -> Swift.Bool
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImage")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImage")
public struct BackportAsyncImage<Content> : SwiftUI.View where Content : SwiftUI.View {
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1) where Content == SwiftUI.Image
public init<I, P>(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, @SwiftUI.ViewBuilder content: @escaping (SwiftUI.Image) -> I, @SwiftUI.ViewBuilder placeholder: @escaping () -> P) where Content == SwiftUI._ConditionalContent<I, P>, I : SwiftUI.View, P : SwiftUI.View
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, transaction: SwiftUI.Transaction = Transaction(), @SwiftUI.ViewBuilder content: @escaping (NamiApple.AsyncImagePhase) -> Content)
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, transaction: SwiftUI.Transaction = Transaction(), @SwiftUI.ViewBuilder content: @escaping (NamiApple.BackportAsyncImagePhase) -> Content)
@_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {
get
}
Expand Down Expand Up @@ -918,11 +918,7 @@ public typealias NamiUUID = Swift.String
get
}
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImagePhase")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImagePhase")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImagePhase")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImagePhase")
public enum AsyncImagePhase {
public enum BackportAsyncImagePhase {
case empty
case success(SwiftUI.Image)
case failure(Swift.Error)
Expand All @@ -933,11 +929,6 @@ public enum AsyncImagePhase {
get
}
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImage")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImage")
public typealias AsyncImage = NamiApple.BackportAsyncImage
public enum NamiPaywallAction : Swift.String, Swift.Codable {
case close_paywall
case restore_purchases
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,10 @@ extension Swift.Array : Swift.Identifiable where Element : Swift.Hashable {
@objc public var value: Swift.String?
@objc public var external_segment: Swift.String?
@objc public var name: Swift.String?
@objc override dynamic public func isEqual(_ object: Any?) -> Swift.Bool
@objc override dynamic public var hash: Swift.Int {
@objc get
}
public typealias ID = Swift.String
@objc deinit
public func encode(to encoder: Swift.Encoder) throws
Expand All @@ -194,14 +198,10 @@ public enum PagingAnimation : Swift.Equatable {
public static var none: NamiApple.PagingAnimation
public static func == (a: NamiApple.PagingAnimation, b: NamiApple.PagingAnimation) -> Swift.Bool
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImage")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImage")
public struct BackportAsyncImage<Content> : SwiftUI.View where Content : SwiftUI.View {
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1) where Content == SwiftUI.Image
public init<I, P>(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, @SwiftUI.ViewBuilder content: @escaping (SwiftUI.Image) -> I, @SwiftUI.ViewBuilder placeholder: @escaping () -> P) where Content == SwiftUI._ConditionalContent<I, P>, I : SwiftUI.View, P : SwiftUI.View
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, transaction: SwiftUI.Transaction = Transaction(), @SwiftUI.ViewBuilder content: @escaping (NamiApple.AsyncImagePhase) -> Content)
public init(url: Foundation.URL?, scale: CoreGraphics.CGFloat = 1, transaction: SwiftUI.Transaction = Transaction(), @SwiftUI.ViewBuilder content: @escaping (NamiApple.BackportAsyncImagePhase) -> Content)
@_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {
get
}
Expand Down Expand Up @@ -918,11 +918,7 @@ public typealias NamiUUID = Swift.String
get
}
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImagePhase")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImagePhase")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImagePhase")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImagePhase")
public enum AsyncImagePhase {
public enum BackportAsyncImagePhase {
case empty
case success(SwiftUI.Image)
case failure(Swift.Error)
Expand All @@ -933,11 +929,6 @@ public enum AsyncImagePhase {
get
}
}
@available(iOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(macOS, deprecated: 12.0, renamed: "SwiftUI.AsyncImage")
@available(tvOS, deprecated: 15.0, renamed: "SwiftUI.AsyncImage")
@available(watchOS, deprecated: 8.0, renamed: "SwiftUI.AsyncImage")
public typealias AsyncImage = NamiApple.BackportAsyncImage
public enum NamiPaywallAction : Swift.String, Swift.Codable {
case close_paywall
case restore_purchases
Expand Down
Binary file not shown.
Loading

0 comments on commit 76109f0

Please sign in to comment.