@scalar/api-reference 1.31.0 → 1.31.2
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/CHANGELOG.md +19 -0
- package/dist/browser/standalone.js +2033 -1930
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/Content/Models/Models.vue.d.ts.map +1 -1
- package/dist/components/Content/Models/Models.vue.js +1 -1
- package/dist/components/Content/Models/Models.vue2.js +2 -1
- package/dist/components/Content/Schema/Schema.preview.d.ts +252 -84
- package/dist/components/Content/Schema/Schema.preview.d.ts.map +1 -1
- package/dist/components/Content/Schema/Schema.vue.d.ts +17 -3
- package/dist/components/Content/Schema/Schema.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/Schema.vue.js +2 -2
- package/dist/components/Content/Schema/Schema.vue2.js +146 -128
- package/dist/components/Content/Schema/SchemaComposition.vue.d.ts +2 -2
- package/dist/components/Content/Schema/SchemaComposition.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaDiscriminator.vue.d.ts +2 -3
- package/dist/components/Content/Schema/SchemaDiscriminator.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaDiscriminator.vue.js +29 -29
- package/dist/components/Content/Schema/SchemaProperty.vue.d.ts +10 -3
- package/dist/components/Content/Schema/SchemaProperty.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaProperty.vue.js +2 -2
- package/dist/components/Content/Schema/SchemaProperty.vue2.js +129 -101
- package/dist/components/Content/Schema/SchemaPropertyHeading.vue.d.ts +2 -2
- package/dist/components/Content/Schema/SchemaPropertyHeading.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaPropertyHeading.vue.js +1 -1
- package/dist/components/Content/Schema/SchemaPropertyHeading.vue2.js +122 -115
- package/dist/components/Layouts/ClassicLayout.vue.d.ts.map +1 -1
- package/dist/components/Layouts/ClassicLayout.vue.js +11 -11
- package/dist/components/Section/SectionAccordion.vue.d.ts.map +1 -1
- package/dist/components/Section/SectionAccordion.vue.js +2 -2
- package/dist/components/Section/SectionAccordion.vue2.js +1 -1
- package/dist/components/Section/SectionContainerAccordion.vue.d.ts.map +1 -1
- package/dist/components/Section/SectionContainerAccordion.vue.js +2 -2
- package/dist/components/Section/SectionContainerAccordion.vue2.js +4 -4
- package/dist/features/ExampleRequest/ExampleRequest.vue.d.ts +2 -0
- package/dist/features/ExampleRequest/ExampleRequest.vue.d.ts.map +1 -1
- package/dist/features/ExampleRequest/ExampleRequest.vue.js +2 -2
- package/dist/features/ExampleRequest/ExampleRequest.vue2.js +178 -127
- package/dist/features/Operation/Operation.vue.d.ts.map +1 -1
- package/dist/features/Operation/Operation.vue.js +29 -23
- package/dist/features/Operation/components/OperationParameters.vue.d.ts +7 -3
- package/dist/features/Operation/components/OperationParameters.vue.d.ts.map +1 -1
- package/dist/features/Operation/components/OperationParameters.vue.js +28 -24
- package/dist/features/Operation/components/RequestBody.vue.d.ts +5 -1
- package/dist/features/Operation/components/RequestBody.vue.d.ts.map +1 -1
- package/dist/features/Operation/components/RequestBody.vue.js +2 -2
- package/dist/features/Operation/components/RequestBody.vue2.js +41 -36
- package/dist/features/Operation/layouts/ClassicLayout.vue.d.ts +5 -1
- package/dist/features/Operation/layouts/ClassicLayout.vue.d.ts.map +1 -1
- package/dist/features/Operation/layouts/ClassicLayout.vue.js +2 -2
- package/dist/features/Operation/layouts/ClassicLayout.vue2.js +79 -74
- package/dist/features/Operation/layouts/ModernLayout.vue.d.ts +5 -1
- package/dist/features/Operation/layouts/ModernLayout.vue.d.ts.map +1 -1
- package/dist/features/Operation/layouts/ModernLayout.vue.js +2 -2
- package/dist/features/Operation/layouts/ModernLayout.vue2.js +63 -57
- package/dist/hooks/useDiscriminator.d.ts +53 -0
- package/dist/hooks/useDiscriminator.d.ts.map +1 -0
- package/dist/hooks/useDiscriminator.js +149 -0
- package/dist/hooks/useOperationDiscriminator.d.ts +8 -0
- package/dist/hooks/useOperationDiscriminator.d.ts.map +1 -0
- package/dist/hooks/useOperationDiscriminator.js +57 -0
- package/dist/index.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +9 -9
- package/dist/components/Content/Schema/helpers/schema-discriminator.d.ts +0 -12
- package/dist/components/Content/Schema/helpers/schema-discriminator.d.ts.map +0 -1
- package/dist/components/Content/Schema/helpers/schema-discriminator.js +0 -45
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const stringSchema: {
|
|
2
2
|
component: import("vue").DefineComponent<{
|
|
3
|
-
value?: import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
3
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
4
4
|
level?: number;
|
|
5
5
|
name?: string;
|
|
6
6
|
compact?: boolean;
|
|
@@ -8,9 +8,15 @@ export declare const stringSchema: {
|
|
|
8
8
|
hideHeading?: boolean;
|
|
9
9
|
additionalProperties?: boolean;
|
|
10
10
|
hideModelNames?: boolean;
|
|
11
|
-
schemas?:
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
12
|
+
discriminator?: string;
|
|
13
|
+
discriminatorMapping?: Record<string, string>;
|
|
14
|
+
discriminatorPropertyName?: string;
|
|
15
|
+
hasDiscriminator?: boolean;
|
|
16
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
17
|
+
"update:modelValue": (value: string) => any;
|
|
18
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
19
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
14
20
|
level?: number;
|
|
15
21
|
name?: string;
|
|
16
22
|
compact?: boolean;
|
|
@@ -18,8 +24,14 @@ export declare const stringSchema: {
|
|
|
18
24
|
hideHeading?: boolean;
|
|
19
25
|
additionalProperties?: boolean;
|
|
20
26
|
hideModelNames?: boolean;
|
|
21
|
-
schemas?:
|
|
22
|
-
|
|
27
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
28
|
+
discriminator?: string;
|
|
29
|
+
discriminatorMapping?: Record<string, string>;
|
|
30
|
+
discriminatorPropertyName?: string;
|
|
31
|
+
hasDiscriminator?: boolean;
|
|
32
|
+
}> & Readonly<{
|
|
33
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
34
|
+
}>, {
|
|
23
35
|
level: number;
|
|
24
36
|
noncollapsible: boolean;
|
|
25
37
|
hideModelNames: boolean;
|
|
@@ -36,7 +48,7 @@ export declare const stringSchema: {
|
|
|
36
48
|
};
|
|
37
49
|
export declare const objectSchema: {
|
|
38
50
|
component: import("vue").DefineComponent<{
|
|
39
|
-
value?: import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
51
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
40
52
|
level?: number;
|
|
41
53
|
name?: string;
|
|
42
54
|
compact?: boolean;
|
|
@@ -44,9 +56,15 @@ export declare const objectSchema: {
|
|
|
44
56
|
hideHeading?: boolean;
|
|
45
57
|
additionalProperties?: boolean;
|
|
46
58
|
hideModelNames?: boolean;
|
|
47
|
-
schemas?:
|
|
48
|
-
|
|
49
|
-
|
|
59
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
60
|
+
discriminator?: string;
|
|
61
|
+
discriminatorMapping?: Record<string, string>;
|
|
62
|
+
discriminatorPropertyName?: string;
|
|
63
|
+
hasDiscriminator?: boolean;
|
|
64
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
65
|
+
"update:modelValue": (value: string) => any;
|
|
66
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
67
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
50
68
|
level?: number;
|
|
51
69
|
name?: string;
|
|
52
70
|
compact?: boolean;
|
|
@@ -54,8 +72,14 @@ export declare const objectSchema: {
|
|
|
54
72
|
hideHeading?: boolean;
|
|
55
73
|
additionalProperties?: boolean;
|
|
56
74
|
hideModelNames?: boolean;
|
|
57
|
-
schemas?:
|
|
58
|
-
|
|
75
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
76
|
+
discriminator?: string;
|
|
77
|
+
discriminatorMapping?: Record<string, string>;
|
|
78
|
+
discriminatorPropertyName?: string;
|
|
79
|
+
hasDiscriminator?: boolean;
|
|
80
|
+
}> & Readonly<{
|
|
81
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
82
|
+
}>, {
|
|
59
83
|
level: number;
|
|
60
84
|
noncollapsible: boolean;
|
|
61
85
|
hideModelNames: boolean;
|
|
@@ -81,7 +105,7 @@ export declare const objectSchema: {
|
|
|
81
105
|
};
|
|
82
106
|
export declare const recursiveSchema: {
|
|
83
107
|
component: import("vue").DefineComponent<{
|
|
84
|
-
value?: import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
108
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
85
109
|
level?: number;
|
|
86
110
|
name?: string;
|
|
87
111
|
compact?: boolean;
|
|
@@ -89,9 +113,15 @@ export declare const recursiveSchema: {
|
|
|
89
113
|
hideHeading?: boolean;
|
|
90
114
|
additionalProperties?: boolean;
|
|
91
115
|
hideModelNames?: boolean;
|
|
92
|
-
schemas?:
|
|
93
|
-
|
|
94
|
-
|
|
116
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
117
|
+
discriminator?: string;
|
|
118
|
+
discriminatorMapping?: Record<string, string>;
|
|
119
|
+
discriminatorPropertyName?: string;
|
|
120
|
+
hasDiscriminator?: boolean;
|
|
121
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
122
|
+
"update:modelValue": (value: string) => any;
|
|
123
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
124
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
95
125
|
level?: number;
|
|
96
126
|
name?: string;
|
|
97
127
|
compact?: boolean;
|
|
@@ -99,8 +129,14 @@ export declare const recursiveSchema: {
|
|
|
99
129
|
hideHeading?: boolean;
|
|
100
130
|
additionalProperties?: boolean;
|
|
101
131
|
hideModelNames?: boolean;
|
|
102
|
-
schemas?:
|
|
103
|
-
|
|
132
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
133
|
+
discriminator?: string;
|
|
134
|
+
discriminatorMapping?: Record<string, string>;
|
|
135
|
+
discriminatorPropertyName?: string;
|
|
136
|
+
hasDiscriminator?: boolean;
|
|
137
|
+
}> & Readonly<{
|
|
138
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
139
|
+
}>, {
|
|
104
140
|
level: number;
|
|
105
141
|
noncollapsible: boolean;
|
|
106
142
|
hideModelNames: boolean;
|
|
@@ -118,7 +154,7 @@ export declare const recursiveSchema: {
|
|
|
118
154
|
};
|
|
119
155
|
export declare const enumSchema: {
|
|
120
156
|
component: import("vue").DefineComponent<{
|
|
121
|
-
value?: import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
157
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
122
158
|
level?: number;
|
|
123
159
|
name?: string;
|
|
124
160
|
compact?: boolean;
|
|
@@ -126,9 +162,15 @@ export declare const enumSchema: {
|
|
|
126
162
|
hideHeading?: boolean;
|
|
127
163
|
additionalProperties?: boolean;
|
|
128
164
|
hideModelNames?: boolean;
|
|
129
|
-
schemas?:
|
|
130
|
-
|
|
131
|
-
|
|
165
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
166
|
+
discriminator?: string;
|
|
167
|
+
discriminatorMapping?: Record<string, string>;
|
|
168
|
+
discriminatorPropertyName?: string;
|
|
169
|
+
hasDiscriminator?: boolean;
|
|
170
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
171
|
+
"update:modelValue": (value: string) => any;
|
|
172
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
173
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
132
174
|
level?: number;
|
|
133
175
|
name?: string;
|
|
134
176
|
compact?: boolean;
|
|
@@ -136,8 +178,14 @@ export declare const enumSchema: {
|
|
|
136
178
|
hideHeading?: boolean;
|
|
137
179
|
additionalProperties?: boolean;
|
|
138
180
|
hideModelNames?: boolean;
|
|
139
|
-
schemas?:
|
|
140
|
-
|
|
181
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
182
|
+
discriminator?: string;
|
|
183
|
+
discriminatorMapping?: Record<string, string>;
|
|
184
|
+
discriminatorPropertyName?: string;
|
|
185
|
+
hasDiscriminator?: boolean;
|
|
186
|
+
}> & Readonly<{
|
|
187
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
188
|
+
}>, {
|
|
141
189
|
level: number;
|
|
142
190
|
noncollapsible: boolean;
|
|
143
191
|
hideModelNames: boolean;
|
|
@@ -154,7 +202,7 @@ export declare const enumSchema: {
|
|
|
154
202
|
};
|
|
155
203
|
export declare const objectWithEnumSchema: {
|
|
156
204
|
component: import("vue").DefineComponent<{
|
|
157
|
-
value?: import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
205
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
158
206
|
level?: number;
|
|
159
207
|
name?: string;
|
|
160
208
|
compact?: boolean;
|
|
@@ -162,9 +210,15 @@ export declare const objectWithEnumSchema: {
|
|
|
162
210
|
hideHeading?: boolean;
|
|
163
211
|
additionalProperties?: boolean;
|
|
164
212
|
hideModelNames?: boolean;
|
|
165
|
-
schemas?:
|
|
166
|
-
|
|
167
|
-
|
|
213
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
214
|
+
discriminator?: string;
|
|
215
|
+
discriminatorMapping?: Record<string, string>;
|
|
216
|
+
discriminatorPropertyName?: string;
|
|
217
|
+
hasDiscriminator?: boolean;
|
|
218
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
219
|
+
"update:modelValue": (value: string) => any;
|
|
220
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
221
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
168
222
|
level?: number;
|
|
169
223
|
name?: string;
|
|
170
224
|
compact?: boolean;
|
|
@@ -172,8 +226,14 @@ export declare const objectWithEnumSchema: {
|
|
|
172
226
|
hideHeading?: boolean;
|
|
173
227
|
additionalProperties?: boolean;
|
|
174
228
|
hideModelNames?: boolean;
|
|
175
|
-
schemas?:
|
|
176
|
-
|
|
229
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
230
|
+
discriminator?: string;
|
|
231
|
+
discriminatorMapping?: Record<string, string>;
|
|
232
|
+
discriminatorPropertyName?: string;
|
|
233
|
+
hasDiscriminator?: boolean;
|
|
234
|
+
}> & Readonly<{
|
|
235
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
236
|
+
}>, {
|
|
177
237
|
level: number;
|
|
178
238
|
noncollapsible: boolean;
|
|
179
239
|
hideModelNames: boolean;
|
|
@@ -195,7 +255,7 @@ export declare const objectWithEnumSchema: {
|
|
|
195
255
|
};
|
|
196
256
|
export declare const discriminatorsSchema: {
|
|
197
257
|
component: import("vue").DefineComponent<{
|
|
198
|
-
value?: import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
258
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
199
259
|
level?: number;
|
|
200
260
|
name?: string;
|
|
201
261
|
compact?: boolean;
|
|
@@ -203,9 +263,15 @@ export declare const discriminatorsSchema: {
|
|
|
203
263
|
hideHeading?: boolean;
|
|
204
264
|
additionalProperties?: boolean;
|
|
205
265
|
hideModelNames?: boolean;
|
|
206
|
-
schemas?:
|
|
207
|
-
|
|
208
|
-
|
|
266
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
267
|
+
discriminator?: string;
|
|
268
|
+
discriminatorMapping?: Record<string, string>;
|
|
269
|
+
discriminatorPropertyName?: string;
|
|
270
|
+
hasDiscriminator?: boolean;
|
|
271
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
272
|
+
"update:modelValue": (value: string) => any;
|
|
273
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
274
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
209
275
|
level?: number;
|
|
210
276
|
name?: string;
|
|
211
277
|
compact?: boolean;
|
|
@@ -213,8 +279,14 @@ export declare const discriminatorsSchema: {
|
|
|
213
279
|
hideHeading?: boolean;
|
|
214
280
|
additionalProperties?: boolean;
|
|
215
281
|
hideModelNames?: boolean;
|
|
216
|
-
schemas?:
|
|
217
|
-
|
|
282
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
283
|
+
discriminator?: string;
|
|
284
|
+
discriminatorMapping?: Record<string, string>;
|
|
285
|
+
discriminatorPropertyName?: string;
|
|
286
|
+
hasDiscriminator?: boolean;
|
|
287
|
+
}> & Readonly<{
|
|
288
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
289
|
+
}>, {
|
|
218
290
|
level: number;
|
|
219
291
|
noncollapsible: boolean;
|
|
220
292
|
hideModelNames: boolean;
|
|
@@ -261,7 +333,7 @@ export declare const discriminatorsSchema: {
|
|
|
261
333
|
};
|
|
262
334
|
export declare const complexArrayDiscriminatorSchema: {
|
|
263
335
|
component: import("vue").DefineComponent<{
|
|
264
|
-
value?: import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
336
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
265
337
|
level?: number;
|
|
266
338
|
name?: string;
|
|
267
339
|
compact?: boolean;
|
|
@@ -269,9 +341,15 @@ export declare const complexArrayDiscriminatorSchema: {
|
|
|
269
341
|
hideHeading?: boolean;
|
|
270
342
|
additionalProperties?: boolean;
|
|
271
343
|
hideModelNames?: boolean;
|
|
272
|
-
schemas?:
|
|
273
|
-
|
|
274
|
-
|
|
344
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
345
|
+
discriminator?: string;
|
|
346
|
+
discriminatorMapping?: Record<string, string>;
|
|
347
|
+
discriminatorPropertyName?: string;
|
|
348
|
+
hasDiscriminator?: boolean;
|
|
349
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
350
|
+
"update:modelValue": (value: string) => any;
|
|
351
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
352
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
275
353
|
level?: number;
|
|
276
354
|
name?: string;
|
|
277
355
|
compact?: boolean;
|
|
@@ -279,8 +357,14 @@ export declare const complexArrayDiscriminatorSchema: {
|
|
|
279
357
|
hideHeading?: boolean;
|
|
280
358
|
additionalProperties?: boolean;
|
|
281
359
|
hideModelNames?: boolean;
|
|
282
|
-
schemas?:
|
|
283
|
-
|
|
360
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
361
|
+
discriminator?: string;
|
|
362
|
+
discriminatorMapping?: Record<string, string>;
|
|
363
|
+
discriminatorPropertyName?: string;
|
|
364
|
+
hasDiscriminator?: boolean;
|
|
365
|
+
}> & Readonly<{
|
|
366
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
367
|
+
}>, {
|
|
284
368
|
level: number;
|
|
285
369
|
noncollapsible: boolean;
|
|
286
370
|
hideModelNames: boolean;
|
|
@@ -341,7 +425,7 @@ export declare const complexArrayDiscriminatorSchema: {
|
|
|
341
425
|
};
|
|
342
426
|
export declare const complexAllOfSchema: {
|
|
343
427
|
component: import("vue").DefineComponent<{
|
|
344
|
-
value?: import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
428
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
345
429
|
level?: number;
|
|
346
430
|
name?: string;
|
|
347
431
|
compact?: boolean;
|
|
@@ -349,9 +433,15 @@ export declare const complexAllOfSchema: {
|
|
|
349
433
|
hideHeading?: boolean;
|
|
350
434
|
additionalProperties?: boolean;
|
|
351
435
|
hideModelNames?: boolean;
|
|
352
|
-
schemas?:
|
|
353
|
-
|
|
354
|
-
|
|
436
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
437
|
+
discriminator?: string;
|
|
438
|
+
discriminatorMapping?: Record<string, string>;
|
|
439
|
+
discriminatorPropertyName?: string;
|
|
440
|
+
hasDiscriminator?: boolean;
|
|
441
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
442
|
+
"update:modelValue": (value: string) => any;
|
|
443
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
444
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
355
445
|
level?: number;
|
|
356
446
|
name?: string;
|
|
357
447
|
compact?: boolean;
|
|
@@ -359,8 +449,14 @@ export declare const complexAllOfSchema: {
|
|
|
359
449
|
hideHeading?: boolean;
|
|
360
450
|
additionalProperties?: boolean;
|
|
361
451
|
hideModelNames?: boolean;
|
|
362
|
-
schemas?:
|
|
363
|
-
|
|
452
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
453
|
+
discriminator?: string;
|
|
454
|
+
discriminatorMapping?: Record<string, string>;
|
|
455
|
+
discriminatorPropertyName?: string;
|
|
456
|
+
hasDiscriminator?: boolean;
|
|
457
|
+
}> & Readonly<{
|
|
458
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
459
|
+
}>, {
|
|
364
460
|
level: number;
|
|
365
461
|
noncollapsible: boolean;
|
|
366
462
|
hideModelNames: boolean;
|
|
@@ -423,7 +519,7 @@ export declare const complexAllOfSchema: {
|
|
|
423
519
|
};
|
|
424
520
|
export declare const arrayValidationSchema: {
|
|
425
521
|
component: import("vue").DefineComponent<{
|
|
426
|
-
value?: import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
522
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
427
523
|
level?: number;
|
|
428
524
|
name?: string;
|
|
429
525
|
compact?: boolean;
|
|
@@ -431,9 +527,15 @@ export declare const arrayValidationSchema: {
|
|
|
431
527
|
hideHeading?: boolean;
|
|
432
528
|
additionalProperties?: boolean;
|
|
433
529
|
hideModelNames?: boolean;
|
|
434
|
-
schemas?:
|
|
435
|
-
|
|
436
|
-
|
|
530
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
531
|
+
discriminator?: string;
|
|
532
|
+
discriminatorMapping?: Record<string, string>;
|
|
533
|
+
discriminatorPropertyName?: string;
|
|
534
|
+
hasDiscriminator?: boolean;
|
|
535
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
536
|
+
"update:modelValue": (value: string) => any;
|
|
537
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
538
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
437
539
|
level?: number;
|
|
438
540
|
name?: string;
|
|
439
541
|
compact?: boolean;
|
|
@@ -441,8 +543,14 @@ export declare const arrayValidationSchema: {
|
|
|
441
543
|
hideHeading?: boolean;
|
|
442
544
|
additionalProperties?: boolean;
|
|
443
545
|
hideModelNames?: boolean;
|
|
444
|
-
schemas?:
|
|
445
|
-
|
|
546
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
547
|
+
discriminator?: string;
|
|
548
|
+
discriminatorMapping?: Record<string, string>;
|
|
549
|
+
discriminatorPropertyName?: string;
|
|
550
|
+
hasDiscriminator?: boolean;
|
|
551
|
+
}> & Readonly<{
|
|
552
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
553
|
+
}>, {
|
|
446
554
|
level: number;
|
|
447
555
|
noncollapsible: boolean;
|
|
448
556
|
hideModelNames: boolean;
|
|
@@ -481,7 +589,7 @@ export declare const arrayValidationSchema: {
|
|
|
481
589
|
};
|
|
482
590
|
export declare const advancedStringFormatsSchema: {
|
|
483
591
|
component: import("vue").DefineComponent<{
|
|
484
|
-
value?: import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
592
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
485
593
|
level?: number;
|
|
486
594
|
name?: string;
|
|
487
595
|
compact?: boolean;
|
|
@@ -489,9 +597,15 @@ export declare const advancedStringFormatsSchema: {
|
|
|
489
597
|
hideHeading?: boolean;
|
|
490
598
|
additionalProperties?: boolean;
|
|
491
599
|
hideModelNames?: boolean;
|
|
492
|
-
schemas?:
|
|
493
|
-
|
|
494
|
-
|
|
600
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
601
|
+
discriminator?: string;
|
|
602
|
+
discriminatorMapping?: Record<string, string>;
|
|
603
|
+
discriminatorPropertyName?: string;
|
|
604
|
+
hasDiscriminator?: boolean;
|
|
605
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
606
|
+
"update:modelValue": (value: string) => any;
|
|
607
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
608
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
495
609
|
level?: number;
|
|
496
610
|
name?: string;
|
|
497
611
|
compact?: boolean;
|
|
@@ -499,8 +613,14 @@ export declare const advancedStringFormatsSchema: {
|
|
|
499
613
|
hideHeading?: boolean;
|
|
500
614
|
additionalProperties?: boolean;
|
|
501
615
|
hideModelNames?: boolean;
|
|
502
|
-
schemas?:
|
|
503
|
-
|
|
616
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
617
|
+
discriminator?: string;
|
|
618
|
+
discriminatorMapping?: Record<string, string>;
|
|
619
|
+
discriminatorPropertyName?: string;
|
|
620
|
+
hasDiscriminator?: boolean;
|
|
621
|
+
}> & Readonly<{
|
|
622
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
623
|
+
}>, {
|
|
504
624
|
level: number;
|
|
505
625
|
noncollapsible: boolean;
|
|
506
626
|
hideModelNames: boolean;
|
|
@@ -542,7 +662,7 @@ export declare const advancedStringFormatsSchema: {
|
|
|
542
662
|
};
|
|
543
663
|
export declare const oneOfCombinedSchema: {
|
|
544
664
|
component: import("vue").DefineComponent<{
|
|
545
|
-
value?: import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
665
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
546
666
|
level?: number;
|
|
547
667
|
name?: string;
|
|
548
668
|
compact?: boolean;
|
|
@@ -550,9 +670,15 @@ export declare const oneOfCombinedSchema: {
|
|
|
550
670
|
hideHeading?: boolean;
|
|
551
671
|
additionalProperties?: boolean;
|
|
552
672
|
hideModelNames?: boolean;
|
|
553
|
-
schemas?:
|
|
554
|
-
|
|
555
|
-
|
|
673
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
674
|
+
discriminator?: string;
|
|
675
|
+
discriminatorMapping?: Record<string, string>;
|
|
676
|
+
discriminatorPropertyName?: string;
|
|
677
|
+
hasDiscriminator?: boolean;
|
|
678
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
679
|
+
"update:modelValue": (value: string) => any;
|
|
680
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
681
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
556
682
|
level?: number;
|
|
557
683
|
name?: string;
|
|
558
684
|
compact?: boolean;
|
|
@@ -560,8 +686,14 @@ export declare const oneOfCombinedSchema: {
|
|
|
560
686
|
hideHeading?: boolean;
|
|
561
687
|
additionalProperties?: boolean;
|
|
562
688
|
hideModelNames?: boolean;
|
|
563
|
-
schemas?:
|
|
564
|
-
|
|
689
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
690
|
+
discriminator?: string;
|
|
691
|
+
discriminatorMapping?: Record<string, string>;
|
|
692
|
+
discriminatorPropertyName?: string;
|
|
693
|
+
hasDiscriminator?: boolean;
|
|
694
|
+
}> & Readonly<{
|
|
695
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
696
|
+
}>, {
|
|
565
697
|
level: number;
|
|
566
698
|
noncollapsible: boolean;
|
|
567
699
|
hideModelNames: boolean;
|
|
@@ -656,7 +788,7 @@ export declare const oneOfCombinedSchema: {
|
|
|
656
788
|
};
|
|
657
789
|
export declare const conditionalFieldsSchema: {
|
|
658
790
|
component: import("vue").DefineComponent<{
|
|
659
|
-
value?: import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
791
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
660
792
|
level?: number;
|
|
661
793
|
name?: string;
|
|
662
794
|
compact?: boolean;
|
|
@@ -664,9 +796,15 @@ export declare const conditionalFieldsSchema: {
|
|
|
664
796
|
hideHeading?: boolean;
|
|
665
797
|
additionalProperties?: boolean;
|
|
666
798
|
hideModelNames?: boolean;
|
|
667
|
-
schemas?:
|
|
668
|
-
|
|
669
|
-
|
|
799
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
800
|
+
discriminator?: string;
|
|
801
|
+
discriminatorMapping?: Record<string, string>;
|
|
802
|
+
discriminatorPropertyName?: string;
|
|
803
|
+
hasDiscriminator?: boolean;
|
|
804
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
805
|
+
"update:modelValue": (value: string) => any;
|
|
806
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
807
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
670
808
|
level?: number;
|
|
671
809
|
name?: string;
|
|
672
810
|
compact?: boolean;
|
|
@@ -674,8 +812,14 @@ export declare const conditionalFieldsSchema: {
|
|
|
674
812
|
hideHeading?: boolean;
|
|
675
813
|
additionalProperties?: boolean;
|
|
676
814
|
hideModelNames?: boolean;
|
|
677
|
-
schemas?:
|
|
678
|
-
|
|
815
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
816
|
+
discriminator?: string;
|
|
817
|
+
discriminatorMapping?: Record<string, string>;
|
|
818
|
+
discriminatorPropertyName?: string;
|
|
819
|
+
hasDiscriminator?: boolean;
|
|
820
|
+
}> & Readonly<{
|
|
821
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
822
|
+
}>, {
|
|
679
823
|
level: number;
|
|
680
824
|
noncollapsible: boolean;
|
|
681
825
|
hideModelNames: boolean;
|
|
@@ -735,7 +879,7 @@ export declare const conditionalFieldsSchema: {
|
|
|
735
879
|
};
|
|
736
880
|
export declare const advancedNumberValidationSchema: {
|
|
737
881
|
component: import("vue").DefineComponent<{
|
|
738
|
-
value?: import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
882
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
739
883
|
level?: number;
|
|
740
884
|
name?: string;
|
|
741
885
|
compact?: boolean;
|
|
@@ -743,9 +887,15 @@ export declare const advancedNumberValidationSchema: {
|
|
|
743
887
|
hideHeading?: boolean;
|
|
744
888
|
additionalProperties?: boolean;
|
|
745
889
|
hideModelNames?: boolean;
|
|
746
|
-
schemas?:
|
|
747
|
-
|
|
748
|
-
|
|
890
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
891
|
+
discriminator?: string;
|
|
892
|
+
discriminatorMapping?: Record<string, string>;
|
|
893
|
+
discriminatorPropertyName?: string;
|
|
894
|
+
hasDiscriminator?: boolean;
|
|
895
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
896
|
+
"update:modelValue": (value: string) => any;
|
|
897
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
898
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
749
899
|
level?: number;
|
|
750
900
|
name?: string;
|
|
751
901
|
compact?: boolean;
|
|
@@ -753,8 +903,14 @@ export declare const advancedNumberValidationSchema: {
|
|
|
753
903
|
hideHeading?: boolean;
|
|
754
904
|
additionalProperties?: boolean;
|
|
755
905
|
hideModelNames?: boolean;
|
|
756
|
-
schemas?:
|
|
757
|
-
|
|
906
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
907
|
+
discriminator?: string;
|
|
908
|
+
discriminatorMapping?: Record<string, string>;
|
|
909
|
+
discriminatorPropertyName?: string;
|
|
910
|
+
hasDiscriminator?: boolean;
|
|
911
|
+
}> & Readonly<{
|
|
912
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
913
|
+
}>, {
|
|
758
914
|
level: number;
|
|
759
915
|
noncollapsible: boolean;
|
|
760
916
|
hideModelNames: boolean;
|
|
@@ -810,7 +966,7 @@ export declare const advancedNumberValidationSchema: {
|
|
|
810
966
|
};
|
|
811
967
|
export declare const nestedArrayTupleSchema: {
|
|
812
968
|
component: import("vue").DefineComponent<{
|
|
813
|
-
value?: import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
969
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
814
970
|
level?: number;
|
|
815
971
|
name?: string;
|
|
816
972
|
compact?: boolean;
|
|
@@ -818,9 +974,15 @@ export declare const nestedArrayTupleSchema: {
|
|
|
818
974
|
hideHeading?: boolean;
|
|
819
975
|
additionalProperties?: boolean;
|
|
820
976
|
hideModelNames?: boolean;
|
|
821
|
-
schemas?:
|
|
822
|
-
|
|
823
|
-
|
|
977
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
978
|
+
discriminator?: string;
|
|
979
|
+
discriminatorMapping?: Record<string, string>;
|
|
980
|
+
discriminatorPropertyName?: string;
|
|
981
|
+
hasDiscriminator?: boolean;
|
|
982
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
983
|
+
"update:modelValue": (value: string) => any;
|
|
984
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
985
|
+
value?: import("@scalar/openapi-types").OpenAPIV3_1.OperationObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
|
|
824
986
|
level?: number;
|
|
825
987
|
name?: string;
|
|
826
988
|
compact?: boolean;
|
|
@@ -828,8 +990,14 @@ export declare const nestedArrayTupleSchema: {
|
|
|
828
990
|
hideHeading?: boolean;
|
|
829
991
|
additionalProperties?: boolean;
|
|
830
992
|
hideModelNames?: boolean;
|
|
831
|
-
schemas?:
|
|
832
|
-
|
|
993
|
+
schemas?: import("../../../features/Operation/types/schemas.js").Schemas;
|
|
994
|
+
discriminator?: string;
|
|
995
|
+
discriminatorMapping?: Record<string, string>;
|
|
996
|
+
discriminatorPropertyName?: string;
|
|
997
|
+
hasDiscriminator?: boolean;
|
|
998
|
+
}> & Readonly<{
|
|
999
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1000
|
+
}>, {
|
|
833
1001
|
level: number;
|
|
834
1002
|
noncollapsible: boolean;
|
|
835
1003
|
hideModelNames: boolean;
|