@redocly/openapi-core 0.0.0-snapshot.1769016804 → 0.0.0-snapshot.1769072908
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/lib/oas-types.d.ts +190 -0
- package/lib/oas-types.d.ts.map +1 -1
- package/lib/types/arazzo.d.ts.map +1 -1
- package/lib/types/arazzo.js +210 -44
- package/lib/types/arazzo.js.map +1 -1
- package/lib/types/asyncapi2.d.ts.map +1 -1
- package/lib/types/asyncapi2.js +385 -57
- package/lib/types/asyncapi2.js.map +1 -1
- package/lib/types/asyncapi3.d.ts.map +1 -1
- package/lib/types/asyncapi3.js +228 -47
- package/lib/types/asyncapi3.js.map +1 -1
- package/lib/types/index.d.ts +18 -2
- package/lib/types/index.d.ts.map +1 -1
- package/lib/types/index.js +4 -2
- package/lib/types/index.js.map +1 -1
- package/lib/types/oas2.d.ts +22 -0
- package/lib/types/oas2.d.ts.map +1 -1
- package/lib/types/oas3.d.ts +44 -0
- package/lib/types/oas3.d.ts.map +1 -1
- package/lib/types/oas3.js +345 -70
- package/lib/types/oas3.js.map +1 -1
- package/lib/types/oas3_1.d.ts +46 -0
- package/lib/types/oas3_1.d.ts.map +1 -1
- package/lib/types/oas3_1.js +38 -29
- package/lib/types/oas3_1.js.map +1 -1
- package/lib/types/oas3_2.d.ts +46 -0
- package/lib/types/oas3_2.d.ts.map +1 -1
- package/lib/types/oas3_2.js +101 -23
- package/lib/types/oas3_2.js.map +1 -1
- package/lib/types/openrpc.d.ts +32 -0
- package/lib/types/openrpc.d.ts.map +1 -1
- package/lib/types/openrpc.js +215 -46
- package/lib/types/openrpc.js.map +1 -1
- package/lib/types/overlay.d.ts.map +1 -1
- package/lib/types/overlay.js +34 -7
- package/lib/types/overlay.js.map +1 -1
- package/lib/types/redocly-yaml.d.ts +1 -1
- package/lib/types/redocly-yaml.d.ts.map +1 -1
- package/lib/types/redocly-yaml.js +150 -38
- package/lib/types/redocly-yaml.js.map +1 -1
- package/package.json +1 -1
package/lib/types/openrpc.js
CHANGED
|
@@ -2,7 +2,10 @@ import { listOf, mapOf } from './index.js';
|
|
|
2
2
|
import { Schema, SchemaProperties, Dependencies, DiscriminatorMapping, Discriminator, } from './json-schema-draft7.shared.js';
|
|
3
3
|
const Root = {
|
|
4
4
|
properties: {
|
|
5
|
-
openrpc: {
|
|
5
|
+
openrpc: {
|
|
6
|
+
type: 'string',
|
|
7
|
+
description: 'REQUIRED. This string MUST be the semantic version number of the OpenRPC Specification version that the OpenRPC document uses. The openrpc field SHOULD be used by tooling specifications and clients to interpret the OpenRPC document. This is not related to the API info.version string.',
|
|
8
|
+
},
|
|
6
9
|
info: 'Info',
|
|
7
10
|
servers: 'ServerList',
|
|
8
11
|
methods: 'MethodList',
|
|
@@ -11,68 +14,138 @@ const Root = {
|
|
|
11
14
|
},
|
|
12
15
|
required: ['openrpc', 'info', 'methods'],
|
|
13
16
|
extensionsPrefix: 'x-',
|
|
17
|
+
documentationLink: 'https://spec.open-rpc.org/#openrpc-object',
|
|
18
|
+
description: 'This is the root object of the OpenRPC document. The contents of this object represent a whole OpenRPC document. How this object is constructed or stored is outside the scope of the OpenRPC Specification.',
|
|
14
19
|
};
|
|
15
20
|
const Info = {
|
|
16
21
|
properties: {
|
|
17
|
-
title: {
|
|
18
|
-
|
|
19
|
-
|
|
22
|
+
title: {
|
|
23
|
+
type: 'string',
|
|
24
|
+
description: 'REQUIRED. The title of the application.',
|
|
25
|
+
},
|
|
26
|
+
description: {
|
|
27
|
+
type: 'string',
|
|
28
|
+
description: 'A verbose description of the application. GitHub Flavored Markdown syntax MAY be used for rich text representation.',
|
|
29
|
+
},
|
|
30
|
+
termsOfService: {
|
|
31
|
+
type: 'string',
|
|
32
|
+
description: 'A URL to the Terms of Service for the API. MUST be in the format of a URL.',
|
|
33
|
+
},
|
|
20
34
|
contact: 'Contact',
|
|
21
35
|
license: 'License',
|
|
22
|
-
version: {
|
|
36
|
+
version: {
|
|
37
|
+
type: 'string',
|
|
38
|
+
description: 'REQUIRED. The version of the OpenRPC document (which is distinct from the OpenRPC Specification version or the API implementation version).',
|
|
39
|
+
},
|
|
23
40
|
},
|
|
24
41
|
required: ['title', 'version'],
|
|
25
42
|
extensionsPrefix: 'x-',
|
|
43
|
+
description: 'REQUIRED. Provides metadata about the API. The metadata MAY be used by tooling as required.',
|
|
44
|
+
documentationLink: 'https://spec.open-rpc.org/#info-object',
|
|
26
45
|
};
|
|
27
46
|
const Contact = {
|
|
28
47
|
properties: {
|
|
29
|
-
name: {
|
|
30
|
-
|
|
31
|
-
|
|
48
|
+
name: {
|
|
49
|
+
type: 'string',
|
|
50
|
+
description: 'The identifying name of the contact person/organization.',
|
|
51
|
+
},
|
|
52
|
+
url: {
|
|
53
|
+
type: 'string',
|
|
54
|
+
description: 'The URL pointing to the contact information. MUST be in the format of a URL.',
|
|
55
|
+
},
|
|
56
|
+
email: {
|
|
57
|
+
type: 'string',
|
|
58
|
+
description: 'The email address of the contact person/organization. MUST be in the format of an email address.',
|
|
59
|
+
},
|
|
32
60
|
},
|
|
33
61
|
extensionsPrefix: 'x-',
|
|
62
|
+
documentationLink: 'https://spec.open-rpc.org/#contact-object',
|
|
63
|
+
description: 'Contact information for the exposed API.',
|
|
34
64
|
};
|
|
35
65
|
const License = {
|
|
36
66
|
properties: {
|
|
37
|
-
name: {
|
|
38
|
-
|
|
67
|
+
name: {
|
|
68
|
+
type: 'string',
|
|
69
|
+
description: 'REQUIRED. The license name used for the API.',
|
|
70
|
+
},
|
|
71
|
+
url: {
|
|
72
|
+
type: 'string',
|
|
73
|
+
description: 'A URL to the license used for the API. MUST be in the format of a URL.',
|
|
74
|
+
},
|
|
39
75
|
},
|
|
40
76
|
required: ['name'],
|
|
41
77
|
extensionsPrefix: 'x-',
|
|
78
|
+
documentationLink: 'https://spec.open-rpc.org/#license-object',
|
|
79
|
+
description: 'License information for the exposed API.',
|
|
42
80
|
};
|
|
43
81
|
const Server = {
|
|
44
82
|
properties: {
|
|
45
|
-
url: {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
83
|
+
url: {
|
|
84
|
+
type: 'string',
|
|
85
|
+
description: 'REQUIRED. A URL to the target host. This URL supports Server Variables and MAY be relative, to indicate that the host location is relative to the location where the OpenRPC document is being served. Server Variables are passed into the Runtime Expression to produce a server URL.',
|
|
86
|
+
},
|
|
87
|
+
name: {
|
|
88
|
+
type: 'string',
|
|
89
|
+
description: 'REQUIRED. A name to be used as the canonical name for the server.',
|
|
90
|
+
},
|
|
91
|
+
description: {
|
|
92
|
+
type: 'string',
|
|
93
|
+
description: 'An optional string describing the host designated by the URL. GitHub Flavored Markdown syntax MAY be used for rich text representation.',
|
|
94
|
+
},
|
|
95
|
+
summary: {
|
|
96
|
+
type: 'string',
|
|
97
|
+
description: 'A short summary of what the server is.',
|
|
98
|
+
},
|
|
49
99
|
variables: 'ServerVariablesMap',
|
|
50
100
|
},
|
|
51
101
|
required: ['url'],
|
|
52
102
|
extensionsPrefix: 'x-',
|
|
103
|
+
documentationLink: 'https://spec.open-rpc.org/#server-object',
|
|
104
|
+
description: 'An object representing a Server.',
|
|
53
105
|
};
|
|
54
106
|
const ServerVariable = {
|
|
55
107
|
properties: {
|
|
56
108
|
enum: {
|
|
57
109
|
type: 'array',
|
|
58
110
|
items: { type: 'string' },
|
|
111
|
+
description: 'An enumeration of string values to be used if the substitution options are from a limited set.',
|
|
112
|
+
},
|
|
113
|
+
default: {
|
|
114
|
+
type: 'string',
|
|
115
|
+
description: `REQUIRED. The default value to use for substitution, which SHALL be sent if an alternate value is not supplied. Note this behavior is different than the Schema Object’s treatment of default values, because in those cases parameter values are optional.`,
|
|
116
|
+
},
|
|
117
|
+
description: {
|
|
118
|
+
type: 'string',
|
|
119
|
+
description: 'An optional description for the server variable. GitHub Flavored Markdown syntax MAY be used for rich text representation.',
|
|
59
120
|
},
|
|
60
|
-
default: { type: 'string' },
|
|
61
|
-
description: { type: 'string' },
|
|
62
121
|
},
|
|
63
122
|
required: ['default'],
|
|
64
123
|
extensionsPrefix: 'x-',
|
|
124
|
+
documentationLink: 'https://spec.open-rpc.org/#server-variable-object',
|
|
125
|
+
description: 'An object representing a Server Variable for server URL template substitution.',
|
|
65
126
|
};
|
|
66
127
|
const Method = {
|
|
67
128
|
properties: {
|
|
68
|
-
name: {
|
|
129
|
+
name: {
|
|
130
|
+
type: 'string',
|
|
131
|
+
description: 'REQUIRED. The cannonical name for the method. The name MUST be unique within the methods array.',
|
|
132
|
+
},
|
|
69
133
|
tags: 'TagList',
|
|
70
|
-
summary: {
|
|
71
|
-
|
|
134
|
+
summary: {
|
|
135
|
+
type: 'string',
|
|
136
|
+
description: 'A short summary of what the method does.',
|
|
137
|
+
},
|
|
138
|
+
description: {
|
|
139
|
+
type: 'string',
|
|
140
|
+
description: 'A verbose explanation of the method behavior. GitHub Flavored Markdown syntax MAY be used for rich text representation.',
|
|
141
|
+
},
|
|
72
142
|
externalDocs: 'ExternalDocs',
|
|
73
143
|
params: 'ContentDescriptorList',
|
|
74
144
|
result: 'ContentDescriptor',
|
|
75
|
-
deprecated: {
|
|
145
|
+
deprecated: {
|
|
146
|
+
type: 'boolean',
|
|
147
|
+
description: 'Declares this method to be deprecated. Consumers SHOULD refrain from usage of the declared method. Default value is false.',
|
|
148
|
+
},
|
|
76
149
|
servers: 'ServerList',
|
|
77
150
|
errors: 'ErrorList',
|
|
78
151
|
links: 'LinkList',
|
|
@@ -81,59 +154,134 @@ const Method = {
|
|
|
81
154
|
},
|
|
82
155
|
required: ['name', 'params'],
|
|
83
156
|
extensionsPrefix: 'x-',
|
|
157
|
+
documentationLink: 'https://spec.open-rpc.org/#method-object',
|
|
158
|
+
description: 'Describes the interface for the given method name. The method name is used as the method field of the JSON-RPC body. It therefore MUST be unique.',
|
|
84
159
|
};
|
|
85
160
|
const ContentDescriptor = {
|
|
86
161
|
properties: {
|
|
87
|
-
name: {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
162
|
+
name: {
|
|
163
|
+
type: 'string',
|
|
164
|
+
description: 'REQUIRED. Name of the content that is being described. If the content described is a method parameter assignable by-name, this field SHALL define the parameter’s key (ie name).',
|
|
165
|
+
},
|
|
166
|
+
summary: {
|
|
167
|
+
type: 'string',
|
|
168
|
+
description: 'A short summary of the content that is being described.',
|
|
169
|
+
},
|
|
170
|
+
description: {
|
|
171
|
+
type: 'string',
|
|
172
|
+
description: `A verbose explanation of the content descriptor behavior. GitHub Flavored Markdown syntax MAY be used for rich text representation.`,
|
|
173
|
+
},
|
|
174
|
+
required: {
|
|
175
|
+
type: 'boolean',
|
|
176
|
+
description: 'Determines if the content is a required field. Default value is false.',
|
|
177
|
+
},
|
|
91
178
|
schema: 'Schema',
|
|
92
|
-
deprecated: {
|
|
179
|
+
deprecated: {
|
|
180
|
+
type: 'boolean',
|
|
181
|
+
description: 'Specifies that the content is deprecated and SHOULD be transitioned out of usage. Default value is false.',
|
|
182
|
+
},
|
|
93
183
|
},
|
|
94
184
|
required: ['name', 'schema'],
|
|
95
185
|
extensionsPrefix: 'x-',
|
|
186
|
+
documentationLink: 'https://spec.open-rpc.org/#content-descriptor-object',
|
|
187
|
+
description: 'Content Descriptors are objects that do just as they suggest - describe content. They are reusable ways of describing either parameters or result. They MUST have a schema.',
|
|
96
188
|
};
|
|
97
189
|
const ExamplePairing = {
|
|
98
190
|
properties: {
|
|
99
|
-
name: {
|
|
100
|
-
|
|
101
|
-
|
|
191
|
+
name: {
|
|
192
|
+
type: 'string',
|
|
193
|
+
description: 'REQUIRED Name for the example pairing.',
|
|
194
|
+
},
|
|
195
|
+
description: {
|
|
196
|
+
type: 'string',
|
|
197
|
+
description: 'A verbose explanation of the example pairing.',
|
|
198
|
+
},
|
|
199
|
+
summary: {
|
|
200
|
+
type: 'string',
|
|
201
|
+
description: 'Short description for the example pairing.',
|
|
202
|
+
},
|
|
102
203
|
params: 'ExampleList',
|
|
103
204
|
result: 'Example',
|
|
104
205
|
},
|
|
105
206
|
extensionsPrefix: 'x-',
|
|
207
|
+
documentationLink: 'https://spec.open-rpc.org/#example-pairing-object',
|
|
208
|
+
description: 'The Example Pairing object consists of a set of example params and result. The result is what you can expect from the JSON-RPC service given the exact params.',
|
|
106
209
|
};
|
|
107
210
|
const Example = {
|
|
108
211
|
properties: {
|
|
109
|
-
name: {
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
212
|
+
name: {
|
|
213
|
+
type: 'string',
|
|
214
|
+
description: 'Cannonical name of the example.',
|
|
215
|
+
},
|
|
216
|
+
summary: {
|
|
217
|
+
type: 'string',
|
|
218
|
+
description: 'Short description for the example.',
|
|
219
|
+
},
|
|
220
|
+
description: {
|
|
221
|
+
type: 'string',
|
|
222
|
+
description: 'A verbose explanation of the example. GitHub Flavored Markdown syntax MAY be used for rich text representation.',
|
|
223
|
+
},
|
|
224
|
+
value: {
|
|
225
|
+
resolvable: false,
|
|
226
|
+
description: 'Embedded literal example. The value field and externalValue field are mutually exclusive. To represent examples of media types that cannot naturally represented in JSON, use a string value to contain the example, escaping where necessary.',
|
|
227
|
+
},
|
|
228
|
+
externalValue: {
|
|
229
|
+
type: 'string',
|
|
230
|
+
description: 'A URL that points to the literal example. This provides the capability to reference examples that cannot easily be included in JSON documents. The value field and externalValue field are mutually exclusive.',
|
|
231
|
+
},
|
|
114
232
|
},
|
|
115
233
|
extensionsPrefix: 'x-',
|
|
234
|
+
documentationLink: 'https://spec.open-rpc.org/#example-object',
|
|
235
|
+
description: 'The Example object is an object that defines an example that is intended to match the schema of a given Content Descriptor.',
|
|
116
236
|
};
|
|
117
237
|
const Link = {
|
|
118
238
|
properties: {
|
|
119
|
-
name: {
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
239
|
+
name: {
|
|
240
|
+
type: 'string',
|
|
241
|
+
description: 'REQUIRED. Canonical name of the link.',
|
|
242
|
+
},
|
|
243
|
+
description: {
|
|
244
|
+
type: 'string',
|
|
245
|
+
description: 'A description of the link. GitHub Flavored Markdown syntax MAY be used for rich text representation.',
|
|
246
|
+
},
|
|
247
|
+
summary: {
|
|
248
|
+
type: 'string',
|
|
249
|
+
description: 'Short description for the link.',
|
|
250
|
+
},
|
|
251
|
+
method: {
|
|
252
|
+
type: 'string',
|
|
253
|
+
description: 'The name of an existing, resolvable OpenRPC method, as defined with a unique method. This field MUST resolve to a unique Method Object. As opposed to Open Api, Relative method values ARE NOT permitted.',
|
|
254
|
+
},
|
|
255
|
+
params: {
|
|
256
|
+
type: 'object',
|
|
257
|
+
description: 'A map representing parameters to pass to a method as specified with method. The key is the parameter name to be used, whereas the value can be a constant or a runtime expression to be evaluated and passed to the linked method.',
|
|
258
|
+
}, // Map[string, Any | Runtime Expression]
|
|
124
259
|
server: 'Server',
|
|
125
260
|
},
|
|
126
261
|
required: ['name'],
|
|
127
262
|
extensionsPrefix: 'x-',
|
|
263
|
+
documentationLink: 'https://spec.open-rpc.org/#link-object',
|
|
264
|
+
description: 'The Link object represents a possible design-time link for a result. The presence of a link does not guarantee the caller’s ability to successfully invoke it, rather it provides a known relationship and traversal mechanism between results and other methods.',
|
|
128
265
|
};
|
|
129
266
|
const ErrorObject = {
|
|
130
267
|
properties: {
|
|
131
|
-
code: {
|
|
132
|
-
|
|
133
|
-
|
|
268
|
+
code: {
|
|
269
|
+
type: 'integer',
|
|
270
|
+
description: 'REQUIRED. A Number that indicates the error type that occurred. This MUST be an integer. The error codes from and including -32768 to -32000 are reserved for pre-defined errors. These pre-defined errors SHOULD be assumed to be returned from any JSON-RPC api.',
|
|
271
|
+
},
|
|
272
|
+
message: {
|
|
273
|
+
type: 'string',
|
|
274
|
+
description: 'REQUIRED. A String providing a short description of the error. The message SHOULD be limited to a concise single sentence.',
|
|
275
|
+
},
|
|
276
|
+
data: {
|
|
277
|
+
resolvable: false,
|
|
278
|
+
description: 'A Primitive or Structured value that contains additional information about the error. This may be omitted. The value of this member is defined by the Server (e.g. detailed error information, nested errors etc.).',
|
|
279
|
+
},
|
|
134
280
|
},
|
|
135
281
|
required: ['code', 'message'],
|
|
136
282
|
extensionsPrefix: 'x-',
|
|
283
|
+
documentationLink: 'https://spec.open-rpc.org/#error-object',
|
|
284
|
+
description: 'Defines an application level error.',
|
|
137
285
|
};
|
|
138
286
|
const Components = {
|
|
139
287
|
properties: {
|
|
@@ -146,24 +294,45 @@ const Components = {
|
|
|
146
294
|
tags: 'NamedTags',
|
|
147
295
|
},
|
|
148
296
|
extensionsPrefix: 'x-',
|
|
297
|
+
documentationLink: 'https://spec.open-rpc.org/#components-object',
|
|
298
|
+
description: 'Holds a set of reusable objects for different aspects of the OpenRPC. All objects defined within the components object will have no effect on the API unless they are explicitly referenced from properties outside the components object.',
|
|
149
299
|
};
|
|
150
300
|
const Tag = {
|
|
151
301
|
properties: {
|
|
152
|
-
name: {
|
|
153
|
-
|
|
154
|
-
|
|
302
|
+
name: {
|
|
303
|
+
type: 'string',
|
|
304
|
+
description: 'REQUIRED. The name of the tag.',
|
|
305
|
+
},
|
|
306
|
+
summary: {
|
|
307
|
+
type: 'string',
|
|
308
|
+
description: 'A short summary of the tag.',
|
|
309
|
+
},
|
|
310
|
+
description: {
|
|
311
|
+
type: 'string',
|
|
312
|
+
description: 'A verbose explanation for the tag. GitHub Flavored Markdown syntax MAY be used for rich text representation.',
|
|
313
|
+
},
|
|
155
314
|
externalDocs: 'ExternalDocs',
|
|
156
315
|
},
|
|
157
316
|
required: ['name'],
|
|
158
317
|
extensionsPrefix: 'x-',
|
|
318
|
+
documentationLink: 'https://spec.open-rpc.org/#tag-object',
|
|
319
|
+
description: 'Adds metadata to a single tag that is used by the Method Object. It is not mandatory to have a Tag Object per tag defined in the Method Object instances.',
|
|
159
320
|
};
|
|
160
321
|
const ExternalDocs = {
|
|
161
322
|
properties: {
|
|
162
|
-
description: {
|
|
163
|
-
|
|
323
|
+
description: {
|
|
324
|
+
type: 'string',
|
|
325
|
+
description: 'A verbose explanation of the target documentation. GitHub Flavored Markdown syntax MAY be used for rich text representation.',
|
|
326
|
+
},
|
|
327
|
+
url: {
|
|
328
|
+
type: 'string',
|
|
329
|
+
description: 'REQUIRED. The URL for the target documentation. Value MUST be in the format of a URL.',
|
|
330
|
+
},
|
|
164
331
|
},
|
|
165
332
|
required: ['url'],
|
|
166
333
|
extensionsPrefix: 'x-',
|
|
334
|
+
documentationLink: 'https://spec.open-rpc.org/#external-documentation-object',
|
|
335
|
+
description: 'Allows referencing an external resource for extended documentation.',
|
|
167
336
|
};
|
|
168
337
|
export const OpenRpcTypes = {
|
|
169
338
|
Root,
|
package/lib/types/openrpc.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"openrpc.js","sourceRoot":"","sources":["../../src/types/openrpc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,KAAK,EAAiB,MAAM,YAAY,CAAC;AAC1D,OAAO,EACL,MAAM,EACN,gBAAgB,EAChB,YAAY,EACZ,oBAAoB,EACpB,aAAa,GACd,MAAM,gCAAgC,CAAC;AAExC,MAAM,IAAI,GAAa;IACrB,UAAU,EAAE;QACV,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"openrpc.js","sourceRoot":"","sources":["../../src/types/openrpc.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"overlay.d.ts","sourceRoot":"","sources":["../../src/types/overlay.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,QAAQ,EAAU,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"overlay.d.ts","sourceRoot":"","sources":["../../src/types/overlay.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,QAAQ,EAAU,MAAM,YAAY,CAAC;AAmEnD,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,MAAM,EAAE,QAAQ,CAKlD,CAAC"}
|
package/lib/types/overlay.js
CHANGED
|
@@ -1,32 +1,59 @@
|
|
|
1
1
|
import { listOf } from './index.js';
|
|
2
2
|
const Root = {
|
|
3
3
|
properties: {
|
|
4
|
-
overlay: {
|
|
4
|
+
overlay: {
|
|
5
|
+
type: 'string',
|
|
6
|
+
description: 'REQUIRED. This string MUST be the version number of the Overlay Specification that the Overlay document uses. The overlay field SHOULD be used by tooling to interpret the Overlay document.',
|
|
7
|
+
},
|
|
5
8
|
info: 'Info',
|
|
6
|
-
extends: {
|
|
9
|
+
extends: {
|
|
10
|
+
type: 'string',
|
|
11
|
+
description: 'URI reference that identifies the target document (such as an [OpenAPI] document) this overlay applies to.',
|
|
12
|
+
},
|
|
7
13
|
actions: 'Actions',
|
|
8
14
|
},
|
|
9
15
|
required: ['overlay', 'info', 'actions'],
|
|
10
16
|
extensionsPrefix: 'x-',
|
|
17
|
+
documentationLink: 'https://spec.openapis.org/overlay/v1.0.0.html#overlay-object',
|
|
18
|
+
description: 'This is the root object of the Overlay.',
|
|
11
19
|
};
|
|
12
20
|
const Info = {
|
|
13
21
|
properties: {
|
|
14
|
-
title: {
|
|
15
|
-
|
|
22
|
+
title: {
|
|
23
|
+
type: 'string',
|
|
24
|
+
description: 'REQUIRED. A human readable description of the purpose of the overlay.',
|
|
25
|
+
},
|
|
26
|
+
version: {
|
|
27
|
+
type: 'string',
|
|
28
|
+
description: 'REQUIRED. A version identifer for indicating changes to the Overlay document.',
|
|
29
|
+
},
|
|
16
30
|
},
|
|
17
31
|
required: ['title', 'version'],
|
|
18
32
|
extensionsPrefix: 'x-',
|
|
33
|
+
documentationLink: 'https://spec.openapis.org/overlay/v1.0.0.html#info-object',
|
|
34
|
+
description: 'The object provides metadata about the Overlay. The metadata MAY be used by the clients if needed.',
|
|
19
35
|
};
|
|
20
36
|
const Actions = listOf('Action');
|
|
21
37
|
const Action = {
|
|
22
38
|
properties: {
|
|
23
|
-
target: {
|
|
24
|
-
|
|
39
|
+
target: {
|
|
40
|
+
type: 'string',
|
|
41
|
+
description: 'REQUIRED A JSONPath expression selecting nodes in the target document.',
|
|
42
|
+
},
|
|
43
|
+
description: {
|
|
44
|
+
type: 'string',
|
|
45
|
+
description: 'A description of the action. [CommonMark] syntax MAY be used for rich text representation.',
|
|
46
|
+
},
|
|
25
47
|
update: {}, // any
|
|
26
|
-
remove: {
|
|
48
|
+
remove: {
|
|
49
|
+
type: 'boolean',
|
|
50
|
+
description: 'A boolean value that indicates that the target object or array MUST be removed from the the map or array it is contained in. The default value is false.',
|
|
51
|
+
},
|
|
27
52
|
},
|
|
28
53
|
required: ['target'],
|
|
29
54
|
extensionsPrefix: 'x-',
|
|
55
|
+
documentationLink: 'https://spec.openapis.org/overlay/v1.0.0.html#action-object',
|
|
56
|
+
description: 'This object represents one or more changes to be applied to the target document at the location defined by the target JSONPath expression',
|
|
30
57
|
};
|
|
31
58
|
export const Overlay1Types = {
|
|
32
59
|
Root,
|
package/lib/types/overlay.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"overlay.js","sourceRoot":"","sources":["../../src/types/overlay.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiB,MAAM,EAAE,MAAM,YAAY,CAAC;AAEnD,MAAM,IAAI,GAAa;IACrB,UAAU,EAAE;QACV,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"overlay.js","sourceRoot":"","sources":["../../src/types/overlay.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiB,MAAM,EAAE,MAAM,YAAY,CAAC;AAEnD,MAAM,IAAI,GAAa;IACrB,UAAU,EAAE;QACV,OAAO,EAAE;YACP,IAAI,EAAE,QAAQ;YACd,WAAW,EACT,8LAA8L;SACjM;QACD,IAAI,EAAE,MAAM;QACZ,OAAO,EAAE;YACP,IAAI,EAAE,QAAQ;YACd,WAAW,EACT,4GAA4G;SAC/G;QACD,OAAO,EAAE,SAAS;KACnB;IACD,QAAQ,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,SAAS,CAAC;IACxC,gBAAgB,EAAE,IAAI;IACtB,iBAAiB,EAAE,8DAA8D;IACjF,WAAW,EAAE,yCAAyC;CACvD,CAAC;AAEF,MAAM,IAAI,GAAa;IACrB,UAAU,EAAE;QACV,KAAK,EAAE;YACL,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,uEAAuE;SACrF;QACD,OAAO,EAAE;YACP,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,+EAA+E;SAC7F;KACF;IACD,QAAQ,EAAE,CAAC,OAAO,EAAE,SAAS,CAAC;IAC9B,gBAAgB,EAAE,IAAI;IACtB,iBAAiB,EAAE,2DAA2D;IAC9E,WAAW,EACT,oGAAoG;CACvG,CAAC;AAEF,MAAM,OAAO,GAAa,MAAM,CAAC,QAAQ,CAAC,CAAC;AAC3C,MAAM,MAAM,GAAa;IACvB,UAAU,EAAE;QACV,MAAM,EAAE;YACN,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,wEAAwE;SACtF;QACD,WAAW,EAAE;YACX,IAAI,EAAE,QAAQ;YACd,WAAW,EACT,4FAA4F;SAC/F;QACD,MAAM,EAAE,EAAE,EAAE,MAAM;QAClB,MAAM,EAAE;YACN,IAAI,EAAE,SAAS;YACf,WAAW,EACT,0JAA0J;SAC7J;KACF;IACD,QAAQ,EAAE,CAAC,QAAQ,CAAC;IACpB,gBAAgB,EAAE,IAAI;IACtB,iBAAiB,EAAE,6DAA6D;IAChF,WAAW,EACT,2IAA2I;CAC9I,CAAC;AAEF,MAAM,CAAC,MAAM,aAAa,GAA6B;IACrD,IAAI;IACJ,IAAI;IACJ,OAAO;IACP,MAAM;CACP,CAAC"}
|
|
@@ -21,7 +21,7 @@ export declare function createConfigTypes(extraSchemas: JSONSchema, config?: Con
|
|
|
21
21
|
'rootRedoclyConfigSchema.scorecard.levels_items': NodeType;
|
|
22
22
|
ConfigRoot: NodeType;
|
|
23
23
|
ConfigApisProperties: NodeType;
|
|
24
|
-
|
|
24
|
+
Subject: NodeType;
|
|
25
25
|
};
|
|
26
26
|
export declare const ConfigTypes: Record<string, NodeType>;
|
|
27
27
|
export declare const NormalizedConfigTypes: Record<string, import("./index.js").NormalizedNodeType>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"redocly-yaml.d.ts","sourceRoot":"","sources":["../../src/types/redocly-yaml.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,KAAK,EAAE,QAAQ,EAAY,MAAM,YAAY,CAAC;AACrD,OAAO,KAAK,EAAE,MAAM,EAAuB,MAAM,oBAAoB,CAAC;AAEtE,QAAA,MAAM,gBAAgB,ulCA2CZ,CAAC;AAEX,MAAM,MAAM,iBAAiB,GAAG,OAAO,gBAAgB,CAAC,MAAM,CAAC,CAAC;AAEhE,QAAA,MAAM,gBAAgB,smDA4DZ,CAAC;AAEX,MAAM,MAAM,iBAAiB,GAAG,OAAO,gBAAgB,CAAC,MAAM,CAAC,CAAC;AAEhE,QAAA,MAAM,kBAAkB,iSAYd,CAAC;AAEX,QAAA,MAAM,kBAAkB,iSAYd,CAAC;AAEX,MAAM,MAAM,mBAAmB,GAAG,OAAO,kBAAkB,CAAC,MAAM,CAAC,CAAC;AAEpE,MAAM,MAAM,mBAAmB,GAAG,OAAO,kBAAkB,CAAC,MAAM,CAAC,CAAC;AAEpE,QAAA,MAAM,mBAAmB,olBAqBf,CAAC;AAEX,MAAM,MAAM,oBAAoB,GAAG,OAAO,mBAAmB,CAAC,MAAM,CAAC,CAAC;AAEtE,QAAA,MAAM,oBAAoB,2BAA4B,CAAC;AAEvD,MAAM,MAAM,qBAAqB,GAAG,OAAO,oBAAoB,CAAC,MAAM,CAAC,CAAC;AAExE,QAAA,MAAM,oBAAoB,iJAMhB,CAAC;AAEX,MAAM,MAAM,qBAAqB,GAAG,OAAO,oBAAoB,CAAC,MAAM,CAAC,CAAC;AAExE,QAAA,MAAM,kBAAkB,2CAA4C,CAAC;AAErE,MAAM,MAAM,mBAAmB,GAAG,OAAO,kBAAkB,CAAC,MAAM,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"redocly-yaml.d.ts","sourceRoot":"","sources":["../../src/types/redocly-yaml.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,KAAK,EAAE,QAAQ,EAAY,MAAM,YAAY,CAAC;AACrD,OAAO,KAAK,EAAE,MAAM,EAAuB,MAAM,oBAAoB,CAAC;AAEtE,QAAA,MAAM,gBAAgB,ulCA2CZ,CAAC;AAEX,MAAM,MAAM,iBAAiB,GAAG,OAAO,gBAAgB,CAAC,MAAM,CAAC,CAAC;AAEhE,QAAA,MAAM,gBAAgB,smDA4DZ,CAAC;AAEX,MAAM,MAAM,iBAAiB,GAAG,OAAO,gBAAgB,CAAC,MAAM,CAAC,CAAC;AAEhE,QAAA,MAAM,kBAAkB,iSAYd,CAAC;AAEX,QAAA,MAAM,kBAAkB,iSAYd,CAAC;AAEX,MAAM,MAAM,mBAAmB,GAAG,OAAO,kBAAkB,CAAC,MAAM,CAAC,CAAC;AAEpE,MAAM,MAAM,mBAAmB,GAAG,OAAO,kBAAkB,CAAC,MAAM,CAAC,CAAC;AAEpE,QAAA,MAAM,mBAAmB,olBAqBf,CAAC;AAEX,MAAM,MAAM,oBAAoB,GAAG,OAAO,mBAAmB,CAAC,MAAM,CAAC,CAAC;AAEtE,QAAA,MAAM,oBAAoB,2BAA4B,CAAC;AAEvD,MAAM,MAAM,qBAAqB,GAAG,OAAO,oBAAoB,CAAC,MAAM,CAAC,CAAC;AAExE,QAAA,MAAM,oBAAoB,iJAMhB,CAAC;AAEX,MAAM,MAAM,qBAAqB,GAAG,OAAO,oBAAoB,CAAC,MAAM,CAAC,CAAC;AAExE,QAAA,MAAM,kBAAkB,2CAA4C,CAAC;AAErE,MAAM,MAAM,mBAAmB,GAAG,OAAO,kBAAkB,CAAC,MAAM,CAAC,CAAC;AA4XpE,wBAAgB,iBAAiB,CAAC,YAAY,EAAE,UAAU,EAAE,MAAM,CAAC,EAAE,MAAM;;;;;EAgB1E;AAqBD,eAAO,MAAM,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,QAAQ,CAEhD,CAAC;AACF,eAAO,MAAM,qBAAqB,yDAA8B,CAAC"}
|