Skip to content

Commit

Permalink
'update XCFrameworks for 7.6.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
andresilveirah committed Mar 1, 2024
1 parent 9146647 commit 4fa1ec3
Show file tree
Hide file tree
Showing 38 changed files with 8,176 additions and 1,551 deletions.
Binary file modified XCFramework/ConsentViewController.xcframework.zip
Binary file not shown.
10 changes: 5 additions & 5 deletions XCFramework/ConsentViewController.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,15 @@
<key>BinaryPath</key>
<string>ConsentViewController.framework/ConsentViewController</string>
<key>LibraryIdentifier</key>
<string>tvos-arm64_x86_64-simulator</string>
<string>tvos-arm64</string>
<key>LibraryPath</key>
<string>ConsentViewController.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>
</dict>
<dict>
<key>BinaryPath</key>
Expand All @@ -56,15 +53,18 @@
<key>BinaryPath</key>
<string>ConsentViewController.framework/ConsentViewController</string>
<key>LibraryIdentifier</key>
<string>tvos-arm64</string>
<string>tvos-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>ConsentViewController.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>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -830,6 +830,17 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _No



SWIFT_CLASS("_TtC21ConsentViewController13SPConsentable")
@interface SPConsentable : NSObject
@property (nonatomic, readonly, copy) NSString * _Nonnull id;
@property (nonatomic, readonly) BOOL consented;
@property (nonatomic, readonly, copy) NSString * _Nonnull description;
- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end




SWIFT_CLASS("_TtC21ConsentViewController9SPGCMData")
Expand Down Expand Up @@ -1101,17 +1112,44 @@ SWIFT_CLASS("_TtC21ConsentViewController14SPPropertyName")



@class ConsentString;
@class Statuses;

SWIFT_CLASS("_TtC21ConsentViewController14SPUSNatConsent")
@interface SPUSNatConsent : NSObject <NSCopying>
/// A collection of accepted/rejected vendors and their ids
@property (nonatomic, readonly, copy) NSArray<SPConsentable *> * _Nonnull vendors;
/// A collection of accepted/rejected categories (aka. purposes) and their ids
@property (nonatomic, readonly, copy) NSArray<SPConsentable *> * _Nonnull categories;
/// Identifies this usnat consent profile
@property (nonatomic, copy) NSString * _Nullable uuid;
/// Whether USNat applies according to user’s location (inferred from IP lookup) and your Vendor List applies scope setting
@property (nonatomic) BOOL applies;
/// The consent strings related to this user profile
@property (nonatomic, readonly, copy) NSArray<ConsentString *> * _Nonnull consentStrings;
/// A series of statuses (<code>Bool?</code>) regarding GPP and user consent
/// seealso:
/// <code>SPUSNatConsent.Statuses</code>
@property (nonatomic, readonly, strong) Statuses * _Nonnull statuses;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end



@interface SPUSNatConsent (SWIFT_EXTENSION(ConsentViewController))
@end


@interface SPUSNatConsent (SWIFT_EXTENSION(ConsentViewController))
@end


@interface SPUSNatConsent (SWIFT_EXTENSION(ConsentViewController))
@property (nonatomic, readonly, copy) NSString * _Nonnull description;
+ (SPUSNatConsent * _Nonnull)empty SWIFT_WARN_UNUSED_RESULT;
- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
- (id _Nonnull)copyWithZone:(struct _NSZone * _Nullable)zone SWIFT_WARN_UNUSED_RESULT;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end


Expand Down
Binary file not shown.
Loading

0 comments on commit 4fa1ec3

Please sign in to comment.