@contractspec/example.versioned-knowledge-base 1.57.0 → 1.58.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 (76) hide show
  1. package/.turbo/turbo-build.log +52 -52
  2. package/.turbo/turbo-prebuild.log +1 -0
  3. package/CHANGELOG.md +13 -0
  4. package/dist/browser/docs/index.js +44 -0
  5. package/dist/browser/docs/versioned-knowledge-base.docblock.js +44 -0
  6. package/dist/browser/entities/index.js +74 -0
  7. package/dist/browser/entities/models.js +74 -0
  8. package/dist/browser/events.js +101 -0
  9. package/dist/browser/example.js +35 -0
  10. package/dist/browser/handlers/index.js +115 -0
  11. package/dist/browser/handlers/memory.handlers.js +115 -0
  12. package/dist/browser/index.js +586 -0
  13. package/dist/browser/operations/index.js +257 -0
  14. package/dist/browser/operations/kb.js +257 -0
  15. package/dist/browser/versioned-knowledge-base.feature.js +36 -0
  16. package/dist/docs/index.d.ts +2 -1
  17. package/dist/docs/index.d.ts.map +1 -0
  18. package/dist/docs/index.js +45 -1
  19. package/dist/docs/versioned-knowledge-base.docblock.d.ts +2 -1
  20. package/dist/docs/versioned-knowledge-base.docblock.d.ts.map +1 -0
  21. package/dist/docs/versioned-knowledge-base.docblock.js +42 -28
  22. package/dist/entities/index.d.ts +2 -2
  23. package/dist/entities/index.d.ts.map +1 -0
  24. package/dist/entities/index.js +75 -3
  25. package/dist/entities/models.d.ts +127 -132
  26. package/dist/entities/models.d.ts.map +1 -1
  27. package/dist/entities/models.js +69 -145
  28. package/dist/events.d.ts +52 -58
  29. package/dist/events.d.ts.map +1 -1
  30. package/dist/events.js +92 -114
  31. package/dist/example.d.ts +2 -6
  32. package/dist/example.d.ts.map +1 -1
  33. package/dist/example.js +34 -46
  34. package/dist/handlers/index.d.ts +2 -2
  35. package/dist/handlers/index.d.ts.map +1 -0
  36. package/dist/handlers/index.js +116 -3
  37. package/dist/handlers/memory.handlers.d.ts +62 -64
  38. package/dist/handlers/memory.handlers.d.ts.map +1 -1
  39. package/dist/handlers/memory.handlers.js +110 -97
  40. package/dist/handlers/memory.handlers.test.d.ts +2 -0
  41. package/dist/handlers/memory.handlers.test.d.ts.map +1 -0
  42. package/dist/index.d.ts +13 -9
  43. package/dist/index.d.ts.map +1 -0
  44. package/dist/index.js +587 -11
  45. package/dist/node/docs/index.js +44 -0
  46. package/dist/node/docs/versioned-knowledge-base.docblock.js +44 -0
  47. package/dist/node/entities/index.js +74 -0
  48. package/dist/node/entities/models.js +74 -0
  49. package/dist/node/events.js +101 -0
  50. package/dist/node/example.js +35 -0
  51. package/dist/node/handlers/index.js +115 -0
  52. package/dist/node/handlers/memory.handlers.js +115 -0
  53. package/dist/node/index.js +586 -0
  54. package/dist/node/operations/index.js +257 -0
  55. package/dist/node/operations/kb.js +257 -0
  56. package/dist/node/versioned-knowledge-base.feature.js +36 -0
  57. package/dist/operations/index.d.ts +2 -2
  58. package/dist/operations/index.d.ts.map +1 -0
  59. package/dist/operations/index.js +257 -2
  60. package/dist/operations/kb.d.ts +252 -258
  61. package/dist/operations/kb.d.ts.map +1 -1
  62. package/dist/operations/kb.js +246 -244
  63. package/dist/versioned-knowledge-base.feature.d.ts +1 -6
  64. package/dist/versioned-knowledge-base.feature.d.ts.map +1 -1
  65. package/dist/versioned-knowledge-base.feature.js +35 -68
  66. package/package.json +141 -38
  67. package/tsdown.config.js +1 -2
  68. package/.turbo/turbo-build$colon$bundle.log +0 -52
  69. package/dist/docs/versioned-knowledge-base.docblock.js.map +0 -1
  70. package/dist/entities/models.js.map +0 -1
  71. package/dist/events.js.map +0 -1
  72. package/dist/example.js.map +0 -1
  73. package/dist/handlers/memory.handlers.js.map +0 -1
  74. package/dist/operations/kb.js.map +0 -1
  75. package/dist/versioned-knowledge-base.feature.js.map +0 -1
  76. package/tsconfig.tsbuildinfo +0 -1
