Skip to content

Commit

Permalink
update XCFramework
Browse files Browse the repository at this point in the history
  • Loading branch information
andresilveirah committed Feb 8, 2023
1 parent 22b9b67 commit 2ff4e40
Show file tree
Hide file tree
Showing 22 changed files with 627 additions and 195 deletions.
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- ConsentViewController (7.0.0)
- ConsentViewController (7.0.1)
- IQKeyboardManagerSwift (6.5.10)
- JSONView (0.0.3)
- Nimble (10.0.0)
Expand Down Expand Up @@ -30,7 +30,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
ConsentViewController: 363bccc40db47ec209ad0dcdb4ae54d87b65abf8
ConsentViewController: 09345a7afba09bc07e4c5f41df8cccd295d37fce
IQKeyboardManagerSwift: 52962c76ab33532f15ad9f3ff4e5715eda5335bb
JSONView: ba9049102fae7ad70de40234d0b7c60986e61e4c
Nimble: 5316ef81a170ce87baf72dd961f22f89a602ff84
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Example/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,9 @@ typedef SWIFT_ENUM(NSInteger, CCPAConsentStatus, open) {
/// <code>RejectedNone</code>, the <code>ConsentedAll</code> indicates the user has taken an action to
/// consent to all vendors and purposes.
CCPAConsentStatusConsentedAll = 3,
CCPAConsentStatusLinkedNoAction = 4,
/// If there’s a new value introduced in the backend and we don’t know how to parse it
CCPAConsentStatusUnknown = 5,
};

@class NSString;
Expand Down Expand Up @@ -695,7 +698,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class) BOOL shouldCallErrorMetrics;)
/// Instructs the message to be displayed in this language. If the translation is missing, the fallback will be English.
/// By default the SDK will use the locale defined by the WebView
@property (nonatomic) enum SPMessageLanguage messageLanguage;
- (nonnull instancetype)initWithAccountId:(NSInteger)accountId propertyId:(NSInteger)propertyId propertyName:(SPPropertyName * _Nonnull)propertyName campaigns:(SPCampaigns * _Nonnull)campaigns delegate:(id <SPDelegate> _Nullable)delegate;
- (nonnull instancetype)initWithAccountId:(NSInteger)accountId propertyId:(NSInteger)propertyId propertyName:(SPPropertyName * _Nonnull)propertyName campaigns:(SPCampaigns * _Nonnull)campaigns language:(enum SPMessageLanguage)language delegate:(id <SPDelegate> _Nullable)delegate;
- (void)gracefullyDegradeOnError:(SPError * _Nonnull)error;
- (void)onError:(SPError * _Nonnull)error;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
Expand Down Expand Up @@ -742,7 +745,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _No
@property (nonatomic) enum SPPrivacyManagerTab privacyManagerTab;
@property (nonatomic) enum SPMessageLanguage messageLanguage;
@property (nonatomic, readonly, strong) SPUserData * _Nonnull userData;
- (nonnull instancetype)initWithAccountId:(NSInteger)accountId propertyId:(NSInteger)propertyId propertyName:(SPPropertyName * _Nonnull)propertyName campaigns:(SPCampaigns * _Nonnull)campaigns delegate:(id <SPDelegate> _Nullable)delegate;
- (nonnull instancetype)initWithAccountId:(NSInteger)accountId propertyId:(NSInteger)propertyId propertyName:(SPPropertyName * _Nonnull)propertyName campaigns:(SPCampaigns * _Nonnull)campaigns language:(enum SPMessageLanguage)language delegate:(id <SPDelegate> _Nullable)delegate;
- (void)loadMessageForAuthId:(NSString * _Nullable)authId publisherData:(NSDictionary<NSString *, NSString *> * _Nullable)publisherData;
- (void)customConsentGDPRWithVendors:(NSArray<NSString *> * _Nonnull)vendors categories:(NSArray<NSString *> * _Nonnull)categories legIntCategories:(NSArray<NSString *> * _Nonnull)legIntCategories handler:(void (^ _Nonnull)(SPGDPRConsent * _Nonnull))handler;
- (void)deleteCustomConsentGDPRWithVendors:(NSArray<NSString *> * _Nonnull)vendors categories:(NSArray<NSString *> * _Nonnull)categories legIntCategories:(NSArray<NSString *> * _Nonnull)legIntCategories handler:(void (^ _Nonnull)(SPGDPRConsent * _Nonnull))handler;
Expand Down Expand Up @@ -1354,6 +1357,9 @@ typedef SWIFT_ENUM(NSInteger, CCPAConsentStatus, open) {
/// <code>RejectedNone</code>, the <code>ConsentedAll</code> indicates the user has taken an action to
/// consent to all vendors and purposes.
CCPAConsentStatusConsentedAll = 3,
CCPAConsentStatusLinkedNoAction = 4,
/// If there’s a new value introduced in the backend and we don’t know how to parse it
CCPAConsentStatusUnknown = 5,
};

