cordova-plugin-unvired-universal-sdk 1.0.6 → 1.0.8

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.
Files changed (76) hide show
  1. package/package.json +1 -1
  2. package/plugin.xml +1 -13
  3. package/www/kernel.js +38344 -1243
  4. package/aar/README.md +0 -3
  5. package/aar/Unvired_Kernel_Android.aar +0 -0
  6. package/aar/Unvired_Kernel_HTML5_Android.aar +0 -0
  7. package/src/android/build.gradle +0 -35
  8. package/src/android/xml/provider_paths.xml +0 -21
  9. package/src/browser/UnviredPluginProxy.js +0 -2430
  10. package/src/browser/bootstrap.min.js +0 -17
  11. package/src/browser/codemirror.js +0 -9755
  12. package/src/browser/jquery-3.2.1.js +0 -10253
  13. package/src/browser/sql-wasm.wasm +0 -0
  14. package/src/browser/sql.js +0 -203
  15. package/src/browser/src_index_worker_js.unvired-db-worker.js +0 -231
  16. package/src/browser/unvired-db-worker.js +0 -166
  17. package/src/browser/vendors-node_modules_comlink_dist_esm_comlink_mjs.unvired-db-worker.js +0 -22
  18. package/src/ios/AttachmentPlugin.h +0 -21
  19. package/src/ios/AttachmentPlugin.m +0 -180
  20. package/src/ios/DataStructureHelper.h +0 -28
  21. package/src/ios/DataStructureHelper.m +0 -188
  22. package/src/ios/IOSAuthPlugin.h +0 -14
  23. package/src/ios/IOSAuthPlugin.m +0 -13
  24. package/src/ios/IOSDatabasePlugin.h +0 -28
  25. package/src/ios/IOSDatabasePlugin.m +0 -253
  26. package/src/ios/IOSFWSettingsPlugin.h +0 -65
  27. package/src/ios/IOSFWSettingsPlugin.m +0 -363
  28. package/src/ios/IOSLoggerPlugin.h +0 -34
  29. package/src/ios/IOSLoggerPlugin.m +0 -198
  30. package/src/ios/IOSLoginPlugin.h +0 -29
  31. package/src/ios/IOSLoginPlugin.m +0 -480
  32. package/src/ios/IOSProxyPlugin.h +0 -21
  33. package/src/ios/IOSProxyPlugin.m +0 -172
  34. package/src/ios/IOSSyncEnginePlugin.h +0 -54
  35. package/src/ios/IOSSyncEnginePlugin.m +0 -847
  36. package/src/ios/PluginConstants.h +0 -195
  37. package/src/ios/PluginHelper.h +0 -29
  38. package/src/ios/PluginHelper.m +0 -74
  39. package/src/ios/SyncHTML5Response.h +0 -50
  40. package/src/ios/SyncHTML5Response.m +0 -68
  41. package/www/applicationMeta/applicationMetadataParser.ts +0 -285
  42. package/www/applicationMeta/fieldConstants.ts +0 -92
  43. package/www/attachment/attachmentHelper.ts +0 -326
  44. package/www/attachment/attachmentQHelper.ts +0 -158
  45. package/www/attachment/attachmentService.ts +0 -259
  46. package/www/authenticationService.ts +0 -751
  47. package/www/database/appDatabaseManager.ts +0 -54
  48. package/www/database/databaseManager.ts +0 -616
  49. package/www/helper/dbCreateTablesManager.ts +0 -354
  50. package/www/helper/frameworkHelper.ts +0 -127
  51. package/www/helper/frameworkSettingsManager.ts +0 -287
  52. package/www/helper/getMessageTimerManager.ts +0 -81
  53. package/www/helper/httpConnection.ts +0 -1051
  54. package/www/helper/logger.ts +0 -312
  55. package/www/helper/notificationListnerHelper.ts +0 -56
  56. package/www/helper/passcodeGenerator.ts +0 -61
  57. package/www/helper/reconciler.ts +0 -1062
  58. package/www/helper/serverResponseHandler.ts +0 -677
  59. package/www/helper/serviceConstants.ts +0 -254
  60. package/www/helper/settingsHelper.ts +0 -386
  61. package/www/helper/status.ts +0 -83
  62. package/www/helper/syncInputDataManager.ts +0 -205
  63. package/www/helper/unviredAccount.ts +0 -104
  64. package/www/helper/unviredAccountManager.ts +0 -120
  65. package/www/helper/urlService.ts +0 -43
  66. package/www/helper/userSettingsManager.ts +0 -172
  67. package/www/helper/utils.ts +0 -110
  68. package/www/inbox/downloadMessageService.ts +0 -270
  69. package/www/inbox/inboxHelper.ts +0 -132
  70. package/www/inbox/inboxService.ts +0 -223
  71. package/www/outbox/outboxAttachmentManager.ts +0 -152
  72. package/www/outbox/outboxHelper.ts +0 -67
  73. package/www/outbox/outboxService.ts +0 -519
  74. package/www/subtract.ts +0 -5
  75. package/www/sum.ts +0 -4
  76. 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