dexie-cloud-addon 1.0.0-beta.6 → 4.0.0-beta.12
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/dist/modern/dexie-cloud-addon.js +3929 -3278
- package/dist/modern/dexie-cloud-addon.js.map +1 -1
- package/dist/modern/dexie-cloud-addon.min.js +1 -1
- package/dist/modern/dexie-cloud-addon.min.js.map +1 -1
- package/dist/modern/service-worker.js +4887 -4216
- package/dist/modern/service-worker.js.map +1 -1
- package/dist/modern/service-worker.min.js +1 -1
- package/dist/modern/service-worker.min.js.map +1 -1
- package/dist/module-es5/dexie-cloud-addon.js +4725 -3786
- package/dist/module-es5/dexie-cloud-addon.js.map +1 -1
- package/dist/module-es5/dexie-cloud-addon.min.js +1 -1
- package/dist/module-es5/dexie-cloud-addon.min.js.map +1 -1
- package/dist/types/DXCWebSocketStatus.d.ts +1 -0
- package/dist/types/DexieCloudAPI.d.ts +49 -0
- package/dist/types/DexieCloudOptions.d.ts +1 -0
- package/dist/types/DexieCloudSyncOptions.d.ts +4 -0
- package/dist/types/DexieCloudTable.d.ts +2 -0
- package/dist/types/Invite.d.ts +6 -0
- package/dist/types/PermissionChecker.d.ts +15 -0
- package/dist/types/TSON.d.ts +1 -1
- package/dist/types/WSObservable.d.ts +34 -4
- package/dist/types/associate.d.ts +1 -0
- package/dist/types/authentication/setCurrentUser.d.ts +2 -2
- package/dist/types/computeSyncState.d.ts +4 -0
- package/dist/types/createSharedValueObservable.d.ts +3 -0
- package/dist/types/currentUserEmitter.d.ts +3 -0
- package/dist/types/db/DexieCloudDB.d.ts +13 -4
- package/dist/types/db/entities/EntityCommon.d.ts +1 -0
- package/dist/types/db/entities/PersistedSyncState.d.ts +1 -0
- package/dist/types/dexie-cloud-client.d.ts +3 -1
- package/dist/types/extend-dexie-interface.d.ts +11 -47
- package/dist/types/getInternalAccessControlObservable.d.ts +12 -0
- package/dist/types/getInvitesObservable.d.ts +25 -0
- package/dist/types/getPermissionsLookupObservable.d.ts +16 -0
- package/dist/types/getTiedRealmId.d.ts +2 -0
- package/dist/types/helpers/computeRealmSetHash.d.ts +2 -0
- package/dist/types/helpers/flatten.d.ts +1 -0
- package/dist/types/mapValueObservable.d.ts +5 -0
- package/dist/types/mergePermissions.d.ts +2 -0
- package/dist/types/middleware-helpers/idGenerationHelpers.d.ts +18 -0
- package/dist/types/middlewares/createIdGenerationMiddleware.d.ts +1 -6
- package/dist/types/permissions.d.ts +9 -0
- package/dist/types/sync/SyncRequiredError.d.ts +3 -0
- package/dist/types/sync/applyServerChanges.d.ts +3 -0
- package/dist/types/sync/connectWebSocket.d.ts +1 -1
- package/dist/types/sync/encodeIdsForServer.d.ts +4 -0
- package/dist/types/sync/getLatestRevisionsPerTable.d.ts +6 -0
- package/dist/types/sync/getTablesToSyncify.d.ts +1 -1
- package/dist/types/sync/listClientChanges.d.ts +3 -3
- package/dist/types/sync/listSyncifiedChanges.d.ts +4 -4
- package/dist/types/sync/messageConsumerIsReady.d.ts +2 -0
- package/dist/types/sync/messagesFromServerQueue.d.ts +8 -0
- package/dist/types/sync/registerSyncEvent.d.ts +1 -1
- package/dist/types/sync/sync.d.ts +3 -2
- package/dist/types/sync/syncIfPossible.d.ts +1 -1
- package/dist/types/sync/syncWithServer.d.ts +2 -1
- package/dist/types/sync/triggerSync.d.ts +1 -1
- package/dist/types/sync/updateBaseRevs.d.ts +5 -0
- package/dist/types/types/NewIdOptions.d.ts +3 -0
- package/dist/types/types/SyncState.d.ts +2 -0
- package/dist/types/userIsActive.d.ts +1 -0
- package/dist/umd/dexie-cloud-addon.js +4721 -3780
- package/dist/umd/dexie-cloud-addon.js.map +1 -1
- package/dist/umd/dexie-cloud-addon.min.js +1 -1
- package/dist/umd/dexie-cloud-addon.min.js.map +1 -1
- package/dist/umd/service-worker.js +4882 -4211
- package/dist/umd/service-worker.js.map +1 -1
- package/dist/umd/service-worker.min.js +1 -1
- package/dist/umd/service-worker.min.js.map +1 -1
- package/dist/umd-modern/dexie-cloud-addon.js +3922 -3269
- package/dist/umd-modern/dexie-cloud-addon.js.map +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dexie-cloud-addon",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0-beta.12",
|
|
4
4
|
"description": "Dexie addon that syncs with to Dexie Cloud",
|
|
5
5
|
"main": "dist/umd/dexie-cloud-addon.js",
|
|
6
6
|
"module": "dist/module-es5/dexie-cloud-addon.js",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
],
|
|
54
54
|
"src": [
|
|
55
55
|
"# Build the entire typescript source into modern JS",
|
|
56
|
-
"tsc -p src -t
|
|
56
|
+
"tsc -p src -t es2020 --outDir tools/tmp/modern [--watch 'Watching for file changes.']"
|
|
57
57
|
],
|
|
58
58
|
"dexie-cloud": [
|
|
59
59
|
"# Create a modern bundle in dist/modern",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"@rollup/plugin-commonjs": "^18.0.0",
|
|
88
88
|
"@rollup/plugin-node-resolve": "^11.2.1",
|
|
89
89
|
"@types/node": "*",
|
|
90
|
-
"dexie-cloud-common": "^1.0.
|
|
90
|
+
"dexie-cloud-common": "^1.0.17",
|
|
91
91
|
"dreambase-library": "^1.0.13",
|
|
92
92
|
"just-build": "*",
|
|
93
93
|
"karma": "*",
|
|
@@ -106,9 +106,9 @@
|
|
|
106
106
|
"universal-imports": "^1.0.3"
|
|
107
107
|
},
|
|
108
108
|
"dependencies": {
|
|
109
|
-
"rxjs": "^6.6.7"
|
|
110
109
|
},
|
|
111
110
|
"peerDependencies": {
|
|
112
|
-
"
|
|
111
|
+
"rxjs": "^7.x",
|
|
112
|
+
"dexie": "^4.0.0-alpha.1"
|
|
113
113
|
}
|
|
114
114
|
}
|