@swagger-api/apidom-ns-json-schema-draft-6 0.99.1 → 1.0.0-alpha.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/types/dist.d.ts CHANGED
@@ -1,11 +1,12 @@
1
1
  /// <reference types="@swagger-api/apidom-core/types/minim" />
2
2
  import * as _swagger_api_apidom_core from '@swagger-api/apidom-core';
3
- import { MediaTypes, NamespacePluginOptions, StringElement, Element, Meta, Attributes, NumberElement, BooleanElement, ArrayElement } from '@swagger-api/apidom-core';
3
+ import { MediaTypes, NamespacePluginOptions, StringElement, Element, Meta, Attributes, NumberElement, BooleanElement, ArrayElement, ObjectElement } from '@swagger-api/apidom-core';
4
4
  export { isArrayElement, isBooleanElement, isElement, isLinkElement, isMemberElement, isNullElement, isNumberElement, isObjectElement, isRefElement, isStringElement } from '@swagger-api/apidom-core';
5
5
  import * as minim from 'minim';
6
- import * as stampit from 'stampit';
7
- import { JSONSchemaElement, JSONReferenceElement, LinkDescriptionElement } from '@swagger-api/apidom-ns-json-schema-draft-4';
8
- export { AlternatingVisitor, FallbackVisitor, FixedFieldsVisitor, JSONReferenceElement, MapVisitor, MediaElement, ParentSchemaAwareVisitor, PatternedFieldsVisitor, SpecificationVisitor, isJSONReferenceElement, isJSONReferenceLikeElement, isMediaElement } from '@swagger-api/apidom-ns-json-schema-draft-4';
6
+ import * as _swagger_api_apidom_ns_json_schema_draft_4 from '@swagger-api/apidom-ns-json-schema-draft-4';
7
+ import { JSONSchemaElement, JSONReferenceElement, LinkDescriptionElement, FixedFieldsVisitorOptions, FallbackVisitorOptions, SpecPath, FixedFieldsVisitor, FallbackVisitor, SpecificationVisitorOptions, ParentSchemaAwareVisitorOptions, SpecificationVisitor, ParentSchemaAwareVisitor } from '@swagger-api/apidom-ns-json-schema-draft-4';
8
+ export { AllOfVisitorOptions, AlternatingVisitor, AlternatingVisitorOptions, AnyOfVisitorOptions, DefinitionsVisitorOptions, DependenciesVisitorOptions, FallbackVisitorOptions as ExamplesVisitorOptions, FallbackVisitor, FallbackVisitorOptions, FixedFieldsVisitor, FixedFieldsVisitorOptions, JSONReferenceElement, MapVisitor, MapVisitorOptions, MediaElement, OneOfVisitorOptions, ParentSchemaAwareVisitor, ParentSchemaAwareVisitorOptions, PatternPropertiesVisitorOptions, PatternedFieldsVisitor, PatternedFieldsVisitorOptions, PropertiesVisitorOptions, SchemaOrReferenceVisitorOptions, SpecPath, SpecificationVisitor, SpecificationVisitorOptions, Visitor, VisitorOptions, isJSONReferenceElement, isJSONReferenceLikeElement, isMediaElement } from '@swagger-api/apidom-ns-json-schema-draft-4';
9
+ import * as ts_mixer_dist_types_types from 'ts-mixer/dist/types/types';
9
10
 
10
11
  type Format = 'generic' | 'json' | 'yaml';
11
12
  declare class JSONSchemaDraft6MediaTypes extends MediaTypes<string> {
@@ -25,83 +26,141 @@ declare const plugin: () => () => {
25
26
  };
26
27
  };
27
28
 
