tinybase 6.2.0-beta.1 → 6.2.0-beta.2
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/@types/common/index.d.ts +124 -0
- package/@types/common/with-schemas/index.d.ts +124 -0
- package/@types/index.d.ts +1 -1
- package/@types/mergeable-store/index.d.ts +2 -14
- package/@types/mergeable-store/with-schemas/index.d.ts +2 -14
- package/@types/omni/index.d.ts +54 -0
- package/@types/omni/with-schemas/index.d.ts +54 -0
- package/@types/persisters/index.d.ts +2 -2
- package/@types/persisters/with-schemas/index.d.ts +2 -2
- package/@types/relationships/index.d.ts +2 -2
- package/@types/relationships/with-schemas/index.d.ts +2 -2
- package/@types/store/index.d.ts +1 -1
- package/@types/store/with-schemas/index.d.ts +1 -1
- package/@types/synchronizers/synchronizer-ws-server-durable-object/index.d.ts +1 -1
- package/@types/synchronizers/synchronizer-ws-server-durable-object/with-schemas/index.d.ts +1 -1
- package/@types/with-schemas/index.d.ts +1 -1
- package/common/index.js +108 -4
- package/common/with-schemas/index.js +108 -4
- package/index.js +107 -86
- package/mergeable-store/index.js +73 -54
- package/mergeable-store/with-schemas/index.js +73 -54
- package/min/common/index.js +1 -1
- package/min/common/index.js.gz +0 -0
- package/min/common/with-schemas/index.js +1 -1
- package/min/common/with-schemas/index.js.gz +0 -0
- package/min/index.js +1 -1
- package/min/index.js.gz +0 -0
- package/min/mergeable-store/index.js +1 -1
- package/min/mergeable-store/index.js.gz +0 -0
- package/min/mergeable-store/with-schemas/index.js +1 -1
- package/min/mergeable-store/with-schemas/index.js.gz +0 -0
- package/min/omni/index.js +1 -0
- package/min/omni/index.js.gz +0 -0
- package/min/omni/with-schemas/index.js +1 -0
- package/min/omni/with-schemas/index.js.gz +0 -0
- package/min/with-schemas/index.js +1 -1
- package/min/with-schemas/index.js.gz +0 -0
- package/omni/index.js +8413 -0
- package/omni/with-schemas/index.js +8413 -0
- package/package.json +432 -396
- package/readme.md +2 -2
- package/releases.md +2 -2
- package/synchronizers/index.js +0 -1
- package/synchronizers/synchronizer-broadcast-channel/index.js +0 -1
- package/synchronizers/synchronizer-broadcast-channel/with-schemas/index.js +0 -1
- package/synchronizers/synchronizer-local/index.js +0 -1
- package/synchronizers/synchronizer-local/with-schemas/index.js +0 -1
- package/synchronizers/synchronizer-ws-client/index.js +0 -1
- package/synchronizers/synchronizer-ws-client/with-schemas/index.js +0 -1
- package/synchronizers/synchronizer-ws-server/index.js +0 -1
- package/synchronizers/synchronizer-ws-server/with-schemas/index.js +0 -1
- package/synchronizers/synchronizer-ws-server-durable-object/index.js +0 -1
- package/synchronizers/synchronizer-ws-server-durable-object/with-schemas/index.js +0 -1
- package/synchronizers/with-schemas/index.js +0 -1
- package/with-schemas/index.js +107 -86
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tinybase",
|
|
3
|
-
"version": "6.2.0-beta.
|
|
3
|
+
"version": "6.2.0-beta.2",
|
|
4
4
|
"author": "jamesgpearce",
|
|
5
5
|
"repository": "github:tinyplex/tinybase",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,19 +22,19 @@
|
|
|
22
22
|
"sideEffects": false,
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"@automerge/automerge-repo": "^1.2.1",
|
|
25
|
-
"@cloudflare/workers-types": "^4.
|
|
25
|
+
"@cloudflare/workers-types": "^4.20250529.0",
|
|
26
26
|
"@electric-sql/pglite": "^0.2.17",
|
|
27
|
-
"@libsql/client": "^0.15.
|
|
28
|
-
"@powersync/common": "^1.
|
|
27
|
+
"@libsql/client": "^0.15.7",
|
|
28
|
+
"@powersync/common": "^1.31.0",
|
|
29
29
|
"@sqlite.org/sqlite-wasm": "^3.49.2-build1",
|
|
30
30
|
"@vlcn.io/crsqlite-wasm": "^0.16.0",
|
|
31
|
-
"bun": "^1.2.
|
|
31
|
+
"bun": "^1.2.15",
|
|
32
32
|
"electric-sql": "^0.12.1",
|
|
33
33
|
"expo": "^53.0.9",
|
|
34
34
|
"expo-sqlite": "^15.2.10",
|
|
35
|
-
"partykit": "^0.0.
|
|
35
|
+
"partykit": "^0.0.115",
|
|
36
36
|
"partysocket": "^1.1.4",
|
|
37
|
-
"postgres": "^3.4.
|
|
37
|
+
"postgres": "^3.4.7",
|
|
38
38
|
"react": "^19.0.0",
|
|
39
39
|
"react-dom": "^19.0.0",
|
|
40
40
|
"sqlite3": "^5.1.7",
|
|
@@ -110,23 +110,41 @@
|
|
|
110
110
|
"with-schemas": [
|
|
111
111
|
"./@types/with-schemas/index.d.ts"
|
|
112
112
|
],
|
|
113
|
-
"
|
|
114
|
-
"./@types/
|
|
113
|
+
"omni": [
|
|
114
|
+
"./@types/omni/index.d.ts"
|
|
115
115
|
],
|
|
116
|
-
"
|
|
117
|
-
"./@types/
|
|
116
|
+
"omni/with-schemas": [
|
|
117
|
+
"./@types/omni/with-schemas/index.d.ts"
|
|
118
118
|
],
|
|
119
|
-
"
|
|
120
|
-
"./@types/
|
|
119
|
+
"checkpoints": [
|
|
120
|
+
"./@types/checkpoints/index.d.ts"
|
|
121
121
|
],
|
|
122
|
-
"
|
|
123
|
-
"./@types/
|
|
122
|
+
"checkpoints/with-schemas": [
|
|
123
|
+
"./@types/checkpoints/with-schemas/index.d.ts"
|
|
124
124
|
],
|
|
125
|
-
"
|
|
126
|
-
"./@types/
|
|
125
|
+
"common": [
|
|
126
|
+
"./@types/common/index.d.ts"
|
|
127
127
|
],
|
|
128
|
-
"
|
|
129
|
-
"./@types/
|
|
128
|
+
"common/with-schemas": [
|
|
129
|
+
"./@types/common/with-schemas/index.d.ts"
|
|
130
|
+
],
|
|
131
|
+
"indexes": [
|
|
132
|
+
"./@types/indexes/index.d.ts"
|
|
133
|
+
],
|
|
134
|
+
"indexes/with-schemas": [
|
|
135
|
+
"./@types/indexes/with-schemas/index.d.ts"
|
|
136
|
+
],
|
|
137
|
+
"mergeable-store": [
|
|
138
|
+
"./@types/mergeable-store/index.d.ts"
|
|
139
|
+
],
|
|
140
|
+
"mergeable-store/with-schemas": [
|
|
141
|
+
"./@types/mergeable-store/with-schemas/index.d.ts"
|
|
142
|
+
],
|
|
143
|
+
"metrics": [
|
|
144
|
+
"./@types/metrics/index.d.ts"
|
|
145
|
+
],
|
|
146
|
+
"metrics/with-schemas": [
|
|
147
|
+
"./@types/metrics/with-schemas/index.d.ts"
|
|
130
148
|
],
|
|
131
149
|
"persisters": [
|
|
132
150
|
"./@types/persisters/index.d.ts"
|
|
@@ -224,6 +242,12 @@
|
|
|
224
242
|
"persisters/persister-remote/with-schemas": [
|
|
225
243
|
"./@types/persisters/persister-remote/with-schemas/index.d.ts"
|
|
226
244
|
],
|
|
245
|
+
"persisters/persister-sqlite-bun": [
|
|
246
|
+
"./@types/persisters/persister-sqlite-bun/index.d.ts"
|
|
247
|
+
],
|
|
248
|
+
"persisters/persister-sqlite-bun/with-schemas": [
|
|
249
|
+
"./@types/persisters/persister-sqlite-bun/with-schemas/index.d.ts"
|
|
250
|
+
],
|
|
227
251
|
"persisters/persister-sqlite-wasm": [
|
|
228
252
|
"./@types/persisters/persister-sqlite-wasm/index.d.ts"
|
|
229
253
|
],
|
|
@@ -236,24 +260,42 @@
|
|
|
236
260
|
"persisters/persister-sqlite3/with-schemas": [
|
|
237
261
|
"./@types/persisters/persister-sqlite3/with-schemas/index.d.ts"
|
|
238
262
|
],
|
|
239
|
-
"persisters/persister-sqlite-bun": [
|
|
240
|
-
"./@types/persisters/persister-sqlite-bun/index.d.ts"
|
|
241
|
-
],
|
|
242
|
-
"persisters/persister-sqlite-bun/with-schemas": [
|
|
243
|
-
"./@types/persisters/persister-sqlite-bun/with-schemas/index.d.ts"
|
|
244
|
-
],
|
|
245
263
|
"persisters/persister-yjs": [
|
|
246
264
|
"./@types/persisters/persister-yjs/index.d.ts"
|
|
247
265
|
],
|
|
248
266
|
"persisters/persister-yjs/with-schemas": [
|
|
249
267
|
"./@types/persisters/persister-yjs/with-schemas/index.d.ts"
|
|
250
268
|
],
|
|
269
|
+
"queries": [
|
|
270
|
+
"./@types/queries/index.d.ts"
|
|
271
|
+
],
|
|
272
|
+
"queries/with-schemas": [
|
|
273
|
+
"./@types/queries/with-schemas/index.d.ts"
|
|
274
|
+
],
|
|
275
|
+
"relationships": [
|
|
276
|
+
"./@types/relationships/index.d.ts"
|
|
277
|
+
],
|
|
278
|
+
"relationships/with-schemas": [
|
|
279
|
+
"./@types/relationships/with-schemas/index.d.ts"
|
|
280
|
+
],
|
|
281
|
+
"store": [
|
|
282
|
+
"./@types/store/index.d.ts"
|
|
283
|
+
],
|
|
284
|
+
"store/with-schemas": [
|
|
285
|
+
"./@types/store/with-schemas/index.d.ts"
|
|
286
|
+
],
|
|
251
287
|
"synchronizers": [
|
|
252
288
|
"./@types/synchronizers/index.d.ts"
|
|
253
289
|
],
|
|
254
290
|
"synchronizers/with-schemas": [
|
|
255
291
|
"./@types/synchronizers/with-schemas/index.d.ts"
|
|
256
292
|
],
|
|
293
|
+
"synchronizers/synchronizer-broadcast-channel": [
|
|
294
|
+
"./@types/synchronizers/synchronizer-broadcast-channel/index.d.ts"
|
|
295
|
+
],
|
|
296
|
+
"synchronizers/synchronizer-broadcast-channel/with-schemas": [
|
|
297
|
+
"./@types/synchronizers/synchronizer-broadcast-channel/with-schemas/index.d.ts"
|
|
298
|
+
],
|
|
257
299
|
"synchronizers/synchronizer-local": [
|
|
258
300
|
"./@types/synchronizers/synchronizer-local/index.d.ts"
|
|
259
301
|
],
|
|
@@ -266,11 +308,11 @@
|
|
|
266
308
|
"synchronizers/synchronizer-ws-client/with-schemas": [
|
|
267
309
|
"./@types/synchronizers/synchronizer-ws-client/with-schemas/index.d.ts"
|
|
268
310
|
],
|
|
269
|
-
"synchronizers/synchronizer-ws-server": [
|
|
270
|
-
"./@types/synchronizers/synchronizer-ws-server/index.d.ts"
|
|
311
|
+
"synchronizers/synchronizer-ws-server-durable-object": [
|
|
312
|
+
"./@types/synchronizers/synchronizer-ws-server-durable-object/index.d.ts"
|
|
271
313
|
],
|
|
272
|
-
"synchronizers/synchronizer-ws-server/with-schemas": [
|
|
273
|
-
"./@types/synchronizers/synchronizer-ws-server/with-schemas/index.d.ts"
|
|
314
|
+
"synchronizers/synchronizer-ws-server-durable-object/with-schemas": [
|
|
315
|
+
"./@types/synchronizers/synchronizer-ws-server-durable-object/with-schemas/index.d.ts"
|
|
274
316
|
],
|
|
275
317
|
"synchronizers/synchronizer-ws-server-simple": [
|
|
276
318
|
"./@types/synchronizers/synchronizer-ws-server-simple/index.d.ts"
|
|
@@ -278,89 +320,71 @@
|
|
|
278
320
|
"synchronizers/synchronizer-ws-server-simple/with-schemas": [
|
|
279
321
|
"./@types/synchronizers/synchronizer-ws-server-simple/with-schemas/index.d.ts"
|
|
280
322
|
],
|
|
281
|
-
"synchronizers/synchronizer-ws-server
|
|
282
|
-
"./@types/synchronizers/synchronizer-ws-server
|
|
283
|
-
],
|
|
284
|
-
"synchronizers/synchronizer-ws-server-durable-object/with-schemas": [
|
|
285
|
-
"./@types/synchronizers/synchronizer-ws-server-durable-object/with-schemas/index.d.ts"
|
|
286
|
-
],
|
|
287
|
-
"synchronizers/synchronizer-broadcast-channel": [
|
|
288
|
-
"./@types/synchronizers/synchronizer-broadcast-channel/index.d.ts"
|
|
323
|
+
"synchronizers/synchronizer-ws-server": [
|
|
324
|
+
"./@types/synchronizers/synchronizer-ws-server/index.d.ts"
|
|
289
325
|
],
|
|
290
|
-
"synchronizers/synchronizer-
|
|
291
|
-
"./@types/synchronizers/synchronizer-
|
|
326
|
+
"synchronizers/synchronizer-ws-server/with-schemas": [
|
|
327
|
+
"./@types/synchronizers/synchronizer-ws-server/with-schemas/index.d.ts"
|
|
292
328
|
],
|
|
293
|
-
"
|
|
294
|
-
"./@types/
|
|
329
|
+
"ui-react-dom": [
|
|
330
|
+
"./@types/ui-react-dom/index.d.ts"
|
|
295
331
|
],
|
|
296
|
-
"
|
|
297
|
-
"./@types/
|
|
332
|
+
"ui-react-dom/with-schemas": [
|
|
333
|
+
"./@types/ui-react-dom/with-schemas/index.d.ts"
|
|
298
334
|
],
|
|
299
|
-
"
|
|
300
|
-
"./@types/
|
|
335
|
+
"ui-react-inspector": [
|
|
336
|
+
"./@types/ui-react-inspector/index.d.ts"
|
|
301
337
|
],
|
|
302
|
-
"
|
|
303
|
-
"./@types/
|
|
338
|
+
"ui-react-inspector/with-schemas": [
|
|
339
|
+
"./@types/ui-react-inspector/with-schemas/index.d.ts"
|
|
304
340
|
],
|
|
305
|
-
"
|
|
306
|
-
"./@types/
|
|
341
|
+
"ui-react": [
|
|
342
|
+
"./@types/ui-react/index.d.ts"
|
|
307
343
|
],
|
|
308
|
-
"
|
|
309
|
-
"./@types/
|
|
344
|
+
"ui-react/with-schemas": [
|
|
345
|
+
"./@types/ui-react/with-schemas/index.d.ts"
|
|
310
346
|
],
|
|
311
|
-
"
|
|
312
|
-
"./@types/
|
|
347
|
+
"min": [
|
|
348
|
+
"./@types/index.d.ts"
|
|
313
349
|
],
|
|
314
|
-
"
|
|
315
|
-
"./@types/
|
|
350
|
+
"min/with-schemas": [
|
|
351
|
+
"./@types/with-schemas/index.d.ts"
|
|
316
352
|
],
|
|
317
|
-
"
|
|
318
|
-
"./@types/
|
|
353
|
+
"min/omni": [
|
|
354
|
+
"./@types/omni/index.d.ts"
|
|
319
355
|
],
|
|
320
|
-
"
|
|
321
|
-
"./@types/
|
|
356
|
+
"min/omni/with-schemas": [
|
|
357
|
+
"./@types/omni/with-schemas/index.d.ts"
|
|
322
358
|
],
|
|
323
|
-
"checkpoints": [
|
|
359
|
+
"min/checkpoints": [
|
|
324
360
|
"./@types/checkpoints/index.d.ts"
|
|
325
361
|
],
|
|
326
|
-
"checkpoints/with-schemas": [
|
|
362
|
+
"min/checkpoints/with-schemas": [
|
|
327
363
|
"./@types/checkpoints/with-schemas/index.d.ts"
|
|
328
364
|
],
|
|
329
|
-
"
|
|
330
|
-
"./@types/mergeable-store/index.d.ts"
|
|
331
|
-
],
|
|
332
|
-
"mergeable-store/with-schemas": [
|
|
333
|
-
"./@types/mergeable-store/with-schemas/index.d.ts"
|
|
334
|
-
],
|
|
335
|
-
"common": [
|
|
365
|
+
"min/common": [
|
|
336
366
|
"./@types/common/index.d.ts"
|
|
337
367
|
],
|
|
338
|
-
"common/with-schemas": [
|
|
368
|
+
"min/common/with-schemas": [
|
|
339
369
|
"./@types/common/with-schemas/index.d.ts"
|
|
340
370
|
],
|
|
341
|
-
"min": [
|
|
342
|
-
"./@types/index.d.ts"
|
|
343
|
-
],
|
|
344
|
-
"min/with-schemas": [
|
|
345
|
-
"./@types/with-schemas/index.d.ts"
|
|
346
|
-
],
|
|
347
|
-
"min/ui-react": [
|
|
348
|
-
"./@types/ui-react/index.d.ts"
|
|
371
|
+
"min/indexes": [
|
|
372
|
+
"./@types/indexes/index.d.ts"
|
|
349
373
|
],
|
|
350
|
-
"min/
|
|
351
|
-
"./@types/
|
|
374
|
+
"min/indexes/with-schemas": [
|
|
375
|
+
"./@types/indexes/with-schemas/index.d.ts"
|
|
352
376
|
],
|
|
353
|
-
"min/
|
|
354
|
-
"./@types/
|
|
377
|
+
"min/mergeable-store": [
|
|
378
|
+
"./@types/mergeable-store/index.d.ts"
|
|
355
379
|
],
|
|
356
|
-
"min/
|
|
357
|
-
"./@types/
|
|
380
|
+
"min/mergeable-store/with-schemas": [
|
|
381
|
+
"./@types/mergeable-store/with-schemas/index.d.ts"
|
|
358
382
|
],
|
|
359
|
-
"min/
|
|
360
|
-
"./@types/
|
|
383
|
+
"min/metrics": [
|
|
384
|
+
"./@types/metrics/index.d.ts"
|
|
361
385
|
],
|
|
362
|
-
"min/
|
|
363
|
-
"./@types/
|
|
386
|
+
"min/metrics/with-schemas": [
|
|
387
|
+
"./@types/metrics/with-schemas/index.d.ts"
|
|
364
388
|
],
|
|
365
389
|
"min/persisters": [
|
|
366
390
|
"./@types/persisters/index.d.ts"
|
|
@@ -458,6 +482,12 @@
|
|
|
458
482
|
"min/persisters/persister-remote/with-schemas": [
|
|
459
483
|
"./@types/persisters/persister-remote/with-schemas/index.d.ts"
|
|
460
484
|
],
|
|
485
|
+
"min/persisters/persister-sqlite-bun": [
|
|
486
|
+
"./@types/persisters/persister-sqlite-bun/index.d.ts"
|
|
487
|
+
],
|
|
488
|
+
"min/persisters/persister-sqlite-bun/with-schemas": [
|
|
489
|
+
"./@types/persisters/persister-sqlite-bun/with-schemas/index.d.ts"
|
|
490
|
+
],
|
|
461
491
|
"min/persisters/persister-sqlite-wasm": [
|
|
462
492
|
"./@types/persisters/persister-sqlite-wasm/index.d.ts"
|
|
463
493
|
],
|
|
@@ -470,24 +500,42 @@
|
|
|
470
500
|
"min/persisters/persister-sqlite3/with-schemas": [
|
|
471
501
|
"./@types/persisters/persister-sqlite3/with-schemas/index.d.ts"
|
|
472
502
|
],
|
|
473
|
-
"min/persisters/persister-sqlite-bun": [
|
|
474
|
-
"./@types/persisters/persister-sqlite-bun/index.d.ts"
|
|
475
|
-
],
|
|
476
|
-
"min/persisters/persister-sqlite-bun/with-schemas": [
|
|
477
|
-
"./@types/persisters/persister-sqlite-bun/with-schemas/index.d.ts"
|
|
478
|
-
],
|
|
479
503
|
"min/persisters/persister-yjs": [
|
|
480
504
|
"./@types/persisters/persister-yjs/index.d.ts"
|
|
481
505
|
],
|
|
482
506
|
"min/persisters/persister-yjs/with-schemas": [
|
|
483
507
|
"./@types/persisters/persister-yjs/with-schemas/index.d.ts"
|
|
484
508
|
],
|
|
509
|
+
"min/queries": [
|
|
510
|
+
"./@types/queries/index.d.ts"
|
|
511
|
+
],
|
|
512
|
+
"min/queries/with-schemas": [
|
|
513
|
+
"./@types/queries/with-schemas/index.d.ts"
|
|
514
|
+
],
|
|
515
|
+
"min/relationships": [
|
|
516
|
+
"./@types/relationships/index.d.ts"
|
|
517
|
+
],
|
|
518
|
+
"min/relationships/with-schemas": [
|
|
519
|
+
"./@types/relationships/with-schemas/index.d.ts"
|
|
520
|
+
],
|
|
521
|
+
"min/store": [
|
|
522
|
+
"./@types/store/index.d.ts"
|
|
523
|
+
],
|
|
524
|
+
"min/store/with-schemas": [
|
|
525
|
+
"./@types/store/with-schemas/index.d.ts"
|
|
526
|
+
],
|
|
485
527
|
"min/synchronizers": [
|
|
486
528
|
"./@types/synchronizers/index.d.ts"
|
|
487
529
|
],
|
|
488
530
|
"min/synchronizers/with-schemas": [
|
|
489
531
|
"./@types/synchronizers/with-schemas/index.d.ts"
|
|
490
532
|
],
|
|
533
|
+
"min/synchronizers/synchronizer-broadcast-channel": [
|
|
534
|
+
"./@types/synchronizers/synchronizer-broadcast-channel/index.d.ts"
|
|
535
|
+
],
|
|
536
|
+
"min/synchronizers/synchronizer-broadcast-channel/with-schemas": [
|
|
537
|
+
"./@types/synchronizers/synchronizer-broadcast-channel/with-schemas/index.d.ts"
|
|
538
|
+
],
|
|
491
539
|
"min/synchronizers/synchronizer-local": [
|
|
492
540
|
"./@types/synchronizers/synchronizer-local/index.d.ts"
|
|
493
541
|
],
|
|
@@ -500,77 +548,41 @@
|
|
|
500
548
|
"min/synchronizers/synchronizer-ws-client/with-schemas": [
|
|
501
549
|
"./@types/synchronizers/synchronizer-ws-client/with-schemas/index.d.ts"
|
|
502
550
|
],
|
|
503
|
-
"min/synchronizers/synchronizer-ws-server": [
|
|
504
|
-
"./@types/synchronizers/synchronizer-ws-server/index.d.ts"
|
|
505
|
-
],
|
|
506
|
-
"min/synchronizers/synchronizer-ws-server/with-schemas": [
|
|
507
|
-
"./@types/synchronizers/synchronizer-ws-server/with-schemas/index.d.ts"
|
|
508
|
-
],
|
|
509
|
-
"min/synchronizers/synchronizer-ws-server-simple": [
|
|
510
|
-
"./@types/synchronizers/synchronizer-ws-server-simple/index.d.ts"
|
|
511
|
-
],
|
|
512
|
-
"min/synchronizers/synchronizer-ws-server-simple/with-schemas": [
|
|
513
|
-
"./@types/synchronizers/synchronizer-ws-server-simple/with-schemas/index.d.ts"
|
|
514
|
-
],
|
|
515
551
|
"min/synchronizers/synchronizer-ws-server-durable-object": [
|
|
516
552
|
"./@types/synchronizers/synchronizer-ws-server-durable-object/index.d.ts"
|
|
517
553
|
],
|
|
518
554
|
"min/synchronizers/synchronizer-ws-server-durable-object/with-schemas": [
|
|
519
555
|
"./@types/synchronizers/synchronizer-ws-server-durable-object/with-schemas/index.d.ts"
|
|
520
556
|
],
|
|
521
|
-
"min/synchronizers/synchronizer-
|
|
522
|
-
"./@types/synchronizers/synchronizer-
|
|
523
|
-
],
|
|
524
|
-
"min/synchronizers/synchronizer-broadcast-channel/with-schemas": [
|
|
525
|
-
"./@types/synchronizers/synchronizer-broadcast-channel/with-schemas/index.d.ts"
|
|
526
|
-
],
|
|
527
|
-
"min/store": [
|
|
528
|
-
"./@types/store/index.d.ts"
|
|
529
|
-
],
|
|
530
|
-
"min/store/with-schemas": [
|
|
531
|
-
"./@types/store/with-schemas/index.d.ts"
|
|
532
|
-
],
|
|
533
|
-
"min/metrics": [
|
|
534
|
-
"./@types/metrics/index.d.ts"
|
|
535
|
-
],
|
|
536
|
-
"min/metrics/with-schemas": [
|
|
537
|
-
"./@types/metrics/with-schemas/index.d.ts"
|
|
538
|
-
],
|
|
539
|
-
"min/indexes": [
|
|
540
|
-
"./@types/indexes/index.d.ts"
|
|
541
|
-
],
|
|
542
|
-
"min/indexes/with-schemas": [
|
|
543
|
-
"./@types/indexes/with-schemas/index.d.ts"
|
|
544
|
-
],
|
|
545
|
-
"min/relationships": [
|
|
546
|
-
"./@types/relationships/index.d.ts"
|
|
557
|
+
"min/synchronizers/synchronizer-ws-server-simple": [
|
|
558
|
+
"./@types/synchronizers/synchronizer-ws-server-simple/index.d.ts"
|
|
547
559
|
],
|
|
548
|
-
"min/
|
|
549
|
-
"./@types/
|
|
560
|
+
"min/synchronizers/synchronizer-ws-server-simple/with-schemas": [
|
|
561
|
+
"./@types/synchronizers/synchronizer-ws-server-simple/with-schemas/index.d.ts"
|
|
550
562
|
],
|
|
551
|
-
"min/
|
|
552
|
-
"./@types/
|
|
563
|
+
"min/synchronizers/synchronizer-ws-server": [
|
|
564
|
+
"./@types/synchronizers/synchronizer-ws-server/index.d.ts"
|
|
553
565
|
],
|
|
554
|
-
"min/
|
|
555
|
-
"./@types/
|
|
566
|
+
"min/synchronizers/synchronizer-ws-server/with-schemas": [
|
|
567
|
+
"./@types/synchronizers/synchronizer-ws-server/with-schemas/index.d.ts"
|
|
556
568
|
],
|
|
557
|
-
"min/
|
|
558
|
-
"./@types/
|
|
569
|
+
"min/ui-react-dom": [
|
|
570
|
+
"./@types/ui-react-dom/index.d.ts"
|
|
559
571
|
],
|
|
560
|
-
"min/
|
|
561
|
-
"./@types/
|
|
572
|
+
"min/ui-react-dom/with-schemas": [
|
|
573
|
+
"./@types/ui-react-dom/with-schemas/index.d.ts"
|
|
562
574
|
],
|
|
563
|
-
"min/
|
|
564
|
-
"./@types/
|
|
575
|
+
"min/ui-react-inspector": [
|
|
576
|
+
"./@types/ui-react-inspector/index.d.ts"
|
|
565
577
|
],
|
|
566
|
-
"min/
|
|
567
|
-
"./@types/
|
|
578
|
+
"min/ui-react-inspector/with-schemas": [
|
|
579
|
+
"./@types/ui-react-inspector/with-schemas/index.d.ts"
|
|
568
580
|
],
|
|
569
|
-
"min/
|
|
570
|
-
"./@types/
|
|
581
|
+
"min/ui-react": [
|
|
582
|
+
"./@types/ui-react/index.d.ts"
|
|
571
583
|
],
|
|
572
|
-
"min/
|
|
573
|
-
"./@types/
|
|
584
|
+
"min/ui-react/with-schemas": [
|
|
585
|
+
"./@types/ui-react/with-schemas/index.d.ts"
|
|
574
586
|
]
|
|
575
587
|
}
|
|
576
588
|
},
|
|
@@ -587,40 +599,76 @@
|
|
|
587
599
|
"default": "./index.js"
|
|
588
600
|
}
|
|
589
601
|
},
|
|
590
|
-
"./
|
|
602
|
+
"./omni": {
|
|
591
603
|
"default": {
|
|
592
|
-
"types": "./@types/
|
|
593
|
-
"default": "./
|
|
604
|
+
"types": "./@types/omni/index.d.ts",
|
|
605
|
+
"default": "./omni/index.js"
|
|
594
606
|
}
|
|
595
607
|
},
|
|
596
|
-
"./
|
|
608
|
+
"./omni/with-schemas": {
|
|
597
609
|
"default": {
|
|
598
|
-
"types": "./@types/
|
|
599
|
-
"default": "./
|
|
610
|
+
"types": "./@types/omni/with-schemas/index.d.ts",
|
|
611
|
+
"default": "./omni/index.js"
|
|
600
612
|
}
|
|
601
613
|
},
|
|
602
|
-
"./
|
|
614
|
+
"./checkpoints": {
|
|
603
615
|
"default": {
|
|
604
|
-
"types": "./@types/
|
|
605
|
-
"default": "./
|
|
616
|
+
"types": "./@types/checkpoints/index.d.ts",
|
|
617
|
+
"default": "./checkpoints/index.js"
|
|
606
618
|
}
|
|
607
619
|
},
|
|
608
|
-
"./
|
|
620
|
+
"./checkpoints/with-schemas": {
|
|
609
621
|
"default": {
|
|
610
|
-
"types": "./@types/
|
|
611
|
-
"default": "./
|
|
622
|
+
"types": "./@types/checkpoints/with-schemas/index.d.ts",
|
|
623
|
+
"default": "./checkpoints/index.js"
|
|
612
624
|
}
|
|
613
625
|
},
|
|
614
|
-
"./
|
|
626
|
+
"./common": {
|
|
615
627
|
"default": {
|
|
616
|
-
"types": "./@types/
|
|
617
|
-
"default": "./
|
|
628
|
+
"types": "./@types/common/index.d.ts",
|
|
629
|
+
"default": "./common/index.js"
|
|
618
630
|
}
|
|
619
631
|
},
|
|
620
|
-
"./
|
|
632
|
+
"./common/with-schemas": {
|
|
621
633
|
"default": {
|
|
622
|
-
"types": "./@types/
|
|
623
|
-
"default": "./
|
|
634
|
+
"types": "./@types/common/with-schemas/index.d.ts",
|
|
635
|
+
"default": "./common/index.js"
|
|
636
|
+
}
|
|
637
|
+
},
|
|
638
|
+
"./indexes": {
|
|
639
|
+
"default": {
|
|
640
|
+
"types": "./@types/indexes/index.d.ts",
|
|
641
|
+
"default": "./indexes/index.js"
|
|
642
|
+
}
|
|
643
|
+
},
|
|
644
|
+
"./indexes/with-schemas": {
|
|
645
|
+
"default": {
|
|
646
|
+
"types": "./@types/indexes/with-schemas/index.d.ts",
|
|
647
|
+
"default": "./indexes/index.js"
|
|
648
|
+
}
|
|
649
|
+
},
|
|
650
|
+
"./mergeable-store": {
|
|
651
|
+
"default": {
|
|
652
|
+
"types": "./@types/mergeable-store/index.d.ts",
|
|
653
|
+
"default": "./mergeable-store/index.js"
|
|
654
|
+
}
|
|
655
|
+
},
|
|
656
|
+
"./mergeable-store/with-schemas": {
|
|
657
|
+
"default": {
|
|
658
|
+
"types": "./@types/mergeable-store/with-schemas/index.d.ts",
|
|
659
|
+
"default": "./mergeable-store/index.js"
|
|
660
|
+
}
|
|
661
|
+
},
|
|
662
|
+
"./metrics": {
|
|
663
|
+
"default": {
|
|
664
|
+
"types": "./@types/metrics/index.d.ts",
|
|
665
|
+
"default": "./metrics/index.js"
|
|
666
|
+
}
|
|
667
|
+
},
|
|
668
|
+
"./metrics/with-schemas": {
|
|
669
|
+
"default": {
|
|
670
|
+
"types": "./@types/metrics/with-schemas/index.d.ts",
|
|
671
|
+
"default": "./metrics/index.js"
|
|
624
672
|
}
|
|
625
673
|
},
|
|
626
674
|
"./persisters": {
|
|
@@ -815,6 +863,18 @@
|
|
|
815
863
|
"default": "./persisters/persister-remote/index.js"
|
|
816
864
|
}
|
|
817
865
|
},
|
|
866
|
+
"./persisters/persister-sqlite-bun": {
|
|
867
|
+
"default": {
|
|
868
|
+
"types": "./@types/persisters/persister-sqlite-bun/index.d.ts",
|
|
869
|
+
"default": "./persisters/persister-sqlite-bun/index.js"
|
|
870
|
+
}
|
|
871
|
+
},
|
|
872
|
+
"./persisters/persister-sqlite-bun/with-schemas": {
|
|
873
|
+
"default": {
|
|
874
|
+
"types": "./@types/persisters/persister-sqlite-bun/with-schemas/index.d.ts",
|
|
875
|
+
"default": "./persisters/persister-sqlite-bun/index.js"
|
|
876
|
+
}
|
|
877
|
+
},
|
|
818
878
|
"./persisters/persister-sqlite-wasm": {
|
|
819
879
|
"default": {
|
|
820
880
|
"types": "./@types/persisters/persister-sqlite-wasm/index.d.ts",
|
|
@@ -839,18 +899,6 @@
|
|
|
839
899
|
"default": "./persisters/persister-sqlite3/index.js"
|
|
840
900
|
}
|
|
841
901
|
},
|
|
842
|
-
"./persisters/persister-sqlite-bun": {
|
|
843
|
-
"default": {
|
|
844
|
-
"types": "./@types/persisters/persister-sqlite-bun/index.d.ts",
|
|
845
|
-
"default": "./persisters/persister-sqlite-bun/index.js"
|
|
846
|
-
}
|
|
847
|
-
},
|
|
848
|
-
"./persisters/persister-sqlite-bun/with-schemas": {
|
|
849
|
-
"default": {
|
|
850
|
-
"types": "./@types/persisters/persister-sqlite-bun/with-schemas/index.d.ts",
|
|
851
|
-
"default": "./persisters/persister-sqlite-bun/index.js"
|
|
852
|
-
}
|
|
853
|
-
},
|
|
854
902
|
"./persisters/persister-yjs": {
|
|
855
903
|
"default": {
|
|
856
904
|
"types": "./@types/persisters/persister-yjs/index.d.ts",
|
|
@@ -863,6 +911,42 @@
|
|
|
863
911
|
"default": "./persisters/persister-yjs/index.js"
|
|
864
912
|
}
|
|
865
913
|
},
|
|
914
|
+
"./queries": {
|
|
915
|
+
"default": {
|
|
916
|
+
"types": "./@types/queries/index.d.ts",
|
|
917
|
+
"default": "./queries/index.js"
|
|
918
|
+
}
|
|
919
|
+
},
|
|
920
|
+
"./queries/with-schemas": {
|
|
921
|
+
"default": {
|
|
922
|
+
"types": "./@types/queries/with-schemas/index.d.ts",
|
|
923
|
+
"default": "./queries/index.js"
|
|
924
|
+
}
|
|
925
|
+
},
|
|
926
|
+
"./relationships": {
|
|
927
|
+
"default": {
|
|
928
|
+
"types": "./@types/relationships/index.d.ts",
|
|
929
|
+
"default": "./relationships/index.js"
|
|
930
|
+
}
|
|
931
|
+
},
|
|
932
|
+
"./relationships/with-schemas": {
|
|
933
|
+
"default": {
|
|
934
|
+
"types": "./@types/relationships/with-schemas/index.d.ts",
|
|
935
|
+
"default": "./relationships/index.js"
|
|
936
|
+
}
|
|
937
|
+
},
|
|
938
|
+
"./store": {
|
|
939
|
+
"default": {
|
|
940
|
+
"types": "./@types/store/index.d.ts",
|
|
941
|
+
"default": "./store/index.js"
|
|
942
|
+
}
|
|
943
|
+
},
|
|
944
|
+
"./store/with-schemas": {
|
|
945
|
+
"default": {
|
|
946
|
+
"types": "./@types/store/with-schemas/index.d.ts",
|
|
947
|
+
"default": "./store/index.js"
|
|
948
|
+
}
|
|
949
|
+
},
|
|
866
950
|
"./synchronizers": {
|
|
867
951
|
"default": {
|
|
868
952
|
"types": "./@types/synchronizers/index.d.ts",
|
|
@@ -875,6 +959,18 @@
|
|
|
875
959
|
"default": "./synchronizers/index.js"
|
|
876
960
|
}
|
|
877
961
|
},
|
|
962
|
+
"./synchronizers/synchronizer-broadcast-channel": {
|
|
963
|
+
"default": {
|
|
964
|
+
"types": "./@types/synchronizers/synchronizer-broadcast-channel/index.d.ts",
|
|
965
|
+
"default": "./synchronizers/synchronizer-broadcast-channel/index.js"
|
|
966
|
+
}
|
|
967
|
+
},
|
|
968
|
+
"./synchronizers/synchronizer-broadcast-channel/with-schemas": {
|
|
969
|
+
"default": {
|
|
970
|
+
"types": "./@types/synchronizers/synchronizer-broadcast-channel/with-schemas/index.d.ts",
|
|
971
|
+
"default": "./synchronizers/synchronizer-broadcast-channel/index.js"
|
|
972
|
+
}
|
|
973
|
+
},
|
|
878
974
|
"./synchronizers/synchronizer-local": {
|
|
879
975
|
"default": {
|
|
880
976
|
"types": "./@types/synchronizers/synchronizer-local/index.d.ts",
|
|
@@ -899,30 +995,6 @@
|
|
|
899
995
|
"default": "./synchronizers/synchronizer-ws-client/index.js"
|
|
900
996
|
}
|
|
901
997
|
},
|
|
902
|
-
"./synchronizers/synchronizer-ws-server": {
|
|
903
|
-
"default": {
|
|
904
|
-
"types": "./@types/synchronizers/synchronizer-ws-server/index.d.ts",
|
|
905
|
-
"default": "./synchronizers/synchronizer-ws-server/index.js"
|
|
906
|
-
}
|
|
907
|
-
},
|
|
908
|
-
"./synchronizers/synchronizer-ws-server/with-schemas": {
|
|
909
|
-
"default": {
|
|
910
|
-
"types": "./@types/synchronizers/synchronizer-ws-server/with-schemas/index.d.ts",
|
|
911
|
-
"default": "./synchronizers/synchronizer-ws-server/index.js"
|
|
912
|
-
}
|
|
913
|
-
},
|
|
914
|
-
"./synchronizers/synchronizer-ws-server-simple": {
|
|
915
|
-
"default": {
|
|
916
|
-
"types": "./@types/synchronizers/synchronizer-ws-server-simple/index.d.ts",
|
|
917
|
-
"default": "./synchronizers/synchronizer-ws-server-simple/index.js"
|
|
918
|
-
}
|
|
919
|
-
},
|
|
920
|
-
"./synchronizers/synchronizer-ws-server-simple/with-schemas": {
|
|
921
|
-
"default": {
|
|
922
|
-
"types": "./@types/synchronizers/synchronizer-ws-server-simple/with-schemas/index.d.ts",
|
|
923
|
-
"default": "./synchronizers/synchronizer-ws-server-simple/index.js"
|
|
924
|
-
}
|
|
925
|
-
},
|
|
926
998
|
"./synchronizers/synchronizer-ws-server-durable-object": {
|
|
927
999
|
"default": {
|
|
928
1000
|
"types": "./@types/synchronizers/synchronizer-ws-server-durable-object/index.d.ts",
|
|
@@ -935,160 +1007,148 @@
|
|
|
935
1007
|
"default": "./synchronizers/synchronizer-ws-server-durable-object/index.js"
|
|
936
1008
|
}
|
|
937
1009
|
},
|
|
938
|
-
"./synchronizers/synchronizer-
|
|
939
|
-
"default": {
|
|
940
|
-
"types": "./@types/synchronizers/synchronizer-broadcast-channel/index.d.ts",
|
|
941
|
-
"default": "./synchronizers/synchronizer-broadcast-channel/index.js"
|
|
942
|
-
}
|
|
943
|
-
},
|
|
944
|
-
"./synchronizers/synchronizer-broadcast-channel/with-schemas": {
|
|
945
|
-
"default": {
|
|
946
|
-
"types": "./@types/synchronizers/synchronizer-broadcast-channel/with-schemas/index.d.ts",
|
|
947
|
-
"default": "./synchronizers/synchronizer-broadcast-channel/index.js"
|
|
948
|
-
}
|
|
949
|
-
},
|
|
950
|
-
"./store": {
|
|
1010
|
+
"./synchronizers/synchronizer-ws-server-simple": {
|
|
951
1011
|
"default": {
|
|
952
|
-
"types": "./@types/
|
|
953
|
-
"default": "./
|
|
1012
|
+
"types": "./@types/synchronizers/synchronizer-ws-server-simple/index.d.ts",
|
|
1013
|
+
"default": "./synchronizers/synchronizer-ws-server-simple/index.js"
|
|
954
1014
|
}
|
|
955
1015
|
},
|
|
956
|
-
"./
|
|
1016
|
+
"./synchronizers/synchronizer-ws-server-simple/with-schemas": {
|
|
957
1017
|
"default": {
|
|
958
|
-
"types": "./@types/
|
|
959
|
-
"default": "./
|
|
1018
|
+
"types": "./@types/synchronizers/synchronizer-ws-server-simple/with-schemas/index.d.ts",
|
|
1019
|
+
"default": "./synchronizers/synchronizer-ws-server-simple/index.js"
|
|
960
1020
|
}
|
|
961
1021
|
},
|
|
962
|
-
"./
|
|
1022
|
+
"./synchronizers/synchronizer-ws-server": {
|
|
963
1023
|
"default": {
|
|
964
|
-
"types": "./@types/
|
|
965
|
-
"default": "./
|
|
1024
|
+
"types": "./@types/synchronizers/synchronizer-ws-server/index.d.ts",
|
|
1025
|
+
"default": "./synchronizers/synchronizer-ws-server/index.js"
|
|
966
1026
|
}
|
|
967
1027
|
},
|
|
968
|
-
"./
|
|
1028
|
+
"./synchronizers/synchronizer-ws-server/with-schemas": {
|
|
969
1029
|
"default": {
|
|
970
|
-
"types": "./@types/
|
|
971
|
-
"default": "./
|
|
1030
|
+
"types": "./@types/synchronizers/synchronizer-ws-server/with-schemas/index.d.ts",
|
|
1031
|
+
"default": "./synchronizers/synchronizer-ws-server/index.js"
|
|
972
1032
|
}
|
|
973
1033
|
},
|
|
974
|
-
"./
|
|
1034
|
+
"./ui-react-dom": {
|
|
975
1035
|
"default": {
|
|
976
|
-
"types": "./@types/
|
|
977
|
-
"default": "./
|
|
1036
|
+
"types": "./@types/ui-react-dom/index.d.ts",
|
|
1037
|
+
"default": "./ui-react-dom/index.js"
|
|
978
1038
|
}
|
|
979
1039
|
},
|
|
980
|
-
"./
|
|
1040
|
+
"./ui-react-dom/with-schemas": {
|
|
981
1041
|
"default": {
|
|
982
|
-
"types": "./@types/
|
|
983
|
-
"default": "./
|
|
1042
|
+
"types": "./@types/ui-react-dom/with-schemas/index.d.ts",
|
|
1043
|
+
"default": "./ui-react-dom/index.js"
|
|
984
1044
|
}
|
|
985
1045
|
},
|
|
986
|
-
"./
|
|
1046
|
+
"./ui-react-inspector": {
|
|
987
1047
|
"default": {
|
|
988
|
-
"types": "./@types/
|
|
989
|
-
"default": "./
|
|
1048
|
+
"types": "./@types/ui-react-inspector/index.d.ts",
|
|
1049
|
+
"default": "./ui-react-inspector/index.js"
|
|
990
1050
|
}
|
|
991
1051
|
},
|
|
992
|
-
"./
|
|
1052
|
+
"./ui-react-inspector/with-schemas": {
|
|
993
1053
|
"default": {
|
|
994
|
-
"types": "./@types/
|
|
995
|
-
"default": "./
|
|
1054
|
+
"types": "./@types/ui-react-inspector/with-schemas/index.d.ts",
|
|
1055
|
+
"default": "./ui-react-inspector/index.js"
|
|
996
1056
|
}
|
|
997
1057
|
},
|
|
998
|
-
"./
|
|
1058
|
+
"./ui-react": {
|
|
999
1059
|
"default": {
|
|
1000
|
-
"types": "./@types/
|
|
1001
|
-
"default": "./
|
|
1060
|
+
"types": "./@types/ui-react/index.d.ts",
|
|
1061
|
+
"default": "./ui-react/index.js"
|
|
1002
1062
|
}
|
|
1003
1063
|
},
|
|
1004
|
-
"./
|
|
1064
|
+
"./ui-react/with-schemas": {
|
|
1005
1065
|
"default": {
|
|
1006
|
-
"types": "./@types/
|
|
1007
|
-
"default": "./
|
|
1066
|
+
"types": "./@types/ui-react/with-schemas/index.d.ts",
|
|
1067
|
+
"default": "./ui-react/index.js"
|
|
1008
1068
|
}
|
|
1009
1069
|
},
|
|
1010
|
-
"./
|
|
1070
|
+
"./min": {
|
|
1011
1071
|
"default": {
|
|
1012
|
-
"types": "./@types/
|
|
1013
|
-
"default": "./
|
|
1072
|
+
"types": "./@types/index.d.ts",
|
|
1073
|
+
"default": "./min/index.js"
|
|
1014
1074
|
}
|
|
1015
1075
|
},
|
|
1016
|
-
"./
|
|
1076
|
+
"./min/with-schemas": {
|
|
1017
1077
|
"default": {
|
|
1018
|
-
"types": "./@types/
|
|
1019
|
-
"default": "./
|
|
1078
|
+
"types": "./@types/with-schemas/index.d.ts",
|
|
1079
|
+
"default": "./min/index.js"
|
|
1020
1080
|
}
|
|
1021
1081
|
},
|
|
1022
|
-
"./
|
|
1023
|
-
"default": {
|
|
1024
|
-
"types": "./@types/
|
|
1025
|
-
"default": "./
|
|
1082
|
+
"./min/omni": {
|
|
1083
|
+
"default": {
|
|
1084
|
+
"types": "./@types/omni/index.d.ts",
|
|
1085
|
+
"default": "./min/omni/index.js"
|
|
1026
1086
|
}
|
|
1027
1087
|
},
|
|
1028
|
-
"./
|
|
1088
|
+
"./min/omni/with-schemas": {
|
|
1029
1089
|
"default": {
|
|
1030
|
-
"types": "./@types/
|
|
1031
|
-
"default": "./
|
|
1090
|
+
"types": "./@types/omni/with-schemas/index.d.ts",
|
|
1091
|
+
"default": "./min/omni/index.js"
|
|
1032
1092
|
}
|
|
1033
1093
|
},
|
|
1034
|
-
"./
|
|
1094
|
+
"./min/checkpoints": {
|
|
1035
1095
|
"default": {
|
|
1036
|
-
"types": "./@types/
|
|
1037
|
-
"default": "./
|
|
1096
|
+
"types": "./@types/checkpoints/index.d.ts",
|
|
1097
|
+
"default": "./min/checkpoints/index.js"
|
|
1038
1098
|
}
|
|
1039
1099
|
},
|
|
1040
|
-
"./
|
|
1100
|
+
"./min/checkpoints/with-schemas": {
|
|
1041
1101
|
"default": {
|
|
1042
|
-
"types": "./@types/
|
|
1043
|
-
"default": "./
|
|
1102
|
+
"types": "./@types/checkpoints/with-schemas/index.d.ts",
|
|
1103
|
+
"default": "./min/checkpoints/index.js"
|
|
1044
1104
|
}
|
|
1045
1105
|
},
|
|
1046
|
-
"./min": {
|
|
1106
|
+
"./min/common": {
|
|
1047
1107
|
"default": {
|
|
1048
|
-
"types": "./@types/index.d.ts",
|
|
1049
|
-
"default": "./min/index.js"
|
|
1108
|
+
"types": "./@types/common/index.d.ts",
|
|
1109
|
+
"default": "./min/common/index.js"
|
|
1050
1110
|
}
|
|
1051
1111
|
},
|
|
1052
|
-
"./min/with-schemas": {
|
|
1112
|
+
"./min/common/with-schemas": {
|
|
1053
1113
|
"default": {
|
|
1054
|
-
"types": "./@types/with-schemas/index.d.ts",
|
|
1055
|
-
"default": "./min/index.js"
|
|
1114
|
+
"types": "./@types/common/with-schemas/index.d.ts",
|
|
1115
|
+
"default": "./min/common/index.js"
|
|
1056
1116
|
}
|
|
1057
1117
|
},
|
|
1058
|
-
"./min/
|
|
1118
|
+
"./min/indexes": {
|
|
1059
1119
|
"default": {
|
|
1060
|
-
"types": "./@types/
|
|
1061
|
-
"default": "./min/
|
|
1120
|
+
"types": "./@types/indexes/index.d.ts",
|
|
1121
|
+
"default": "./min/indexes/index.js"
|
|
1062
1122
|
}
|
|
1063
1123
|
},
|
|
1064
|
-
"./min/
|
|
1124
|
+
"./min/indexes/with-schemas": {
|
|
1065
1125
|
"default": {
|
|
1066
|
-
"types": "./@types/
|
|
1067
|
-
"default": "./min/
|
|
1126
|
+
"types": "./@types/indexes/with-schemas/index.d.ts",
|
|
1127
|
+
"default": "./min/indexes/index.js"
|
|
1068
1128
|
}
|
|
1069
1129
|
},
|
|
1070
|
-
"./min/
|
|
1130
|
+
"./min/mergeable-store": {
|
|
1071
1131
|
"default": {
|
|
1072
|
-
"types": "./@types/
|
|
1073
|
-
"default": "./min/
|
|
1132
|
+
"types": "./@types/mergeable-store/index.d.ts",
|
|
1133
|
+
"default": "./min/mergeable-store/index.js"
|
|
1074
1134
|
}
|
|
1075
1135
|
},
|
|
1076
|
-
"./min/
|
|
1136
|
+
"./min/mergeable-store/with-schemas": {
|
|
1077
1137
|
"default": {
|
|
1078
|
-
"types": "./@types/
|
|
1079
|
-
"default": "./min/
|
|
1138
|
+
"types": "./@types/mergeable-store/with-schemas/index.d.ts",
|
|
1139
|
+
"default": "./min/mergeable-store/index.js"
|
|
1080
1140
|
}
|
|
1081
1141
|
},
|
|
1082
|
-
"./min/
|
|
1142
|
+
"./min/metrics": {
|
|
1083
1143
|
"default": {
|
|
1084
|
-
"types": "./@types/
|
|
1085
|
-
"default": "./min/
|
|
1144
|
+
"types": "./@types/metrics/index.d.ts",
|
|
1145
|
+
"default": "./min/metrics/index.js"
|
|
1086
1146
|
}
|
|
1087
1147
|
},
|
|
1088
|
-
"./min/
|
|
1148
|
+
"./min/metrics/with-schemas": {
|
|
1089
1149
|
"default": {
|
|
1090
|
-
"types": "./@types/
|
|
1091
|
-
"default": "./min/
|
|
1150
|
+
"types": "./@types/metrics/with-schemas/index.d.ts",
|
|
1151
|
+
"default": "./min/metrics/index.js"
|
|
1092
1152
|
}
|
|
1093
1153
|
},
|
|
1094
1154
|
"./min/persisters": {
|
|
@@ -1283,6 +1343,18 @@
|
|
|
1283
1343
|
"default": "./min/persisters/persister-remote/index.js"
|
|
1284
1344
|
}
|
|
1285
1345
|
},
|
|
1346
|
+
"./min/persisters/persister-sqlite-bun": {
|
|
1347
|
+
"default": {
|
|
1348
|
+
"types": "./@types/persisters/persister-sqlite-bun/index.d.ts",
|
|
1349
|
+
"default": "./min/persisters/persister-sqlite-bun/index.js"
|
|
1350
|
+
}
|
|
1351
|
+
},
|
|
1352
|
+
"./min/persisters/persister-sqlite-bun/with-schemas": {
|
|
1353
|
+
"default": {
|
|
1354
|
+
"types": "./@types/persisters/persister-sqlite-bun/with-schemas/index.d.ts",
|
|
1355
|
+
"default": "./min/persisters/persister-sqlite-bun/index.js"
|
|
1356
|
+
}
|
|
1357
|
+
},
|
|
1286
1358
|
"./min/persisters/persister-sqlite-wasm": {
|
|
1287
1359
|
"default": {
|
|
1288
1360
|
"types": "./@types/persisters/persister-sqlite-wasm/index.d.ts",
|
|
@@ -1307,18 +1379,6 @@
|
|
|
1307
1379
|
"default": "./min/persisters/persister-sqlite3/index.js"
|
|
1308
1380
|
}
|
|
1309
1381
|
},
|
|
1310
|
-
"./min/persisters/persister-sqlite-bun": {
|
|
1311
|
-
"default": {
|
|
1312
|
-
"types": "./@types/persisters/persister-sqlite-bun/index.d.ts",
|
|
1313
|
-
"default": "./min/persisters/persister-sqlite-bun/index.js"
|
|
1314
|
-
}
|
|
1315
|
-
},
|
|
1316
|
-
"./min/persisters/persister-sqlite-bun/with-schemas": {
|
|
1317
|
-
"default": {
|
|
1318
|
-
"types": "./@types/persisters/persister-sqlite-bun/with-schemas/index.d.ts",
|
|
1319
|
-
"default": "./min/persisters/persister-sqlite-bun/index.js"
|
|
1320
|
-
}
|
|
1321
|
-
},
|
|
1322
1382
|
"./min/persisters/persister-yjs": {
|
|
1323
1383
|
"default": {
|
|
1324
1384
|
"types": "./@types/persisters/persister-yjs/index.d.ts",
|
|
@@ -1331,76 +1391,52 @@
|
|
|
1331
1391
|
"default": "./min/persisters/persister-yjs/index.js"
|
|
1332
1392
|
}
|
|
1333
1393
|
},
|
|
1334
|
-
"./min/
|
|
1335
|
-
"default": {
|
|
1336
|
-
"types": "./@types/synchronizers/index.d.ts",
|
|
1337
|
-
"default": "./min/synchronizers/index.js"
|
|
1338
|
-
}
|
|
1339
|
-
},
|
|
1340
|
-
"./min/synchronizers/with-schemas": {
|
|
1341
|
-
"default": {
|
|
1342
|
-
"types": "./@types/synchronizers/with-schemas/index.d.ts",
|
|
1343
|
-
"default": "./min/synchronizers/index.js"
|
|
1344
|
-
}
|
|
1345
|
-
},
|
|
1346
|
-
"./min/synchronizers/synchronizer-local": {
|
|
1347
|
-
"default": {
|
|
1348
|
-
"types": "./@types/synchronizers/synchronizer-local/index.d.ts",
|
|
1349
|
-
"default": "./min/synchronizers/synchronizer-local/index.js"
|
|
1350
|
-
}
|
|
1351
|
-
},
|
|
1352
|
-
"./min/synchronizers/synchronizer-local/with-schemas": {
|
|
1353
|
-
"default": {
|
|
1354
|
-
"types": "./@types/synchronizers/synchronizer-local/with-schemas/index.d.ts",
|
|
1355
|
-
"default": "./min/synchronizers/synchronizer-local/index.js"
|
|
1356
|
-
}
|
|
1357
|
-
},
|
|
1358
|
-
"./min/synchronizers/synchronizer-ws-client": {
|
|
1394
|
+
"./min/queries": {
|
|
1359
1395
|
"default": {
|
|
1360
|
-
"types": "./@types/
|
|
1361
|
-
"default": "./min/
|
|
1396
|
+
"types": "./@types/queries/index.d.ts",
|
|
1397
|
+
"default": "./min/queries/index.js"
|
|
1362
1398
|
}
|
|
1363
1399
|
},
|
|
1364
|
-
"./min/
|
|
1400
|
+
"./min/queries/with-schemas": {
|
|
1365
1401
|
"default": {
|
|
1366
|
-
"types": "./@types/
|
|
1367
|
-
"default": "./min/
|
|
1402
|
+
"types": "./@types/queries/with-schemas/index.d.ts",
|
|
1403
|
+
"default": "./min/queries/index.js"
|
|
1368
1404
|
}
|
|
1369
1405
|
},
|
|
1370
|
-
"./min/
|
|
1406
|
+
"./min/relationships": {
|
|
1371
1407
|
"default": {
|
|
1372
|
-
"types": "./@types/
|
|
1373
|
-
"default": "./min/
|
|
1408
|
+
"types": "./@types/relationships/index.d.ts",
|
|
1409
|
+
"default": "./min/relationships/index.js"
|
|
1374
1410
|
}
|
|
1375
1411
|
},
|
|
1376
|
-
"./min/
|
|
1412
|
+
"./min/relationships/with-schemas": {
|
|
1377
1413
|
"default": {
|
|
1378
|
-
"types": "./@types/
|
|
1379
|
-
"default": "./min/
|
|
1414
|
+
"types": "./@types/relationships/with-schemas/index.d.ts",
|
|
1415
|
+
"default": "./min/relationships/index.js"
|
|
1380
1416
|
}
|
|
1381
1417
|
},
|
|
1382
|
-
"./min/
|
|
1418
|
+
"./min/store": {
|
|
1383
1419
|
"default": {
|
|
1384
|
-
"types": "./@types/
|
|
1385
|
-
"default": "./min/
|
|
1420
|
+
"types": "./@types/store/index.d.ts",
|
|
1421
|
+
"default": "./min/store/index.js"
|
|
1386
1422
|
}
|
|
1387
1423
|
},
|
|
1388
|
-
"./min/
|
|
1424
|
+
"./min/store/with-schemas": {
|
|
1389
1425
|
"default": {
|
|
1390
|
-
"types": "./@types/
|
|
1391
|
-
"default": "./min/
|
|
1426
|
+
"types": "./@types/store/with-schemas/index.d.ts",
|
|
1427
|
+
"default": "./min/store/index.js"
|
|
1392
1428
|
}
|
|
1393
1429
|
},
|
|
1394
|
-
"./min/synchronizers
|
|
1430
|
+
"./min/synchronizers": {
|
|
1395
1431
|
"default": {
|
|
1396
|
-
"types": "./@types/synchronizers/
|
|
1397
|
-
"default": "./min/synchronizers/
|
|
1432
|
+
"types": "./@types/synchronizers/index.d.ts",
|
|
1433
|
+
"default": "./min/synchronizers/index.js"
|
|
1398
1434
|
}
|
|
1399
1435
|
},
|
|
1400
|
-
"./min/synchronizers/
|
|
1436
|
+
"./min/synchronizers/with-schemas": {
|
|
1401
1437
|
"default": {
|
|
1402
|
-
"types": "./@types/synchronizers/
|
|
1403
|
-
"default": "./min/synchronizers/
|
|
1438
|
+
"types": "./@types/synchronizers/with-schemas/index.d.ts",
|
|
1439
|
+
"default": "./min/synchronizers/index.js"
|
|
1404
1440
|
}
|
|
1405
1441
|
},
|
|
1406
1442
|
"./min/synchronizers/synchronizer-broadcast-channel": {
|
|
@@ -1415,100 +1451,100 @@
|
|
|
1415
1451
|
"default": "./min/synchronizers/synchronizer-broadcast-channel/index.js"
|
|
1416
1452
|
}
|
|
1417
1453
|
},
|
|
1418
|
-
"./min/
|
|
1454
|
+
"./min/synchronizers/synchronizer-local": {
|
|
1419
1455
|
"default": {
|
|
1420
|
-
"types": "./@types/
|
|
1421
|
-
"default": "./min/
|
|
1456
|
+
"types": "./@types/synchronizers/synchronizer-local/index.d.ts",
|
|
1457
|
+
"default": "./min/synchronizers/synchronizer-local/index.js"
|
|
1422
1458
|
}
|
|
1423
1459
|
},
|
|
1424
|
-
"./min/
|
|
1460
|
+
"./min/synchronizers/synchronizer-local/with-schemas": {
|
|
1425
1461
|
"default": {
|
|
1426
|
-
"types": "./@types/
|
|
1427
|
-
"default": "./min/
|
|
1462
|
+
"types": "./@types/synchronizers/synchronizer-local/with-schemas/index.d.ts",
|
|
1463
|
+
"default": "./min/synchronizers/synchronizer-local/index.js"
|
|
1428
1464
|
}
|
|
1429
1465
|
},
|
|
1430
|
-
"./min/
|
|
1466
|
+
"./min/synchronizers/synchronizer-ws-client": {
|
|
1431
1467
|
"default": {
|
|
1432
|
-
"types": "./@types/
|
|
1433
|
-
"default": "./min/
|
|
1468
|
+
"types": "./@types/synchronizers/synchronizer-ws-client/index.d.ts",
|
|
1469
|
+
"default": "./min/synchronizers/synchronizer-ws-client/index.js"
|
|
1434
1470
|
}
|
|
1435
1471
|
},
|
|
1436
|
-
"./min/
|
|
1472
|
+
"./min/synchronizers/synchronizer-ws-client/with-schemas": {
|
|
1437
1473
|
"default": {
|
|
1438
|
-
"types": "./@types/
|
|
1439
|
-
"default": "./min/
|
|
1474
|
+
"types": "./@types/synchronizers/synchronizer-ws-client/with-schemas/index.d.ts",
|
|
1475
|
+
"default": "./min/synchronizers/synchronizer-ws-client/index.js"
|
|
1440
1476
|
}
|
|
1441
1477
|
},
|
|
1442
|
-
"./min/
|
|
1478
|
+
"./min/synchronizers/synchronizer-ws-server-durable-object": {
|
|
1443
1479
|
"default": {
|
|
1444
|
-
"types": "./@types/
|
|
1445
|
-
"default": "./min/
|
|
1480
|
+
"types": "./@types/synchronizers/synchronizer-ws-server-durable-object/index.d.ts",
|
|
1481
|
+
"default": "./min/synchronizers/synchronizer-ws-server-durable-object/index.js"
|
|
1446
1482
|
}
|
|
1447
1483
|
},
|
|
1448
|
-
"./min/
|
|
1484
|
+
"./min/synchronizers/synchronizer-ws-server-durable-object/with-schemas": {
|
|
1449
1485
|
"default": {
|
|
1450
|
-
"types": "./@types/
|
|
1451
|
-
"default": "./min/
|
|
1486
|
+
"types": "./@types/synchronizers/synchronizer-ws-server-durable-object/with-schemas/index.d.ts",
|
|
1487
|
+
"default": "./min/synchronizers/synchronizer-ws-server-durable-object/index.js"
|
|
1452
1488
|
}
|
|
1453
1489
|
},
|
|
1454
|
-
"./min/
|
|
1490
|
+
"./min/synchronizers/synchronizer-ws-server-simple": {
|
|
1455
1491
|
"default": {
|
|
1456
|
-
"types": "./@types/
|
|
1457
|
-
"default": "./min/
|
|
1492
|
+
"types": "./@types/synchronizers/synchronizer-ws-server-simple/index.d.ts",
|
|
1493
|
+
"default": "./min/synchronizers/synchronizer-ws-server-simple/index.js"
|
|
1458
1494
|
}
|
|
1459
1495
|
},
|
|
1460
|
-
"./min/
|
|
1496
|
+
"./min/synchronizers/synchronizer-ws-server-simple/with-schemas": {
|
|
1461
1497
|
"default": {
|
|
1462
|
-
"types": "./@types/
|
|
1463
|
-
"default": "./min/
|
|
1498
|
+
"types": "./@types/synchronizers/synchronizer-ws-server-simple/with-schemas/index.d.ts",
|
|
1499
|
+
"default": "./min/synchronizers/synchronizer-ws-server-simple/index.js"
|
|
1464
1500
|
}
|
|
1465
1501
|
},
|
|
1466
|
-
"./min/
|
|
1502
|
+
"./min/synchronizers/synchronizer-ws-server": {
|
|
1467
1503
|
"default": {
|
|
1468
|
-
"types": "./@types/
|
|
1469
|
-
"default": "./min/
|
|
1504
|
+
"types": "./@types/synchronizers/synchronizer-ws-server/index.d.ts",
|
|
1505
|
+
"default": "./min/synchronizers/synchronizer-ws-server/index.js"
|
|
1470
1506
|
}
|
|
1471
1507
|
},
|
|
1472
|
-
"./min/
|
|
1508
|
+
"./min/synchronizers/synchronizer-ws-server/with-schemas": {
|
|
1473
1509
|
"default": {
|
|
1474
|
-
"types": "./@types/
|
|
1475
|
-
"default": "./min/
|
|
1510
|
+
"types": "./@types/synchronizers/synchronizer-ws-server/with-schemas/index.d.ts",
|
|
1511
|
+
"default": "./min/synchronizers/synchronizer-ws-server/index.js"
|
|
1476
1512
|
}
|
|
1477
1513
|
},
|
|
1478
|
-
"./min/
|
|
1514
|
+
"./min/ui-react-dom": {
|
|
1479
1515
|
"default": {
|
|
1480
|
-
"types": "./@types/
|
|
1481
|
-
"default": "./min/
|
|
1516
|
+
"types": "./@types/ui-react-dom/index.d.ts",
|
|
1517
|
+
"default": "./min/ui-react-dom/index.js"
|
|
1482
1518
|
}
|
|
1483
1519
|
},
|
|
1484
|
-
"./min/
|
|
1520
|
+
"./min/ui-react-dom/with-schemas": {
|
|
1485
1521
|
"default": {
|
|
1486
|
-
"types": "./@types/
|
|
1487
|
-
"default": "./min/
|
|
1522
|
+
"types": "./@types/ui-react-dom/with-schemas/index.d.ts",
|
|
1523
|
+
"default": "./min/ui-react-dom/index.js"
|
|
1488
1524
|
}
|
|
1489
1525
|
},
|
|
1490
|
-
"./min/
|
|
1526
|
+
"./min/ui-react-inspector": {
|
|
1491
1527
|
"default": {
|
|
1492
|
-
"types": "./@types/
|
|
1493
|
-
"default": "./min/
|
|
1528
|
+
"types": "./@types/ui-react-inspector/index.d.ts",
|
|
1529
|
+
"default": "./min/ui-react-inspector/index.js"
|
|
1494
1530
|
}
|
|
1495
1531
|
},
|
|
1496
|
-
"./min/
|
|
1532
|
+
"./min/ui-react-inspector/with-schemas": {
|
|
1497
1533
|
"default": {
|
|
1498
|
-
"types": "./@types/
|
|
1499
|
-
"default": "./min/
|
|
1534
|
+
"types": "./@types/ui-react-inspector/with-schemas/index.d.ts",
|
|
1535
|
+
"default": "./min/ui-react-inspector/index.js"
|
|
1500
1536
|
}
|
|
1501
1537
|
},
|
|
1502
|
-
"./min/
|
|
1538
|
+
"./min/ui-react": {
|
|
1503
1539
|
"default": {
|
|
1504
|
-
"types": "./@types/
|
|
1505
|
-
"default": "./min/
|
|
1540
|
+
"types": "./@types/ui-react/index.d.ts",
|
|
1541
|
+
"default": "./min/ui-react/index.js"
|
|
1506
1542
|
}
|
|
1507
1543
|
},
|
|
1508
|
-
"./min/
|
|
1544
|
+
"./min/ui-react/with-schemas": {
|
|
1509
1545
|
"default": {
|
|
1510
|
-
"types": "./@types/
|
|
1511
|
-
"default": "./min/
|
|
1546
|
+
"types": "./@types/ui-react/with-schemas/index.d.ts",
|
|
1547
|
+
"default": "./min/ui-react/index.js"
|
|
1512
1548
|
}
|
|
1513
1549
|
}
|
|
1514
1550
|
}
|