@contractspec/lib.contracts 1.53.0 → 1.54.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/dist/app-config/app-config.contracts.d.ts +50 -50
- package/dist/app-config/events.d.ts +27 -27
- package/dist/app-config/lifecycle-contracts.d.ts +54 -54
- package/dist/contract-registry/schemas.d.ts +2 -2
- package/dist/data-views/types.d.ts +1 -1
- package/dist/docs/commands/docsGenerate.command.d.ts +19 -19
- package/dist/docs/commands/docsPublish.command.d.ts +13 -13
- package/dist/docs/contracts.d.ts +103 -103
- package/dist/docs/events/docsGenerated.event.d.ts +13 -13
- package/dist/docs/events/docsPublished.event.d.ts +15 -15
- package/dist/docs/forms/docsSearch.form.d.ts +4 -4
- package/dist/docs/queries/contractReference.query.d.ts +47 -47
- package/dist/docs/queries/docsIndex.query.d.ts +57 -57
- package/dist/docs/views/contractReference.dataView.js +2 -1
- package/dist/examples/schema.d.ts +8 -8
- package/dist/integrations/openbanking/contracts/accounts.d.ts +66 -66
- package/dist/integrations/openbanking/contracts/balances.d.ts +34 -34
- package/dist/integrations/openbanking/contracts/transactions.d.ts +48 -48
- package/dist/integrations/openbanking/models.d.ts +55 -55
- package/dist/integrations/operations.d.ts +102 -102
- package/dist/integrations/providers/impls/stripe-payments.js +1 -1
- package/dist/knowledge/operations.d.ts +66 -66
- package/dist/onboarding-base.d.ts +29 -29
- package/dist/operations/report/getContractVerificationStatus.d.ts +10 -10
- package/package.json +8 -8
package/dist/docs/contracts.d.ts
CHANGED
|
@@ -10,69 +10,69 @@ import { FormRegistry, FormSpec } from "../forms/forms.js";
|
|
|
10
10
|
import "../forms/index.js";
|
|
11
11
|
import { EventRegistry, EventSpec, EventSpecMeta } from "../events.js";
|
|
12
12
|
import "../index.js";
|
|
13
|
-
import * as
|
|
13
|
+
import * as _contractspec_lib_schema690 from "@contractspec/lib.schema";
|
|
14
14
|
|
|
15
15
|
//#region src/docs/contracts.d.ts
|
|
16
16
|
declare const docsOperationContracts: {
|
|
17
|
-
DocsIndexQuery: OperationSpec<
|
|
17
|
+
DocsIndexQuery: OperationSpec<_contractspec_lib_schema690.SchemaModel<{
|
|
18
18
|
query: {
|
|
19
|
-
type:
|
|
19
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
20
20
|
isOptional: true;
|
|
21
21
|
};
|
|
22
22
|
tag: {
|
|
23
|
-
type:
|
|
23
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
24
24
|
isOptional: true;
|
|
25
25
|
isArray: true;
|
|
26
26
|
};
|
|
27
27
|
visibility: {
|
|
28
|
-
type:
|
|
28
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
29
29
|
isOptional: true;
|
|
30
30
|
};
|
|
31
31
|
kind: {
|
|
32
|
-
type:
|
|
32
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
33
33
|
isOptional: true;
|
|
34
34
|
};
|
|
35
35
|
limit: {
|
|
36
|
-
type:
|
|
36
|
+
type: _contractspec_lib_schema690.FieldType<number, number>;
|
|
37
37
|
isOptional: true;
|
|
38
38
|
};
|
|
39
39
|
offset: {
|
|
40
|
-
type:
|
|
40
|
+
type: _contractspec_lib_schema690.FieldType<number, number>;
|
|
41
41
|
isOptional: true;
|
|
42
42
|
};
|
|
43
|
-
}>,
|
|
43
|
+
}>, _contractspec_lib_schema690.SchemaModel<{
|
|
44
44
|
items: {
|
|
45
|
-
type:
|
|
45
|
+
type: _contractspec_lib_schema690.SchemaModel<{
|
|
46
46
|
id: {
|
|
47
|
-
type:
|
|
47
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
48
48
|
isOptional: false;
|
|
49
49
|
};
|
|
50
50
|
title: {
|
|
51
|
-
type:
|
|
51
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
52
52
|
isOptional: false;
|
|
53
53
|
};
|
|
54
54
|
summary: {
|
|
55
|
-
type:
|
|
55
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
56
56
|
isOptional: true;
|
|
57
57
|
};
|
|
58
58
|
route: {
|
|
59
|
-
type:
|
|
59
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
60
60
|
isOptional: true;
|
|
61
61
|
};
|
|
62
62
|
visibility: {
|
|
63
|
-
type:
|
|
63
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
64
64
|
isOptional: true;
|
|
65
65
|
};
|
|
66
66
|
kind: {
|
|
67
|
-
type:
|
|
67
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
68
68
|
isOptional: true;
|
|
69
69
|
};
|
|
70
70
|
version: {
|
|
71
|
-
type:
|
|
71
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
72
72
|
isOptional: true;
|
|
73
73
|
};
|
|
74
74
|
tags: {
|
|
75
|
-
type:
|
|
75
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
76
76
|
isOptional: true;
|
|
77
77
|
isArray: true;
|
|
78
78
|
};
|
|
@@ -81,37 +81,37 @@ declare const docsOperationContracts: {
|
|
|
81
81
|
isArray: true;
|
|
82
82
|
};
|
|
83
83
|
docs: {
|
|
84
|
-
type:
|
|
84
|
+
type: _contractspec_lib_schema690.SchemaModel<{
|
|
85
85
|
id: {
|
|
86
|
-
type:
|
|
86
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
87
87
|
isOptional: false;
|
|
88
88
|
};
|
|
89
89
|
title: {
|
|
90
|
-
type:
|
|
90
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
91
91
|
isOptional: false;
|
|
92
92
|
};
|
|
93
93
|
summary: {
|
|
94
|
-
type:
|
|
94
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
95
95
|
isOptional: true;
|
|
96
96
|
};
|
|
97
97
|
route: {
|
|
98
|
-
type:
|
|
98
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
99
99
|
isOptional: true;
|
|
100
100
|
};
|
|
101
101
|
visibility: {
|
|
102
|
-
type:
|
|
102
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
103
103
|
isOptional: true;
|
|
104
104
|
};
|
|
105
105
|
kind: {
|
|
106
|
-
type:
|
|
106
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
107
107
|
isOptional: true;
|
|
108
108
|
};
|
|
109
109
|
version: {
|
|
110
|
-
type:
|
|
110
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
111
111
|
isOptional: true;
|
|
112
112
|
};
|
|
113
113
|
tags: {
|
|
114
|
-
type:
|
|
114
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
115
115
|
isOptional: true;
|
|
116
116
|
isArray: true;
|
|
117
117
|
};
|
|
@@ -120,163 +120,163 @@ declare const docsOperationContracts: {
|
|
|
120
120
|
isArray: true;
|
|
121
121
|
};
|
|
122
122
|
total: {
|
|
123
|
-
type:
|
|
123
|
+
type: _contractspec_lib_schema690.FieldType<number, number>;
|
|
124
124
|
isOptional: true;
|
|
125
125
|
};
|
|
126
126
|
nextOffset: {
|
|
127
|
-
type:
|
|
127
|
+
type: _contractspec_lib_schema690.FieldType<number, number>;
|
|
128
128
|
isOptional: true;
|
|
129
129
|
};
|
|
130
130
|
}>, undefined>;
|
|
131
|
-
ContractReferenceQuery: OperationSpec<
|
|
131
|
+
ContractReferenceQuery: OperationSpec<_contractspec_lib_schema690.SchemaModel<{
|
|
132
132
|
key: {
|
|
133
|
-
type:
|
|
133
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
134
134
|
isOptional: false;
|
|
135
135
|
};
|
|
136
136
|
version: {
|
|
137
|
-
type:
|
|
137
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
138
138
|
isOptional: true;
|
|
139
139
|
};
|
|
140
140
|
type: {
|
|
141
|
-
type:
|
|
141
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
142
142
|
isOptional: true;
|
|
143
143
|
};
|
|
144
144
|
format: {
|
|
145
|
-
type:
|
|
145
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
146
146
|
isOptional: true;
|
|
147
147
|
};
|
|
148
148
|
includeSchema: {
|
|
149
|
-
type:
|
|
149
|
+
type: _contractspec_lib_schema690.FieldType<boolean, boolean>;
|
|
150
150
|
isOptional: true;
|
|
151
151
|
};
|
|
152
|
-
}>,
|
|
152
|
+
}>, _contractspec_lib_schema690.SchemaModel<{
|
|
153
153
|
reference: {
|
|
154
|
-
type:
|
|
154
|
+
type: _contractspec_lib_schema690.SchemaModel<{
|
|
155
155
|
key: {
|
|
156
|
-
type:
|
|
156
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
157
157
|
isOptional: false;
|
|
158
158
|
};
|
|
159
159
|
version: {
|
|
160
|
-
type:
|
|
160
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
161
161
|
isOptional: false;
|
|
162
162
|
};
|
|
163
163
|
type: {
|
|
164
|
-
type:
|
|
164
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
165
165
|
isOptional: false;
|
|
166
166
|
};
|
|
167
167
|
title: {
|
|
168
|
-
type:
|
|
168
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
169
169
|
isOptional: true;
|
|
170
170
|
};
|
|
171
171
|
description: {
|
|
172
|
-
type:
|
|
172
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
173
173
|
isOptional: true;
|
|
174
174
|
};
|
|
175
175
|
markdown: {
|
|
176
|
-
type:
|
|
176
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
177
177
|
isOptional: true;
|
|
178
178
|
};
|
|
179
179
|
route: {
|
|
180
|
-
type:
|
|
180
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
181
181
|
isOptional: true;
|
|
182
182
|
};
|
|
183
183
|
schema: {
|
|
184
|
-
type:
|
|
184
|
+
type: _contractspec_lib_schema690.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
185
185
|
isOptional: true;
|
|
186
186
|
};
|
|
187
187
|
policy: {
|
|
188
|
-
type:
|
|
188
|
+
type: _contractspec_lib_schema690.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
189
189
|
isOptional: true;
|
|
190
190
|
};
|
|
191
191
|
tags: {
|
|
192
|
-
type:
|
|
192
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
193
193
|
isOptional: true;
|
|
194
194
|
isArray: true;
|
|
195
195
|
};
|
|
196
196
|
owners: {
|
|
197
|
-
type:
|
|
197
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
198
198
|
isOptional: true;
|
|
199
199
|
isArray: true;
|
|
200
200
|
};
|
|
201
201
|
stability: {
|
|
202
|
-
type:
|
|
202
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
203
203
|
isOptional: true;
|
|
204
204
|
};
|
|
205
205
|
}>;
|
|
206
206
|
isOptional: false;
|
|
207
207
|
};
|
|
208
208
|
}>, undefined>;
|
|
209
|
-
DocsGenerateCommand: OperationSpec<
|
|
209
|
+
DocsGenerateCommand: OperationSpec<_contractspec_lib_schema690.SchemaModel<{
|
|
210
210
|
workspaceRoot: {
|
|
211
|
-
type:
|
|
211
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
212
212
|
isOptional: true;
|
|
213
213
|
};
|
|
214
214
|
outputDir: {
|
|
215
|
-
type:
|
|
215
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
216
216
|
isOptional: true;
|
|
217
217
|
};
|
|
218
218
|
version: {
|
|
219
|
-
type:
|
|
219
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
220
220
|
isOptional: true;
|
|
221
221
|
};
|
|
222
222
|
formats: {
|
|
223
|
-
type:
|
|
223
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
224
224
|
isOptional: true;
|
|
225
225
|
isArray: true;
|
|
226
226
|
};
|
|
227
227
|
includeInternal: {
|
|
228
|
-
type:
|
|
228
|
+
type: _contractspec_lib_schema690.FieldType<boolean, boolean>;
|
|
229
229
|
isOptional: true;
|
|
230
230
|
};
|
|
231
231
|
includeExperimental: {
|
|
232
|
-
type:
|
|
232
|
+
type: _contractspec_lib_schema690.FieldType<boolean, boolean>;
|
|
233
233
|
isOptional: true;
|
|
234
234
|
};
|
|
235
235
|
contractFilter: {
|
|
236
|
-
type:
|
|
236
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
237
237
|
isOptional: true;
|
|
238
238
|
};
|
|
239
239
|
docblockFilter: {
|
|
240
|
-
type:
|
|
240
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
241
241
|
isOptional: true;
|
|
242
242
|
};
|
|
243
243
|
dryRun: {
|
|
244
|
-
type:
|
|
244
|
+
type: _contractspec_lib_schema690.FieldType<boolean, boolean>;
|
|
245
245
|
isOptional: true;
|
|
246
246
|
};
|
|
247
|
-
}>,
|
|
247
|
+
}>, _contractspec_lib_schema690.SchemaModel<{
|
|
248
248
|
buildId: {
|
|
249
|
-
type:
|
|
249
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
250
250
|
isOptional: false;
|
|
251
251
|
};
|
|
252
252
|
version: {
|
|
253
|
-
type:
|
|
253
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
254
254
|
isOptional: true;
|
|
255
255
|
};
|
|
256
256
|
generatedAt: {
|
|
257
|
-
type:
|
|
257
|
+
type: _contractspec_lib_schema690.FieldType<Date, string>;
|
|
258
258
|
isOptional: false;
|
|
259
259
|
};
|
|
260
260
|
outputDir: {
|
|
261
|
-
type:
|
|
261
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
262
262
|
isOptional: true;
|
|
263
263
|
};
|
|
264
264
|
artifacts: {
|
|
265
|
-
type:
|
|
265
|
+
type: _contractspec_lib_schema690.SchemaModel<{
|
|
266
266
|
path: {
|
|
267
|
-
type:
|
|
267
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
268
268
|
isOptional: false;
|
|
269
269
|
};
|
|
270
270
|
format: {
|
|
271
|
-
type:
|
|
271
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
272
272
|
isOptional: true;
|
|
273
273
|
};
|
|
274
274
|
bytes: {
|
|
275
|
-
type:
|
|
275
|
+
type: _contractspec_lib_schema690.FieldType<number, number>;
|
|
276
276
|
isOptional: true;
|
|
277
277
|
};
|
|
278
278
|
kind: {
|
|
279
|
-
type:
|
|
279
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
280
280
|
isOptional: true;
|
|
281
281
|
};
|
|
282
282
|
}>;
|
|
@@ -284,7 +284,7 @@ declare const docsOperationContracts: {
|
|
|
284
284
|
isArray: true;
|
|
285
285
|
};
|
|
286
286
|
warnings: {
|
|
287
|
-
type:
|
|
287
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
288
288
|
isOptional: true;
|
|
289
289
|
isArray: true;
|
|
290
290
|
};
|
|
@@ -292,54 +292,54 @@ declare const docsOperationContracts: {
|
|
|
292
292
|
ref: EventSpecMeta;
|
|
293
293
|
when: string;
|
|
294
294
|
}[]>;
|
|
295
|
-
DocsPublishCommand: OperationSpec<
|
|
295
|
+
DocsPublishCommand: OperationSpec<_contractspec_lib_schema690.SchemaModel<{
|
|
296
296
|
buildId: {
|
|
297
|
-
type:
|
|
297
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
298
298
|
isOptional: false;
|
|
299
299
|
};
|
|
300
300
|
version: {
|
|
301
|
-
type:
|
|
301
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
302
302
|
isOptional: true;
|
|
303
303
|
};
|
|
304
304
|
environment: {
|
|
305
|
-
type:
|
|
305
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
306
306
|
isOptional: true;
|
|
307
307
|
};
|
|
308
308
|
deployTarget: {
|
|
309
|
-
type:
|
|
309
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
310
310
|
isOptional: true;
|
|
311
311
|
};
|
|
312
312
|
artifactPath: {
|
|
313
|
-
type:
|
|
313
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
314
314
|
isOptional: true;
|
|
315
315
|
};
|
|
316
316
|
dryRun: {
|
|
317
|
-
type:
|
|
317
|
+
type: _contractspec_lib_schema690.FieldType<boolean, boolean>;
|
|
318
318
|
isOptional: true;
|
|
319
319
|
};
|
|
320
320
|
notes: {
|
|
321
|
-
type:
|
|
321
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
322
322
|
isOptional: true;
|
|
323
323
|
};
|
|
324
|
-
}>,
|
|
324
|
+
}>, _contractspec_lib_schema690.SchemaModel<{
|
|
325
325
|
publishId: {
|
|
326
|
-
type:
|
|
326
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
327
327
|
isOptional: false;
|
|
328
328
|
};
|
|
329
329
|
publishedAt: {
|
|
330
|
-
type:
|
|
330
|
+
type: _contractspec_lib_schema690.FieldType<Date, string>;
|
|
331
331
|
isOptional: false;
|
|
332
332
|
};
|
|
333
333
|
url: {
|
|
334
|
-
type:
|
|
334
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
335
335
|
isOptional: true;
|
|
336
336
|
};
|
|
337
337
|
status: {
|
|
338
|
-
type:
|
|
338
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
339
339
|
isOptional: true;
|
|
340
340
|
};
|
|
341
341
|
warnings: {
|
|
342
|
-
type:
|
|
342
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
343
343
|
isOptional: true;
|
|
344
344
|
isArray: true;
|
|
345
345
|
};
|
|
@@ -349,60 +349,60 @@ declare const docsOperationContracts: {
|
|
|
349
349
|
}[]>;
|
|
350
350
|
};
|
|
351
351
|
declare const docsEventContracts: {
|
|
352
|
-
DocsGeneratedEvent: EventSpec<
|
|
352
|
+
DocsGeneratedEvent: EventSpec<_contractspec_lib_schema690.SchemaModel<{
|
|
353
353
|
buildId: {
|
|
354
|
-
type:
|
|
354
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
355
355
|
isOptional: false;
|
|
356
356
|
};
|
|
357
357
|
version: {
|
|
358
|
-
type:
|
|
358
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
359
359
|
isOptional: true;
|
|
360
360
|
};
|
|
361
361
|
generatedAt: {
|
|
362
|
-
type:
|
|
362
|
+
type: _contractspec_lib_schema690.FieldType<Date, string>;
|
|
363
363
|
isOptional: false;
|
|
364
364
|
};
|
|
365
365
|
outputDir: {
|
|
366
|
-
type:
|
|
366
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
367
367
|
isOptional: true;
|
|
368
368
|
};
|
|
369
369
|
artifactCount: {
|
|
370
|
-
type:
|
|
370
|
+
type: _contractspec_lib_schema690.FieldType<number, number>;
|
|
371
371
|
isOptional: true;
|
|
372
372
|
};
|
|
373
373
|
warnings: {
|
|
374
|
-
type:
|
|
374
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
375
375
|
isOptional: true;
|
|
376
376
|
isArray: true;
|
|
377
377
|
};
|
|
378
378
|
}>>;
|
|
379
|
-
DocsPublishedEvent: EventSpec<
|
|
379
|
+
DocsPublishedEvent: EventSpec<_contractspec_lib_schema690.SchemaModel<{
|
|
380
380
|
publishId: {
|
|
381
|
-
type:
|
|
381
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
382
382
|
isOptional: false;
|
|
383
383
|
};
|
|
384
384
|
version: {
|
|
385
|
-
type:
|
|
385
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
386
386
|
isOptional: true;
|
|
387
387
|
};
|
|
388
388
|
environment: {
|
|
389
|
-
type:
|
|
389
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
390
390
|
isOptional: true;
|
|
391
391
|
};
|
|
392
392
|
url: {
|
|
393
|
-
type:
|
|
393
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
394
394
|
isOptional: true;
|
|
395
395
|
};
|
|
396
396
|
publishedAt: {
|
|
397
|
-
type:
|
|
397
|
+
type: _contractspec_lib_schema690.FieldType<Date, string>;
|
|
398
398
|
isOptional: false;
|
|
399
399
|
};
|
|
400
400
|
status: {
|
|
401
|
-
type:
|
|
401
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
402
402
|
isOptional: true;
|
|
403
403
|
};
|
|
404
404
|
warnings: {
|
|
405
|
-
type:
|
|
405
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
406
406
|
isOptional: true;
|
|
407
407
|
isArray: true;
|
|
408
408
|
};
|
|
@@ -413,17 +413,17 @@ declare const docsPresentationContracts: {
|
|
|
413
413
|
DocsReferencePagePresentation: PresentationSpec;
|
|
414
414
|
};
|
|
415
415
|
declare const docsFormContracts: {
|
|
416
|
-
DocsSearchForm: FormSpec<
|
|
416
|
+
DocsSearchForm: FormSpec<_contractspec_lib_schema690.SchemaModel<{
|
|
417
417
|
query: {
|
|
418
|
-
type:
|
|
418
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
419
419
|
isOptional: true;
|
|
420
420
|
};
|
|
421
421
|
visibility: {
|
|
422
|
-
type:
|
|
422
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
423
423
|
isOptional: true;
|
|
424
424
|
};
|
|
425
425
|
kind: {
|
|
426
|
-
type:
|
|
426
|
+
type: _contractspec_lib_schema690.FieldType<string, string>;
|
|
427
427
|
isOptional: true;
|
|
428
428
|
};
|
|
429
429
|
}>>;
|
|
@@ -1,59 +1,59 @@
|
|
|
1
1
|
import { EventSpec } from "../../events.js";
|
|
2
2
|
import "../../index.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _contractspec_lib_schema351 from "@contractspec/lib.schema";
|
|
4
4
|
import { SchemaModel } from "@contractspec/lib.schema";
|
|
5
5
|
|
|
6
6
|
//#region src/docs/events/docsGenerated.event.d.ts
|
|
7
7
|
declare const DocsGeneratedPayload: SchemaModel<{
|
|
8
8
|
buildId: {
|
|
9
|
-
type:
|
|
9
|
+
type: _contractspec_lib_schema351.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
version: {
|
|
13
|
-
type:
|
|
13
|
+
type: _contractspec_lib_schema351.FieldType<string, string>;
|
|
14
14
|
isOptional: true;
|
|
15
15
|
};
|
|
16
16
|
generatedAt: {
|
|
17
|
-
type:
|
|
17
|
+
type: _contractspec_lib_schema351.FieldType<Date, string>;
|
|
18
18
|
isOptional: false;
|
|
19
19
|
};
|
|
20
20
|
outputDir: {
|
|
21
|
-
type:
|
|
21
|
+
type: _contractspec_lib_schema351.FieldType<string, string>;
|
|
22
22
|
isOptional: true;
|
|
23
23
|
};
|
|
24
24
|
artifactCount: {
|
|
25
|
-
type:
|
|
25
|
+
type: _contractspec_lib_schema351.FieldType<number, number>;
|
|
26
26
|
isOptional: true;
|
|
27
27
|
};
|
|
28
28
|
warnings: {
|
|
29
|
-
type:
|
|
29
|
+
type: _contractspec_lib_schema351.FieldType<string, string>;
|
|
30
30
|
isOptional: true;
|
|
31
31
|
isArray: true;
|
|
32
32
|
};
|
|
33
33
|
}>;
|
|
34
34
|
declare const DocsGeneratedEvent: EventSpec<SchemaModel<{
|
|
35
35
|
buildId: {
|
|
36
|
-
type:
|
|
36
|
+
type: _contractspec_lib_schema351.FieldType<string, string>;
|
|
37
37
|
isOptional: false;
|
|
38
38
|
};
|
|
39
39
|
version: {
|
|
40
|
-
type:
|
|
40
|
+
type: _contractspec_lib_schema351.FieldType<string, string>;
|
|
41
41
|
isOptional: true;
|
|
42
42
|
};
|
|
43
43
|
generatedAt: {
|
|
44
|
-
type:
|
|
44
|
+
type: _contractspec_lib_schema351.FieldType<Date, string>;
|
|
45
45
|
isOptional: false;
|
|
46
46
|
};
|
|
47
47
|
outputDir: {
|
|
48
|
-
type:
|
|
48
|
+
type: _contractspec_lib_schema351.FieldType<string, string>;
|
|
49
49
|
isOptional: true;
|
|
50
50
|
};
|
|
51
51
|
artifactCount: {
|
|
52
|
-
type:
|
|
52
|
+
type: _contractspec_lib_schema351.FieldType<number, number>;
|
|
53
53
|
isOptional: true;
|
|
54
54
|
};
|
|
55
55
|
warnings: {
|
|
56
|
-
type:
|
|
56
|
+
type: _contractspec_lib_schema351.FieldType<string, string>;
|
|
57
57
|
isOptional: true;
|
|
58
58
|
isArray: true;
|
|
59
59
|
};
|
|
@@ -1,67 +1,67 @@
|
|
|
1
1
|
import { EventSpec } from "../../events.js";
|
|
2
2
|
import "../../index.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _contractspec_lib_schema363 from "@contractspec/lib.schema";
|
|
4
4
|
import { SchemaModel } from "@contractspec/lib.schema";
|
|
5
5
|
|
|
6
6
|
//#region src/docs/events/docsPublished.event.d.ts
|
|
7
7
|
declare const DocsPublishedPayload: SchemaModel<{
|
|
8
8
|
publishId: {
|
|
9
|
-
type:
|
|
9
|
+
type: _contractspec_lib_schema363.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
version: {
|
|
13
|
-
type:
|
|
13
|
+
type: _contractspec_lib_schema363.FieldType<string, string>;
|
|
14
14
|
isOptional: true;
|
|
15
15
|
};
|
|
16
16
|
environment: {
|
|
17
|
-
type:
|
|
17
|
+
type: _contractspec_lib_schema363.FieldType<string, string>;
|
|
18
18
|
isOptional: true;
|
|
19
19
|
};
|
|
20
20
|
url: {
|
|
21
|
-
type:
|
|
21
|
+
type: _contractspec_lib_schema363.FieldType<string, string>;
|
|
22
22
|
isOptional: true;
|
|
23
23
|
};
|
|
24
24
|
publishedAt: {
|
|
25
|
-
type:
|
|
25
|
+
type: _contractspec_lib_schema363.FieldType<Date, string>;
|
|
26
26
|
isOptional: false;
|
|
27
27
|
};
|
|
28
28
|
status: {
|
|
29
|
-
type:
|
|
29
|
+
type: _contractspec_lib_schema363.FieldType<string, string>;
|
|
30
30
|
isOptional: true;
|
|
31
31
|
};
|
|
32
32
|
warnings: {
|
|
33
|
-
type:
|
|
33
|
+
type: _contractspec_lib_schema363.FieldType<string, string>;
|
|
34
34
|
isOptional: true;
|
|
35
35
|
isArray: true;
|
|
36
36
|
};
|
|
37
37
|
}>;
|
|
38
38
|
declare const DocsPublishedEvent: EventSpec<SchemaModel<{
|
|
39
39
|
publishId: {
|
|
40
|
-
type:
|
|
40
|
+
type: _contractspec_lib_schema363.FieldType<string, string>;
|
|
41
41
|
isOptional: false;
|
|
42
42
|
};
|
|
43
43
|
version: {
|
|
44
|
-
type:
|
|
44
|
+
type: _contractspec_lib_schema363.FieldType<string, string>;
|
|
45
45
|
isOptional: true;
|
|
46
46
|
};
|
|
47
47
|
environment: {
|
|
48
|
-
type:
|
|
48
|
+
type: _contractspec_lib_schema363.FieldType<string, string>;
|
|
49
49
|
isOptional: true;
|
|
50
50
|
};
|
|
51
51
|
url: {
|
|
52
|
-
type:
|
|
52
|
+
type: _contractspec_lib_schema363.FieldType<string, string>;
|
|
53
53
|
isOptional: true;
|
|
54
54
|
};
|
|
55
55
|
publishedAt: {
|
|
56
|
-
type:
|
|
56
|
+
type: _contractspec_lib_schema363.FieldType<Date, string>;
|
|
57
57
|
isOptional: false;
|
|
58
58
|
};
|
|
59
59
|
status: {
|
|
60
|
-
type:
|
|
60
|
+
type: _contractspec_lib_schema363.FieldType<string, string>;
|
|
61
61
|
isOptional: true;
|
|
62
62
|
};
|
|
63
63
|
warnings: {
|
|
64
|
-
type:
|
|
64
|
+
type: _contractspec_lib_schema363.FieldType<string, string>;
|
|
65
65
|
isOptional: true;
|
|
66
66
|
isArray: true;
|
|
67
67
|
};
|