Skip to content

Commit

Permalink
Release 4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Circle Bot committed May 12, 2023
1 parent 4723d4d commit 70e273e
Show file tree
Hide file tree
Showing 26 changed files with 136 additions and 21 deletions.
2 changes: 1 addition & 1 deletion Taplytics.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Taplytics'
s.version = '4.2.1'
s.version = '4.3.0'
s.author = { 'Taplytics' => 'help@taplytics.com' }
s.license = { :type => 'Commercial', :text => 'See https://taplytics.com/terms' }
s.homepage = 'https://taplytics.com'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Taplytics.h
// Taplytics v4.2.1
// Taplytics v4.3.0
//
// Copyright © 2021 Taplytics. All rights reserved.
//
Expand Down Expand Up @@ -324,6 +324,28 @@ typedef void(^TLResetUserBlock)(void);
*/
+ (BOOL)isUserRegisteredForPushNotifications;

/**
If you have the option TaplyticsDisablePushNotificationSW you can use this method
to save push tokens from your didRegisterForRemoteNotificationsWithDeviceToken delegate method,
as the option will disable the swizzling of UNUserNotificationCenter push notification methods
*/

+ (void)registerPushToken:(nullable NSData *)deviceToken;

/**
If you have the option TaplyticsDisablePushNotificationSW you can use this method
to track push notification opens from your didReceive or willPresent delegate methods
*/

+ (void)trackPushOpen:(nullable UNNotification *)notification;

/**
If you have the option TaplyticsDisablePushNotificationSW you can use this method
to track push notification received events from your didReceiveRemoteNotification delegate method
*/

+ (void)trackPushReceived:(nullable NSDictionary *)userInfo;

#pragma mark - Utility Functions

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ extern NSString *const TaplyticsOptionLogging;
extern NSString *const TaplyticsOptionLogLevel;

extern NSString *const TaplyticsDisablePushNotifications;
extern NSString *const TaplyticsDisablePushNotificationSW;

extern NSString *const TaplyticsDisableUITableViewSW;
extern NSString *const TaplyticsDisableUICollectionViewSW;
Expand Down
Binary file modified Taplytics.xcframework/ios-arm64/Taplytics.framework/Info.plist
Binary file not shown.
Binary file modified Taplytics.xcframework/ios-arm64/Taplytics.framework/Taplytics
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Taplytics.h
// Taplytics v4.2.1
// Taplytics v4.3.0
//
// Copyright © 2021 Taplytics. All rights reserved.
//
Expand Down Expand Up @@ -324,6 +324,28 @@ typedef void(^TLResetUserBlock)(void);
*/
+ (BOOL)isUserRegisteredForPushNotifications;

/**
If you have the option TaplyticsDisablePushNotificationSW you can use this method
to save push tokens from your didRegisterForRemoteNotificationsWithDeviceToken delegate method,
as the option will disable the swizzling of UNUserNotificationCenter push notification methods
*/

+ (void)registerPushToken:(nullable NSData *)deviceToken;

/**
If you have the option TaplyticsDisablePushNotificationSW you can use this method
to track push notification opens from your didReceive or willPresent delegate methods
*/

+ (void)trackPushOpen:(nullable UNNotification *)notification;

/**
If you have the option TaplyticsDisablePushNotificationSW you can use this method
to track push notification received events from your didReceiveRemoteNotification delegate method
*/

+ (void)trackPushReceived:(nullable NSDictionary *)userInfo;

#pragma mark - Utility Functions

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ extern NSString *const TaplyticsOptionLogging;
extern NSString *const TaplyticsOptionLogLevel;

extern NSString *const TaplyticsDisablePushNotifications;
extern NSString *const TaplyticsDisablePushNotificationSW;

extern NSString *const TaplyticsDisableUITableViewSW;
extern NSString *const TaplyticsDisableUICollectionViewSW;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.2.1</string>
<string>4.3.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Taplytics.h
// Taplytics v4.2.1
// Taplytics v4.3.0
//
// Copyright © 2021 Taplytics. All rights reserved.
//
Expand Down Expand Up @@ -324,6 +324,28 @@ typedef void(^TLResetUserBlock)(void);
*/
+ (BOOL)isUserRegisteredForPushNotifications;

