@contractspec/example.integration-stripe 1.59.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.
@@ -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 44ms
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 44ms
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 39ms
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)
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
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
+
15
+ ## 1.60.0
16
+
17
+ ### Minor Changes
18
+
19
+ - fix: publish with bun
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+ - @contractspec/lib.contracts@1.60.0
25
+ - @contractspec/lib.schema@1.60.0
26
+
3
27
  ## 1.59.0
4
28
 
5
29
  ### Minor Changes
package/package.json CHANGED
@@ -1,19 +1,73 @@
1
1
  {
2
2
  "name": "@contractspec/example.integration-stripe",
3
- "version": "1.59.0",
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",
7
7
  "exports": {
8
- ".": "./src/index.ts",
9
- "./blueprint": "./src/blueprint.ts",
10
- "./connection.sample": "./src/connection.sample.ts",
11
- "./docs": "./src/docs/index.ts",
12
- "./docs/index": "./src/docs/index.ts",
13
- "./docs/integration-stripe.docblock": "./src/docs/integration-stripe.docblock.ts",
14
- "./example": "./src/example.ts",
15
- "./tenant": "./src/tenant.ts",
16
- "./workflow": "./src/workflow.ts"
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "bun": "./dist/index.js",
11
+ "node": "./dist/node/index.js",
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.js",
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.js",
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.js",
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.js",
40
+ "browser": "./dist/browser/docs/index.js",
41
+ "default": "./dist/docs/index.js"
42
+ },
43
+ "./docs/integration-stripe.docblock": {
44
+ "types": "./dist/docs/integration-stripe.docblock.d.ts",
45
+ "bun": "./dist/docs/integration-stripe.docblock.js",
46
+ "node": "./dist/node/docs/integration-stripe.docblock.js",
47
+ "browser": "./dist/browser/docs/integration-stripe.docblock.js",
48
+ "default": "./dist/docs/integration-stripe.docblock.js"
49
+ },
50
+ "./example": {
51
+ "types": "./dist/example.d.ts",
52
+ "bun": "./dist/example.js",
53
+ "node": "./dist/node/example.js",
54
+ "browser": "./dist/browser/example.js",
55
+ "default": "./dist/example.js"
56
+ },
57
+ "./tenant": {
58
+ "types": "./dist/tenant.d.ts",
59
+ "bun": "./dist/tenant.js",
60
+ "node": "./dist/node/tenant.js",
61
+ "browser": "./dist/browser/tenant.js",
62
+ "default": "./dist/tenant.js"
63
+ },
64
+ "./workflow": {
65
+ "types": "./dist/workflow.d.ts",
66
+ "bun": "./dist/workflow.js",
67
+ "node": "./dist/node/workflow.js",
68
+ "browser": "./dist/browser/workflow.js",
69
+ "default": "./dist/workflow.js"
70
+ }
17
71
  },
18
72
  "scripts": {
19
73
  "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
@@ -31,13 +85,13 @@
31
85
  "typecheck": "tsc --noEmit"
32
86
  },
33
87
  "dependencies": {
34
- "@contractspec/lib.schema": "1.59.0",
35
- "@contractspec/lib.contracts": "1.59.0"
88
+ "@contractspec/lib.schema": "1.61.0",
89
+ "@contractspec/lib.contracts": "1.61.0"
36
90
  },
37
91
  "devDependencies": {
38
- "@contractspec/tool.typescript": "1.59.0",
92
+ "@contractspec/tool.typescript": "1.61.0",
39
93
  "typescript": "^5.9.3",
40
- "@contractspec/tool.bun": "1.58.0"
94
+ "@contractspec/tool.bun": "1.60.0"
41
95
  },
42
96
  "publishConfig": {
43
97
  "access": "public",
@@ -45,63 +99,63 @@
45
99
  ".": {
46
100
  "types": "./dist/index.d.ts",
47
101
  "bun": "./dist/index.js",
48
- "node": "./dist/node/index.mjs",
102
+ "node": "./dist/node/index.js",
49
103
  "browser": "./dist/browser/index.js",
50
104
  "default": "./dist/index.js"
51
105
  },
52
106
  "./blueprint": {
53
107
  "types": "./dist/blueprint.d.ts",
54
108
  "bun": "./dist/blueprint.js",
55
- "node": "./dist/node/blueprint.mjs",
109
+ "node": "./dist/node/blueprint.js",
56
110
  "browser": "./dist/browser/blueprint.js",
57
111
  "default": "./dist/blueprint.js"
58
112
  },
59
113
  "./connection.sample": {
60
114
  "types": "./dist/connection.sample.d.ts",
61
115
  "bun": "./dist/connection.sample.js",
62
- "node": "./dist/node/connection.sample.mjs",
116
+ "node": "./dist/node/connection.sample.js",
63
117
  "browser": "./dist/browser/connection.sample.js",
64
118
  "default": "./dist/connection.sample.js"
65
119
  },
66
120
  "./docs": {
67
121
  "types": "./dist/docs/index.d.ts",
68
122
  "bun": "./dist/docs/index.js",
69
- "node": "./dist/node/docs/index.mjs",
123
+ "node": "./dist/node/docs/index.js",
70
124
  "browser": "./dist/browser/docs/index.js",
71
125
  "default": "./dist/docs/index.js"
72
126
  },
73
127
  "./docs/index": {
74
128
  "types": "./dist/docs/index.d.ts",
75
129
  "bun": "./dist/docs/index.js",
76
- "node": "./dist/node/docs/index.mjs",
130
+ "node": "./dist/node/docs/index.js",
77
131
  "browser": "./dist/browser/docs/index.js",
78
132
  "default": "./dist/docs/index.js"
79
133
  },
80
134
  "./docs/integration-stripe.docblock": {
81
135
  "types": "./dist/docs/integration-stripe.docblock.d.ts",
82
136
  "bun": "./dist/docs/integration-stripe.docblock.js",
83
- "node": "./dist/node/docs/integration-stripe.docblock.mjs",
137
+ "node": "./dist/node/docs/integration-stripe.docblock.js",
84
138
  "browser": "./dist/browser/docs/integration-stripe.docblock.js",
85
139
  "default": "./dist/docs/integration-stripe.docblock.js"
86
140
  },
87
141
  "./example": {
88
142
  "types": "./dist/example.d.ts",
89
143
  "bun": "./dist/example.js",
90
- "node": "./dist/node/example.mjs",
144
+ "node": "./dist/node/example.js",
91
145
  "browser": "./dist/browser/example.js",
92
146
  "default": "./dist/example.js"
93
147
  },
94
148
  "./tenant": {
95
149
  "types": "./dist/tenant.d.ts",
96
150
  "bun": "./dist/tenant.js",
97
- "node": "./dist/node/tenant.mjs",
151
+ "node": "./dist/node/tenant.js",
98
152
  "browser": "./dist/browser/tenant.js",
99
153
  "default": "./dist/tenant.js"
100
154
  },
101
155
  "./workflow": {
102
156
  "types": "./dist/workflow.d.ts",
103
157
  "bun": "./dist/workflow.js",
104
- "node": "./dist/node/workflow.mjs",
158
+ "node": "./dist/node/workflow.js",
105
159
  "browser": "./dist/browser/workflow.js",
106
160
  "default": "./dist/workflow.js"
107
161
  }