dexie-cloud-addon 4.0.1-beta.48 → 4.0.1-beta.50
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 +6 -4
- 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/dexie-cloud-client.d.ts +11 -2
- package/dist/modern/service-worker.js +5 -3
- 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/umd/dexie-cloud-addon.js +6 -3
- package/dist/umd/dexie-cloud-addon.js.map +1 -1
- package/dist/umd/dexie-cloud-client.d.ts +11 -2
- package/dist/umd/service-worker.js +5 -3
- package/dist/umd/service-worker.js.map +1 -1
- package/package.json +2 -1
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
import Dexie from 'dexie';
|
|
2
2
|
import './extend-dexie-interface';
|
|
3
|
+
import { DexieCloudSyncOptions } from './DexieCloudSyncOptions';
|
|
4
|
+
import { SyncState } from './types/SyncState';
|
|
5
|
+
import { DXCWebSocketStatus } from './DXCWebSocketStatus';
|
|
3
6
|
import { UserLogin } from './db/entities/UserLogin';
|
|
4
7
|
export { DexieCloudTable } from './DexieCloudTable';
|
|
5
8
|
export * from './getTiedRealmId';
|
|
6
9
|
export { DBRealm, DBRealmMember, DBRealmRole, DBSyncedObject, DBPermissionSet, } from 'dexie-cloud-common';
|
|
10
|
+
export { resolveText } from './helpers/resolveText';
|
|
7
11
|
export { Invite } from './Invite';
|
|
8
|
-
export { UserLogin };
|
|
12
|
+
export type { UserLogin, DXCWebSocketStatus, SyncState };
|
|
13
|
+
export type { DexieCloudSyncOptions };
|
|
14
|
+
export type { DexieCloudOptions, PeriodicSyncOptions } from './DexieCloudOptions';
|
|
15
|
+
export * from './types/DXCAlert';
|
|
16
|
+
export * from './types/DXCInputField';
|
|
17
|
+
export * from './types/DXCUserInteraction';
|
|
9
18
|
export declare function dexieCloud(dexie: Dexie): void;
|
|
10
19
|
export declare namespace dexieCloud {
|
|
11
|
-
var version:
|
|
20
|
+
var version: any;
|
|
12
21
|
}
|
|
13
22
|
export default dexieCloud;
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
*
|
|
9
9
|
* ==========================================================================
|
|
10
10
|
*
|
|
11
|
-
* Version 4.0.1-beta.
|
|
11
|
+
* Version 4.0.1-beta.50, Sat Oct 28 2023
|
|
12
12
|
*
|
|
13
13
|
* https://dexie.org
|
|
14
14
|
*
|
|
@@ -6209,7 +6209,8 @@ function dexieCloud(dexie) {
|
|
|
6209
6209
|
});
|
|
6210
6210
|
const syncComplete = new Subject();
|
|
6211
6211
|
dexie.cloud = {
|
|
6212
|
-
|
|
6212
|
+
// @ts-ignore
|
|
6213
|
+
version: "4.0.1-beta.50",
|
|
6213
6214
|
options: Object.assign({}, DEFAULT_OPTIONS),
|
|
6214
6215
|
schema: null,
|
|
6215
6216
|
get currentUserId() {
|
|
@@ -6485,7 +6486,8 @@ function dexieCloud(dexie) {
|
|
|
6485
6486
|
});
|
|
6486
6487
|
}
|
|
6487
6488
|
}
|
|
6488
|
-
|
|
6489
|
+
// @ts-ignore
|
|
6490
|
+
dexieCloud.version = "4.0.1-beta.50";
|
|
6489
6491
|
Dexie.Cloud = dexieCloud;
|
|
6490
6492
|
|
|
6491
6493
|
// In case the SW lives for a while, let it reuse already opened connections:
|