28
- declare const refract: <T extends Element>(value: any, { specPath, plugins, specificationObj, }?: {
29
+ declare const refract: <T extends Element>(value: unknown, { specPath, plugins, specificationObj, }?: {
29
30
  specPath?: string[] | undefined;
30
31
  plugins?: never[] | undefined;
31
32
  specificationObj?: {
32
33
  visitors: {
33
- value: stampit.default.Stamp<any>;
34
- JSONSchemaOrJSONReferenceVisitor: stampit.default.Stamp<any>;
34
+ value: typeof _swagger_api_apidom_ns_json_schema_draft_4.FallbackVisitor;
35
+ JSONSchemaOrJSONReferenceVisitor: typeof _swagger_api_apidom_ns_json_schema_draft_4.SchemaOrReferenceVisitor;
35
36
  document: {
36
37
  objects: {
37
38
  JSONSchema: {
38
- $visitor: stampit.default.Stamp<any>;
39
+ $visitor: typeof _swagger_api_apidom_ns_json_schema_draft_4.JSONSchemaVisitor;
39
40
  fixedFields: {
40
- id: stampit.default.Stamp<any>;
41
- $schema: stampit.default.Stamp<any>;
42
- multipleOf: stampit.default.Stamp<any>;
43
- maximum: stampit.default.Stamp<any>;
44
- exclusiveMaximum: stampit.default.Stamp<any>;
45
- minimum: stampit.default.Stamp<any>;
46
- exclusiveMinimum: stampit.default.Stamp<any>;
47
- maxLength: stampit.default.Stamp<any>;
48
- minLength: stampit.default.Stamp<any>;
49
- pattern: stampit.default.Stamp<any>;
50
- additionalItems: stampit.default.Stamp<any>;
51
- items: stampit.default.Stamp<any>;
52
- maxItems: stampit.default.Stamp<any>;
53
- minItems: stampit.default.Stamp<any>;
54
- uniqueItems: stampit.default.Stamp<any>;
55
- maxProperties: stampit.default.Stamp<any>;
56
- minProperties: stampit.default.Stamp<any>;
57
- required: stampit.default.Stamp<any>;
58
- properties: stampit.default.Stamp<any>;
59
- additionalProperties: stampit.default.Stamp<any>;
60
- patternProperties: stampit.default.Stamp<any>;
61
- dependencies: stampit.default.Stamp<any>;
62
- enum: stampit.default.Stamp<any>;
63
- type: stampit.default.Stamp<any>;
64
- allOf: stampit.default.Stamp<any>;
65
- anyOf: stampit.default.Stamp<any>;
66
- oneOf: stampit.default.Stamp<any>;
67
- not: stampit.default.Stamp<any>;
68
- definitions: stampit.default.Stamp<any>;
69
- title: stampit.default.Stamp<any>;
70
- description: stampit.default.Stamp<any>;
71
- default: stampit.default.Stamp<any>;
72
- format: stampit.default.Stamp<any>;
73
- base: stampit.default.Stamp<any>;
74
- links: stampit.default.Stamp<any>;
41
+ id: {
42
+ $ref: string;
43
+ };
44
+ $schema: {
45
+ $ref: string;
46
+ };
47
+ multipleOf: {
48
+ $ref: string;
49
+ };
50
+ maximum: {
51
+ $ref: string;
52
+ };
53
+ exclusiveMaximum: {
54
+ $ref: string;
55
+ };
56
+ minimum: {
57
+ $ref: string;
58
+ };
59
+ exclusiveMinimum: {
60
+ $ref: string;
61
+ };
62
+ maxLength: {
63
+ $ref: string;
64
+ };
65
+ minLength: {
66
+ $ref: string;
67
+ };
68
+ pattern: {
69
+ $ref: string;
70
+ };
71
+ additionalItems: typeof _swagger_api_apidom_ns_json_schema_draft_4.SchemaOrReferenceVisitor;
72
+ items: typeof _swagger_api_apidom_ns_json_schema_draft_4.ItemsVisitor;
73
+ maxItems: {
74
+ $ref: string;
75
+ };
76
+ minItems: {
77
+ $ref: string;
78
+ };
79
+ uniqueItems: {
80
+ $ref: string;
81
+ };
82
+ maxProperties: {
83
+ $ref: string;
84
+ };
85
+ minProperties: {
86
+ $ref: string;
87
+ };
88
+ required: typeof _swagger_api_apidom_ns_json_schema_draft_4.RequiredVisitor;
89
+ properties: typeof _swagger_api_apidom_ns_json_schema_draft_4.PropertiesVisitor;
90
+ additionalProperties: typeof _swagger_api_apidom_ns_json_schema_draft_4.SchemaOrReferenceVisitor;
91
+ patternProperties: typeof _swagger_api_apidom_ns_json_schema_draft_4.PatternPropertiesVisitor;
92
+ dependencies: typeof _swagger_api_apidom_ns_json_schema_draft_4.DependenciesVisitor;
93
+ enum: typeof _swagger_api_apidom_ns_json_schema_draft_4.EnumVisitor;
94
+ type: typeof _swagger_api_apidom_ns_json_schema_draft_4.TypeVisitor;
95
+ allOf: typeof _swagger_api_apidom_ns_json_schema_draft_4.AllOfVisitor;
96
+ anyOf: typeof _swagger_api_apidom_ns_json_schema_draft_4.AnyOfVisitor;
97
+ oneOf: typeof _swagger_api_apidom_ns_json_schema_draft_4.OneOfVisitor;
98
+ not: typeof _swagger_api_apidom_ns_json_schema_draft_4.SchemaOrReferenceVisitor;
99
+ definitions: typeof _swagger_api_apidom_ns_json_schema_draft_4.DefinitionsVisitor;
100
+ title: {
101
+ $ref: string;
102
+ };
103
+ description: {
104
+ $ref: string;
105
+ };
106
+ default: {
107
+ $ref: string;
108
+ };
109
+ format: {
110
+ $ref: string;
111
+ };
112
+ base: {
113
+ $ref: string;
114
+ };
115
+ links: typeof _swagger_api_apidom_ns_json_schema_draft_4.LinksVisitor;
75
116
  media: {
76
117
  $ref: string;
77
118
  };
78
- readOnly: stampit.default.Stamp<any>;
119
+ readOnly: {
120
+ $ref: string;
121
+ };
79
122
  };
80
123
  };
81
124
  JSONReference: {
82
- $visitor: stampit.default.Stamp<any>;
125
+ $visitor: typeof _swagger_api_apidom_ns_json_schema_draft_4.JSONReferenceVisitor;
83
126
  fixedFields: {
84
- $ref: stampit.default.Stamp<any>;
127
+ $ref: typeof _swagger_api_apidom_ns_json_schema_draft_4.JSONReference$RefVisitor;
85
128
  };
86
129
  };
87
130
  Media: {
88
- $visitor: stampit.default.Stamp<any>;
131
+ $visitor: typeof _swagger_api_apidom_ns_json_schema_draft_4.MediaVisitor;
89
132
  fixedFields: {
90
- binaryEncoding: stampit.default.Stamp<any>;
91
- type: stampit.default.Stamp<any>;
133
+ binaryEncoding: {
134
+ $ref: string;
135
+ };
136
+ type: {
137
+ $ref: string;
138
+ };
92
139
  };
93
140
  };
94
141
  LinkDescription: {
95
- $visitor: stampit.default.Stamp<any>;
142
+ $visitor: typeof _swagger_api_apidom_ns_json_schema_draft_4.LinkDescriptionVisitor;
96
143
  fixedFields: {
97
- href: stampit.default.Stamp<any>;
98
- rel: stampit.default.Stamp<any>;
99
- title: stampit.default.Stamp<any>;
100
- targetSchema: stampit.default.Stamp<any>;
101
- mediaType: stampit.default.Stamp<any>;
102
- method: stampit.default.Stamp<any>;
103
- encType: stampit.default.Stamp<any>;
104
- schema: stampit.default.Stamp<any>;
144
+ href: {
145
+ $ref: string;
146
+ };
147
+ rel: {
148
+ $ref: string;
149
+ };
150
+ title: {
151
+ $ref: string;
152
+ };
153
+ targetSchema: typeof _swagger_api_apidom_ns_json_schema_draft_4.SchemaOrReferenceVisitor;
154
+ mediaType: {
155
+ $ref: string;
156
+ };
157
+ method: {
158
+ $ref: string;
159
+ };
160
+ encType: {
161
+ $ref: string;
162
+ };
163
+ schema: typeof _swagger_api_apidom_ns_json_schema_draft_4.SchemaOrReferenceVisitor;
105
164
  };
106
165
  };
107
166
  };
@@ -109,82 +168,140 @@ declare const refract: <T extends Element>(value: any, { specPath, plugins, spec
109
168
  };
110
169
  } | undefined;
111
170
  }) => T;
112
- declare const createRefractor: (specPath: string[]) => (value: any, options?: {}) => Element;
171
+ declare const createRefractor: (specPath: string[]) => (value: unknown, options?: {}) => Element;
113
172
 
114
173
  declare const _default: {
115
174
  visitors: {
116
- value: stampit.default.Stamp<any>;
117
- JSONSchemaOrJSONReferenceVisitor: stampit.default.Stamp<any>;
175
+ value: typeof _swagger_api_apidom_ns_json_schema_draft_4.FallbackVisitor;
176
+ JSONSchemaOrJSONReferenceVisitor: typeof _swagger_api_apidom_ns_json_schema_draft_4.SchemaOrReferenceVisitor;
118
177
  document: {
119
178
  objects: {
120
179
  JSONSchema: {
121
- $visitor: stampit.default.Stamp<any>;
180
+ $visitor: typeof _swagger_api_apidom_ns_json_schema_draft_4.JSONSchemaVisitor;
122
181
  fixedFields: {
123
- id: stampit.default.Stamp<any>;
124
- $schema: stampit.default.Stamp<any>;
125
- multipleOf: stampit.default.Stamp<any>;
126
- maximum: stampit.default.Stamp<any>;
127
- exclusiveMaximum: stampit.default.Stamp<any>;
128
- minimum: stampit.default.Stamp<any>;
129
- exclusiveMinimum: stampit.default.Stamp<any>;
130
- maxLength: stampit.default.Stamp<any>;
131
- minLength: stampit.default.Stamp<any>;
132
- pattern: stampit.default.Stamp<any>;
133
- additionalItems: stampit.default.Stamp<any>;
134
- items: stampit.default.Stamp<any>;
135
- maxItems: stampit.default.Stamp<any>;
136
- minItems: stampit.default.Stamp<any>;
137
- uniqueItems: stampit.default.Stamp<any>;
138
- maxProperties: stampit.default.Stamp<any>;
139
- minProperties: stampit.default.Stamp<any>;
140
- required: stampit.default.Stamp<any>;
141
- properties: stampit.default.Stamp<any>;
142
- additionalProperties: stampit.default.Stamp<any>;
143
- patternProperties: stampit.default.Stamp<any>;
144
- dependencies: stampit.default.Stamp<any>;
145
- enum: stampit.default.Stamp<any>;
146
- type: stampit.default.Stamp<any>;
147
- allOf: stampit.default.Stamp<any>;
148
- anyOf: stampit.default.Stamp<any>;
149
- oneOf: stampit.default.Stamp<any>;
150
- not: stampit.default.Stamp<any>;
151
- definitions: stampit.default.Stamp<any>;
152
- title: stampit.default.Stamp<any>;
153
- description: stampit.default.Stamp<any>;
154
- default: stampit.default.Stamp<any>;
155
- format: stampit.default.Stamp<any>;
156
- base: stampit.default.Stamp<any>;
157
- links: stampit.default.Stamp<any>;
182
+ id: {
183
+ $ref: string;
184
+ };
185
+ $schema: {
186
+ $ref: string;
187
+ };
188
+ multipleOf: {
189
+ $ref: string;
190
+ };
191
+ maximum: {
192
+ $ref: string;
193
+ };
194
+ exclusiveMaximum: {
195
+ $ref: string;
196
+ };
197
+ minimum: {
198
+ $ref: string;
199
+ };
200
+ exclusiveMinimum: {
201
+ $ref: string;
202
+ };
203
+ maxLength: {
204
+ $ref: string;
205
+ };
206
+ minLength: {
207
+ $ref: string;
208
+ };
209
+ pattern: {
210
+ $ref: string;
211
+ };
212
+ additionalItems: typeof _swagger_api_apidom_ns_json_schema_draft_4.SchemaOrReferenceVisitor;
213
+ items: typeof _swagger_api_apidom_ns_json_schema_draft_4.ItemsVisitor;
214
+ maxItems: {
215
+ $ref: string;
216
+ };
217
+ minItems: {
218
+ $ref: string;
219
+ };
220
+ uniqueItems: {
221
+ $ref: string;
222
+ };
223
+ maxProperties: {
224
+ $ref: string;
225
+ };
226
+ minProperties: {
227
+ $ref: string;
228
+ };
229
+ required: typeof _swagger_api_apidom_ns_json_schema_draft_4.RequiredVisitor;
230
+ properties: typeof _swagger_api_apidom_ns_json_schema_draft_4.PropertiesVisitor;
231
+ additionalProperties: typeof _swagger_api_apidom_ns_json_schema_draft_4.SchemaOrReferenceVisitor;
232
+ patternProperties: typeof _swagger_api_apidom_ns_json_schema_draft_4.PatternPropertiesVisitor;
233
+ dependencies: typeof _swagger_api_apidom_ns_json_schema_draft_4.DependenciesVisitor;
234
+ enum: typeof _swagger_api_apidom_ns_json_schema_draft_4.EnumVisitor;
235
+ type: typeof _swagger_api_apidom_ns_json_schema_draft_4.TypeVisitor;
236
+ allOf: typeof _swagger_api_apidom_ns_json_schema_draft_4.AllOfVisitor;
237
+ anyOf: typeof _swagger_api_apidom_ns_json_schema_draft_4.AnyOfVisitor;
238
+ oneOf: typeof _swagger_api_apidom_ns_json_schema_draft_4.OneOfVisitor;
239
+ not: typeof _swagger_api_apidom_ns_json_schema_draft_4.SchemaOrReferenceVisitor;
240
+ definitions: typeof _swagger_api_apidom_ns_json_schema_draft_4.DefinitionsVisitor;
241
+ title: {
242
+ $ref: string;
243
+ };
244
+ description: {
245
+ $ref: string;
246
+ };
247
+ default: {
248
+ $ref: string;
249
+ };
250
+ format: {
251
+ $ref: string;
252
+ };
253
+ base: {
254
+ $ref: string;
255
+ };
256
+ links: typeof _swagger_api_apidom_ns_json_schema_draft_4.LinksVisitor;
158
257
  media: {
159
258
  $ref: string;
160
259
  };
161
- readOnly: stampit.default.Stamp<any>;
260
+ readOnly: {
261
+ $ref: string;
262
+ };
162
263
  };
163
264
  };
164
265
  JSONReference: {
165
- $visitor: stampit.default.Stamp<any>;
266
+ $visitor: typeof _swagger_api_apidom_ns_json_schema_draft_4.JSONReferenceVisitor;
166
267
  fixedFields: {
167
- $ref: stampit.default.Stamp<any>;
268
+ $ref: typeof _swagger_api_apidom_ns_json_schema_draft_4.JSONReference$RefVisitor;
168
269
  };
169
270
  };
170
271
  Media: {
171
- $visitor: stampit.default.Stamp<any>;
272
+ $visitor: typeof _swagger_api_apidom_ns_json_schema_draft_4.MediaVisitor;
172
273
  fixedFields: {
173
- binaryEncoding: stampit.default.Stamp<any>;
174
- type: stampit.default.Stamp<any>;
274
+ binaryEncoding: {
275
+ $ref: string;
276
+ };
277
+ type: {
278
+ $ref: string;
279
+ };
175
280
  };
176
281
  };
177
282
  LinkDescription: {
178
- $visitor: stampit.default.Stamp<any>;
283
+ $visitor: typeof _swagger_api_apidom_ns_json_schema_draft_4.LinkDescriptionVisitor;
179
284
  fixedFields: {
180
- href: stampit.default.Stamp<any>;
181
- rel: stampit.default.Stamp<any>;
182
- title: stampit.default.Stamp<any>;
183
- targetSchema: stampit.default.Stamp<any>;
184
- mediaType: stampit.default.Stamp<any>;
185
- method: stampit.default.Stamp<any>;
186
- encType: stampit.default.Stamp<any>;
187
- schema: stampit.default.Stamp<any>;
285
+ href: {
286
+ $ref: string;
287
+ };
288
+ rel: {
289
+ $ref: string;
290
+ };
291
+ title: {
292
+ $ref: string;
293
+ };
294
+ targetSchema: typeof _swagger_api_apidom_ns_json_schema_draft_4.SchemaOrReferenceVisitor;
295
+ mediaType: {
296
+ $ref: string;
297
+ };
298
+ method: {
299
+ $ref: string;
300
+ };
301
+ encType: {
302
+ $ref: string;
303
+ };
304
+ schema: typeof _swagger_api_apidom_ns_json_schema_draft_4.SchemaOrReferenceVisitor;
188
305
  };
189
306
  };
190
307
  };
@@ -266,6 +383,41 @@ declare class LinkDescription extends LinkDescriptionElement {
266
383
  declare const isJSONSchemaElement: _swagger_api_apidom_core.ElementPredicate<JSONSchema>;
267
384
  declare const isLinkDescriptionElement: _swagger_api_apidom_core.ElementPredicate<LinkDescription>;
268
385
 
386
+ interface LinkDescriptionVisitorOptions extends FixedFieldsVisitorOptions, FallbackVisitorOptions {
387
+ }
388
+ declare const LinkDescriptionVisitor_base: ts_mixer_dist_types_types.Class<any[], FixedFieldsVisitor & FallbackVisitor, typeof FixedFieldsVisitor & typeof FallbackVisitor>;
389
+ declare class LinkDescriptionVisitor extends LinkDescriptionVisitor_base {
390
+ readonly element: LinkDescription;
391
+ protected readonly specPath: SpecPath<['document', 'objects', 'LinkDescription']>;
392
+ constructor(options: LinkDescriptionVisitorOptions);
393
+ }
394
+
395
+ interface JSONSchemaVisitorOptions extends FixedFieldsVisitorOptions, FallbackVisitorOptions {
396
+ }
397
+ declare const JSONSchemaVisitor_base: ts_mixer_dist_types_types.Class<any[], FixedFieldsVisitor & FallbackVisitor, typeof FixedFieldsVisitor & typeof FallbackVisitor>;
398
+ declare class JSONSchemaVisitor extends JSONSchemaVisitor_base {
399
+ element: JSONSchema;
400
+ protected readonly specPath: SpecPath<['document', 'objects', 'JSONSchema']>;
401
+ constructor(options: JSONSchemaVisitorOptions);
402
+ ObjectElement(objectElement: ObjectElement): {};
403
+ BooleanElement(booleanElement: BooleanElement): {};
404
+ }
405
+
406
+ declare class ExamplesVisitor extends FallbackVisitor {
407
+ readonly element: ArrayElement;
408
+ ArrayElement(arrayElement: ArrayElement): {};
409
+ }
410
+
411
+ interface ItemsVisitorOptions extends SpecificationVisitorOptions, ParentSchemaAwareVisitorOptions, FallbackVisitorOptions {
412
+ }
413
+ declare const ItemsVisitor_base: ts_mixer_dist_types_types.Class<any[], SpecificationVisitor & ParentSchemaAwareVisitor & FallbackVisitor, typeof SpecificationVisitor & typeof ParentSchemaAwareVisitor & typeof FallbackVisitor>;
414
+ declare class ItemsVisitor extends ItemsVisitor_base {
415
+ element: ObjectElement | ArrayElement;
416
+ ObjectElement(objectElement: ObjectElement): {};
417
+ ArrayElement(arrayElement: ArrayElement): {};
418
+ BooleanElement(booleanElement: BooleanElement): {};
419
+ }
420
+
269
421
  declare const getNodeType: <T extends Element>(element: T) => string | undefined;
270
422
  declare const keyMap: {
271
423
  ObjectElement: string[];
@@ -287,4 +439,4 @@ declare const keyMap: {
287
439
  LinkDescriptionElement: string[];
288
440
  };
289
441
 
290
- export { JSONSchemaDraft6MediaTypes, JSONSchema as JSONSchemaElement, LinkDescription as LinkDescriptionElement, createRefractor, jsonSchemaDraft6 as default, getNodeType, isJSONSchemaElement, isLinkDescriptionElement, keyMap, mediaTypes, refract, plugin as refractorPluginReplaceEmptyElement, _default as specificationObj };
442
+ export { ExamplesVisitor, ItemsVisitor, type ItemsVisitorOptions, JSONSchemaDraft6MediaTypes, JSONSchema as JSONSchemaElement, JSONSchemaVisitor, type JSONSchemaVisitorOptions, LinkDescription as LinkDescriptionElement, LinkDescriptionVisitor, type LinkDescriptionVisitorOptions, createRefractor, jsonSchemaDraft6 as default, getNodeType, isJSONSchemaElement, isLinkDescriptionElement, keyMap, mediaTypes, refract, plugin as refractorPluginReplaceEmptyElement, _default as specificationObj };
@@ -1,7 +0,0 @@
1
- "use strict";
2
-
3
- exports.__esModule = true;
4
- exports.default = void 0;
5
- var _apidomNsJsonSchemaDraft = require("@swagger-api/apidom-ns-json-schema-draft-4");
6
- const $idVisitor = _apidomNsJsonSchemaDraft.FallbackVisitor;
7
- var _default = exports.default = $idVisitor;
@@ -1,7 +0,0 @@
1
- "use strict";
2
-
3
- exports.__esModule = true;
4
- exports.default = void 0;
5
- var _apidomNsJsonSchemaDraft = require("@swagger-api/apidom-ns-json-schema-draft-4");
6
- const ConstVisitor = _apidomNsJsonSchemaDraft.FallbackVisitor;
7
- var _default = exports.default = ConstVisitor;
@@ -1,7 +0,0 @@
1
- "use strict";
2
-
3
- exports.__esModule = true;
4
- exports.default = void 0;
5
- var _apidomNsJsonSchemaDraft = require("@swagger-api/apidom-ns-json-schema-draft-4");
6
- const SubmissionEncTypeVisitor = _apidomNsJsonSchemaDraft.FallbackVisitor;
7
- var _default = exports.default = SubmissionEncTypeVisitor;
@@ -1,3 +0,0 @@
1
- import { FallbackVisitor } from '@swagger-api/apidom-ns-json-schema-draft-4';
2
- const $idVisitor = FallbackVisitor;
3
- export default $idVisitor;
@@ -1,3 +0,0 @@
1
- import { FallbackVisitor } from '@swagger-api/apidom-ns-json-schema-draft-4';
2
- const ConstVisitor = FallbackVisitor;
3
- export default ConstVisitor;
@@ -1,3 +0,0 @@
1
- import { FallbackVisitor } from '@swagger-api/apidom-ns-json-schema-draft-4';
2
- const SubmissionEncTypeVisitor = FallbackVisitor;
3
- export default SubmissionEncTypeVisitor;