dexie-cloud-addon 4.0.1-beta.48 → 4.0.1-beta.49

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.
@@ -1,11 +1,20 @@
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
20
  var version: string;
@@ -8,7 +8,7 @@
8
8
  *
9
9
  * ==========================================================================
10
10
  *
11
- * Version 4.0.1-beta.48, Tue Oct 17 2023
11
+ * Version 4.0.1-beta.49, Sat Oct 28 2023
12
12
  *
13
13
  * https://dexie.org
14
14
  *