@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
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import { FormSpec } from "../../forms/forms.js";
|
|
2
2
|
import "../../index.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _contractspec_lib_schema377 from "@contractspec/lib.schema";
|
|
4
4
|
import { SchemaModel } from "@contractspec/lib.schema";
|
|
5
5
|
|
|
6
6
|
//#region src/docs/forms/docsSearch.form.d.ts
|
|
7
7
|
declare const DocsSearchForm: FormSpec<SchemaModel<{
|
|
8
8
|
query: {
|
|
9
|
-
type:
|
|
9
|
+
type: _contractspec_lib_schema377.FieldType<string, string>;
|
|
10
10
|
isOptional: true;
|
|
11
11
|
};
|
|
12
12
|
visibility: {
|
|
13
|
-
type:
|
|
13
|
+
type: _contractspec_lib_schema377.FieldType<string, string>;
|
|
14
14
|
isOptional: true;
|
|
15
15
|
};
|
|
16
16
|
kind: {
|
|
17
|
-
type:
|
|
17
|
+
type: _contractspec_lib_schema377.FieldType<string, string>;
|
|
18
18
|
isOptional: true;
|
|
19
19
|
};
|
|
20
20
|
}>>;
|
|
@@ -1,80 +1,80 @@
|
|
|
1
1
|
import { OperationSpec } from "../../operations/operation.js";
|
|
2
2
|
import "../../index.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _contractspec_lib_schema380 from "@contractspec/lib.schema";
|
|
4
4
|
import { SchemaModel } from "@contractspec/lib.schema";
|
|
5
5
|
|
|
6
6
|
//#region src/docs/queries/contractReference.query.d.ts
|
|
7
7
|
declare const ContractReferenceInput: SchemaModel<{
|
|
8
8
|
key: {
|
|
9
|
-
type:
|
|
9
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
version: {
|
|
13
|
-
type:
|
|
13
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
14
14
|
isOptional: true;
|
|
15
15
|
};
|
|
16
16
|
type: {
|
|
17
|
-
type:
|
|
17
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
18
18
|
isOptional: true;
|
|
19
19
|
};
|
|
20
20
|
format: {
|
|
21
|
-
type:
|
|
21
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
22
22
|
isOptional: true;
|
|
23
23
|
};
|
|
24
24
|
includeSchema: {
|
|
25
|
-
type:
|
|
25
|
+
type: _contractspec_lib_schema380.FieldType<boolean, boolean>;
|
|
26
26
|
isOptional: true;
|
|
27
27
|
};
|
|
28
28
|
}>;
|
|
29
29
|
declare const ContractReferenceModel: SchemaModel<{
|
|
30
30
|
key: {
|
|
31
|
-
type:
|
|
31
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
32
32
|
isOptional: false;
|
|
33
33
|
};
|
|
34
34
|
version: {
|
|
35
|
-
type:
|
|
35
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
36
36
|
isOptional: false;
|
|
37
37
|
};
|
|
38
38
|
type: {
|
|
39
|
-
type:
|
|
39
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
40
40
|
isOptional: false;
|
|
41
41
|
};
|
|
42
42
|
title: {
|
|
43
|
-
type:
|
|
43
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
44
44
|
isOptional: true;
|
|
45
45
|
};
|
|
46
46
|
description: {
|
|
47
|
-
type:
|
|
47
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
48
48
|
isOptional: true;
|
|
49
49
|
};
|
|
50
50
|
markdown: {
|
|
51
|
-
type:
|
|
51
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
52
52
|
isOptional: true;
|
|
53
53
|
};
|
|
54
54
|
route: {
|
|
55
|
-
type:
|
|
55
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
56
56
|
isOptional: true;
|
|
57
57
|
};
|
|
58
58
|
schema: {
|
|
59
|
-
type:
|
|
59
|
+
type: _contractspec_lib_schema380.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
60
60
|
isOptional: true;
|
|
61
61
|
};
|
|
62
62
|
policy: {
|
|
63
|
-
type:
|
|
63
|
+
type: _contractspec_lib_schema380.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
64
64
|
isOptional: true;
|
|
65
65
|
};
|
|
66
66
|
tags: {
|
|
67
|
-
type:
|
|
67
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
68
68
|
isOptional: true;
|
|
69
69
|
isArray: true;
|
|
70
70
|
};
|
|
71
71
|
owners: {
|
|
72
|
-
type:
|
|
72
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
73
73
|
isOptional: true;
|
|
74
74
|
isArray: true;
|
|
75
75
|
};
|
|
76
76
|
stability: {
|
|
77
|
-
type:
|
|
77
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
78
78
|
isOptional: true;
|
|
79
79
|
};
|
|
80
80
|
}>;
|
|
@@ -82,53 +82,53 @@ declare const ContractReferenceOutput: SchemaModel<{
|
|
|
82
82
|
reference: {
|
|
83
83
|
type: SchemaModel<{
|
|
84
84
|
key: {
|
|
85
|
-
type:
|
|
85
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
86
86
|
isOptional: false;
|
|
87
87
|
};
|
|
88
88
|
version: {
|
|
89
|
-
type:
|
|
89
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
90
90
|
isOptional: false;
|
|
91
91
|
};
|
|
92
92
|
type: {
|
|
93
|
-
type:
|
|
93
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
94
94
|
isOptional: false;
|
|
95
95
|
};
|
|
96
96
|
title: {
|
|
97
|
-
type:
|
|
97
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
98
98
|
isOptional: true;
|
|
99
99
|
};
|
|
100
100
|
description: {
|
|
101
|
-
type:
|
|
101
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
102
102
|
isOptional: true;
|
|
103
103
|
};
|
|
104
104
|
markdown: {
|
|
105
|
-
type:
|
|
105
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
106
106
|
isOptional: true;
|
|
107
107
|
};
|
|
108
108
|
route: {
|
|
109
|
-
type:
|
|
109
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
110
110
|
isOptional: true;
|
|
111
111
|
};
|
|
112
112
|
schema: {
|
|
113
|
-
type:
|
|
113
|
+
type: _contractspec_lib_schema380.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
114
114
|
isOptional: true;
|
|
115
115
|
};
|
|
116
116
|
policy: {
|
|
117
|
-
type:
|
|
117
|
+
type: _contractspec_lib_schema380.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
118
118
|
isOptional: true;
|
|
119
119
|
};
|
|
120
120
|
tags: {
|
|
121
|
-
type:
|
|
121
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
122
122
|
isOptional: true;
|
|
123
123
|
isArray: true;
|
|
124
124
|
};
|
|
125
125
|
owners: {
|
|
126
|
-
type:
|
|
126
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
127
127
|
isOptional: true;
|
|
128
128
|
isArray: true;
|
|
129
129
|
};
|
|
130
130
|
stability: {
|
|
131
|
-
type:
|
|
131
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
132
132
|
isOptional: true;
|
|
133
133
|
};
|
|
134
134
|
}>;
|
|
@@ -137,76 +137,76 @@ declare const ContractReferenceOutput: SchemaModel<{
|
|
|
137
137
|
}>;
|
|
138
138
|
declare const ContractReferenceQuery: OperationSpec<SchemaModel<{
|
|
139
139
|
key: {
|
|
140
|
-
type:
|
|
140
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
141
141
|
isOptional: false;
|
|
142
142
|
};
|
|
143
143
|
version: {
|
|
144
|
-
type:
|
|
144
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
145
145
|
isOptional: true;
|
|
146
146
|
};
|
|
147
147
|
type: {
|
|
148
|
-
type:
|
|
148
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
149
149
|
isOptional: true;
|
|
150
150
|
};
|
|
151
151
|
format: {
|
|
152
|
-
type:
|
|
152
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
153
153
|
isOptional: true;
|
|
154
154
|
};
|
|
155
155
|
includeSchema: {
|
|
156
|
-
type:
|
|
156
|
+
type: _contractspec_lib_schema380.FieldType<boolean, boolean>;
|
|
157
157
|
isOptional: true;
|
|
158
158
|
};
|
|
159
159
|
}>, SchemaModel<{
|
|
160
160
|
reference: {
|
|
161
161
|
type: SchemaModel<{
|
|
162
162
|
key: {
|
|
163
|
-
type:
|
|
163
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
164
164
|
isOptional: false;
|
|
165
165
|
};
|
|
166
166
|
version: {
|
|
167
|
-
type:
|
|
167
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
168
168
|
isOptional: false;
|
|
169
169
|
};
|
|
170
170
|
type: {
|
|
171
|
-
type:
|
|
171
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
172
172
|
isOptional: false;
|
|
173
173
|
};
|
|
174
174
|
title: {
|
|
175
|
-
type:
|
|
175
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
176
176
|
isOptional: true;
|
|
177
177
|
};
|
|
178
178
|
description: {
|
|
179
|
-
type:
|
|
179
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
180
180
|
isOptional: true;
|
|
181
181
|
};
|
|
182
182
|
markdown: {
|
|
183
|
-
type:
|
|
183
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
184
184
|
isOptional: true;
|
|
185
185
|
};
|
|
186
186
|
route: {
|
|
187
|
-
type:
|
|
187
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
188
188
|
isOptional: true;
|
|
189
189
|
};
|
|
190
190
|
schema: {
|
|
191
|
-
type:
|
|
191
|
+
type: _contractspec_lib_schema380.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
192
192
|
isOptional: true;
|
|
193
193
|
};
|
|
194
194
|
policy: {
|
|
195
|
-
type:
|
|
195
|
+
type: _contractspec_lib_schema380.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
196
196
|
isOptional: true;
|
|
197
197
|
};
|
|
198
198
|
tags: {
|
|
199
|
-
type:
|
|
199
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
200
200
|
isOptional: true;
|
|
201
201
|
isArray: true;
|
|
202
202
|
};
|
|
203
203
|
owners: {
|
|
204
|
-
type:
|
|
204
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
205
205
|
isOptional: true;
|
|
206
206
|
isArray: true;
|
|
207
207
|
};
|
|
208
208
|
stability: {
|
|
209
|
-
type:
|
|
209
|
+
type: _contractspec_lib_schema380.FieldType<string, string>;
|
|
210
210
|
isOptional: true;
|
|
211
211
|
};
|
|
212
212
|
}>;
|
|
@@ -1,68 +1,68 @@
|
|
|
1
1
|
import { OperationSpec } from "../../operations/operation.js";
|
|
2
2
|
import "../../index.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _contractspec_lib_schema426 from "@contractspec/lib.schema";
|
|
4
4
|
import { SchemaModel } from "@contractspec/lib.schema";
|
|
5
5
|
|
|
6
6
|
//#region src/docs/queries/docsIndex.query.d.ts
|
|
7
7
|
declare const DocSummaryModel: SchemaModel<{
|
|
8
8
|
id: {
|
|
9
|
-
type:
|
|
9
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
title: {
|
|
13
|
-
type:
|
|
13
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
14
14
|
isOptional: false;
|
|
15
15
|
};
|
|
16
16
|
summary: {
|
|
17
|
-
type:
|
|
17
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
18
18
|
isOptional: true;
|
|
19
19
|
};
|
|
20
20
|
route: {
|
|
21
|
-
type:
|
|
21
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
22
22
|
isOptional: true;
|
|
23
23
|
};
|
|
24
24
|
visibility: {
|
|
25
|
-
type:
|
|
25
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
26
26
|
isOptional: true;
|
|
27
27
|
};
|
|
28
28
|
kind: {
|
|
29
|
-
type:
|
|
29
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
30
30
|
isOptional: true;
|
|
31
31
|
};
|
|
32
32
|
version: {
|
|
33
|
-
type:
|
|
33
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
34
34
|
isOptional: true;
|
|
35
35
|
};
|
|
36
36
|
tags: {
|
|
37
|
-
type:
|
|
37
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
38
38
|
isOptional: true;
|
|
39
39
|
isArray: true;
|
|
40
40
|
};
|
|
41
41
|
}>;
|
|
42
42
|
declare const DocsIndexInput: SchemaModel<{
|
|
43
43
|
query: {
|
|
44
|
-
type:
|
|
44
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
45
45
|
isOptional: true;
|
|
46
46
|
};
|
|
47
47
|
tag: {
|
|
48
|
-
type:
|
|
48
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
49
49
|
isOptional: true;
|
|
50
50
|
isArray: true;
|
|
51
51
|
};
|
|
52
52
|
visibility: {
|
|
53
|
-
type:
|
|
53
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
54
54
|
isOptional: true;
|
|
55
55
|
};
|
|
56
56
|
kind: {
|
|
57
|
-
type:
|
|
57
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
58
58
|
isOptional: true;
|
|
59
59
|
};
|
|
60
60
|
limit: {
|
|
61
|
-
type:
|
|
61
|
+
type: _contractspec_lib_schema426.FieldType<number, number>;
|
|
62
62
|
isOptional: true;
|
|
63
63
|
};
|
|
64
64
|
offset: {
|
|
65
|
-
type:
|
|
65
|
+
type: _contractspec_lib_schema426.FieldType<number, number>;
|
|
66
66
|
isOptional: true;
|
|
67
67
|
};
|
|
68
68
|
}>;
|
|
@@ -70,35 +70,35 @@ declare const DocsIndexOutput: SchemaModel<{
|
|
|
70
70
|
items: {
|
|
71
71
|
type: SchemaModel<{
|
|
72
72
|
id: {
|
|
73
|
-
type:
|
|
73
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
74
74
|
isOptional: false;
|
|
75
75
|
};
|
|
76
76
|
title: {
|
|
77
|
-
type:
|
|
77
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
78
78
|
isOptional: false;
|
|
79
79
|
};
|
|
80
80
|
summary: {
|
|
81
|
-
type:
|
|
81
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
82
82
|
isOptional: true;
|
|
83
83
|
};
|
|
84
84
|
route: {
|
|
85
|
-
type:
|
|
85
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
86
86
|
isOptional: true;
|
|
87
87
|
};
|
|
88
88
|
visibility: {
|
|
89
|
-
type:
|
|
89
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
90
90
|
isOptional: true;
|
|
91
91
|
};
|
|
92
92
|
kind: {
|
|
93
|
-
type:
|
|
93
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
94
94
|
isOptional: true;
|
|
95
95
|
};
|
|
96
96
|
version: {
|
|
97
|
-
type:
|
|
97
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
98
98
|
isOptional: true;
|
|
99
99
|
};
|
|
100
100
|
tags: {
|
|
101
|
-
type:
|
|
101
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
102
102
|
isOptional: true;
|
|
103
103
|
isArray: true;
|
|
104
104
|
};
|
|
@@ -109,35 +109,35 @@ declare const DocsIndexOutput: SchemaModel<{
|
|
|
109
109
|
docs: {
|
|
110
110
|
type: SchemaModel<{
|
|
111
111
|
id: {
|
|
112
|
-
type:
|
|
112
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
113
113
|
isOptional: false;
|
|
114
114
|
};
|
|
115
115
|
title: {
|
|
116
|
-
type:
|
|
116
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
117
117
|
isOptional: false;
|
|
118
118
|
};
|
|
119
119
|
summary: {
|
|
120
|
-
type:
|
|
120
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
121
121
|
isOptional: true;
|
|
122
122
|
};
|
|
123
123
|
route: {
|
|
124
|
-
type:
|
|
124
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
125
125
|
isOptional: true;
|
|
126
126
|
};
|
|
127
127
|
visibility: {
|
|
128
|
-
type:
|
|
128
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
129
129
|
isOptional: true;
|
|
130
130
|
};
|
|
131
131
|
kind: {
|
|
132
|
-
type:
|
|
132
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
133
133
|
isOptional: true;
|
|
134
134
|
};
|
|
135
135
|
version: {
|
|
136
|
-
type:
|
|
136
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
137
137
|
isOptional: true;
|
|
138
138
|
};
|
|
139
139
|
tags: {
|
|
140
|
-
type:
|
|
140
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
141
141
|
isOptional: true;
|
|
142
142
|
isArray: true;
|
|
143
143
|
};
|
|
@@ -146,73 +146,73 @@ declare const DocsIndexOutput: SchemaModel<{
|
|
|
146
146
|
isArray: true;
|
|
147
147
|
};
|
|
148
148
|
total: {
|
|
149
|
-
type:
|
|
149
|
+
type: _contractspec_lib_schema426.FieldType<number, number>;
|
|
150
150
|
isOptional: true;
|
|
151
151
|
};
|
|
152
152
|
nextOffset: {
|
|
153
|
-
type:
|
|
153
|
+
type: _contractspec_lib_schema426.FieldType<number, number>;
|
|
154
154
|
isOptional: true;
|
|
155
155
|
};
|
|
156
156
|
}>;
|
|
157
157
|
declare const DocsIndexQuery: OperationSpec<SchemaModel<{
|
|
158
158
|
query: {
|
|
159
|
-
type:
|
|
159
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
160
160
|
isOptional: true;
|
|
161
161
|
};
|
|
162
162
|
tag: {
|
|
163
|
-
type:
|
|
163
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
164
164
|
isOptional: true;
|
|
165
165
|
isArray: true;
|
|
166
166
|
};
|
|
167
167
|
visibility: {
|
|
168
|
-
type:
|
|
168
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
169
169
|
isOptional: true;
|
|
170
170
|
};
|
|
171
171
|
kind: {
|
|
172
|
-
type:
|
|
172
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
173
173
|
isOptional: true;
|
|
174
174
|
};
|
|
175
175
|
limit: {
|
|
176
|
-
type:
|
|
176
|
+
type: _contractspec_lib_schema426.FieldType<number, number>;
|
|
177
177
|
isOptional: true;
|
|
178
178
|
};
|
|
179
179
|
offset: {
|
|
180
|
-
type:
|
|
180
|
+
type: _contractspec_lib_schema426.FieldType<number, number>;
|
|
181
181
|
isOptional: true;
|
|
182
182
|
};
|
|
183
183
|
}>, SchemaModel<{
|
|
184
184
|
items: {
|
|
185
185
|
type: SchemaModel<{
|
|
186
186
|
id: {
|
|
187
|
-
type:
|
|
187
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
188
188
|
isOptional: false;
|
|
189
189
|
};
|
|
190
190
|
title: {
|
|
191
|
-
type:
|
|
191
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
192
192
|
isOptional: false;
|
|
193
193
|
};
|
|
194
194
|
summary: {
|
|
195
|
-
type:
|
|
195
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
196
196
|
isOptional: true;
|
|
197
197
|
};
|
|
198
198
|
route: {
|
|
199
|
-
type:
|
|
199
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
200
200
|
isOptional: true;
|
|
201
201
|
};
|
|
202
202
|
visibility: {
|
|
203
|
-
type:
|
|
203
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
204
204
|
isOptional: true;
|
|
205
205
|
};
|
|
206
206
|
kind: {
|
|
207
|
-
type:
|
|
207
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
208
208
|
isOptional: true;
|
|
209
209
|
};
|
|
210
210
|
version: {
|
|
211
|
-
type:
|
|
211
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
212
212
|
isOptional: true;
|
|
213
213
|
};
|
|
214
214
|
tags: {
|
|
215
|
-
type:
|
|
215
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
216
216
|
isOptional: true;
|
|
217
217
|
isArray: true;
|
|
218
218
|
};
|
|
@@ -223,35 +223,35 @@ declare const DocsIndexQuery: OperationSpec<SchemaModel<{
|
|
|
223
223
|
docs: {
|
|
224
224
|
type: SchemaModel<{
|
|
225
225
|
id: {
|
|
226
|
-
type:
|
|
226
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
227
227
|
isOptional: false;
|
|
228
228
|
};
|
|
229
229
|
title: {
|
|
230
|
-
type:
|
|
230
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
231
231
|
isOptional: false;
|
|
232
232
|
};
|
|
233
233
|
summary: {
|
|
234
|
-
type:
|
|
234
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
235
235
|
isOptional: true;
|
|
236
236
|
};
|
|
237
237
|
route: {
|
|
238
|
-
type:
|
|
238
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
239
239
|
isOptional: true;
|
|
240
240
|
};
|
|
241
241
|
visibility: {
|
|
242
|
-
type:
|
|
242
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
243
243
|
isOptional: true;
|
|
244
244
|
};
|
|
245
245
|
kind: {
|
|
246
|
-
type:
|
|
246
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
247
247
|
isOptional: true;
|
|
248
248
|
};
|
|
249
249
|
version: {
|
|
250
|
-
type:
|
|
250
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
251
251
|
isOptional: true;
|
|
252
252
|
};
|
|
253
253
|
tags: {
|
|
254
|
-
type:
|
|
254
|
+
type: _contractspec_lib_schema426.FieldType<string, string>;
|
|
255
255
|
isOptional: true;
|
|
256
256
|
isArray: true;
|
|
257
257
|
};
|
|
@@ -260,11 +260,11 @@ declare const DocsIndexQuery: OperationSpec<SchemaModel<{
|
|
|
260
260
|
isArray: true;
|
|
261
261
|
};
|
|
262
262
|
total: {
|
|
263
|
-
type:
|
|
263
|
+
type: _contractspec_lib_schema426.FieldType<number, number>;
|
|
264
264
|
isOptional: true;
|
|
265
265
|
};
|
|
266
266
|
nextOffset: {
|
|
267
|
-
type:
|
|
267
|
+
type: _contractspec_lib_schema426.FieldType<number, number>;
|
|
268
268
|
isOptional: true;
|
|
269
269
|
};
|
|
270
270
|
}>, undefined>;
|