@unvired/react-native-unvired-sdk 0.0.12 → 0.0.14

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 (58) hide show
  1. package/BuildNo.txt +1 -1
  2. package/README.md +884 -255
  3. package/dist/database/Database.d.ts +71 -0
  4. package/dist/database/Database.js +156 -0
  5. package/dist/database/DatabaseManager.d.ts +12 -0
  6. package/dist/database/DatabaseManager.js +18 -0
  7. package/dist/database/index.d.ts +6 -0
  8. package/dist/database/index.js +5 -0
  9. package/dist/database/services/DatabaseNative.d.ts +8 -0
  10. package/dist/database/services/DatabaseNative.js +149 -0
  11. package/dist/database/services/DatabaseWeb.d.ts +13 -0
  12. package/dist/database/services/DatabaseWeb.js +138 -0
  13. package/dist/database/types.d.ts +94 -0
  14. package/dist/database/types.js +4 -0
  15. package/dist/device-info/BaseDeviceInfo.d.ts +39 -0
  16. package/dist/device-info/BaseDeviceInfo.js +116 -0
  17. package/dist/device-info/DeviceInfo.d.ts +9 -0
  18. package/dist/device-info/DeviceInfo.js +11 -0
  19. package/dist/device-info/DeviceInfo.types.d.ts +11 -0
  20. package/dist/device-info/DeviceInfo.types.js +3 -0
  21. package/dist/device-info/index.d.ts +3 -0
  22. package/dist/device-info/index.js +3 -0
  23. package/dist/file-system/BaseFileSystem.d.ts +61 -0
  24. package/dist/file-system/BaseFileSystem.js +164 -0
  25. package/dist/file-system/FileSystem.d.ts +9 -0
  26. package/dist/file-system/FileSystem.js +11 -0
  27. package/dist/file-system/FileSystem.types.d.ts +11 -0
  28. package/dist/file-system/FileSystem.types.js +3 -0
  29. package/dist/file-system/index.d.ts +3 -0
  30. package/dist/file-system/index.js +3 -0
  31. package/dist/file-system/services/FileSystemNative.d.ts +17 -0
  32. package/dist/file-system/services/FileSystemNative.js +73 -0
  33. package/dist/file-system/services/FileSystemWeb.d.ts +16 -0
  34. package/dist/file-system/services/FileSystemWeb.js +41 -0
  35. package/dist/local-storage/index.d.ts +1 -0
  36. package/dist/local-storage/index.js +2 -0
  37. package/dist/local-storage/localStorage.d.ts +49 -0
  38. package/dist/local-storage/localStorage.js +128 -0
  39. package/dist/local-storage/services/StorageNative.d.ts +10 -0
  40. package/dist/local-storage/services/StorageNative.js +27 -0
  41. package/dist/local-storage/services/StorageWeb.d.ts +10 -0
  42. package/dist/local-storage/services/StorageWeb.js +26 -0
  43. package/dist/logger/{Logger.js → index.js} +1 -4
  44. package/dist/main.d.ts +11 -0
  45. package/dist/main.js +24 -0
  46. package/dist/push-notification/BasePushNotification.d.ts +52 -0
  47. package/dist/push-notification/BasePushNotification.js +180 -0
  48. package/dist/push-notification/PushNotification.d.ts +9 -0
  49. package/dist/push-notification/PushNotification.js +11 -0
  50. package/dist/push-notification/PushNotification.types.d.ts +12 -0
  51. package/dist/push-notification/PushNotification.types.js +3 -0
  52. package/dist/push-notification/index.d.ts +3 -0
  53. package/dist/push-notification/index.js +3 -0
  54. package/example/USAGE_EXAMPLE.ts +167 -0
  55. package/package.json +17 -6
  56. package/dist/index.d.ts +0 -3
  57. package/dist/index.js +0 -4
  58. /package/dist/logger/{Logger.d.ts → index.d.ts} +0 -0
package/BuildNo.txt CHANGED
@@ -1 +1 @@
1
- R-0.000.0012
1
+ R-0.000.0014