@@ -1,267 +1,261 @@
1
- import * as _contractspec_lib_contracts0 from "@contractspec/lib.contracts";
2
- import * as _contractspec_lib_schema0 from "@contractspec/lib.schema";
3
-
4
- //#region src/operations/kb.d.ts
5
- declare const KbIngestSourceContract: _contractspec_lib_contracts0.OperationSpec<_contractspec_lib_schema0.SchemaModel<{
6
- jurisdiction: {
7
- type: _contractspec_lib_schema0.FieldType<string, string>;
8
- isOptional: false;
9
- };
10
- authority: {
11
- type: _contractspec_lib_schema0.FieldType<string, string>;
12
- isOptional: false;
13
- };
14
- title: {
15
- type: _contractspec_lib_schema0.FieldType<string, string>;
16
- isOptional: false;
17
- };
18
- fetchedAt: {
19
- type: _contractspec_lib_schema0.FieldType<Date, string>;
20
- isOptional: false;
21
- };
22
- hash: {
23
- type: _contractspec_lib_schema0.FieldType<string, string>;
24
- isOptional: false;
25
- };
26
- fileId: {
27
- type: _contractspec_lib_schema0.FieldType<string, string>;
28
- isOptional: false;
29
- };
30
- }>, _contractspec_lib_schema0.SchemaModel<{
31
- id: {
32
- type: _contractspec_lib_schema0.FieldType<string, string>;
33
- isOptional: false;
34
- };
35
- jurisdiction: {
36
- type: _contractspec_lib_schema0.FieldType<string, string>;
37
- isOptional: false;
38
- };
39
- authority: {
40
- type: _contractspec_lib_schema0.FieldType<string, string>;
41
- isOptional: false;
42
- };
43
- title: {
44
- type: _contractspec_lib_schema0.FieldType<string, string>;
45
- isOptional: false;
46
- };
47
- fetchedAt: {
48
- type: _contractspec_lib_schema0.FieldType<Date, string>;
49
- isOptional: false;
50
- };
51
- hash: {
52
- type: _contractspec_lib_schema0.FieldType<string, string>;
53
- isOptional: false;
54
- };
55
- fileId: {
56
- type: _contractspec_lib_schema0.FieldType<string, string>;
57
- isOptional: false;
58
- };
1
+ export declare const KbIngestSourceContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
2
+ jurisdiction: {
3
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
4
+ isOptional: false;
5
+ };
6
+ authority: {
7
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
8
+ isOptional: false;
9
+ };
10
+ title: {
11
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
12
+ isOptional: false;
13
+ };
14
+ fetchedAt: {
15
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
16
+ isOptional: false;
17
+ };
18
+ hash: {
19
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
20
+ isOptional: false;
21
+ };
22
+ fileId: {
23
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
24
+ isOptional: false;
25
+ };
26
+ }>, import("@contractspec/lib.schema").SchemaModel<{
27
+ id: {
28
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
29
+ isOptional: false;
30
+ };
31
+ jurisdiction: {
32
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
33
+ isOptional: false;
34
+ };
35
+ authority: {
36
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
37
+ isOptional: false;
38
+ };
39
+ title: {
40
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
41
+ isOptional: false;
42
+ };
43
+ fetchedAt: {
44
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
45
+ isOptional: false;
46
+ };
47
+ hash: {
48
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
49
+ isOptional: false;
50
+ };
51
+ fileId: {
52
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
53
+ isOptional: false;
54
+ };
59
55
  }>, undefined>;