/**
If you have the option TaplyticsDisablePushNotificationSW you can use this method
to save push tokens from your didRegisterForRemoteNotificationsWithDeviceToken delegate method,
as the option will disable the swizzling of UNUserNotificationCenter push notification methods
*/

+ (void)registerPushToken:(nullable NSData *)deviceToken;

/**
If you have the option TaplyticsDisablePushNotificationSW you can use this method
to track push notification opens from your didReceive or willPresent delegate methods
*/

+ (void)trackPushOpen:(nullable UNNotification *)notification;

/**
If you have the option TaplyticsDisablePushNotificationSW you can use this method
to track push notification received events from your didReceiveRemoteNotification delegate method
*/

+ (void)trackPushReceived:(nullable NSDictionary *)userInfo;

#pragma mark - Utility Functions

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ extern NSString *const TaplyticsOptionLogging;
extern NSString *const TaplyticsOptionLogLevel;

extern NSString *const TaplyticsDisablePushNotifications;
extern NSString *const TaplyticsDisablePushNotificationSW;

extern NSString *const TaplyticsDisableUITableViewSW;
extern NSString *const TaplyticsDisableUICollectionViewSW;
Expand Down
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 @@ -6,19 +6,19 @@
<dict>
<key>Headers/Taplytics.h</key>
<data>
W+jazg2hg5JyFbCwD68ZxZ4f7ZA=
uIb+JQ4Xl6vV3suMMPjXNwZ2CNA=
</data>
<key>Headers/TaplyticsOptions.h</key>
<data>
mw45uU8WZuHm4dTCFHfnq0GHso0=
J7c+f6btNkJH4OFBEQtnAofV4y8=
</data>
<key>Headers/TaplyticsVar.h</key>
<data>
BFUZ2bDJivnCG9ZjmaoQew4mSh4=
</data>
<key>Info.plist</key>
<data>
Sq6HXoaWrYSKSIDRSuOMpR/aino=
t0rOti4Mu+c4aPzzZkOBY3Q8QwI=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand All @@ -31,22 +31,22 @@
<dict>
<key>hash</key>
<data>
W+jazg2hg5JyFbCwD68ZxZ4f7ZA=
uIb+JQ4Xl6vV3suMMPjXNwZ2CNA=
</data>
<key>hash2</key>
<data>
gRuUwMsg0l7lXF82mhQXUcyzJG38gvHxcBJt5Y3HtBs=
QbHAKUhOL76scGn3cnVQuiLDC/W0JpP9Wt3wvse6ByQ=
</data>
</dict>
<key>Headers/TaplyticsOptions.h</key>
<dict>
<key>hash</key>
<data>
mw45uU8WZuHm4dTCFHfnq0GHso0=
J7c+f6btNkJH4OFBEQtnAofV4y8=
</data>
<key>hash2</key>
<data>
x2z8hCSjs5rAQ1sk/+1v0j+CFnr/BldvJdyTX6VwRu4=
j0darUjq1jbsT0MVz9soefc6hj1sNhzR00nuRzMC4tg=
</data>
</dict>
<key>Headers/TaplyticsVar.h</key>
Expand Down
2 changes: 1 addition & 1 deletion Taplytics_tvOS.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Taplytics_tvOS'
s.version = '4.2.1'
s.version = '4.3.0'
s.author = { 'Taplytics' => 'help@taplytics.com' }
s.license = { :type => 'Commercial', :text => 'See https://taplytics.com/terms' }
s.homepage = 'https://taplytics.com'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Taplytics.h
// Taplytics v4.2.1
// Taplytics v4.3.0
//
// Copyright © 2021 Taplytics. All rights reserved.
//
Expand Down Expand Up @@ -324,6 +324,28 @@ typedef void(^TLResetUserBlock)(void);
*/
+ (BOOL)isUserRegisteredForPushNotifications;

/**
If you have the option TaplyticsDisablePushNotificationSW you can use this method
to save push tokens from your didRegisterForRemoteNotificationsWithDeviceToken delegate method,
as the option will disable the swizzling of UNUserNotificationCenter push notification methods
*/

