cordova-plugin-unvired-universal-sdk 1.0.6 → 1.0.9
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/package.json +1 -1
- package/plugin.xml +2 -14
- package/www/kernel.js +38344 -1243
- package/aar/README.md +0 -3
- package/aar/Unvired_Kernel_Android.aar +0 -0
- package/aar/Unvired_Kernel_HTML5_Android.aar +0 -0
- package/src/android/build.gradle +0 -35
- package/src/android/xml/provider_paths.xml +0 -21
- package/src/browser/UnviredPluginProxy.js +0 -2430
- package/src/browser/bootstrap.min.js +0 -17
- package/src/browser/codemirror.js +0 -9755
- package/src/browser/jquery-3.2.1.js +0 -10253
- package/src/browser/sql-wasm.wasm +0 -0
- package/src/browser/sql.js +0 -203
- package/src/browser/src_index_worker_js.unvired-db-worker.js +0 -231
- package/src/browser/unvired-db-worker.js +0 -166
- package/src/browser/vendors-node_modules_comlink_dist_esm_comlink_mjs.unvired-db-worker.js +0 -22
- package/src/ios/AttachmentPlugin.h +0 -21
- package/src/ios/AttachmentPlugin.m +0 -180
- package/src/ios/DataStructureHelper.h +0 -28
- package/src/ios/DataStructureHelper.m +0 -188
- package/src/ios/IOSAuthPlugin.h +0 -14
- package/src/ios/IOSAuthPlugin.m +0 -13
- package/src/ios/IOSDatabasePlugin.h +0 -28
- package/src/ios/IOSDatabasePlugin.m +0 -253
- package/src/ios/IOSFWSettingsPlugin.h +0 -65
- package/src/ios/IOSFWSettingsPlugin.m +0 -363
- package/src/ios/IOSLoggerPlugin.h +0 -34
- package/src/ios/IOSLoggerPlugin.m +0 -198
- package/src/ios/IOSLoginPlugin.h +0 -29
- package/src/ios/IOSLoginPlugin.m +0 -480
- package/src/ios/IOSProxyPlugin.h +0 -21
- package/src/ios/IOSProxyPlugin.m +0 -172
- package/src/ios/IOSSyncEnginePlugin.h +0 -54
- package/src/ios/IOSSyncEnginePlugin.m +0 -847
- package/src/ios/PluginConstants.h +0 -195
- package/src/ios/PluginHelper.h +0 -29
- package/src/ios/PluginHelper.m +0 -74
- package/src/ios/SyncHTML5Response.h +0 -50
- package/src/ios/SyncHTML5Response.m +0 -68
- package/www/applicationMeta/applicationMetadataParser.ts +0 -285
- package/www/applicationMeta/fieldConstants.ts +0 -92
- package/www/attachment/attachmentHelper.ts +0 -326
- package/www/attachment/attachmentQHelper.ts +0 -158
- package/www/attachment/attachmentService.ts +0 -259
- package/www/authenticationService.ts +0 -751
- package/www/database/appDatabaseManager.ts +0 -54
- package/www/database/databaseManager.ts +0 -616
- package/www/helper/dbCreateTablesManager.ts +0 -354
- package/www/helper/frameworkHelper.ts +0 -127
- package/www/helper/frameworkSettingsManager.ts +0 -287
- package/www/helper/getMessageTimerManager.ts +0 -81
- package/www/helper/httpConnection.ts +0 -1051
- package/www/helper/logger.ts +0 -312
- package/www/helper/notificationListnerHelper.ts +0 -56
- package/www/helper/passcodeGenerator.ts +0 -61
- package/www/helper/reconciler.ts +0 -1062
- package/www/helper/serverResponseHandler.ts +0 -677
- package/www/helper/serviceConstants.ts +0 -254
- package/www/helper/settingsHelper.ts +0 -386
- package/www/helper/status.ts +0 -83
- package/www/helper/syncInputDataManager.ts +0 -205
- package/www/helper/unviredAccount.ts +0 -104
- package/www/helper/unviredAccountManager.ts +0 -120
- package/www/helper/urlService.ts +0 -43
- package/www/helper/userSettingsManager.ts +0 -172
- package/www/helper/utils.ts +0 -110
- package/www/inbox/downloadMessageService.ts +0 -270
- package/www/inbox/inboxHelper.ts +0 -132
- package/www/inbox/inboxService.ts +0 -223
- package/www/outbox/outboxAttachmentManager.ts +0 -152
- package/www/outbox/outboxHelper.ts +0 -67
- package/www/outbox/outboxService.ts +0 -519
- package/www/subtract.ts +0 -5
- package/www/sum.ts +0 -4
- package/www/syncEngine.ts +0 -687
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// IOSSyncEnginePlugin.h
|
|
3
|
-
// HTML5_KERNEL_iOS
|
|
4
|
-
//
|
|
5
|
-
// Created by Srinidhi Anand Rao on 03/10/12.
|
|
6
|
-
// Copyright (c) 2012 Unvired Software India Pvt. Ltd. All rights reserved.
|
|
7
|
-
//
|
|
8
|
-
|
|
9
|
-
#import <UIKit/UIKit.h>
|
|
10
|
-
#import <Cordova/CDV.h>
|
|
11
|
-
|
|
12
|
-
@interface IOSSyncEnginePlugin : CDVPlugin
|
|
13
|
-
|
|
14
|
-
#pragma mark - S Y N C
|
|
15
|
-
|
|
16
|
-
- (void)submitInSync:(CDVInvokedUrlCommand *)command;
|
|
17
|
-
|
|
18
|
-
#pragma mark - A S Y N C
|
|
19
|
-
|
|
20
|
-
- (void)submitInASync:(CDVInvokedUrlCommand *)command;
|
|
21
|
-
|
|
22
|
-
#pragma mark - O T H E R S
|
|
23
|
-
|
|
24
|
-
- (void)getMessages:(CDVInvokedUrlCommand *)command;
|
|
25
|
-
|
|
26
|
-
- (void)registerNotifListener:(CDVInvokedUrlCommand *)command;
|
|
27
|
-
|
|
28
|
-
- (void)unRegisterNotifListener:(CDVInvokedUrlCommand *)command;
|
|
29
|
-
|
|
30
|
-
- (void)isInOutBox:(CDVInvokedUrlCommand *)command;
|
|
31
|
-
|
|
32
|
-
- (void)outBoxItemCount:(CDVInvokedUrlCommand *)command;
|
|
33
|
-
|
|
34
|
-
- (void)isInSentItem:(CDVInvokedUrlCommand *)command;
|
|
35
|
-
|
|
36
|
-
- (void)sentItemCount:(CDVInvokedUrlCommand *)command;
|
|
37
|
-
|
|
38
|
-
- (void)inBoxItemCount:(CDVInvokedUrlCommand *)command;
|
|
39
|
-
|
|
40
|
-
- (void)getSynchronizationState:(CDVInvokedUrlCommand *)command;
|
|
41
|
-
|
|
42
|
-
- (void)startInboxHandler:(CDVInvokedUrlCommand *)command;
|
|
43
|
-
|
|
44
|
-
- (void)startDataSender:(CDVInvokedUrlCommand *)command;
|
|
45
|
-
|
|
46
|
-
- (void)lockDataSender:(CDVInvokedUrlCommand *)command;
|
|
47
|
-
|
|
48
|
-
- (void)unlockDataSender:(CDVInvokedUrlCommand *)command;
|
|
49
|
-
|
|
50
|
-
- (void)removeOutObjectBasedOnLid:(CDVInvokedUrlCommand *)command;
|
|
51
|
-
|
|
52
|
-
- (void)refreshJWTToken:(CDVInvokedUrlCommand *)command;
|
|
53
|
-
|
|
54
|
-
@end
|