60
- declare const KbUpsertRuleVersionContract: _contractspec_lib_contracts0.OperationSpec<_contractspec_lib_schema0.SchemaModel<{
61
- ruleId: {
62
- type: _contractspec_lib_schema0.FieldType<string, string>;
63
- isOptional: false;
64
- };
65
- content: {
66
- type: _contractspec_lib_schema0.FieldType<string, string>;
67
- isOptional: false;
68
- };
69
- sourceRefs: {
70
- type: _contractspec_lib_schema0.SchemaModel<{
71
- sourceDocumentId: {
72
- type: _contractspec_lib_schema0.FieldType<string, string>;
73
- isOptional: false;
74
- };
75
- excerpt: {
76
- type: _contractspec_lib_schema0.FieldType<string, string>;
56
+ export declare const KbUpsertRuleVersionContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
57
+ ruleId: {
58
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
59
+ isOptional: false;
60
+ };
61
+ content: {
62
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
63
+ isOptional: false;
64
+ };
65
+ sourceRefs: {
66
+ type: import("@contractspec/lib.schema").SchemaModel<{
67
+ sourceDocumentId: {
68
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
69
+ isOptional: false;
70
+ };
71
+ excerpt: {
72
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
73
+ isOptional: true;
74
+ };
75
+ }>;
76
+ isArray: true;
77
+ isOptional: false;
78
+ };
79
+ }>, import("@contractspec/lib.schema").SchemaModel<{
80
+ id: {
81
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
82
+ isOptional: false;
83
+ };
84
+ ruleId: {
85
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
86
+ isOptional: false;
87
+ };
88
+ jurisdiction: {
89
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
90
+ isOptional: false;
91
+ };
92
+ topicKey: {
93
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
94
+ isOptional: false;
95
+ };
96
+ version: {
97
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
98
+ isOptional: false;
99
+ };
100
+ content: {
101
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
102
+ isOptional: false;
103
+ };
104
+ sourceRefs: {
105
+ type: import("@contractspec/lib.schema").SchemaModel<{
106
+ sourceDocumentId: {
107
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
108
+ isOptional: false;
109
+ };
110
+ excerpt: {
111
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
112
+ isOptional: true;
113
+ };
114
+ }>;
115
+ isArray: true;
116
+ isOptional: false;
117
+ };
118
+ status: {
119
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
120
+ isOptional: false;
121
+ };
122
+ approvedBy: {
123
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
77
124
  isOptional: true;
78
- };
79
- }>;
80
- isArray: true;
81
- isOptional: false;
82
- };
83
- }>, _contractspec_lib_schema0.SchemaModel<{
84
- id: {
85
- type: _contractspec_lib_schema0.FieldType<string, string>;
86
- isOptional: false;
87
- };
88
- ruleId: {
89
- type: _contractspec_lib_schema0.FieldType<string, string>;
90
- isOptional: false;
91
- };
92
- jurisdiction: {
93
- type: _contractspec_lib_schema0.FieldType<string, string>;
94
- isOptional: false;
95
- };
96
- topicKey: {
97
- type: _contractspec_lib_schema0.FieldType<string, string>;
98
- isOptional: false;
99
- };
100
- version: {
101
- type: _contractspec_lib_schema0.FieldType<string, string>;
102
- isOptional: false;
103
- };
104
- content: {
105
- type: _contractspec_lib_schema0.FieldType<string, string>;
106
- isOptional: false;
107
- };
108
- sourceRefs: {
109
- type: _contractspec_lib_schema0.SchemaModel<{
110
- sourceDocumentId: {
111
- type: _contractspec_lib_schema0.FieldType<string, string>;
112
- isOptional: false;
113
- };
114
- excerpt: {
115
- type: _contractspec_lib_schema0.FieldType<string, string>;
125
+ };
126
+ approvedAt: {
127
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
116
128
  isOptional: true;
117
- };
118
- }>;
119
- isArray: true;
120
- isOptional: false;
121
- };
122
- status: {
123
- type: _contractspec_lib_schema0.FieldType<string, string>;
124
- isOptional: false;
125
- };
126
- approvedBy: {
127
- type: _contractspec_lib_schema0.FieldType<string, string>;
128
- isOptional: true;
129
- };
130
- approvedAt: {
131
- type: _contractspec_lib_schema0.FieldType<Date, string>;
132
- isOptional: true;
133
- };
134
- createdAt: {
135
- type: _contractspec_lib_schema0.FieldType<Date, string>;
136
- isOptional: false;
137
- };
129
+ };
130
+ createdAt: {
131
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
132
+ isOptional: false;
133
+ };
138
134
  }>, undefined>;
