@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.
- package/.turbo/turbo-build.log +52 -52
- package/.turbo/turbo-prebuild.log +1 -0
- package/CHANGELOG.md +13 -0
- package/dist/browser/docs/index.js +44 -0
- package/dist/browser/docs/versioned-knowledge-base.docblock.js +44 -0
- package/dist/browser/entities/index.js +74 -0
- package/dist/browser/entities/models.js +74 -0
- package/dist/browser/events.js +101 -0
- package/dist/browser/example.js +35 -0
- package/dist/browser/handlers/index.js +115 -0
- package/dist/browser/handlers/memory.handlers.js +115 -0
- package/dist/browser/index.js +586 -0
- package/dist/browser/operations/index.js +257 -0
- package/dist/browser/operations/kb.js +257 -0
- package/dist/browser/versioned-knowledge-base.feature.js +36 -0
- package/dist/docs/index.d.ts +2 -1
- package/dist/docs/index.d.ts.map +1 -0
- package/dist/docs/index.js +45 -1
- package/dist/docs/versioned-knowledge-base.docblock.d.ts +2 -1
- package/dist/docs/versioned-knowledge-base.docblock.d.ts.map +1 -0
- package/dist/docs/versioned-knowledge-base.docblock.js +42 -28
- package/dist/entities/index.d.ts +2 -2
- package/dist/entities/index.d.ts.map +1 -0
- package/dist/entities/index.js +75 -3
- package/dist/entities/models.d.ts +127 -132
- package/dist/entities/models.d.ts.map +1 -1
- package/dist/entities/models.js +69 -145
- package/dist/events.d.ts +52 -58
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +92 -114
- package/dist/example.d.ts +2 -6
- package/dist/example.d.ts.map +1 -1
- package/dist/example.js +34 -46
- package/dist/handlers/index.d.ts +2 -2
- package/dist/handlers/index.d.ts.map +1 -0
- package/dist/handlers/index.js +116 -3
- package/dist/handlers/memory.handlers.d.ts +62 -64
- package/dist/handlers/memory.handlers.d.ts.map +1 -1
- package/dist/handlers/memory.handlers.js +110 -97
- package/dist/handlers/memory.handlers.test.d.ts +2 -0
- package/dist/handlers/memory.handlers.test.d.ts.map +1 -0
- package/dist/index.d.ts +13 -9
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +587 -11
- package/dist/node/docs/index.js +44 -0
- package/dist/node/docs/versioned-knowledge-base.docblock.js +44 -0
- package/dist/node/entities/index.js +74 -0
- package/dist/node/entities/models.js +74 -0
- package/dist/node/events.js +101 -0
- package/dist/node/example.js +35 -0
- package/dist/node/handlers/index.js +115 -0
- package/dist/node/handlers/memory.handlers.js +115 -0
- package/dist/node/index.js +586 -0
- package/dist/node/operations/index.js +257 -0
- package/dist/node/operations/kb.js +257 -0
- package/dist/node/versioned-knowledge-base.feature.js +36 -0
- package/dist/operations/index.d.ts +2 -2
- package/dist/operations/index.d.ts.map +1 -0
- package/dist/operations/index.js +257 -2
- package/dist/operations/kb.d.ts +252 -258
- package/dist/operations/kb.d.ts.map +1 -1
- package/dist/operations/kb.js +246 -244
- package/dist/versioned-knowledge-base.feature.d.ts +1 -6
- package/dist/versioned-knowledge-base.feature.d.ts.map +1 -1
- package/dist/versioned-knowledge-base.feature.js +35 -68
- package/package.json +141 -38
- package/tsdown.config.js +1 -2
- package/.turbo/turbo-build$colon$bundle.log +0 -52
- package/dist/docs/versioned-knowledge-base.docblock.js.map +0 -1
- package/dist/entities/models.js.map +0 -1
- package/dist/events.js.map +0 -1
- package/dist/example.js.map +0 -1
- package/dist/handlers/memory.handlers.js.map +0 -1
- package/dist/operations/kb.js.map +0 -1
- package/dist/versioned-knowledge-base.feature.js.map +0 -1
- package/tsconfig.tsbuildinfo +0 -1
package/dist/operations/kb.d.ts
CHANGED
|
@@ -1,267 +1,261 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
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:
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
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
|
-
|
|
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
|
-
|
|
120
|
-
|
|
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:
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
}>,
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
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
|
-
|
|
185
|
-
|
|
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:
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
}>,
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
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:
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
}>,
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
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","
|
|
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"}
|