@contractspec/example.service-business-os 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.
Files changed (1) hide show
  1. package/package.json +293 -77
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.service-business-os",
3
- "version": "1.59.0",
3
+ "version": "1.61.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.59.0",
23
- "@contractspec/lib.contracts": "1.59.0"
22
+ "@contractspec/lib.schema": "1.61.0",
23
+ "@contractspec/lib.contracts": "1.61.0"
24
24
  },
25
25
  "devDependencies": {
26
- "@contractspec/tool.typescript": "1.59.0",
26
+ "@contractspec/tool.typescript": "1.61.0",
27
27
  "typescript": "^5.9.3",
28
- "@contractspec/tool.bun": "1.58.0"
28
+ "@contractspec/tool.bun": "1.60.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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
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.js",
280
+ "browser": "./dist/browser/service.feature.js",
281
+ "default": "./dist/service.feature.js"
282
+ }
67
283
  },
68
284
  "files": [
69
285
  "dist",
@@ -75,252 +291,252 @@
75
291
  ".": {
76
292
  "types": "./dist/index.d.ts",
77
293
  "bun": "./dist/index.js",
78
- "node": "./dist/node/index.mjs",
294
+ "node": "./dist/node/index.js",
79
295
  "browser": "./dist/browser/index.js",
80
296
  "default": "./dist/index.js"
81
297
  },
82
298
  "./client": {
83
299
  "types": "./dist/client/index.d.ts",
84
300
  "bun": "./dist/client/index.js",
85
- "node": "./dist/node/client/index.mjs",
301
+ "node": "./dist/node/client/index.js",
86
302
  "browser": "./dist/browser/client/index.js",
87
303
  "default": "./dist/client/index.js"
88
304
  },
89
305
  "./client/client.operations": {
90
306
  "types": "./dist/client/client.operations.d.ts",
91
307
  "bun": "./dist/client/client.operations.js",
92
- "node": "./dist/node/client/client.operations.mjs",
308
+ "node": "./dist/node/client/client.operations.js",
93
309
  "browser": "./dist/browser/client/client.operations.js",
94
310
  "default": "./dist/client/client.operations.js"
95
311
  },
96
312
  "./client/client.schema": {
97
313
  "types": "./dist/client/client.schema.d.ts",
98
314
  "bun": "./dist/client/client.schema.js",
99
- "node": "./dist/node/client/client.schema.mjs",
315
+ "node": "./dist/node/client/client.schema.js",
100
316
  "browser": "./dist/browser/client/client.schema.js",
101
317
  "default": "./dist/client/client.schema.js"
102
318
  },
103
319
  "./client/index": {
104
320
  "types": "./dist/client/index.d.ts",
105
321
  "bun": "./dist/client/index.js",
106
- "node": "./dist/node/client/index.mjs",
322
+ "node": "./dist/node/client/index.js",
107
323
  "browser": "./dist/browser/client/index.js",
108
324
  "default": "./dist/client/index.js"
109
325
  },
110
326
  "./docs": {
111
327
  "types": "./dist/docs/index.d.ts",
112
328
  "bun": "./dist/docs/index.js",
113
- "node": "./dist/node/docs/index.mjs",
329
+ "node": "./dist/node/docs/index.js",
114
330
  "browser": "./dist/browser/docs/index.js",
115
331
  "default": "./dist/docs/index.js"
116
332
  },
117
333
  "./docs/index": {
118
334
  "types": "./dist/docs/index.d.ts",
119
335
  "bun": "./dist/docs/index.js",
120
- "node": "./dist/node/docs/index.mjs",
336
+ "node": "./dist/node/docs/index.js",
121
337
  "browser": "./dist/browser/docs/index.js",
122
338
  "default": "./dist/docs/index.js"
123
339
  },
124
340
  "./docs/service-business-os.docblock": {
125
341
  "types": "./dist/docs/service-business-os.docblock.d.ts",
126
342
  "bun": "./dist/docs/service-business-os.docblock.js",
127
- "node": "./dist/node/docs/service-business-os.docblock.mjs",
343
+ "node": "./dist/node/docs/service-business-os.docblock.js",
128
344
  "browser": "./dist/browser/docs/service-business-os.docblock.js",
129
345
  "default": "./dist/docs/service-business-os.docblock.js"
130
346
  },
131
347
  "./entities": {
132
348
  "types": "./dist/entities/index.d.ts",
133
349
  "bun": "./dist/entities/index.js",
134
- "node": "./dist/node/entities/index.mjs",
350
+ "node": "./dist/node/entities/index.js",
135
351
  "browser": "./dist/browser/entities/index.js",
136
352
  "default": "./dist/entities/index.js"
137
353
  },
138
354
  "./entities/index": {
139
355
  "types": "./dist/entities/index.d.ts",
140
356
  "bun": "./dist/entities/index.js",
141
- "node": "./dist/node/entities/index.mjs",
357
+ "node": "./dist/node/entities/index.js",
142
358
  "browser": "./dist/browser/entities/index.js",
143
359
  "default": "./dist/entities/index.js"
144
360
  },
145
361
  "./events": {
146
362
  "types": "./dist/events.d.ts",
147
363
  "bun": "./dist/events.js",
148
- "node": "./dist/node/events.mjs",
364
+ "node": "./dist/node/events.js",
149
365
  "browser": "./dist/browser/events.js",
150
366
  "default": "./dist/events.js"
151
367
  },
152
368
  "./example": {
153
369
  "types": "./dist/example.d.ts",
154
370
  "bun": "./dist/example.js",
155
- "node": "./dist/node/example.mjs",
371
+ "node": "./dist/node/example.js",
156
372
  "browser": "./dist/browser/example.js",
157
373
  "default": "./dist/example.js"
158
374
  },
159
375
  "./handlers": {
160
376
  "types": "./dist/handlers/index.d.ts",
161
377
  "bun": "./dist/handlers/index.js",
162
- "node": "./dist/node/handlers/index.mjs",
378
+ "node": "./dist/node/handlers/index.js",
163
379
  "browser": "./dist/browser/handlers/index.js",
164
380
  "default": "./dist/handlers/index.js"
165
381
  },
166
382
  "./handlers/index": {
167
383
  "types": "./dist/handlers/index.d.ts",
168
384
  "bun": "./dist/handlers/index.js",
169
- "node": "./dist/node/handlers/index.mjs",
385
+ "node": "./dist/node/handlers/index.js",
170
386
  "browser": "./dist/browser/handlers/index.js",
171
387
  "default": "./dist/handlers/index.js"
172
388
  },
173
389
  "./invoice": {
174
390
  "types": "./dist/invoice/index.d.ts",
175
391
  "bun": "./dist/invoice/index.js",
176
- "node": "./dist/node/invoice/index.mjs",
392
+ "node": "./dist/node/invoice/index.js",
177
393
  "browser": "./dist/browser/invoice/index.js",
178
394
  "default": "./dist/invoice/index.js"
179
395
  },
180
396
  "./invoice/index": {
181
397
  "types": "./dist/invoice/index.d.ts",
182
398
  "bun": "./dist/invoice/index.js",
183
- "node": "./dist/node/invoice/index.mjs",
399
+ "node": "./dist/node/invoice/index.js",
184
400
  "browser": "./dist/browser/invoice/index.js",
185
401
  "default": "./dist/invoice/index.js"
186
402
  },
187
403
  "./invoice/invoice.operations": {
188
404
  "types": "./dist/invoice/invoice.operations.d.ts",
189
405
  "bun": "./dist/invoice/invoice.operations.js",
190
- "node": "./dist/node/invoice/invoice.operations.mjs",
406
+ "node": "./dist/node/invoice/invoice.operations.js",
191
407
  "browser": "./dist/browser/invoice/invoice.operations.js",
192
408
  "default": "./dist/invoice/invoice.operations.js"
193
409
  },
194
410
  "./invoice/invoice.schema": {
195
411
  "types": "./dist/invoice/invoice.schema.d.ts",
196
412
  "bun": "./dist/invoice/invoice.schema.js",
197
- "node": "./dist/node/invoice/invoice.schema.mjs",
413
+ "node": "./dist/node/invoice/invoice.schema.js",
198
414
  "browser": "./dist/browser/invoice/invoice.schema.js",
199
415
  "default": "./dist/invoice/invoice.schema.js"
200
416
  },
201
417
  "./job": {
202
418
  "types": "./dist/job/index.d.ts",
203
419
  "bun": "./dist/job/index.js",
204
- "node": "./dist/node/job/index.mjs",
420
+ "node": "./dist/node/job/index.js",
205
421
  "browser": "./dist/browser/job/index.js",
206
422
  "default": "./dist/job/index.js"
207
423
  },
208
424
  "./job/index": {
209
425
  "types": "./dist/job/index.d.ts",
210
426
  "bun": "./dist/job/index.js",
211
- "node": "./dist/node/job/index.mjs",
427
+ "node": "./dist/node/job/index.js",
212
428
  "browser": "./dist/browser/job/index.js",
213
429
  "default": "./dist/job/index.js"
214
430
  },
215
431
  "./job/job.operations": {
216
432
  "types": "./dist/job/job.operations.d.ts",
217
433
  "bun": "./dist/job/job.operations.js",
218
- "node": "./dist/node/job/job.operations.mjs",
434
+ "node": "./dist/node/job/job.operations.js",
219
435
  "browser": "./dist/browser/job/job.operations.js",
220
436
  "default": "./dist/job/job.operations.js"
221
437
  },
222
438
  "./job/job.schema": {
223
439
  "types": "./dist/job/job.schema.d.ts",
224
440
  "bun": "./dist/job/job.schema.js",
225
- "node": "./dist/node/job/job.schema.mjs",
441
+ "node": "./dist/node/job/job.schema.js",
226
442
  "browser": "./dist/browser/job/job.schema.js",
227
443
  "default": "./dist/job/job.schema.js"
228
444
  },
229
445
  "./operations": {
230
446
  "types": "./dist/operations/index.d.ts",
231
447
  "bun": "./dist/operations/index.js",
232
- "node": "./dist/node/operations/index.mjs",
448
+ "node": "./dist/node/operations/index.js",
233
449
  "browser": "./dist/browser/operations/index.js",
234
450
  "default": "./dist/operations/index.js"
235
451
  },
236
452
  "./operations/index": {
237
453
  "types": "./dist/operations/index.d.ts",
238
454
  "bun": "./dist/operations/index.js",
239
- "node": "./dist/node/operations/index.mjs",
455
+ "node": "./dist/node/operations/index.js",
240
456
  "browser": "./dist/browser/operations/index.js",
241
457
  "default": "./dist/operations/index.js"
242
458
  },
243
459
  "./payment": {
244
460
  "types": "./dist/payment/index.d.ts",
245
461
  "bun": "./dist/payment/index.js",
246
- "node": "./dist/node/payment/index.mjs",
462
+ "node": "./dist/node/payment/index.js",
247
463
  "browser": "./dist/browser/payment/index.js",
248
464
  "default": "./dist/payment/index.js"
249
465
  },
250
466
  "./payment/index": {
251
467
  "types": "./dist/payment/index.d.ts",
252
468
  "bun": "./dist/payment/index.js",
253
- "node": "./dist/node/payment/index.mjs",
469
+ "node": "./dist/node/payment/index.js",
254
470
  "browser": "./dist/browser/payment/index.js",
255
471
  "default": "./dist/payment/index.js"
256
472
  },
257
473
  "./payment/payment.operations": {
258
474
  "types": "./dist/payment/payment.operations.d.ts",
259
475
  "bun": "./dist/payment/payment.operations.js",
260
- "node": "./dist/node/payment/payment.operations.mjs",
476
+ "node": "./dist/node/payment/payment.operations.js",
261
477
  "browser": "./dist/browser/payment/payment.operations.js",
262
478
  "default": "./dist/payment/payment.operations.js"
263
479
  },
264
480
  "./payment/payment.schema": {
265
481
  "types": "./dist/payment/payment.schema.d.ts",
266
482
  "bun": "./dist/payment/payment.schema.js",
267
- "node": "./dist/node/payment/payment.schema.mjs",
483
+ "node": "./dist/node/payment/payment.schema.js",
268
484
  "browser": "./dist/browser/payment/payment.schema.js",
269
485
  "default": "./dist/payment/payment.schema.js"
270
486
  },
271
487
  "./presentations": {
272
488
  "types": "./dist/presentations.d.ts",
273
489
  "bun": "./dist/presentations.js",
274
- "node": "./dist/node/presentations.mjs",
490
+ "node": "./dist/node/presentations.js",
275
491
  "browser": "./dist/browser/presentations.js",
276
492
  "default": "./dist/presentations.js"
277
493
  },
278
494
  "./presentations/index": {
279
495
  "types": "./dist/presentations/index.d.ts",
280
496
  "bun": "./dist/presentations/index.js",
281
- "node": "./dist/node/presentations/index.mjs",
497
+ "node": "./dist/node/presentations/index.js",
282
498
  "browser": "./dist/browser/presentations/index.js",
283
499
  "default": "./dist/presentations/index.js"
284
500
  },
285
501
  "./quote": {
286
502
  "types": "./dist/quote/index.d.ts",
287
503
  "bun": "./dist/quote/index.js",
288
- "node": "./dist/node/quote/index.mjs",
504
+ "node": "./dist/node/quote/index.js",
289
505
  "browser": "./dist/browser/quote/index.js",
290
506
  "default": "./dist/quote/index.js"
291
507
  },
292
508
  "./quote/index": {
293
509
  "types": "./dist/quote/index.d.ts",
294
510
  "bun": "./dist/quote/index.js",
295
- "node": "./dist/node/quote/index.mjs",
511
+ "node": "./dist/node/quote/index.js",
296
512
  "browser": "./dist/browser/quote/index.js",
297
513
  "default": "./dist/quote/index.js"
298
514
  },
299
515
  "./quote/quote.operations": {
300
516
  "types": "./dist/quote/quote.operations.d.ts",
301
517
  "bun": "./dist/quote/quote.operations.js",
302
- "node": "./dist/node/quote/quote.operations.mjs",
518
+ "node": "./dist/node/quote/quote.operations.js",
303
519
  "browser": "./dist/browser/quote/quote.operations.js",
304
520
  "default": "./dist/quote/quote.operations.js"
305
521
  },
306
522
  "./quote/quote.schema": {
307
523
  "types": "./dist/quote/quote.schema.d.ts",
308
524
  "bun": "./dist/quote/quote.schema.js",
309
- "node": "./dist/node/quote/quote.schema.mjs",
525
+ "node": "./dist/node/quote/quote.schema.js",
310
526
  "browser": "./dist/browser/quote/quote.schema.js",
311
527
  "default": "./dist/quote/quote.schema.js"
312
528
  },
313
529
  "./service-business-os.capability": {
314
530
  "types": "./dist/service-business-os.capability.d.ts",
315
531
  "bun": "./dist/service-business-os.capability.js",
316
- "node": "./dist/node/service-business-os.capability.mjs",
532
+ "node": "./dist/node/service-business-os.capability.js",
317
533
  "browser": "./dist/browser/service-business-os.capability.js",
318
534
  "default": "./dist/service-business-os.capability.js"
319
535
  },
320
536
  "./service.feature": {
321
537
  "types": "./dist/service.feature.d.ts",
322
538
  "bun": "./dist/service.feature.js",
323
- "node": "./dist/node/service.feature.mjs",
539
+ "node": "./dist/node/service.feature.js",
324
540
  "browser": "./dist/browser/service.feature.js",
325
541
  "default": "./dist/service.feature.js"
326
542
  }