139
- declare const KbApproveRuleVersionContract: _contractspec_lib_contracts0.OperationSpec<_contractspec_lib_schema0.SchemaModel<{
140
- ruleVersionId: {
141
- type: _contractspec_lib_schema0.FieldType<string, string>;
142
- isOptional: false;
143
- };
144
- approver: {
145
- type: _contractspec_lib_schema0.FieldType<string, string>;
146
- isOptional: false;
147
- };
148
- }>, _contractspec_lib_schema0.SchemaModel<{
149
- id: {
150
- type: _contractspec_lib_schema0.FieldType<string, string>;
151
- isOptional: false;
152
- };
153
- ruleId: {
154
- type: _contractspec_lib_schema0.FieldType<string, string>;
155
- isOptional: false;
156
- };
157
- jurisdiction: {
158
- type: _contractspec_lib_schema0.FieldType<string, string>;
159
- isOptional: false;
160
- };
161
- topicKey: {
162
- type: _contractspec_lib_schema0.FieldType<string, string>;
163
- isOptional: false;
164
- };
165
- version: {
166
- type: _contractspec_lib_schema0.FieldType<string, string>;
167
- isOptional: false;
168
- };
169
- content: {
170
- type: _contractspec_lib_schema0.FieldType<string, string>;
171
- isOptional: false;
172
- };
173
- sourceRefs: {
174
- type: _contractspec_lib_schema0.SchemaModel<{
175
- sourceDocumentId: {
176
- type: _contractspec_lib_schema0.FieldType<string, string>;
177
- isOptional: false;
178
- };
179
- excerpt: {
180
- type: _contractspec_lib_schema0.FieldType<string, string>;
135
+ export declare const KbApproveRuleVersionContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
136
+ ruleVersionId: {
137
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
138
+ isOptional: false;
139
+ };
140
+ approver: {
141
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
142
+ isOptional: false;
143
+ };
144
+ }>, import("@contractspec/lib.schema").SchemaModel<{
145
+ id: {
146
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
147
+ isOptional: false;
148
+ };
149
+ ruleId: {
150
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
151
+ isOptional: false;
152
+ };
153
+ jurisdiction: {
154
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
155
+ isOptional: false;
156
+ };
157
+ topicKey: {
158
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
159
+ isOptional: false;
160
+ };
161
+ version: {
162
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
163
+ isOptional: false;
164
+ };
165
+ content: {
166
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
167
+ isOptional: false;
168
+ };
169
+ sourceRefs: {
170
+ type: import("@contractspec/lib.schema").SchemaModel<{
171
+ sourceDocumentId: {
172
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
173
+ isOptional: false;
174
+ };
175
+ excerpt: {
176
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
177
+ isOptional: true;
178
+ };
179
+ }>;
180
+ isArray: true;
181
+ isOptional: false;
182
+ };
183
+ status: {
184
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
185
+ isOptional: false;
186
+ };
187
+ approvedBy: {
188
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
189
+ isOptional: true;
190
+ };
191
+ approvedAt: {
192
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
181
193
  isOptional: true;
182
- };
183
- }>;
184
- isArray: true;
185
- isOptional: false;
186
- };
187
- status: {
188
- type: _contractspec_lib_schema0.FieldType<string, string>;
189
- isOptional: false;
190
- };
191
- approvedBy: {
192
- type: _contractspec_lib_schema0.FieldType<string, string>;
193
- isOptional: true;
194
- };
195
- approvedAt: {
196
- type: _contractspec_lib_schema0.FieldType<Date, string>;
197
- isOptional: true;
198
- };
199
- createdAt: {
200
- type: _contractspec_lib_schema0.FieldType<Date, string>;
201
- isOptional: false;
202
- };
194
+ };
195
+ createdAt: {
196
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
197
+ isOptional: false;
198
+ };
203
199
  }>, undefined>;