+ (void)registerPushToken:(nullable NSData *)deviceToken;

/**
If you have the option TaplyticsDisablePushNotificationSW you can use this method
to track push notification opens from your didReceive or willPresent delegate methods
*/

+ (void)trackPushOpen:(nullable UNNotification *)notification;

/**
If you have the option TaplyticsDisablePushNotificationSW you can use this method
to track push notification received events from your didReceiveRemoteNotification delegate method
*/

+ (void)trackPushReceived:(nullable NSDictionary *)userInfo;

#pragma mark - Utility Functions

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ extern NSString *const TaplyticsOptionLogging;
extern NSString *const TaplyticsOptionLogLevel;

extern NSString *const TaplyticsDisablePushNotifications;
extern NSString *const TaplyticsDisablePushNotificationSW;

extern NSString *const TaplyticsDisableUITableViewSW;
extern NSString *const TaplyticsDisableUICollectionViewSW;
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Taplytics.h
// Taplytics v4.2.1
// Taplytics v4.3.0
//
// Copyright © 2021 Taplytics. All rights reserved.
//
Expand Down Expand Up @@ -324,6 +324,28 @@ typedef void(^TLResetUserBlock)(void);
*/
+ (BOOL)isUserRegisteredForPushNotifications;

/**
If you have the option TaplyticsDisablePushNotificationSW you can use this method
to save push tokens from your didRegisterForRemoteNotificationsWithDeviceToken delegate method,
as the option will disable the swizzling of UNUserNotificationCenter push notification methods
*/

+ (void)registerPushToken:(nullable NSData *)deviceToken;

/**
If you have the option TaplyticsDisablePushNotificationSW you can use this method
to track push notification opens from your didReceive or willPresent delegate methods
*/

+ (void)trackPushOpen:(nullable UNNotification *)notification;

/**
If you have the option TaplyticsDisablePushNotificationSW you can use this method
to track push notification received events from your didReceiveRemoteNotification delegate method
*/

+ (void)trackPushReceived:(nullable NSDictionary *)userInfo;

#pragma mark - Utility Functions

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ extern NSString *const TaplyticsOptionLogging;
extern NSString *const TaplyticsOptionLogLevel;

extern NSString *const TaplyticsDisablePushNotifications;
extern NSString *const TaplyticsDisablePushNotificationSW;

extern NSString *const TaplyticsDisableUITableViewSW;
extern NSString *const TaplyticsDisableUICollectionViewSW;
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<dict>
<key>Headers/Taplytics.h</key>
<data>
W+jazg2hg5JyFbCwD68ZxZ4f7ZA=
uIb+JQ4Xl6vV3suMMPjXNwZ2CNA=
</data>
<key>Headers/TaplyticsOptions.h</key>
<data>
mw45uU8WZuHm4dTCFHfnq0GHso0=
J7c+f6btNkJH4OFBEQtnAofV4y8=
</data>
<key>Headers/TaplyticsVar.h</key>
<data>
Expand All @@ -35,22 +35,22 @@
<dict>
<key>hash</key>
<data>
W+jazg2hg5JyFbCwD68ZxZ4f7ZA=
uIb+JQ4Xl6vV3suMMPjXNwZ2CNA=
</data>
<key>hash2</key>
<data>
gRuUwMsg0l7lXF82mhQXUcyzJG38gvHxcBJt5Y3HtBs=
QbHAKUhOL76scGn3cnVQuiLDC/W0JpP9Wt3wvse6ByQ=
</data>
</dict>
<key>Headers/TaplyticsOptions.h</key>
<dict>
<key>hash</key>
<data>
mw45uU8WZuHm4dTCFHfnq0GHso0=
J7c+f6btNkJH4OFBEQtnAofV4y8=
</data>
<key>hash2</key>
<data>
x2z8hCSjs5rAQ1sk/+1v0j+CFnr/BldvJdyTX6VwRu4=
j0darUjq1jbsT0MVz9soefc6hj1sNhzR00nuRzMC4tg=
</data>
</dict>
<key>Headers/TaplyticsVar.h</key>
Expand Down

0 comments on commit 70e273e

Please sign in to comment.