tinybase 5.2.0 → 5.2.1

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.
@@ -11,8 +11,6 @@ export * from './checkpoints/index.d.cts';
11
11
  export * from './common/index.d.cts';
12
12
  export * from './indexes/index.d.cts';
13
13
  export * from './metrics/index.d.cts';
14
- export * from './persisters/index.d.cts';
15
- export * from './synchronizers/index.d.cts';
16
14
  export * from './queries/index.d.cts';
17
15
  export * from './relationships/index.d.cts';
18
16
  export * from './mergeable-store/index.d.cts';
package/@types/index.d.ts CHANGED
@@ -11,8 +11,6 @@ export * from './checkpoints/index.d.ts';
11
11
  export * from './common/index.d.ts';
12
12
  export * from './indexes/index.d.ts';
13
13
  export * from './metrics/index.d.ts';
14
- export * from './persisters/index.d.ts';
15
- export * from './synchronizers/index.d.ts';
16
14
  export * from './queries/index.d.ts';
17
15
  export * from './relationships/index.d.ts';
18
16
  export * from './mergeable-store/index.d.ts';
@@ -46,7 +46,7 @@ export interface PartyKitPersister extends Persister {
46
46
  * then gets the PartySocket back out again.
47
47
  *
48
48
  * ```js yolo
49
- * import PartySocket from 'partysocket';
49
+ * import {PartySocket} from 'partysocket';
50
50
  * import {createPartyKitPersister} from 'tinybase/persisters/persister-partykit-client';
51
51
  * import {createStore} from 'tinybase';
52
52
  *
@@ -166,7 +166,7 @@ export type PartyKitPersisterConfig = {
166
166
  * browser's IndexedDB storage.
167
167
  *
168
168
  * ```js yolo
169
- * import PartySocket from 'partysocket';
169
+ * import {PartySocket} from 'partysocket';
170
170
  * import {createPartyKitPersister} from 'tinybase/persisters/persister-partykit-client';
171
171
  * import {createStore} from 'tinybase';
172
172
  *
@@ -46,7 +46,7 @@ export interface PartyKitPersister extends Persister {
46
46
  * then gets the PartySocket back out again.
47
47
  *
48
48
  * ```js yolo
49
- * import PartySocket from 'partysocket';
49
+ * import {PartySocket} from 'partysocket';
50
50
  * import {createPartyKitPersister} from 'tinybase/persisters/persister-partykit-client';
51
51
  * import {createStore} from 'tinybase';
52
52
  *
@@ -166,7 +166,7 @@ export type PartyKitPersisterConfig = {
166
166
  * browser's IndexedDB storage.
167
167
  *
168
168
  * ```js yolo
169
- * import PartySocket from 'partysocket';
169
+ * import {PartySocket} from 'partysocket';
170
170
  * import {createPartyKitPersister} from 'tinybase/persisters/persister-partykit-client';
171
171
  * import {createStore} from 'tinybase';
172
172
  *
@@ -50,7 +50,7 @@ export interface PartyKitPersister<Schemas extends OptionalSchemas>
50
50
  * then gets the PartySocket back out again.
51
51
  *
52
52
  * ```js yolo
53
- * import PartySocket from 'partysocket';
53
+ * import {PartySocket} from 'partysocket';
54
54
  * import {createPartyKitPersister} from 'tinybase/persisters/persister-partykit-client';
55
55
  * import {createStore} from 'tinybase';
56
56
  *
@@ -181,7 +181,7 @@ export type PartyKitPersisterConfig = {
181
181
  * browser's IndexedDB storage.
182
182
  *
183
183
  * ```js yolo
184
- * import PartySocket from 'partysocket';
184
+ * import {PartySocket} from 'partysocket';
185
185
  * import {createPartyKitPersister} from 'tinybase/persisters/persister-partykit-client';
186
186
  * import {createStore} from 'tinybase';
187
187
  *
@@ -50,7 +50,7 @@ export interface PartyKitPersister<Schemas extends OptionalSchemas>
50
50
  * then gets the PartySocket back out again.
51
51
  *
52
52
  * ```js yolo
53
- * import PartySocket from 'partysocket';
53
+ * import {PartySocket} from 'partysocket';
54
54
  * import {createPartyKitPersister} from 'tinybase/persisters/persister-partykit-client';
55
55
  * import {createStore} from 'tinybase';
56
56
  *
@@ -181,7 +181,7 @@ export type PartyKitPersisterConfig = {
181
181
  * browser's IndexedDB storage.
182
182
  *
183
183
  * ```js yolo
184
- * import PartySocket from 'partysocket';
184
+ * import {PartySocket} from 'partysocket';
185
185
  * import {createPartyKitPersister} from 'tinybase/persisters/persister-partykit-client';
186
186
  * import {createStore} from 'tinybase';
187
187
  *
@@ -11,8 +11,6 @@ export * from '../checkpoints/with-schemas/index.d.cts';
11
11
  export * from '../common/with-schemas/index.d.cts';
12
12
  export * from '../indexes/with-schemas/index.d.cts';
13
13
  export * from '../metrics/with-schemas/index.d.cts';
14
- export * from '../persisters/with-schemas/index.d.cts';
15
- export * from '../synchronizers/with-schemas/index.d.cts';
16
14
  export * from '../queries/with-schemas/index.d.cts';
17
15
  export * from '../relationships/with-schemas/index.d.cts';
18
16
  export * from '../mergeable-store/with-schemas/index.d.cts';
@@ -11,8 +11,6 @@ export * from '../checkpoints/with-schemas/index.d.ts';
11
11
  export * from '../common/with-schemas/index.d.ts';
12
12
  export * from '../indexes/with-schemas/index.d.ts';
13
13
  export * from '../metrics/with-schemas/index.d.ts';
14
- export * from '../persisters/with-schemas/index.d.ts';
15
- export * from '../synchronizers/with-schemas/index.d.ts';
16
14
  export * from '../queries/with-schemas/index.d.ts';
17
15
  export * from '../relationships/with-schemas/index.d.ts';
18
16
  export * from '../mergeable-store/with-schemas/index.d.ts';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tinybase",
3
- "version": "5.2.0",
3
+ "version": "5.2.1",
4
4
  "author": "jamesgpearce",
5
5
  "repository": "github:tinyplex/tinybase",
6
6
  "license": "MIT",
@@ -24,7 +24,7 @@
24
24
  "@electric-sql/pglite": "^0.2.5",
25
25
  "@libsql/client": "^0.10.0",
26
26
  "@powersync/common": "^1.16.2",
27
- "@sqlite.org/sqlite-wasm": "^3.46.1-build2",
27
+ "@sqlite.org/sqlite-wasm": "^3.46.1-build3",
28
28
  "@vlcn.io/crsqlite-wasm": "^0.16.0",
29
29
  "electric-sql": "^0.12.1",
30
30
  "expo": "^51.0.0",