204
- declare const KbPublishSnapshotContract: _contractspec_lib_contracts0.OperationSpec<_contractspec_lib_schema0.SchemaModel<{
205
- jurisdiction: {
206
- type: _contractspec_lib_schema0.FieldType<string, string>;
207
- isOptional: false;
208
- };
209
- asOfDate: {
210
- type: _contractspec_lib_schema0.FieldType<Date, string>;
211
- isOptional: false;
212
- };
213
- }>, _contractspec_lib_schema0.SchemaModel<{
214
- id: {
215
- type: _contractspec_lib_schema0.FieldType<string, string>;
216
- isOptional: false;
217
- };
218
- jurisdiction: {
219
- type: _contractspec_lib_schema0.FieldType<string, string>;
220
- isOptional: false;
221
- };
222
- asOfDate: {
223
- type: _contractspec_lib_schema0.FieldType<Date, string>;
224
- isOptional: false;
225
- };
226
- includedRuleVersionIds: {
227
- type: _contractspec_lib_schema0.FieldType<string, string>;
228
- isArray: true;
229
- isOptional: false;
230
- };
231
- publishedAt: {
232
- type: _contractspec_lib_schema0.FieldType<Date, string>;
233
- isOptional: false;
234
- };
200
+ export declare const KbPublishSnapshotContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
201
+ jurisdiction: {
202
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
203
+ isOptional: false;
204
+ };
205
+ asOfDate: {
206
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
207
+ isOptional: false;
208
+ };
209
+ }>, import("@contractspec/lib.schema").SchemaModel<{
210
+ id: {
211
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
212
+ isOptional: false;
213
+ };
214
+ jurisdiction: {
215
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
216
+ isOptional: false;
217
+ };
218
+ asOfDate: {
219
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
220
+ isOptional: false;
221
+ };
222
+ includedRuleVersionIds: {
223
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
224
+ isArray: true;
225
+ isOptional: false;
226
+ };
227
+ publishedAt: {
228
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
229
+ isOptional: false;
230
+ };
235
231
  }>, undefined>;
236
- declare const KbSearchContract: _contractspec_lib_contracts0.OperationSpec<_contractspec_lib_schema0.SchemaModel<{
237
- snapshotId: {
238
- type: _contractspec_lib_schema0.FieldType<string, string>;
239
- isOptional: false;
240
- };
241
- jurisdiction: {
242
- type: _contractspec_lib_schema0.FieldType<string, string>;
243
- isOptional: false;
244
- };
245
- query: {
246
- type: _contractspec_lib_schema0.FieldType<string, string>;
247
- isOptional: false;
248
- };
249
- }>, _contractspec_lib_schema0.SchemaModel<{
250
- items: {
251
- type: _contractspec_lib_schema0.SchemaModel<{
252
- ruleVersionId: {
253
- type: _contractspec_lib_schema0.FieldType<string, string>;
254
- isOptional: false;
255
- };
256
- excerpt: {
257
- type: _contractspec_lib_schema0.FieldType<string, string>;
258
- isOptional: true;
259
- };
260
- }>;
261
- isArray: true;
262
- isOptional: false;
263
- };
232
+ export declare const KbSearchContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
233
+ snapshotId: {
234
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
235
+ isOptional: false;
236
+ };
237
+ jurisdiction: {
238
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
239
+ isOptional: false;
240
+ };
241
+ query: {
242
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
243
+ isOptional: false;
244
+ };
245
+ }>, import("@contractspec/lib.schema").SchemaModel<{
246
+ items: {
247
+ type: import("@contractspec/lib.schema").SchemaModel<{
248
+ ruleVersionId: {
249
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
250
+ isOptional: false;
251
+ };
252
+ excerpt: {
253
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
254
+ isOptional: true;
255
+ };
256
+ }>;
257
+ isArray: true;
258
+ isOptional: false;
259
+ };
264
260
  }>, undefined>;
265
- //#endregion
266
- export { KbApproveRuleVersionContract, KbIngestSourceContract, KbPublishSnapshotContract, KbSearchContract, KbUpsertRuleVersionContract };
267
261
  //# sourceMappingURL=kb.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"kb.d.ts","names":[],"sources":["../../src/operations/kb.ts"],"mappings":";;;;cAoFa,sBAAA,+BAAsB,aAAA,2BAAA,WAAA;;UAiBjC,yBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;UAjBiC,yBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAmBtB,2BAAA,+BAA2B,aAAA,2BAAA,WAAA;;UA+BtC,yBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;UA/BsC,yBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAiC3B,4BAAA,+BAA4B,aAAA,2BAAA,WAAA;;UAiBvC,yBAAA,CAAA,SAAA;;;;;;;;;UAjBuC,yBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAmB5B,yBAAA,+BAAyB,aAAA,2BAAA,WAAA;;UA0BpC,yBAAA,CAAA,SAAA;;;;;;;;;UA1BoC,yBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;cA4BzB,gBAAA,+BAAgB,aAAA,2BAAA,WAAA;;UAiB3B,yBAAA,CAAA,SAAA;;;;;;;;;;;;;;;cAjB2B,yBAAA,CAAA,SAAA"}
1
+ {"version":3,"file":"kb.d.ts","sourceRoot":"","sources":["../../src/operations/kb.ts"],"names":[],"mappings":"AAoFA,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAiBjC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA+BtC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAiBvC,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA0BpC,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAiB3B,CAAC"}