@contractspec/example.integration-supabase 1.58.0 → 1.60.0
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/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +26 -0
- package/package.json +69 -15
package/.turbo/turbo-build.log
CHANGED
|
@@ -3,7 +3,7 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
|
|
|
3
3
|
$ contractspec-bun-build prebuild
|
|
4
4
|
$ contractspec-bun-build transpile
|
|
5
5
|
[contractspec-bun-build] transpile target=bun root=src entries=8
|
|
6
|
-
Bundled 8 modules in
|
|
6
|
+
Bundled 8 modules in 14ms
|
|
7
7
|
|
|
8
8
|
./blueprint.js 1.92 KB (entry point)
|
|
9
9
|
./index.js 8.81 KB (entry point)
|
|
@@ -15,7 +15,7 @@ Bundled 8 modules in 36ms
|
|
|
15
15
|
./tenant.js 1.12 KB (entry point)
|
|
16
16
|
|
|
17
17
|
[contractspec-bun-build] transpile target=node root=src entries=8
|
|
18
|
-
Bundled 8 modules in
|
|
18
|
+
Bundled 8 modules in 36ms
|
|
19
19
|
|
|
20
20
|
./blueprint.js 1.91 KB (entry point)
|
|
21
21
|
./index.js 8.80 KB (entry point)
|
|
@@ -27,7 +27,7 @@ Bundled 8 modules in 35ms
|
|
|
27
27
|
./tenant.js 1.12 KB (entry point)
|
|
28
28
|
|
|
29
29
|
[contractspec-bun-build] transpile target=browser root=src entries=8
|
|
30
|
-
Bundled 8 modules in
|
|
30
|
+
Bundled 8 modules in 54ms
|
|
31
31
|
|
|
32
32
|
./blueprint.js 1.91 KB (entry point)
|
|
33
33
|
./index.js 8.80 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @contractspec/example.integration-supabase
|
|
2
2
|
|
|
3
|
+
## 1.60.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fix: publish with bun
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @contractspec/integration.providers-impls@1.60.0
|
|
13
|
+
- @contractspec/integration.runtime@1.60.0
|
|
14
|
+
- @contractspec/lib.contracts@1.60.0
|
|
15
|
+
|
|
16
|
+
## 1.59.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- 1a0cf44: fix: publishConfig not supported by bun
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [1a0cf44]
|
|
25
|
+
- @contractspec/integration.providers-impls@1.59.0
|
|
26
|
+
- @contractspec/integration.runtime@1.59.0
|
|
27
|
+
- @contractspec/lib.contracts@1.59.0
|
|
28
|
+
|
|
3
29
|
## 1.58.0
|
|
4
30
|
|
|
5
31
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,19 +1,73 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.integration-supabase",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.60.0",
|
|
4
4
|
"description": "Integration example - Supabase vector store + Postgres database wiring.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
|
-
".":
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"./
|
|
16
|
-
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"bun": "./dist/index.js",
|
|
11
|
+
"node": "./dist/node/index.mjs",
|
|
12
|
+
"browser": "./dist/browser/index.js",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./blueprint": {
|
|
16
|
+
"types": "./dist/blueprint.d.ts",
|
|
17
|
+
"bun": "./dist/blueprint.js",
|
|
18
|
+
"node": "./dist/node/blueprint.mjs",
|
|
19
|
+
"browser": "./dist/browser/blueprint.js",
|
|
20
|
+
"default": "./dist/blueprint.js"
|
|
21
|
+
},
|
|
22
|
+
"./connection.sample": {
|
|
23
|
+
"types": "./dist/connection.sample.d.ts",
|
|
24
|
+
"bun": "./dist/connection.sample.js",
|
|
25
|
+
"node": "./dist/node/connection.sample.mjs",
|
|
26
|
+
"browser": "./dist/browser/connection.sample.js",
|
|
27
|
+
"default": "./dist/connection.sample.js"
|
|
28
|
+
},
|
|
29
|
+
"./docs": {
|
|
30
|
+
"types": "./dist/docs/index.d.ts",
|
|
31
|
+
"bun": "./dist/docs/index.js",
|
|
32
|
+
"node": "./dist/node/docs/index.mjs",
|
|
33
|
+
"browser": "./dist/browser/docs/index.js",
|
|
34
|
+
"default": "./dist/docs/index.js"
|
|
35
|
+
},
|
|
36
|
+
"./docs/index": {
|
|
37
|
+
"types": "./dist/docs/index.d.ts",
|
|
38
|
+
"bun": "./dist/docs/index.js",
|
|
39
|
+
"node": "./dist/node/docs/index.mjs",
|
|
40
|
+
"browser": "./dist/browser/docs/index.js",
|
|
41
|
+
"default": "./dist/docs/index.js"
|
|
42
|
+
},
|
|
43
|
+
"./docs/integration-supabase.docblock": {
|
|
44
|
+
"types": "./dist/docs/integration-supabase.docblock.d.ts",
|
|
45
|
+
"bun": "./dist/docs/integration-supabase.docblock.js",
|
|
46
|
+
"node": "./dist/node/docs/integration-supabase.docblock.mjs",
|
|
47
|
+
"browser": "./dist/browser/docs/integration-supabase.docblock.js",
|
|
48
|
+
"default": "./dist/docs/integration-supabase.docblock.js"
|
|
49
|
+
},
|
|
50
|
+
"./example": {
|
|
51
|
+
"types": "./dist/example.d.ts",
|
|
52
|
+
"bun": "./dist/example.js",
|
|
53
|
+
"node": "./dist/node/example.mjs",
|
|
54
|
+
"browser": "./dist/browser/example.js",
|
|
55
|
+
"default": "./dist/example.js"
|
|
56
|
+
},
|
|
57
|
+
"./runtime.sample": {
|
|
58
|
+
"types": "./dist/runtime.sample.d.ts",
|
|
59
|
+
"bun": "./dist/runtime.sample.js",
|
|
60
|
+
"node": "./dist/node/runtime.sample.mjs",
|
|
61
|
+
"browser": "./dist/browser/runtime.sample.js",
|
|
62
|
+
"default": "./dist/runtime.sample.js"
|
|
63
|
+
},
|
|
64
|
+
"./tenant": {
|
|
65
|
+
"types": "./dist/tenant.d.ts",
|
|
66
|
+
"bun": "./dist/tenant.js",
|
|
67
|
+
"node": "./dist/node/tenant.mjs",
|
|
68
|
+
"browser": "./dist/browser/tenant.js",
|
|
69
|
+
"default": "./dist/tenant.js"
|
|
70
|
+
}
|
|
17
71
|
},
|
|
18
72
|
"scripts": {
|
|
19
73
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
@@ -31,14 +85,14 @@
|
|
|
31
85
|
"typecheck": "tsc --noEmit"
|
|
32
86
|
},
|
|
33
87
|
"dependencies": {
|
|
34
|
-
"@contractspec/integration.providers-impls": "1.
|
|
35
|
-
"@contractspec/integration.runtime": "1.
|
|
36
|
-
"@contractspec/lib.contracts": "1.
|
|
88
|
+
"@contractspec/integration.providers-impls": "1.60.0",
|
|
89
|
+
"@contractspec/integration.runtime": "1.60.0",
|
|
90
|
+
"@contractspec/lib.contracts": "1.60.0"
|
|
37
91
|
},
|
|
38
92
|
"devDependencies": {
|
|
39
|
-
"@contractspec/tool.typescript": "1.
|
|
93
|
+
"@contractspec/tool.typescript": "1.60.0",
|
|
40
94
|
"typescript": "^5.9.3",
|
|
41
|
-
"@contractspec/tool.bun": "1.
|
|
95
|
+
"@contractspec/tool.bun": "1.59.0"
|
|
42
96
|
},
|
|
43
97
|
"publishConfig": {
|
|
44
98
|
"access": "public",
|