@contractspec/example.service-business-os 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.
Files changed (1) hide show
  1. package/package.json +257 -41
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.service-business-os",
3
- "version": "1.58.0",
3
+ "version": "1.60.0",
4
4
  "description": "Service Business OS example (clients, quotes, jobs, invoices) for ContractSpec",
5
5
  "types": "./dist/index.d.ts",
6
6
  "type": "module",
@@ -19,51 +19,267 @@
19
19
  "typecheck": "tsc --noEmit"
20
20
  },
21
21
  "dependencies": {
22
- "@contractspec/lib.schema": "1.58.0",
23
- "@contractspec/lib.contracts": "1.58.0"
22
+ "@contractspec/lib.schema": "1.60.0",
23
+ "@contractspec/lib.contracts": "1.60.0"
24
24
  },
25
25
  "devDependencies": {
26
- "@contractspec/tool.typescript": "1.58.0",
26
+ "@contractspec/tool.typescript": "1.60.0",
27
27
  "typescript": "^5.9.3",
28
- "@contractspec/tool.bun": "1.57.0"
28
+ "@contractspec/tool.bun": "1.59.0"
29
29
  },
30
30
  "exports": {
31
- ".": "./src/index.ts",
32
- "./client": "./src/client/index.ts",
33
- "./client/client.operations": "./src/client/client.operations.ts",
34
- "./client/client.schema": "./src/client/client.schema.ts",
35
- "./client/index": "./src/client/index.ts",
36
- "./docs": "./src/docs/index.ts",
37
- "./docs/index": "./src/docs/index.ts",
38
- "./docs/service-business-os.docblock": "./src/docs/service-business-os.docblock.ts",
39
- "./entities": "./src/entities/index.ts",
40
- "./entities/index": "./src/entities/index.ts",
41
- "./events": "./src/events.ts",
42
- "./example": "./src/example.ts",
43
- "./handlers": "./src/handlers/index.ts",
44
- "./handlers/index": "./src/handlers/index.ts",
45
- "./invoice": "./src/invoice/index.ts",
46
- "./invoice/index": "./src/invoice/index.ts",
47
- "./invoice/invoice.operations": "./src/invoice/invoice.operations.ts",
48
- "./invoice/invoice.schema": "./src/invoice/invoice.schema.ts",
49
- "./job": "./src/job/index.ts",
50
- "./job/index": "./src/job/index.ts",
51
- "./job/job.operations": "./src/job/job.operations.ts",
52
- "./job/job.schema": "./src/job/job.schema.ts",
53
- "./operations": "./src/operations/index.ts",
54
- "./operations/index": "./src/operations/index.ts",
55
- "./payment": "./src/payment/index.ts",
56
- "./payment/index": "./src/payment/index.ts",
57
- "./payment/payment.operations": "./src/payment/payment.operations.ts",
58
- "./payment/payment.schema": "./src/payment/payment.schema.ts",
59
- "./presentations": "./src/presentations.ts",
60
- "./presentations/index": "./src/presentations/index.ts",
61
- "./quote": "./src/quote/index.ts",
62
- "./quote/index": "./src/quote/index.ts",
63
- "./quote/quote.operations": "./src/quote/quote.operations.ts",
64
- "./quote/quote.schema": "./src/quote/quote.schema.ts",
65
- "./service-business-os.capability": "./src/service-business-os.capability.ts",
66
- "./service.feature": "./src/service.feature.ts"
31
+ ".": {
32
+ "types": "./dist/index.d.ts",
33
+ "bun": "./dist/index.js",
34
+ "node": "./dist/node/index.mjs",
35
+ "browser": "./dist/browser/index.js",
36
+ "default": "./dist/index.js"
37
+ },
38
+ "./client": {
39
+ "types": "./dist/client/index.d.ts",
40
+ "bun": "./dist/client/index.js",
41
+ "node": "./dist/node/client/index.mjs",
42
+ "browser": "./dist/browser/client/index.js",
43
+ "default": "./dist/client/index.js"
44
+ },
45
+ "./client/client.operations": {
46
+ "types": "./dist/client/client.operations.d.ts",
47
+ "bun": "./dist/client/client.operations.js",
48
+ "node": "./dist/node/client/client.operations.mjs",
49
+ "browser": "./dist/browser/client/client.operations.js",
50
+ "default": "./dist/client/client.operations.js"
51
+ },
52
+ "./client/client.schema": {
53
+ "types": "./dist/client/client.schema.d.ts",
54
+ "bun": "./dist/client/client.schema.js",
55
+ "node": "./dist/node/client/client.schema.mjs",
56
+ "browser": "./dist/browser/client/client.schema.js",
57
+ "default": "./dist/client/client.schema.js"
58
+ },
59
+ "./client/index": {
60
+ "types": "./dist/client/index.d.ts",
61
+ "bun": "./dist/client/index.js",
62
+ "node": "./dist/node/client/index.mjs",
63
+ "browser": "./dist/browser/client/index.js",
64
+ "default": "./dist/client/index.js"
65
+ },
66
+ "./docs": {
67
+ "types": "./dist/docs/index.d.ts",
68
+ "bun": "./dist/docs/index.js",
69
+ "node": "./dist/node/docs/index.mjs",
70
+ "browser": "./dist/browser/docs/index.js",
71
+ "default": "./dist/docs/index.js"
72
+ },
73
+ "./docs/index": {
74
+ "types": "./dist/docs/index.d.ts",
75
+ "bun": "./dist/docs/index.js",
76
+ "node": "./dist/node/docs/index.mjs",
77
+ "browser": "./dist/browser/docs/index.js",
78
+ "default": "./dist/docs/index.js"
79
+ },
80
+ "./docs/service-business-os.docblock": {
81
+ "types": "./dist/docs/service-business-os.docblock.d.ts",
82
+ "bun": "./dist/docs/service-business-os.docblock.js",
83
+ "node": "./dist/node/docs/service-business-os.docblock.mjs",
84
+ "browser": "./dist/browser/docs/service-business-os.docblock.js",
85
+ "default": "./dist/docs/service-business-os.docblock.js"
86
+ },
87
+ "./entities": {
88
+ "types": "./dist/entities/index.d.ts",
89
+ "bun": "./dist/entities/index.js",
90
+ "node": "./dist/node/entities/index.mjs",
91
+ "browser": "./dist/browser/entities/index.js",
92
+ "default": "./dist/entities/index.js"
93
+ },
94
+ "./entities/index": {
95
+ "types": "./dist/entities/index.d.ts",
96
+ "bun": "./dist/entities/index.js",
97
+ "node": "./dist/node/entities/index.mjs",
98
+ "browser": "./dist/browser/entities/index.js",
99
+ "default": "./dist/entities/index.js"
100
+ },
101
+ "./events": {
102
+ "types": "./dist/events.d.ts",
103
+ "bun": "./dist/events.js",
104
+ "node": "./dist/node/events.mjs",
105
+ "browser": "./dist/browser/events.js",
106
+ "default": "./dist/events.js"
107
+ },
108
+ "./example": {
109
+ "types": "./dist/example.d.ts",
110
+ "bun": "./dist/example.js",
111
+ "node": "./dist/node/example.mjs",
112
+ "browser": "./dist/browser/example.js",
113
+ "default": "./dist/example.js"
114
+ },
115
+ "./handlers": {
116
+ "types": "./dist/handlers/index.d.ts",
117
+ "bun": "./dist/handlers/index.js",
118
+ "node": "./dist/node/handlers/index.mjs",
119
+ "browser": "./dist/browser/handlers/index.js",
120
+ "default": "./dist/handlers/index.js"
121
+ },
122
+ "./handlers/index": {
123
+ "types": "./dist/handlers/index.d.ts",
124
+ "bun": "./dist/handlers/index.js",
125
+ "node": "./dist/node/handlers/index.mjs",
126
+ "browser": "./dist/browser/handlers/index.js",
127
+ "default": "./dist/handlers/index.js"
128
+ },
129
+ "./invoice": {
130
+ "types": "./dist/invoice/index.d.ts",
131
+ "bun": "./dist/invoice/index.js",
132
+ "node": "./dist/node/invoice/index.mjs",
133
+ "browser": "./dist/browser/invoice/index.js",
134
+ "default": "./dist/invoice/index.js"
135
+ },
136
+ "./invoice/index": {
137
+ "types": "./dist/invoice/index.d.ts",
138
+ "bun": "./dist/invoice/index.js",
139
+ "node": "./dist/node/invoice/index.mjs",
140
+ "browser": "./dist/browser/invoice/index.js",
141
+ "default": "./dist/invoice/index.js"
142
+ },
143
+ "./invoice/invoice.operations": {
144
+ "types": "./dist/invoice/invoice.operations.d.ts",
145
+ "bun": "./dist/invoice/invoice.operations.js",
146
+ "node": "./dist/node/invoice/invoice.operations.mjs",
147
+ "browser": "./dist/browser/invoice/invoice.operations.js",
148
+ "default": "./dist/invoice/invoice.operations.js"
149
+ },
150
+ "./invoice/invoice.schema": {
151
+ "types": "./dist/invoice/invoice.schema.d.ts",
152
+ "bun": "./dist/invoice/invoice.schema.js",
153
+ "node": "./dist/node/invoice/invoice.schema.mjs",
154
+ "browser": "./dist/browser/invoice/invoice.schema.js",
155
+ "default": "./dist/invoice/invoice.schema.js"
156
+ },
157
+ "./job": {
158
+ "types": "./dist/job/index.d.ts",
159
+ "bun": "./dist/job/index.js",
160
+ "node": "./dist/node/job/index.mjs",
161
+ "browser": "./dist/browser/job/index.js",
162
+ "default": "./dist/job/index.js"
163
+ },
164
+ "./job/index": {
165
+ "types": "./dist/job/index.d.ts",
166
+ "bun": "./dist/job/index.js",
167
+ "node": "./dist/node/job/index.mjs",
168
+ "browser": "./dist/browser/job/index.js",
169
+ "default": "./dist/job/index.js"
170
+ },
171
+ "./job/job.operations": {
172
+ "types": "./dist/job/job.operations.d.ts",
173
+ "bun": "./dist/job/job.operations.js",
174
+ "node": "./dist/node/job/job.operations.mjs",
175
+ "browser": "./dist/browser/job/job.operations.js",
176
+ "default": "./dist/job/job.operations.js"
177
+ },
178
+ "./job/job.schema": {
179
+ "types": "./dist/job/job.schema.d.ts",
180
+ "bun": "./dist/job/job.schema.js",
181
+ "node": "./dist/node/job/job.schema.mjs",
182
+ "browser": "./dist/browser/job/job.schema.js",
183
+ "default": "./dist/job/job.schema.js"
184
+ },
185
+ "./operations": {
186
+ "types": "./dist/operations/index.d.ts",
187
+ "bun": "./dist/operations/index.js",
188
+ "node": "./dist/node/operations/index.mjs",
189
+ "browser": "./dist/browser/operations/index.js",
190
+ "default": "./dist/operations/index.js"
191
+ },
192
+ "./operations/index": {
193
+ "types": "./dist/operations/index.d.ts",
194
+ "bun": "./dist/operations/index.js",
195
+ "node": "./dist/node/operations/index.mjs",
196
+ "browser": "./dist/browser/operations/index.js",
197
+ "default": "./dist/operations/index.js"
198
+ },
199
+ "./payment": {
200
+ "types": "./dist/payment/index.d.ts",
201
+ "bun": "./dist/payment/index.js",
202
+ "node": "./dist/node/payment/index.mjs",
203
+ "browser": "./dist/browser/payment/index.js",
204
+ "default": "./dist/payment/index.js"
205
+ },
206
+ "./payment/index": {
207
+ "types": "./dist/payment/index.d.ts",
208
+ "bun": "./dist/payment/index.js",
209
+ "node": "./dist/node/payment/index.mjs",
210
+ "browser": "./dist/browser/payment/index.js",
211
+ "default": "./dist/payment/index.js"
212
+ },
213
+ "./payment/payment.operations": {
214
+ "types": "./dist/payment/payment.operations.d.ts",
215
+ "bun": "./dist/payment/payment.operations.js",
216
+ "node": "./dist/node/payment/payment.operations.mjs",
217
+ "browser": "./dist/browser/payment/payment.operations.js",
218
+ "default": "./dist/payment/payment.operations.js"
219
+ },
220
+ "./payment/payment.schema": {
221
+ "types": "./dist/payment/payment.schema.d.ts",
222
+ "bun": "./dist/payment/payment.schema.js",
223
+ "node": "./dist/node/payment/payment.schema.mjs",
224
+ "browser": "./dist/browser/payment/payment.schema.js",
225
+ "default": "./dist/payment/payment.schema.js"
226
+ },
227
+ "./presentations": {
228
+ "types": "./dist/presentations.d.ts",
229
+ "bun": "./dist/presentations.js",
230
+ "node": "./dist/node/presentations.mjs",
231
+ "browser": "./dist/browser/presentations.js",
232
+ "default": "./dist/presentations.js"
233
+ },
234
+ "./presentations/index": {
235
+ "types": "./dist/presentations/index.d.ts",
236
+ "bun": "./dist/presentations/index.js",
237
+ "node": "./dist/node/presentations/index.mjs",
238
+ "browser": "./dist/browser/presentations/index.js",
239
+ "default": "./dist/presentations/index.js"
240
+ },
241
+ "./quote": {
242
+ "types": "./dist/quote/index.d.ts",
243
+ "bun": "./dist/quote/index.js",
244
+ "node": "./dist/node/quote/index.mjs",
245
+ "browser": "./dist/browser/quote/index.js",
246
+ "default": "./dist/quote/index.js"
247
+ },
248
+ "./quote/index": {
249
+ "types": "./dist/quote/index.d.ts",
250
+ "bun": "./dist/quote/index.js",
251
+ "node": "./dist/node/quote/index.mjs",
252
+ "browser": "./dist/browser/quote/index.js",
253
+ "default": "./dist/quote/index.js"
254
+ },
255
+ "./quote/quote.operations": {
256
+ "types": "./dist/quote/quote.operations.d.ts",
257
+ "bun": "./dist/quote/quote.operations.js",
258
+ "node": "./dist/node/quote/quote.operations.mjs",
259
+ "browser": "./dist/browser/quote/quote.operations.js",
260
+ "default": "./dist/quote/quote.operations.js"
261
+ },
262
+ "./quote/quote.schema": {
263
+ "types": "./dist/quote/quote.schema.d.ts",
264
+ "bun": "./dist/quote/quote.schema.js",
265
+ "node": "./dist/node/quote/quote.schema.mjs",
266
+ "browser": "./dist/browser/quote/quote.schema.js",
267
+ "default": "./dist/quote/quote.schema.js"
268
+ },
269
+ "./service-business-os.capability": {
270
+ "types": "./dist/service-business-os.capability.d.ts",
271
+ "bun": "./dist/service-business-os.capability.js",
272
+ "node": "./dist/node/service-business-os.capability.mjs",
273
+ "browser": "./dist/browser/service-business-os.capability.js",
274
+ "default": "./dist/service-business-os.capability.js"
275
+ },
276
+ "./service.feature": {
277
+ "types": "./dist/service.feature.d.ts",
278
+ "bun": "./dist/service.feature.js",
279
+ "node": "./dist/node/service.feature.mjs",
280
+ "browser": "./dist/browser/service.feature.js",
281
+ "default": "./dist/service.feature.js"
282
+ }
67
283
  },
68
284
  "files": [
69
285
  "dist",