@class NSString;
Expand Down Expand Up @@ -1781,7 +1787,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class) BOOL shouldCallErrorMetrics;)
/// Instructs the message to be displayed in this language. If the translation is missing, the fallback will be English.
/// By default the SDK will use the locale defined by the WebView
@property (nonatomic) enum SPMessageLanguage messageLanguage;
- (nonnull instancetype)initWithAccountId:(NSInteger)accountId propertyId:(NSInteger)propertyId propertyName:(SPPropertyName * _Nonnull)propertyName campaigns:(SPCampaigns * _Nonnull)campaigns delegate:(id <SPDelegate> _Nullable)delegate;
- (nonnull instancetype)initWithAccountId:(NSInteger)accountId propertyId:(NSInteger)propertyId propertyName:(SPPropertyName * _Nonnull)propertyName campaigns:(SPCampaigns * _Nonnull)campaigns language:(enum SPMessageLanguage)language delegate:(id <SPDelegate> _Nullable)delegate;
- (void)gracefullyDegradeOnError:(SPError * _Nonnull)error;
- (void)onError:(SPError * _Nonnull)error;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
Expand Down Expand Up @@ -1828,7 +1834,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _No
@property (nonatomic) enum SPPrivacyManagerTab privacyManagerTab;
@property (nonatomic) enum SPMessageLanguage messageLanguage;
@property (nonatomic, readonly, strong) SPUserData * _Nonnull userData;
- (nonnull instancetype)initWithAccountId:(NSInteger)accountId propertyId:(NSInteger)propertyId propertyName:(SPPropertyName * _Nonnull)propertyName campaigns:(SPCampaigns * _Nonnull)campaigns delegate:(id <SPDelegate> _Nullable)delegate;
- (nonnull instancetype)initWithAccountId:(NSInteger)accountId propertyId:(NSInteger)propertyId propertyName:(SPPropertyName * _Nonnull)propertyName campaigns:(SPCampaigns * _Nonnull)campaigns language:(enum SPMessageLanguage)language delegate:(id <SPDelegate> _Nullable)delegate;
- (void)loadMessageForAuthId:(NSString * _Nullable)authId publisherData:(NSDictionary<NSString *, NSString *> * _Nullable)publisherData;
- (void)customConsentGDPRWithVendors:(NSArray<NSString *> * _Nonnull)vendors categories:(NSArray<NSString *> * _Nonnull)categories legIntCategories:(NSArray<NSString *> * _Nonnull)legIntCategories handler:(void (^ _Nonnull)(SPGDPRConsent * _Nonnull))handler;
- (void)deleteCustomConsentGDPRWithVendors:(NSArray<NSString *> * _Nonnull)vendors categories:(NSArray<NSString *> * _Nonnull)categories legIntCategories:(NSArray<NSString *> * _Nonnull)legIntCategories handler:(void (^ _Nonnull)(SPGDPRConsent * _Nonnull))handler;
Expand Down
Binary file not shown.
Loading

0 comments on commit 2ff4e40

Please sign in to comment.