@contractspec/example.integration-stripe 1.60.0 → 1.61.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 +12 -0
- package/package.json +23 -23
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 36ms
|
|
7
7
|
|
|
8
8
|
./blueprint.js 1.77 KB (entry point)
|
|
9
9
|
./index.js 7.69 KB (entry point)
|
|
@@ -15,7 +15,7 @@ Bundled 8 modules in 32ms
|
|
|
15
15
|
./workflow.js 1.41 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 12ms
|
|
19
19
|
|
|
20
20
|
./blueprint.js 1.76 KB (entry point)
|
|
21
21
|
./index.js 7.66 KB (entry point)
|
|
@@ -27,7 +27,7 @@ Bundled 8 modules in 13ms
|
|
|
27
27
|
./workflow.js 1.40 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 33ms
|
|
31
31
|
|
|
32
32
|
./blueprint.js 1.76 KB (entry point)
|
|
33
33
|
./index.js 7.66 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @contractspec/example.integration-stripe
|
|
2
2
|
|
|
3
|
+
## 1.61.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 374fd71: fix: publishing
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [374fd71]
|
|
12
|
+
- @contractspec/lib.contracts@1.61.0
|
|
13
|
+
- @contractspec/lib.schema@1.61.0
|
|
14
|
+
|
|
3
15
|
## 1.60.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.integration-stripe",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.61.0",
|
|
4
4
|
"description": "Integration example – Stripe Payments (blueprint + workflow + tenant config).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -8,63 +8,63 @@
|
|
|
8
8
|
".": {
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
10
10
|
"bun": "./dist/index.js",
|
|
11
|
-
"node": "./dist/node/index.
|
|
11
|
+
"node": "./dist/node/index.js",
|
|
12
12
|
"browser": "./dist/browser/index.js",
|
|
13
13
|
"default": "./dist/index.js"
|
|
14
14
|
},
|
|
15
15
|
"./blueprint": {
|
|
16
16
|
"types": "./dist/blueprint.d.ts",
|
|
17
17
|
"bun": "./dist/blueprint.js",
|
|
18
|
-
"node": "./dist/node/blueprint.
|
|
18
|
+
"node": "./dist/node/blueprint.js",
|
|
19
19
|
"browser": "./dist/browser/blueprint.js",
|
|
20
20
|
"default": "./dist/blueprint.js"
|
|
21
21
|
},
|
|
22
22
|
"./connection.sample": {
|
|
23
23
|
"types": "./dist/connection.sample.d.ts",
|
|
24
24
|
"bun": "./dist/connection.sample.js",
|
|
25
|
-
"node": "./dist/node/connection.sample.
|
|
25
|
+
"node": "./dist/node/connection.sample.js",
|
|
26
26
|
"browser": "./dist/browser/connection.sample.js",
|
|
27
27
|
"default": "./dist/connection.sample.js"
|
|
28
28
|
},
|
|
29
29
|
"./docs": {
|
|
30
30
|
"types": "./dist/docs/index.d.ts",
|
|
31
31
|
"bun": "./dist/docs/index.js",
|
|
32
|
-
"node": "./dist/node/docs/index.
|
|
32
|
+
"node": "./dist/node/docs/index.js",
|
|
33
33
|
"browser": "./dist/browser/docs/index.js",
|
|
34
34
|
"default": "./dist/docs/index.js"
|
|
35
35
|
},
|
|
36
36
|
"./docs/index": {
|
|
37
37
|
"types": "./dist/docs/index.d.ts",
|
|
38
38
|
"bun": "./dist/docs/index.js",
|
|
39
|
-
"node": "./dist/node/docs/index.
|
|
39
|
+
"node": "./dist/node/docs/index.js",
|
|
40
40
|
"browser": "./dist/browser/docs/index.js",
|
|
41
41
|
"default": "./dist/docs/index.js"
|
|
42
42
|
},
|
|
43
43
|
"./docs/integration-stripe.docblock": {
|
|
44
44
|
"types": "./dist/docs/integration-stripe.docblock.d.ts",
|
|
45
45
|
"bun": "./dist/docs/integration-stripe.docblock.js",
|
|
46
|
-
"node": "./dist/node/docs/integration-stripe.docblock.
|
|
46
|
+
"node": "./dist/node/docs/integration-stripe.docblock.js",
|
|
47
47
|
"browser": "./dist/browser/docs/integration-stripe.docblock.js",
|
|
48
48
|
"default": "./dist/docs/integration-stripe.docblock.js"
|
|
49
49
|
},
|
|
50
50
|
"./example": {
|
|
51
51
|
"types": "./dist/example.d.ts",
|
|
52
52
|
"bun": "./dist/example.js",
|
|
53
|
-
"node": "./dist/node/example.
|
|
53
|
+
"node": "./dist/node/example.js",
|
|
54
54
|
"browser": "./dist/browser/example.js",
|
|
55
55
|
"default": "./dist/example.js"
|
|
56
56
|
},
|
|
57
57
|
"./tenant": {
|
|
58
58
|
"types": "./dist/tenant.d.ts",
|
|
59
59
|
"bun": "./dist/tenant.js",
|
|
60
|
-
"node": "./dist/node/tenant.
|
|
60
|
+
"node": "./dist/node/tenant.js",
|
|
61
61
|
"browser": "./dist/browser/tenant.js",
|
|
62
62
|
"default": "./dist/tenant.js"
|
|
63
63
|
},
|
|
64
64
|
"./workflow": {
|
|
65
65
|
"types": "./dist/workflow.d.ts",
|
|
66
66
|
"bun": "./dist/workflow.js",
|
|
67
|
-
"node": "./dist/node/workflow.
|
|
67
|
+
"node": "./dist/node/workflow.js",
|
|
68
68
|
"browser": "./dist/browser/workflow.js",
|
|
69
69
|
"default": "./dist/workflow.js"
|
|
70
70
|
}
|
|
@@ -85,13 +85,13 @@
|
|
|
85
85
|
"typecheck": "tsc --noEmit"
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
|
-
"@contractspec/lib.schema": "1.
|
|
89
|
-
"@contractspec/lib.contracts": "1.
|
|
88
|
+
"@contractspec/lib.schema": "1.61.0",
|
|
89
|
+
"@contractspec/lib.contracts": "1.61.0"
|
|
90
90
|
},
|
|
91
91
|
"devDependencies": {
|
|
92
|
-
"@contractspec/tool.typescript": "1.
|
|
92
|
+
"@contractspec/tool.typescript": "1.61.0",
|
|
93
93
|
"typescript": "^5.9.3",
|
|
94
|
-
"@contractspec/tool.bun": "1.
|
|
94
|
+
"@contractspec/tool.bun": "1.60.0"
|
|
95
95
|
},
|
|
96
96
|
"publishConfig": {
|
|
97
97
|
"access": "public",
|
|
@@ -99,63 +99,63 @@
|
|
|
99
99
|
".": {
|
|
100
100
|
"types": "./dist/index.d.ts",
|
|
101
101
|
"bun": "./dist/index.js",
|
|
102
|
-
"node": "./dist/node/index.
|
|
102
|
+
"node": "./dist/node/index.js",
|
|
103
103
|
"browser": "./dist/browser/index.js",
|
|
104
104
|
"default": "./dist/index.js"
|
|
105
105
|
},
|
|
106
106
|
"./blueprint": {
|
|
107
107
|
"types": "./dist/blueprint.d.ts",
|
|
108
108
|
"bun": "./dist/blueprint.js",
|
|
109
|
-
"node": "./dist/node/blueprint.
|
|
109
|
+
"node": "./dist/node/blueprint.js",
|
|
110
110
|
"browser": "./dist/browser/blueprint.js",
|
|
111
111
|
"default": "./dist/blueprint.js"
|
|
112
112
|
},
|
|
113
113
|
"./connection.sample": {
|
|
114
114
|
"types": "./dist/connection.sample.d.ts",
|
|
115
115
|
"bun": "./dist/connection.sample.js",
|
|
116
|
-
"node": "./dist/node/connection.sample.
|
|
116
|
+
"node": "./dist/node/connection.sample.js",
|
|
117
117
|
"browser": "./dist/browser/connection.sample.js",
|
|
118
118
|
"default": "./dist/connection.sample.js"
|
|
119
119
|
},
|
|
120
120
|
"./docs": {
|
|
121
121
|
"types": "./dist/docs/index.d.ts",
|
|
122
122
|
"bun": "./dist/docs/index.js",
|
|
123
|
-
"node": "./dist/node/docs/index.
|
|
123
|
+
"node": "./dist/node/docs/index.js",
|
|
124
124
|
"browser": "./dist/browser/docs/index.js",
|
|
125
125
|
"default": "./dist/docs/index.js"
|
|
126
126
|
},
|
|
127
127
|
"./docs/index": {
|
|
128
128
|
"types": "./dist/docs/index.d.ts",
|
|
129
129
|
"bun": "./dist/docs/index.js",
|
|
130
|
-
"node": "./dist/node/docs/index.
|
|
130
|
+
"node": "./dist/node/docs/index.js",
|
|
131
131
|
"browser": "./dist/browser/docs/index.js",
|
|
132
132
|
"default": "./dist/docs/index.js"
|
|
133
133
|
},
|
|
134
134
|
"./docs/integration-stripe.docblock": {
|
|
135
135
|
"types": "./dist/docs/integration-stripe.docblock.d.ts",
|
|
136
136
|
"bun": "./dist/docs/integration-stripe.docblock.js",
|
|
137
|
-
"node": "./dist/node/docs/integration-stripe.docblock.
|
|
137
|
+
"node": "./dist/node/docs/integration-stripe.docblock.js",
|
|
138
138
|
"browser": "./dist/browser/docs/integration-stripe.docblock.js",
|
|
139
139
|
"default": "./dist/docs/integration-stripe.docblock.js"
|
|
140
140
|
},
|
|
141
141
|
"./example": {
|
|
142
142
|
"types": "./dist/example.d.ts",
|
|
143
143
|
"bun": "./dist/example.js",
|
|
144
|
-
"node": "./dist/node/example.
|
|
144
|
+
"node": "./dist/node/example.js",
|
|
145
145
|
"browser": "./dist/browser/example.js",
|
|
146
146
|
"default": "./dist/example.js"
|
|
147
147
|
},
|
|
148
148
|
"./tenant": {
|
|
149
149
|
"types": "./dist/tenant.d.ts",
|
|
150
150
|
"bun": "./dist/tenant.js",
|
|
151
|
-
"node": "./dist/node/tenant.
|
|
151
|
+
"node": "./dist/node/tenant.js",
|
|
152
152
|
"browser": "./dist/browser/tenant.js",
|
|
153
153
|
"default": "./dist/tenant.js"
|
|
154
154
|
},
|
|
155
155
|
"./workflow": {
|
|
156
156
|
"types": "./dist/workflow.d.ts",
|
|
157
157
|
"bun": "./dist/workflow.js",
|
|
158
|
-
"node": "./dist/node/workflow.
|
|
158
|
+
"node": "./dist/node/workflow.js",
|
|
159
159
|
"browser": "./dist/browser/workflow.js",
|
|
160
160
|
"default": "./dist/workflow.js"
|
|
161
161
|
}
|