tinybase 8.3.0-beta.0 → 8.3.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/_internal/ui-solid/index.d.ts +0 -0
- package/@types/_internal/ui-solid/with-schemas/index.d.ts +1104 -0
- package/@types/persisters/index.d.ts +2 -2
- package/@types/persisters/with-schemas/index.d.ts +2 -2
- package/@types/queries/index.d.ts +141 -0
- package/@types/queries/with-schemas/index.d.ts +184 -0
- package/@types/ui-react/index.d.ts +6 -6
- package/@types/ui-react/with-schemas/index.d.ts +6 -6
- package/@types/ui-solid/index.d.ts +16336 -0
- package/@types/ui-solid/with-schemas/index.d.ts +16951 -0
- package/@types/ui-svelte/index.d.ts +6123 -80
- package/@types/ui-svelte/with-schemas/index.d.ts +7348 -89
- package/agents.md +3 -3
- package/index.js +594 -418
- package/indexes/index.js +8 -22
- package/indexes/with-schemas/index.js +8 -22
- package/metrics/index.js +8 -22
- package/metrics/with-schemas/index.js +8 -22
- package/min/index.js +1 -1
- package/min/index.js.gz +0 -0
- package/min/indexes/index.js +1 -1
- package/min/indexes/index.js.gz +0 -0
- package/min/indexes/with-schemas/index.js +1 -1
- package/min/indexes/with-schemas/index.js.gz +0 -0
- package/min/metrics/index.js +1 -1
- package/min/metrics/index.js.gz +0 -0
- package/min/metrics/with-schemas/index.js +1 -1
- package/min/metrics/with-schemas/index.js.gz +0 -0
- package/min/omni/index.js +1 -1
- package/min/omni/index.js.gz +0 -0
- package/min/omni/with-schemas/index.js +1 -1
- package/min/omni/with-schemas/index.js.gz +0 -0
- package/min/queries/index.js +1 -1
- package/min/queries/index.js.gz +0 -0
- package/min/queries/with-schemas/index.js +1 -1
- package/min/queries/with-schemas/index.js.gz +0 -0
- package/min/relationships/index.js +1 -1
- package/min/relationships/index.js.gz +0 -0
- package/min/relationships/with-schemas/index.js +1 -1
- package/min/relationships/with-schemas/index.js.gz +0 -0
- package/min/ui-react/index.js +1 -1
- package/min/ui-react/index.js.gz +0 -0
- package/min/ui-react/with-schemas/index.js +1 -1
- package/min/ui-react/with-schemas/index.js.gz +0 -0
- package/min/ui-solid/index.js +1 -0
- package/min/ui-solid/index.js.gz +0 -0
- package/min/ui-solid/with-schemas/index.js +1 -0
- package/min/ui-solid/with-schemas/index.js.gz +0 -0
- package/min/ui-svelte/index.js +1 -1
- package/min/ui-svelte/index.js.gz +0 -0
- package/min/ui-svelte/with-schemas/index.js +1 -1
- package/min/ui-svelte/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 +594 -418
- package/omni/with-schemas/index.js +594 -418
- package/package.json +53 -13
- package/queries/index.js +596 -454
- package/queries/with-schemas/index.js +596 -454
- package/readme.md +14 -14
- package/relationships/index.js +8 -22
- package/relationships/with-schemas/index.js +8 -22
- package/releases.md +51 -51
- package/ui-react/index.js +1 -1
- package/ui-react/with-schemas/index.js +1 -1
- package/ui-solid/index.js +2154 -0
- package/ui-solid/with-schemas/index.js +2154 -0
- package/ui-svelte/index.js +12 -5
- package/ui-svelte/with-schemas/index.js +12 -5
- package/ui-svelte-dom/index.js +2 -2
- package/ui-svelte-dom/with-schemas/index.js +2 -2
- package/ui-svelte-inspector/index.js +2 -2
- package/ui-svelte-inspector/with-schemas/index.js +2 -2
- package/with-schemas/index.js +594 -418
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tinybase",
|
|
3
|
-
"version": "8.3.0-beta.
|
|
3
|
+
"version": "8.3.0-beta.2",
|
|
4
4
|
"author": "jamesgpearce",
|
|
5
5
|
"repository": "github:tinyplex/tinybase",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,32 +22,33 @@
|
|
|
22
22
|
"sideEffects": false,
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"@automerge/automerge-repo": "^2.5.5",
|
|
25
|
-
"@cloudflare/workers-types": "^4.
|
|
26
|
-
"@electric-sql/pglite": "^0.4.
|
|
27
|
-
"@libsql/client": "^0.17.
|
|
25
|
+
"@cloudflare/workers-types": "^4.20260506.1",
|
|
26
|
+
"@electric-sql/pglite": "^0.4.5",
|
|
27
|
+
"@libsql/client": "^0.17.3",
|
|
28
28
|
"@powersync/common": "^1.52.0",
|
|
29
29
|
"@sinclair/typebox": "^0.34.49",
|
|
30
|
-
"@sqlite.org/sqlite-wasm": "^3.
|
|
30
|
+
"@sqlite.org/sqlite-wasm": "^3.53.0-build1",
|
|
31
31
|
"@vlcn.io/crsqlite-wasm": "^0.16.0",
|
|
32
32
|
"arktype": "^2.2.0",
|
|
33
|
-
"bun": "^1.3.
|
|
34
|
-
"effect": "^3.21.
|
|
33
|
+
"bun": "^1.3.13",
|
|
34
|
+
"effect": "^3.21.2",
|
|
35
35
|
"electric-sql": "^0.12.1",
|
|
36
|
-
"expo": "^55.0.
|
|
37
|
-
"expo-sqlite": "^55.0.
|
|
36
|
+
"expo": "^55.0.23",
|
|
37
|
+
"expo-sqlite": "^55.0.15",
|
|
38
38
|
"partykit": "^0.0.115",
|
|
39
|
-
"partysocket": "^1.1.
|
|
39
|
+
"partysocket": "^1.1.18",
|
|
40
40
|
"postgres": "^3.4.9",
|
|
41
41
|
"react": "^19.2.5",
|
|
42
42
|
"react-dom": "^19.2.5",
|
|
43
43
|
"react-native-mmkv": "4.3.1",
|
|
44
44
|
"react-native-sqlite-storage": "^6.0.1",
|
|
45
|
+
"solid-js": "^1.9.12",
|
|
45
46
|
"sqlite3": "^5.1.7",
|
|
46
|
-
"svelte": "^5.55.
|
|
47
|
-
"valibot": "^1.
|
|
47
|
+
"svelte": "^5.55.5",
|
|
48
|
+
"valibot": "^1.4.0",
|
|
48
49
|
"ws": "^8.20.0",
|
|
49
50
|
"yjs": "^13.6.30",
|
|
50
|
-
"zod": "^4.3
|
|
51
|
+
"zod": "^4.4.3"
|
|
51
52
|
},
|
|
52
53
|
"peerDependenciesMeta": {
|
|
53
54
|
"@automerge/automerge-repo": {
|
|
@@ -113,6 +114,9 @@
|
|
|
113
114
|
"react-native-mmkv": {
|
|
114
115
|
"optional": true
|
|
115
116
|
},
|
|
117
|
+
"solid-js": {
|
|
118
|
+
"optional": true
|
|
119
|
+
},
|
|
116
120
|
"sqlite3": {
|
|
117
121
|
"optional": true
|
|
118
122
|
},
|
|
@@ -442,6 +446,12 @@
|
|
|
442
446
|
"ui-react/with-schemas": [
|
|
443
447
|
"./@types/ui-react/with-schemas/index.d.ts"
|
|
444
448
|
],
|
|
449
|
+
"ui-solid": [
|
|
450
|
+
"./@types/ui-solid/index.d.ts"
|
|
451
|
+
],
|
|
452
|
+
"ui-solid/with-schemas": [
|
|
453
|
+
"./@types/ui-solid/with-schemas/index.d.ts"
|
|
454
|
+
],
|
|
445
455
|
"ui-svelte-dom": [
|
|
446
456
|
"./@types/ui-svelte-dom/index.d.ts"
|
|
447
457
|
],
|
|
@@ -766,6 +776,12 @@
|
|
|
766
776
|
"min/ui-react/with-schemas": [
|
|
767
777
|
"./@types/ui-react/with-schemas/index.d.ts"
|
|
768
778
|
],
|
|
779
|
+
"min/ui-solid": [
|
|
780
|
+
"./@types/ui-solid/index.d.ts"
|
|
781
|
+
],
|
|
782
|
+
"min/ui-solid/with-schemas": [
|
|
783
|
+
"./@types/ui-solid/with-schemas/index.d.ts"
|
|
784
|
+
],
|
|
769
785
|
"min/ui-svelte-dom": [
|
|
770
786
|
"./@types/ui-svelte-dom/index.d.ts"
|
|
771
787
|
],
|
|
@@ -1399,6 +1415,18 @@
|
|
|
1399
1415
|
"default": "./ui-react/index.js"
|
|
1400
1416
|
}
|
|
1401
1417
|
},
|
|
1418
|
+
"./ui-solid": {
|
|
1419
|
+
"default": {
|
|
1420
|
+
"types": "./@types/ui-solid/index.d.ts",
|
|
1421
|
+
"default": "./ui-solid/index.js"
|
|
1422
|
+
}
|
|
1423
|
+
},
|
|
1424
|
+
"./ui-solid/with-schemas": {
|
|
1425
|
+
"default": {
|
|
1426
|
+
"types": "./@types/ui-solid/with-schemas/index.d.ts",
|
|
1427
|
+
"default": "./ui-solid/index.js"
|
|
1428
|
+
}
|
|
1429
|
+
},
|
|
1402
1430
|
"./ui-svelte-dom": {
|
|
1403
1431
|
"default": {
|
|
1404
1432
|
"types": "./@types/ui-svelte-dom/index.d.ts",
|
|
@@ -2047,6 +2075,18 @@
|
|
|
2047
2075
|
"default": "./min/ui-react/index.js"
|
|
2048
2076
|
}
|
|
2049
2077
|
},
|
|
2078
|
+
"./min/ui-solid": {
|
|
2079
|
+
"default": {
|
|
2080
|
+
"types": "./@types/ui-solid/index.d.ts",
|
|
2081
|
+
"default": "./min/ui-solid/index.js"
|
|
2082
|
+
}
|
|
2083
|
+
},
|
|
2084
|
+
"./min/ui-solid/with-schemas": {
|
|
2085
|
+
"default": {
|
|
2086
|
+
"types": "./@types/ui-solid/with-schemas/index.d.ts",
|
|
2087
|
+
"default": "./min/ui-solid/index.js"
|
|
2088
|
+
}
|
|
2089
|
+
},
|
|
2050
2090
|
"./min/ui-svelte-dom": {
|
|
2051
2091
|
"default": {
|
|
2052
2092
|
"types": "./@types/ui-svelte-dom/index.d.ts",
|