@contractspec/example.kb-update-pipeline 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.
- package/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +24 -0
- package/package.json +149 -41
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=14
|
|
6
|
-
Bundled 14 modules in
|
|
6
|
+
Bundled 14 modules in 32ms
|
|
7
7
|
|
|
8
8
|
docs/index.js 1.49 KB (entry point)
|
|
9
9
|
./index.js 20.53 KB (entry point)
|
|
@@ -21,7 +21,7 @@ Bundled 14 modules in 33ms
|
|
|
21
21
|
handlers/memory.handlers.js 3.62 KB (entry point)
|
|
22
22
|
|
|
23
23
|
[contractspec-bun-build] transpile target=node root=src entries=14
|
|
24
|
-
Bundled 14 modules in
|
|
24
|
+
Bundled 14 modules in 27ms
|
|
25
25
|
|
|
26
26
|
docs/index.js 1.47 KB (entry point)
|
|
27
27
|
./index.js 20.52 KB (entry point)
|
|
@@ -39,7 +39,7 @@ Bundled 14 modules in 28ms
|
|
|
39
39
|
handlers/memory.handlers.js 3.61 KB (entry point)
|
|
40
40
|
|
|
41
41
|
[contractspec-bun-build] transpile target=browser root=src entries=14
|
|
42
|
-
Bundled 14 modules in
|
|
42
|
+
Bundled 14 modules in 19ms
|
|
43
43
|
|
|
44
44
|
docs/index.js 1.47 KB (entry point)
|
|
45
45
|
./index.js 20.52 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @contractspec/example.kb-update-pipeline
|
|
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,28 +1,136 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.kb-update-pipeline",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.61.0",
|
|
4
4
|
"description": "Example: KB update automation pipeline with HITL review and auditability.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
|
-
".":
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"./
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"./
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
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
|
+
"./docs": {
|
|
16
|
+
"types": "./dist/docs/index.d.ts",
|
|
17
|
+
"bun": "./dist/docs/index.js",
|
|
18
|
+
"node": "./dist/node/docs/index.js",
|
|
19
|
+
"browser": "./dist/browser/docs/index.js",
|
|
20
|
+
"default": "./dist/docs/index.js"
|
|
21
|
+
},
|
|
22
|
+
"./docs/index": {
|
|
23
|
+
"types": "./dist/docs/index.d.ts",
|
|
24
|
+
"bun": "./dist/docs/index.js",
|
|
25
|
+
"node": "./dist/node/docs/index.js",
|
|
26
|
+
"browser": "./dist/browser/docs/index.js",
|
|
27
|
+
"default": "./dist/docs/index.js"
|
|
28
|
+
},
|
|
29
|
+
"./docs/kb-update-pipeline.docblock": {
|
|
30
|
+
"types": "./dist/docs/kb-update-pipeline.docblock.d.ts",
|
|
31
|
+
"bun": "./dist/docs/kb-update-pipeline.docblock.js",
|
|
32
|
+
"node": "./dist/node/docs/kb-update-pipeline.docblock.js",
|
|
33
|
+
"browser": "./dist/browser/docs/kb-update-pipeline.docblock.js",
|
|
34
|
+
"default": "./dist/docs/kb-update-pipeline.docblock.js"
|
|
35
|
+
},
|
|
36
|
+
"./entities": {
|
|
37
|
+
"types": "./dist/entities/index.d.ts",
|
|
38
|
+
"bun": "./dist/entities/index.js",
|
|
39
|
+
"node": "./dist/node/entities/index.js",
|
|
40
|
+
"browser": "./dist/browser/entities/index.js",
|
|
41
|
+
"default": "./dist/entities/index.js"
|
|
42
|
+
},
|
|
43
|
+
"./entities/index": {
|
|
44
|
+
"types": "./dist/entities/index.d.ts",
|
|
45
|
+
"bun": "./dist/entities/index.js",
|
|
46
|
+
"node": "./dist/node/entities/index.js",
|
|
47
|
+
"browser": "./dist/browser/entities/index.js",
|
|
48
|
+
"default": "./dist/entities/index.js"
|
|
49
|
+
},
|
|
50
|
+
"./entities/models": {
|
|
51
|
+
"types": "./dist/entities/models.d.ts",
|
|
52
|
+
"bun": "./dist/entities/models.js",
|
|
53
|
+
"node": "./dist/node/entities/models.js",
|
|
54
|
+
"browser": "./dist/browser/entities/models.js",
|
|
55
|
+
"default": "./dist/entities/models.js"
|
|
56
|
+
},
|
|
57
|
+
"./events": {
|
|
58
|
+
"types": "./dist/events.d.ts",
|
|
59
|
+
"bun": "./dist/events.js",
|
|
60
|
+
"node": "./dist/node/events.js",
|
|
61
|
+
"browser": "./dist/browser/events.js",
|
|
62
|
+
"default": "./dist/events.js"
|
|
63
|
+
},
|
|
64
|
+
"./example": {
|
|
65
|
+
"types": "./dist/example.d.ts",
|
|
66
|
+
"bun": "./dist/example.js",
|
|
67
|
+
"node": "./dist/node/example.js",
|
|
68
|
+
"browser": "./dist/browser/example.js",
|
|
69
|
+
"default": "./dist/example.js"
|
|
70
|
+
},
|
|
71
|
+
"./handlers": {
|
|
72
|
+
"types": "./dist/handlers/index.d.ts",
|
|
73
|
+
"bun": "./dist/handlers/index.js",
|
|
74
|
+
"node": "./dist/node/handlers/index.js",
|
|
75
|
+
"browser": "./dist/browser/handlers/index.js",
|
|
76
|
+
"default": "./dist/handlers/index.js"
|
|
77
|
+
},
|
|
78
|
+
"./handlers/index": {
|
|
79
|
+
"types": "./dist/handlers/index.d.ts",
|
|
80
|
+
"bun": "./dist/handlers/index.js",
|
|
81
|
+
"node": "./dist/node/handlers/index.js",
|
|
82
|
+
"browser": "./dist/browser/handlers/index.js",
|
|
83
|
+
"default": "./dist/handlers/index.js"
|
|
84
|
+
},
|
|
85
|
+
"./handlers/memory.handlers": {
|
|
86
|
+
"types": "./dist/handlers/memory.handlers.d.ts",
|
|
87
|
+
"bun": "./dist/handlers/memory.handlers.js",
|
|
88
|
+
"node": "./dist/node/handlers/memory.handlers.js",
|
|
89
|
+
"browser": "./dist/browser/handlers/memory.handlers.js",
|
|
90
|
+
"default": "./dist/handlers/memory.handlers.js"
|
|
91
|
+
},
|
|
92
|
+
"./kb-update-pipeline.feature": {
|
|
93
|
+
"types": "./dist/kb-update-pipeline.feature.d.ts",
|
|
94
|
+
"bun": "./dist/kb-update-pipeline.feature.js",
|
|
95
|
+
"node": "./dist/node/kb-update-pipeline.feature.js",
|
|
96
|
+
"browser": "./dist/browser/kb-update-pipeline.feature.js",
|
|
97
|
+
"default": "./dist/kb-update-pipeline.feature.js"
|
|
98
|
+
},
|
|
99
|
+
"./operations": {
|
|
100
|
+
"types": "./dist/operations/index.d.ts",
|
|
101
|
+
"bun": "./dist/operations/index.js",
|
|
102
|
+
"node": "./dist/node/operations/index.js",
|
|
103
|
+
"browser": "./dist/browser/operations/index.js",
|
|
104
|
+
"default": "./dist/operations/index.js"
|
|
105
|
+
},
|
|
106
|
+
"./operations/index": {
|
|
107
|
+
"types": "./dist/operations/index.d.ts",
|
|
108
|
+
"bun": "./dist/operations/index.js",
|
|
109
|
+
"node": "./dist/node/operations/index.js",
|
|
110
|
+
"browser": "./dist/browser/operations/index.js",
|
|
111
|
+
"default": "./dist/operations/index.js"
|
|
112
|
+
},
|
|
113
|
+
"./operations/pipeline": {
|
|
114
|
+
"types": "./dist/operations/pipeline.d.ts",
|
|
115
|
+
"bun": "./dist/operations/pipeline.js",
|
|
116
|
+
"node": "./dist/node/operations/pipeline.js",
|
|
117
|
+
"browser": "./dist/browser/operations/pipeline.js",
|
|
118
|
+
"default": "./dist/operations/pipeline.js"
|
|
119
|
+
},
|
|
120
|
+
"./presentations": {
|
|
121
|
+
"types": "./dist/presentations.d.ts",
|
|
122
|
+
"bun": "./dist/presentations.js",
|
|
123
|
+
"node": "./dist/node/presentations.js",
|
|
124
|
+
"browser": "./dist/browser/presentations.js",
|
|
125
|
+
"default": "./dist/presentations.js"
|
|
126
|
+
},
|
|
127
|
+
"./tests/operations.test-spec": {
|
|
128
|
+
"types": "./dist/tests/operations.test-spec.d.ts",
|
|
129
|
+
"bun": "./dist/tests/operations.test-spec.js",
|
|
130
|
+
"node": "./dist/node/tests/operations.test-spec.js",
|
|
131
|
+
"browser": "./dist/browser/tests/operations.test-spec.js",
|
|
132
|
+
"default": "./dist/tests/operations.test-spec.js"
|
|
133
|
+
}
|
|
26
134
|
},
|
|
27
135
|
"scripts": {
|
|
28
136
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
@@ -40,13 +148,13 @@
|
|
|
40
148
|
"typecheck": "tsc --noEmit"
|
|
41
149
|
},
|
|
42
150
|
"dependencies": {
|
|
43
|
-
"@contractspec/lib.contracts": "1.
|
|
44
|
-
"@contractspec/lib.schema": "1.
|
|
151
|
+
"@contractspec/lib.contracts": "1.61.0",
|
|
152
|
+
"@contractspec/lib.schema": "1.61.0"
|
|
45
153
|
},
|
|
46
154
|
"devDependencies": {
|
|
47
|
-
"@contractspec/tool.typescript": "1.
|
|
155
|
+
"@contractspec/tool.typescript": "1.61.0",
|
|
48
156
|
"typescript": "^5.9.3",
|
|
49
|
-
"@contractspec/tool.bun": "1.
|
|
157
|
+
"@contractspec/tool.bun": "1.60.0"
|
|
50
158
|
},
|
|
51
159
|
"publishConfig": {
|
|
52
160
|
"access": "public",
|
|
@@ -54,126 +162,126 @@
|
|
|
54
162
|
".": {
|
|
55
163
|
"types": "./dist/index.d.ts",
|
|
56
164
|
"bun": "./dist/index.js",
|
|
57
|
-
"node": "./dist/node/index.
|
|
165
|
+
"node": "./dist/node/index.js",
|
|
58
166
|
"browser": "./dist/browser/index.js",
|
|
59
167
|
"default": "./dist/index.js"
|
|
60
168
|
},
|
|
61
169
|
"./docs": {
|
|
62
170
|
"types": "./dist/docs/index.d.ts",
|
|
63
171
|
"bun": "./dist/docs/index.js",
|
|
64
|
-
"node": "./dist/node/docs/index.
|
|
172
|
+
"node": "./dist/node/docs/index.js",
|
|
65
173
|
"browser": "./dist/browser/docs/index.js",
|
|
66
174
|
"default": "./dist/docs/index.js"
|
|
67
175
|
},
|
|
68
176
|
"./docs/index": {
|
|
69
177
|
"types": "./dist/docs/index.d.ts",
|
|
70
178
|
"bun": "./dist/docs/index.js",
|
|
71
|
-
"node": "./dist/node/docs/index.
|
|
179
|
+
"node": "./dist/node/docs/index.js",
|
|
72
180
|
"browser": "./dist/browser/docs/index.js",
|
|
73
181
|
"default": "./dist/docs/index.js"
|
|
74
182
|
},
|
|
75
183
|
"./docs/kb-update-pipeline.docblock": {
|
|
76
184
|
"types": "./dist/docs/kb-update-pipeline.docblock.d.ts",
|
|
77
185
|
"bun": "./dist/docs/kb-update-pipeline.docblock.js",
|
|
78
|
-
"node": "./dist/node/docs/kb-update-pipeline.docblock.
|
|
186
|
+
"node": "./dist/node/docs/kb-update-pipeline.docblock.js",
|
|
79
187
|
"browser": "./dist/browser/docs/kb-update-pipeline.docblock.js",
|
|
80
188
|
"default": "./dist/docs/kb-update-pipeline.docblock.js"
|
|
81
189
|
},
|
|
82
190
|
"./entities": {
|
|
83
191
|
"types": "./dist/entities/index.d.ts",
|
|
84
192
|
"bun": "./dist/entities/index.js",
|
|
85
|
-
"node": "./dist/node/entities/index.
|
|
193
|
+
"node": "./dist/node/entities/index.js",
|
|
86
194
|
"browser": "./dist/browser/entities/index.js",
|
|
87
195
|
"default": "./dist/entities/index.js"
|
|
88
196
|
},
|
|
89
197
|
"./entities/index": {
|
|
90
198
|
"types": "./dist/entities/index.d.ts",
|
|
91
199
|
"bun": "./dist/entities/index.js",
|
|
92
|
-
"node": "./dist/node/entities/index.
|
|
200
|
+
"node": "./dist/node/entities/index.js",
|
|
93
201
|
"browser": "./dist/browser/entities/index.js",
|
|
94
202
|
"default": "./dist/entities/index.js"
|
|
95
203
|
},
|
|
96
204
|
"./entities/models": {
|
|
97
205
|
"types": "./dist/entities/models.d.ts",
|
|
98
206
|
"bun": "./dist/entities/models.js",
|
|
99
|
-
"node": "./dist/node/entities/models.
|
|
207
|
+
"node": "./dist/node/entities/models.js",
|
|
100
208
|
"browser": "./dist/browser/entities/models.js",
|
|
101
209
|
"default": "./dist/entities/models.js"
|
|
102
210
|
},
|
|
103
211
|
"./events": {
|
|
104
212
|
"types": "./dist/events.d.ts",
|
|
105
213
|
"bun": "./dist/events.js",
|
|
106
|
-
"node": "./dist/node/events.
|
|
214
|
+
"node": "./dist/node/events.js",
|
|
107
215
|
"browser": "./dist/browser/events.js",
|
|
108
216
|
"default": "./dist/events.js"
|
|
109
217
|
},
|
|
110
218
|
"./example": {
|
|
111
219
|
"types": "./dist/example.d.ts",
|
|
112
220
|
"bun": "./dist/example.js",
|
|
113
|
-
"node": "./dist/node/example.
|
|
221
|
+
"node": "./dist/node/example.js",
|
|
114
222
|
"browser": "./dist/browser/example.js",
|
|
115
223
|
"default": "./dist/example.js"
|
|
116
224
|
},
|
|
117
225
|
"./handlers": {
|
|
118
226
|
"types": "./dist/handlers/index.d.ts",
|
|
119
227
|
"bun": "./dist/handlers/index.js",
|
|
120
|
-
"node": "./dist/node/handlers/index.
|
|
228
|
+
"node": "./dist/node/handlers/index.js",
|
|
121
229
|
"browser": "./dist/browser/handlers/index.js",
|
|
122
230
|
"default": "./dist/handlers/index.js"
|
|
123
231
|
},
|
|
124
232
|
"./handlers/index": {
|
|
125
233
|
"types": "./dist/handlers/index.d.ts",
|
|
126
234
|
"bun": "./dist/handlers/index.js",
|
|
127
|
-
"node": "./dist/node/handlers/index.
|
|
235
|
+
"node": "./dist/node/handlers/index.js",
|
|
128
236
|
"browser": "./dist/browser/handlers/index.js",
|
|
129
237
|
"default": "./dist/handlers/index.js"
|
|
130
238
|
},
|
|
131
239
|
"./handlers/memory.handlers": {
|
|
132
240
|
"types": "./dist/handlers/memory.handlers.d.ts",
|
|
133
241
|
"bun": "./dist/handlers/memory.handlers.js",
|
|
134
|
-
"node": "./dist/node/handlers/memory.handlers.
|
|
242
|
+
"node": "./dist/node/handlers/memory.handlers.js",
|
|
135
243
|
"browser": "./dist/browser/handlers/memory.handlers.js",
|
|
136
244
|
"default": "./dist/handlers/memory.handlers.js"
|
|
137
245
|
},
|
|
138
246
|
"./kb-update-pipeline.feature": {
|
|
139
247
|
"types": "./dist/kb-update-pipeline.feature.d.ts",
|
|
140
248
|
"bun": "./dist/kb-update-pipeline.feature.js",
|
|
141
|
-
"node": "./dist/node/kb-update-pipeline.feature.
|
|
249
|
+
"node": "./dist/node/kb-update-pipeline.feature.js",
|
|
142
250
|
"browser": "./dist/browser/kb-update-pipeline.feature.js",
|
|
143
251
|
"default": "./dist/kb-update-pipeline.feature.js"
|
|
144
252
|
},
|
|
145
253
|
"./operations": {
|
|
146
254
|
"types": "./dist/operations/index.d.ts",
|
|
147
255
|
"bun": "./dist/operations/index.js",
|
|
148
|
-
"node": "./dist/node/operations/index.
|
|
256
|
+
"node": "./dist/node/operations/index.js",
|
|
149
257
|
"browser": "./dist/browser/operations/index.js",
|
|
150
258
|
"default": "./dist/operations/index.js"
|
|
151
259
|
},
|
|
152
260
|
"./operations/index": {
|
|
153
261
|
"types": "./dist/operations/index.d.ts",
|
|
154
262
|
"bun": "./dist/operations/index.js",
|
|
155
|
-
"node": "./dist/node/operations/index.
|
|
263
|
+
"node": "./dist/node/operations/index.js",
|
|
156
264
|
"browser": "./dist/browser/operations/index.js",
|
|
157
265
|
"default": "./dist/operations/index.js"
|
|
158
266
|
},
|
|
159
267
|
"./operations/pipeline": {
|
|
160
268
|
"types": "./dist/operations/pipeline.d.ts",
|
|
161
269
|
"bun": "./dist/operations/pipeline.js",
|
|
162
|
-
"node": "./dist/node/operations/pipeline.
|
|
270
|
+
"node": "./dist/node/operations/pipeline.js",
|
|
163
271
|
"browser": "./dist/browser/operations/pipeline.js",
|
|
164
272
|
"default": "./dist/operations/pipeline.js"
|
|
165
273
|
},
|
|
166
274
|
"./presentations": {
|
|
167
275
|
"types": "./dist/presentations.d.ts",
|
|
168
276
|
"bun": "./dist/presentations.js",
|
|
169
|
-
"node": "./dist/node/presentations.
|
|
277
|
+
"node": "./dist/node/presentations.js",
|
|
170
278
|
"browser": "./dist/browser/presentations.js",
|
|
171
279
|
"default": "./dist/presentations.js"
|
|
172
280
|
},
|
|
173
281
|
"./tests/operations.test-spec": {
|
|
174
282
|
"types": "./dist/tests/operations.test-spec.d.ts",
|
|
175
283
|
"bun": "./dist/tests/operations.test-spec.js",
|
|
176
|
-
"node": "./dist/node/tests/operations.test-spec.
|
|
284
|
+
"node": "./dist/node/tests/operations.test-spec.js",
|
|
177
285
|
"browser": "./dist/browser/tests/operations.test-spec.js",
|
|
178
286
|
"default": "./dist/tests/operations.test-spec.js"
|
|
179
287
|
}
|