@@ -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,43 +148,38 @@ 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\\ " : {
175
+ /** responseA description */
183
176
name? : \\" responseA\\ " ;
184
177
};
185
178
}
186
179
}
187
180
export namespace Level1 {
188
181
/** response B definition */
189
182
export namespace ResponseB {
190
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#mediaTypeObject */
191
183
export interface Content {
192
184
\\" application/json\\ " : {
193
185
name?: \\"responseB\\";
@@ -197,7 +189,6 @@ export namespace Responses {
197
189
export namespace Level2 {
198
190
/** response C definition */
199
191
export namespace ResponseC {
200
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#mediaTypeObject */
201
192
export interface Content {
202
193
\\" application/json\\ " : {
203
194
name?: \\"responseC\\";
@@ -209,21 +200,19 @@ export namespace Responses {
209
200
export namespace ForPathItems {
210
201
/** response A definition */
211
202
export namespace FullRemoteReference {
212
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#headerObject */
213
203
export interface Header {
214
204
HeaderA: Headers .A ;
215
205
HeaderB : string ;
216
206
}
217
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#mediaTypeObject */
218
207
export interface Content {
219
208
\\" application/json\\ " : {
209
+ /** responseA description */
220
210
name? : \\" responseA\\ " ;
221
211
};
222
212
}
223
213
}
224
214
}
225
215
}
226
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#parameterObject */
227
216
export namespace Parameters {
228
217
/** parameters.StringQueryParams */
229
218
export type StringQueryParams = string ;
@@ -250,32 +239,27 @@ export namespace Parameters {
250
239
};
251
240
};
252
241
}
253
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#componentsObject */
254
242
export namespace RequestBodies {
255
243
/** Request body string type */
256
244
export namespace StringType {
257
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#requestBodyObject */
258
245
export interface Content {
259
246
\\" application/json\\ " : string ;
260
247
}
261
248
}
262
249
/** Request body Local reference string type */
263
250
export namespace LocalReferenceStringType {
264
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#requestBodyObject */
265
251
export interface Content {
266
252
\\" application/json\\ " : Schemas .StringHasEnumType ;
267
253
}
268
254
}
269
255
/** requestBodies -> schemas */
270
256
export namespace ReferenceOfRequestBodyToSchema {
271
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#requestBodyObject */
272
257
export interface Content {
273
258
\\" application/json\\ " : Schemas .DirectRef .ForRequestBody ;
274
259
}
275
260
}
276
261
/** Remote Request body A */
277
262
export namespace RequestBodyA {
278
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#requestBodyObject */
279
263
export interface Content {
280
264
\\" application/json\\ " : {
281
265
body? : string ;
@@ -285,7 +269,6 @@ export namespace RequestBodies {
285
269
export namespace Level1 {
286
270
/** Remote Request body B */
287
271
export namespace RequestBodyB {
288
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#requestBodyObject */
289
272
export interface Content {
290
273
\\" application/json\\ " : {
291
274
body?: string;
@@ -295,7 +278,6 @@ export namespace RequestBodies {
295
278
export namespace Level2 {
296
279
/** Remote Request body C */
297
280
export namespace RequestBodyC {
298
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#requestBodyObject */
299
281
export interface Content {
300
282
\\" application/json\\ " : {
301
283
body?: string;
@@ -305,35 +287,32 @@ export namespace RequestBodies {
305
287
}
306
288
}
307
289
}
308
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#headerObject */
309
290
export interface Parameter$getIncludeLocalReference {
291
+ /** parameters.StringQueryParams */
310
292
StringQuery : string ;
311
293
}
312
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#mediaTypeObject */
313
294
export interface Response$getIncludeLocalReference$Status$200 {
314
295
\\" application/json\\ " : {
315
296
meta: string ;
316
297
};
317
298
}
318
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#headerObject */
319
299
export interface Parameter$getIncludeRemoteReference {
300
+ /** remote reference parameter */
320
301
IncludeRemoteReference : number ;
321
302
}
322
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#requestBodyObject */
323
303
export interface RequestBody$getIncludeRemoteReference {
324
304
\\" application/json\\ " : string ;
325
305
}
326
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#headerObject */
327
306
export interface Parameter$getFullRemoteReference {
307
+ /** Full Remote Reference */
328
308
FullRemoteReferenceQuery : Schemas .FullRemoteReference .ForParameters ;
329
309
}
330
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#mediaTypeObject */
331
310
export interface Response$getFullRemoteReference$Status$200 {
332
311
\\" application/json\\ " : {
312
+ /** responseA description */
333
313
name?: \\"responseA\\";
334
314
};
335
315
}
336
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#mediaTypeObject */
337
316
export interface Response$getReferenceItems$Status$200 {
338
317
\\" application/json\\ " : {
339
318
books?: Schemas.Item[];
@@ -422,7 +401,6 @@ exports[`Generate Code Snapshot Test infer.domain 1`] = `
422
401
//
423
402
424
403
425
- /** @see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#schemaObject */
426
404
export namespace Schemas {
427
405
export type InferArrayEmptyItems = {}[];
428
406
export type InferArrayType = string [];
0 commit comments