reactnative-plugin-appice 1.4.9 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ios/AppICESDK/appICE.momd/VersionInfo.plist +0 -0
- package/ios/AppICESDK/appICEBundle.bundle/APPChildViewController.nib +0 -0
- package/ios/AppICESDK/appICEBundle.bundle/HAlfFooterNOTINAppViewController.nib +0 -0
- package/ios/AppICESDK/appICEBundle.bundle/HAlfHeaderINAppViewController.nib +0 -0
- package/ios/AppICESDK/appICEBundle.bundle/HAlfINAppViewController.nib +0 -0
- package/ios/AppICESDK/appICEBundle.bundle/INAppViewController.nib/objects-11.0+.nib +0 -0
- package/ios/AppICESDK/appICEBundle.bundle/INAppViewController.nib/runtime.nib +0 -0
- package/ios/AppICESDK/appICEBundle.bundle/RatingViewController.nib +0 -0
- package/ios/AppICESDK/appICEBundle.bundle/SurveyViewController.nib +0 -0
- package/ios/AppICESDK/include/iosAppiceSDK/AppICEHelper.h +6 -0
- package/ios/AppICESDK/include/iosAppiceSDK/appICE.h +8 -0
- package/ios/AppICESDK/{libiosAppiceSDK_v1.7.46.a → libiosAppiceSDK_v1.7.48.a} +0 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -88,6 +88,12 @@ NS_ASSUME_NONNULL_BEGIN
|
|
|
88
88
|
//-(void)sendClickCallback:(CallBack*)callbackValue;
|
|
89
89
|
//+(void)invokeCallback:(NSDictionary*)userInfo;
|
|
90
90
|
- (void)pushNotificationReceived:(id _Nonnull)notificationData;
|
|
91
|
+
|
|
92
|
+
//inapp
|
|
93
|
+
-(void)resumeInApp;
|
|
94
|
+
-(void)suspendInApp;
|
|
95
|
+
-(void)discardInApp;
|
|
96
|
+
-(void)dismissInApp;
|
|
91
97
|
@end
|
|
92
98
|
|
|
93
99
|
NS_ASSUME_NONNULL_END
|
|
@@ -168,6 +168,14 @@ typedef void (^AppICEInboxCallback)(AppICEInboxMessage *AppICEInboxMessage);
|
|
|
168
168
|
|
|
169
169
|
// will send to server only when baseUrl is not null through PutApp call
|
|
170
170
|
-(void)setInitialise:(NSString*)urlString;
|
|
171
|
+
|
|
172
|
+
//inapp
|
|
173
|
+
-(void)resumeInApp;
|
|
174
|
+
-(void)suspendInApp;
|
|
175
|
+
-(void)discardInApp;
|
|
176
|
+
-(void)dismissInApp;
|
|
177
|
+
|
|
178
|
+
|
|
171
179
|
@end
|
|
172
180
|
|
|
173
181
|
NS_ASSUME_NONNULL_END
|
|
Binary file
|