@@ -10,7 +10,6 @@ exports[`Generate Code Snapshot Test api.test.domain 1`] = `
10
10
//
11
11
12
12
13
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#schemaObject */
14
13
export namespace Schemas {
15
14
/** String Literal */
16
15
export type StringType = string ;
@@ -128,7 +127,6 @@ export namespace Schemas {
128
127
children : Child [];
129
128
}
130
129
}
131
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#componentsObject */
132
130
export namespace Headers {
133
131
export type StringHeader = string ;
134
132
export type A = number ;
@@ -137,7 +135,6 @@ export namespace Headers {
137
135
}
138
136
export type ReferenceOfHeaderToSchema = Schemas .DirectRef .ForHeader ;
139
137
}
140
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#responsesObject */
141
138
export namespace Responses {
142
139
/**
143
140
* Status Code 100
@@ -151,33 +148,28 @@ export namespace Responses {
151
148
export namespace SwitchingProtocol { }
152
149
/** Type Reference - string */
153
150
export namespace LocalReferenceStringDateTimeType {
154
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#mediaTypeObject */
155
151
export interface Content {
156
152
\\" application/json\\ " : Schemas .StringDateTimeType ;
157
153
}
158
154
}
159
155
/** Local Reference - object */
160
156
export namespace LocalReferenceObjectType {
161
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#mediaTypeObject */
162
157
export interface Content {
163
158
\\" application/json\\ " : Schemas .ObjectHasPropertiesType ;
164
159
}
165
160
}
166
161
/** Response -> Schema */
167
162
export namespace ReferenceOfResponseToSchema {
168
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#mediaTypeObject */
169
163
export interface Content {
170
164
\\" application/json\\ " : Schemas .DirectRef .ForResponse ;
171
165
}
172
166
}
173
167
/** response A definition */
174
168
export namespace ResponseA {
175
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#headerObject */
176
169
export interface Header {
177
170
HeaderA: Headers .A ;
178
171
HeaderB: string ;
179
172
}
180
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#mediaTypeObject */
181
173
export interface Content {
182
174
\\" application/json\\ " : {
183
175
name? : \\" responseA\\ " ;
@@ -187,7 +179,6 @@ export namespace Responses {
187
179
export namespace Level1 {
188
180
/** response B definition */
189
181
export namespace ResponseB {
190
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#mediaTypeObject */
191
182
export interface Content {
192
183
\\" application/json\\ " : {
193
184
name?: \\"responseB\\";
@@ -197,7 +188,6 @@ export namespace Responses {
197
188
export namespace Level2 {
198
189
/** response C definition */
199
190
export namespace ResponseC {
200
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#mediaTypeObject */
201
191
export interface Content {
202
192
\\" application/json\\ " : {
203
193
name?: \\"responseC\\";
@@ -209,12 +199,10 @@ export namespace Responses {
209
199
export namespace ForPathItems {
210
200
/** response A definition */
211
201
export namespace FullRemoteReference {
212
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#headerObject */
213
202
export interface Header {
214
203
HeaderA: Headers .A ;
215
204
HeaderB : string ;
216
205
}
217
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#mediaTypeObject */
218
206
export interface Content {
219
207
\\" application/json\\ " : {
220
208
name? : \\" responseA\\ " ;
@@ -223,7 +211,6 @@ export namespace Responses {
223
211
}
224
212
}
225
213
}
226
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#parameterObject */
227
214
export namespace Parameters {
228
215
/** parameters.StringQueryParams */
229
216
export type StringQueryParams = string ;
@@ -250,32 +237,27 @@ export namespace Parameters {
250
237
};
251
238
};
252
239
}
253
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#componentsObject */
254
240
export namespace RequestBodies {
255
241
/** Request body string type */
256
242
export namespace StringType {
257
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#requestBodyObject */
258
243
export interface Content {
259
244
\\" application/json\\ " : string ;
260
245
}
261
246
}
262
247
/** Request body Local reference string type */
263
248
export namespace LocalReferenceStringType {
264
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#requestBodyObject */
265
249
export interface Content {
266
250
\\" application/json\\ " : Schemas .StringHasEnumType ;
267
251
}
268
252
}
269
253
/** requestBodies -> schemas */
270
254
export namespace ReferenceOfRequestBodyToSchema {
271
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#requestBodyObject */
272
255
export interface Content {
273
256
\\" application/json\\ " : Schemas .DirectRef .ForRequestBody ;
274
257
}
275
258
}
276
259
/** Remote Request body A */
277
260
export namespace RequestBodyA {
278
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#requestBodyObject */
279
261
export interface Content {
280
262
\\" application/json\\ " : {
281
263
body? : string ;
@@ -285,7 +267,6 @@ export namespace RequestBodies {
285
267
export namespace Level1 {
286
268
/** Remote Request body B */
287
269
export namespace RequestBodyB {
288
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#requestBodyObject */
289
270
export interface Content {
290
271
\\" application/json\\ " : {
291
272
body?: string;
@@ -295,7 +276,6 @@ export namespace RequestBodies {
295
276
export namespace Level2 {
296
277
/** Remote Request body C */
297
278
export namespace RequestBodyC {
298
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#requestBodyObject */
299
279
export interface Content {
300
280
\\" application/json\\ " : {
301
281
body?: string;
@@ -305,35 +285,29 @@ export namespace RequestBodies {
305
285
}
306
286
}
307
287
}
308
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#headerObject */
309
288
export interface Parameter$getIncludeLocalReference {
310
289
StringQuery : string ;
311
290
}
312
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#mediaTypeObject */
313
291
export interface Response$getIncludeLocalReference$Status$200 {
314
292
\\" application/json\\ " : {
315
293
meta: string ;
316
294
};
317
295
}
318
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#headerObject */
319
296
export interface Parameter$getIncludeRemoteReference {
320
297
IncludeRemoteReference : number ;
321
298
}
322
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#requestBodyObject */
323
299
export interface RequestBody$getIncludeRemoteReference {
324
300
\\" application/json\\ " : string ;
325
301
}
326
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#headerObject */
327
302
export interface Parameter$getFullRemoteReference {
303
+ /** Full Remote REference */
328
304
FullRemoteReferenceQuery : Schemas .FullRemoteReference .ForParameters ;
329
305
}
330
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#mediaTypeObject */
331
306
export interface Response$getFullRemoteReference$Status$200 {
332
307
\\" application/json\\ " : {
333
308
name?: \\"responseA\\";
334
309
};
335
310
}
336
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#mediaTypeObject */
337
311
export interface Response$getReferenceItems$Status$200 {
338
312
\\" application/json\\ " : {
339
313
books?: Schemas.Item[];
@@ -422,7 +396,6 @@ exports[`Generate Code Snapshot Test infer.domain 1`] = `
422
396
//
423
397
424
398
425
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#schemaObject */
426
399
export namespace Schemas {
427
400
export type InferArrayEmptyItems = {}[];
428
401
export type InferArrayType = string [];
0 commit comments