@scalar/api-reference 1.25.17 → 1.25.19

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.
@@ -3,253 +3,253 @@ import type { OpenApiDocumentConfiguration } from './types';
3
3
  declare const dereferenced: import("vue").Ref<{
4
4
  [x: `x-${string}`]: any;
5
5
  [x: string]: any;
6
- openapi?: "3.0.0" | "3.0.1" | "3.0.2" | "3.0.2";
6
+ openapi?: ("3.0.0" | "3.0.1" | "3.0.2" | "3.0.2") | undefined;
7
7
  swagger?: undefined;
8
8
  info?: {
9
- title?: string;
10
- description?: string;
11
- termsOfService?: string;
9
+ title?: string | undefined;
10
+ description?: string | undefined;
11
+ termsOfService?: string | undefined;
12
12
  contact?: {
13
- name?: string;
14
- url?: string;
15
- email?: string;
13
+ name?: string | undefined;
14
+ url?: string | undefined;
15
+ email?: string | undefined;
16
16
  } | undefined;
17
17
  license?: {
18
- name?: string;
19
- url?: string;
18
+ name?: string | undefined;
19
+ url?: string | undefined;
20
20
  } | undefined;
21
- version?: string;
21
+ version?: string | undefined;
22
22
  } | undefined;
23
23
  servers?: {
24
- url?: string;
25
- description?: string;
24
+ url?: string | undefined;
25
+ description?: string | undefined;
26
26
  variables?: {
27
27
  [variable: string]: import("@scalar/openapi-types").OpenAPIV3.ServerVariableObject;
28
- };
28
+ } | undefined;
29
29
  }[] | undefined;
30
30
  paths?: import("@scalar/openapi-types").OpenAPIV3.PathsObject<{}, {}> | undefined;
31
31
  components?: {
32
32
  schemas?: {
33
33
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.SchemaObject;
34
- };
34
+ } | undefined;
35
35
  responses?: {
36
36
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.ResponseObject;
37
- };
37
+ } | undefined;
38
38
  parameters?: {
39
39
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.ParameterObject;
40
- };
40
+ } | undefined;
41
41
  examples?: {
42
42
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.ExampleObject;
43
- };
43
+ } | undefined;
44
44
  requestBodies?: {
45
45
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.RequestBodyObject;
46
- };
46
+ } | undefined;
47
47
  headers?: {
48
48
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.HeaderObject;
49
- };
49
+ } | undefined;
50
50
  securitySchemes?: {
51
51
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.SecuritySchemeObject;
52
- };
52
+ } | undefined;
53
53
  links?: {
54
54
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.LinkObject;
55
- };
55
+ } | undefined;
56
56
  callbacks?: {
57
57
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.CallbackObject;
58
- };
58
+ } | undefined;
59
59
  } | undefined;
60
- security?: import("@scalar/openapi-types").OpenAPIV3.SecurityRequirementObject[];
60
+ security?: import("@scalar/openapi-types").OpenAPIV3.SecurityRequirementObject[] | undefined;
61
61
  tags?: {
62
62
  [x: `x-${string}`]: any;
63
63
  [x: string]: any;
64
- name?: string;
65
- description?: string;
64
+ name?: string | undefined;
65
+ description?: string | undefined;
66
66
  externalDocs?: {
67
- description?: string;
68
- url?: string;
67
+ description?: string | undefined;
68
+ url?: string | undefined;
69
69
  } | undefined;
70
70
  }[] | undefined;
71
71
  externalDocs?: {
72
- description?: string;
73
- url?: string;
72
+ description?: string | undefined;
73
+ url?: string | undefined;
74
74
  } | undefined;
75
75
  } | {
76
76
  [x: `x-${string}`]: any;
77
77
  [x: string]: any;
78
- openapi?: "3.1.0";
78
+ openapi?: "3.1.0" | undefined;
79
79
  swagger?: undefined;
80
80
  info?: {
81
- description?: string;
82
- title?: string;
83
- termsOfService?: string;
81
+ description?: string | undefined;
82
+ title?: string | undefined;
83
+ termsOfService?: string | undefined;
84
84
  contact?: {
85
- name?: string;
86
- url?: string;
87
- email?: string;
85
+ name?: string | undefined;
86
+ url?: string | undefined;
87
+ email?: string | undefined;
88
88
  } | undefined;
89
- version?: string;
90
- summary?: string;
89
+ version?: string | undefined;
90
+ summary?: string | undefined;
91
91
  license?: {
92
- url?: string;
93
- name?: string;
94
- identifier?: string;
92
+ url?: string | undefined;
93
+ name?: string | undefined;
94
+ identifier?: string | undefined;
95
95
  } | undefined;
96
96
  } | undefined;
97
- jsonSchemaDialect?: string;
97
+ jsonSchemaDialect?: string | undefined;
98
98
  servers?: {
99
- url?: string;
100
- description?: string;
101
- variables?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject>;
99
+ url?: string | undefined;
100
+ description?: string | undefined;
101
+ variables?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject> | undefined;
102
102
  }[] | undefined;
103
103
  paths?: import("@scalar/openapi-types").OpenAPIV3_1.PathsObject<{}, {}> | undefined;
104
104
  components?: {
105
- schemas?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject>;
106
- responses?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ResponseObject>;
107
- parameters?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ParameterObject>;
108
- examples?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ExampleObject>;
109
- requestBodies?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.RequestBodyObject>;
110
- headers?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.HeaderObject>;
111
- securitySchemes?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.SecuritySchemeObject>;
112
- links?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.LinkObject>;
113
- callbacks?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.CallbackObject>;
114
- pathItems?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.PathItemObject>;
105
+ schemas?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | undefined;
106
+ responses?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ResponseObject> | undefined;
107
+ parameters?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ParameterObject> | undefined;
108
+ examples?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ExampleObject> | undefined;
109
+ requestBodies?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.RequestBodyObject> | undefined;
110
+ headers?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.HeaderObject> | undefined;
111
+ securitySchemes?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.SecuritySchemeObject> | undefined;
112
+ links?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.LinkObject> | undefined;
113
+ callbacks?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.CallbackObject> | undefined;
114
+ pathItems?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.PathItemObject> | undefined;
115
115
  } | undefined;
116
- webhooks?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.PathItemObject | import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject>;
116
+ webhooks?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.PathItemObject | import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject> | undefined;
117
117
  } | {
118
118
  [x: `x-${string}`]: any;
119
119
  [x: string]: any;
120
- openapi?: "3.1.0";
120
+ openapi?: "3.1.0" | undefined;
121
121
  swagger?: undefined;
122
122
  info?: {
123
- description?: string;
124
- title?: string;
125
- termsOfService?: string;
123
+ description?: string | undefined;
124
+ title?: string | undefined;
125
+ termsOfService?: string | undefined;
126
126
  contact?: {
127
- name?: string;
128
- url?: string;
129
- email?: string;
127
+ name?: string | undefined;
128
+ url?: string | undefined;
129
+ email?: string | undefined;
130
130
  } | undefined;
131
- version?: string;
132
- summary?: string;
131
+ version?: string | undefined;
132
+ summary?: string | undefined;
133
133
  license?: {
134
- url?: string;
135
- name?: string;
136
- identifier?: string;
134
+ url?: string | undefined;
135
+ name?: string | undefined;
136
+ identifier?: string | undefined;
137
137
  } | undefined;
138
138
  } | undefined;
139
- jsonSchemaDialect?: string;
139
+ jsonSchemaDialect?: string | undefined;
140
140
  servers?: {
141
- url?: string;
142
- description?: string;
143
- variables?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject>;
141
+ url?: string | undefined;
142
+ description?: string | undefined;
143
+ variables?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject> | undefined;
144
144
  }[] | undefined;
145
- webhooks?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.PathItemObject | import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject>;
145
+ webhooks?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.PathItemObject | import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject> | undefined;
146
146
  paths?: import("@scalar/openapi-types").OpenAPIV3_1.PathsObject<{}, {}> | undefined;
147
147
  components?: {
148
- schemas?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject>;
149
- responses?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ResponseObject>;
150
- parameters?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ParameterObject>;
151
- examples?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ExampleObject>;
152
- requestBodies?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.RequestBodyObject>;
153
- headers?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.HeaderObject>;
154
- securitySchemes?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.SecuritySchemeObject>;
155
- links?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.LinkObject>;
156
- callbacks?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.CallbackObject>;
157
- pathItems?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.PathItemObject>;
148
+ schemas?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | undefined;
149
+ responses?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ResponseObject> | undefined;
150
+ parameters?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ParameterObject> | undefined;
151
+ examples?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ExampleObject> | undefined;
152
+ requestBodies?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.RequestBodyObject> | undefined;
153
+ headers?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.HeaderObject> | undefined;
154
+ securitySchemes?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.SecuritySchemeObject> | undefined;
155
+ links?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.LinkObject> | undefined;
156
+ callbacks?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.CallbackObject> | undefined;
157
+ pathItems?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.PathItemObject> | undefined;
158
158
  } | undefined;
159
159
  } | {
160
160
  [x: `x-${string}`]: any;
161
161
  [x: string]: any;
162
- openapi?: "3.1.0";
162
+ openapi?: "3.1.0" | undefined;
163
163
  swagger?: undefined;
164
164
  info?: {
165
- description?: string;
166
- title?: string;
167
- termsOfService?: string;
165
+ description?: string | undefined;
166
+ title?: string | undefined;
167
+ termsOfService?: string | undefined;
168
168
  contact?: {
169
- name?: string;
170
- url?: string;
171
- email?: string;
169
+ name?: string | undefined;
170
+ url?: string | undefined;
171
+ email?: string | undefined;
172
172
  } | undefined;
173
- version?: string;
174
- summary?: string;
173
+ version?: string | undefined;
174
+ summary?: string | undefined;
175
175
  license?: {
176
- url?: string;
177
- name?: string;
178
- identifier?: string;
176
+ url?: string | undefined;
177
+ name?: string | undefined;
178
+ identifier?: string | undefined;
179
179
  } | undefined;
180
180
  } | undefined;
181
- jsonSchemaDialect?: string;
181
+ jsonSchemaDialect?: string | undefined;
182
182
  servers?: {
183
- url?: string;
184
- description?: string;
185
- variables?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject>;
183
+ url?: string | undefined;
184
+ description?: string | undefined;
185
+ variables?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject> | undefined;
186
186
  }[] | undefined;
187
187
  components?: {
188
- schemas?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject>;
189
- responses?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ResponseObject>;
190
- parameters?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ParameterObject>;
191
- examples?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ExampleObject>;
192
- requestBodies?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.RequestBodyObject>;
193
- headers?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.HeaderObject>;
194
- securitySchemes?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.SecuritySchemeObject>;
195
- links?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.LinkObject>;
196
- callbacks?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.CallbackObject>;
197
- pathItems?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.PathItemObject>;
188
+ schemas?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | undefined;
189
+ responses?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ResponseObject> | undefined;
190
+ parameters?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ParameterObject> | undefined;
191
+ examples?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ExampleObject> | undefined;
192
+ requestBodies?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.RequestBodyObject> | undefined;
193
+ headers?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.HeaderObject> | undefined;
194
+ securitySchemes?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.SecuritySchemeObject> | undefined;
195
+ links?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.LinkObject> | undefined;
196
+ callbacks?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.CallbackObject> | undefined;
197
+ pathItems?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.PathItemObject> | undefined;
198
198
  } | undefined;
199
199
  paths?: import("@scalar/openapi-types").OpenAPIV3_1.PathsObject<{}, {}> | undefined;
200
- webhooks?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.PathItemObject | import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject>;
200
+ webhooks?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.PathItemObject | import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject> | undefined;
201
201
  } | {
202
202
  [x: `x-${string}`]: any;
203
203
  [x: string]: any;
204
- swagger?: "2.0";
205
- openapi?: never;
206
- basePath?: string;
204
+ swagger?: "2.0" | undefined;
205
+ openapi?: never | undefined;
206
+ basePath?: string | undefined;
207
207
  consumes?: string[] | undefined;
208
- definitions?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject;
208
+ definitions?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | undefined;
209
209
  externalDocs?: {
210
210
  [x: string]: any;
211
- description?: string;
212
- url?: string;
211
+ description?: string | undefined;
212
+ url?: string | undefined;
213
213
  } | undefined;
214
- host?: string;
214
+ host?: string | undefined;
215
215
  info?: {
216
- title?: string;
217
- description?: string;
218
- termsOfService?: string;
216
+ title?: string | undefined;
217
+ description?: string | undefined;
218
+ termsOfService?: string | undefined;
219
219
  contact?: {
220
- name?: string;
221
- url?: string;
222
- email?: string;
220
+ name?: string | undefined;
221
+ url?: string | undefined;
222
+ email?: string | undefined;
223
223
  } | undefined;
224
224
  license?: {
225
- name?: string;
226
- url?: string;
225
+ name?: string | undefined;
226
+ url?: string | undefined;
227
227
  } | undefined;
228
- version?: string;
228
+ version?: string | undefined;
229
229
  } | undefined;
230
- parameters?: import("@scalar/openapi-types").OpenAPIV2.ParametersDefinitionsObject;
230
+ parameters?: import("@scalar/openapi-types").OpenAPIV2.ParametersDefinitionsObject | undefined;
231
231
  paths?: import("@scalar/openapi-types").OpenAPIV2.PathsObject<{}> | undefined;
232
232
  produces?: string[] | undefined;
233
- responses?: import("@scalar/openapi-types").OpenAPIV2.ResponsesDefinitionsObject;
234
- schemes?: string[];
235
- security?: import("@scalar/openapi-types").OpenAPIV2.SecurityRequirementObject[];
236
- securityDefinitions?: import("@scalar/openapi-types").OpenAPIV2.SecurityDefinitionsObject;
233
+ responses?: import("@scalar/openapi-types").OpenAPIV2.ResponsesDefinitionsObject | undefined;
234
+ schemes?: string[] | undefined;
235
+ security?: import("@scalar/openapi-types").OpenAPIV2.SecurityRequirementObject[] | undefined;
236
+ securityDefinitions?: import("@scalar/openapi-types").OpenAPIV2.SecurityDefinitionsObject | undefined;
237
237
  tags?: {
238
238
  [x: `x-${string}`]: any;
239
239
  [x: string]: any;
240
- name?: string;
241
- description?: string;
240
+ name?: string | undefined;
241
+ description?: string | undefined;
242
242
  externalDocs?: {
243
243
  [x: string]: any;
244
- description?: string;
245
- url?: string;
244
+ description?: string | undefined;
245
+ url?: string | undefined;
246
246
  } | undefined;
247
247
  }[] | undefined;
248
248
  } | undefined>;
249
249
  declare const version: import("vue").Ref<string | undefined>;
250
250
  declare const errors: import("vue").Ref<{
251
251
  message: string;
252
- code?: keyof typeof import("@scalar/openapi-parser").ERRORS | string;
252
+ code?: (keyof typeof import("@scalar/openapi-parser").ERRORS | string) | undefined;
253
253
  }[]>;
254
254
  declare const parsedSpec: {
255
255
  tags?: {
@@ -258,48 +258,48 @@ declare const parsedSpec: {
258
258
  operations: {
259
259
  httpVerb: "GET" | "HEAD" | "PATCH" | "POST" | "PUT" | "TRACE" | "CONNECT" | "DELETE" | "OPTIONS";
260
260
  path: string;
261
- operationId?: string;
262
- name?: string;
263
- description?: string;
261
+ operationId?: string | undefined;
262
+ name?: string | undefined;
263
+ description?: string | undefined;
264
264
  information?: {
265
- description?: string;
266
- operationId?: string | number;
265
+ description?: string | undefined;
266
+ operationId?: (string | number) | undefined;
267
267
  parameters?: {
268
268
  name: string;
269
- in?: string;
270
- description?: string;
271
- required?: boolean;
272
- deprecated?: boolean;
273
- allowEmptyValue?: boolean;
274
- style?: "form" | "simple";
275
- explode?: boolean;
276
- allowReserved?: boolean;
269
+ in?: string | undefined;
270
+ description?: string | undefined;
271
+ required?: boolean | undefined;
272
+ deprecated?: boolean | undefined;
273
+ allowEmptyValue?: boolean | undefined;
274
+ style?: ("form" | "simple") | undefined;
275
+ explode?: boolean | undefined;
276
+ allowReserved?: boolean | undefined;
277
277
  schema?: {
278
278
  type: string;
279
- name?: string;
279
+ name?: string | undefined;
280
280
  example?: any;
281
281
  default?: any;
282
- format?: string;
283
- description?: string;
284
- properties?: Record<string, import("@scalar/types/legacy").Schema>;
282
+ format?: string | undefined;
283
+ description?: string | undefined;
284
+ properties?: Record<string, import("@scalar/types/legacy").Schema> | undefined;
285
285
  } | undefined;
286
286
  example?: any;
287
287
  examples?: (Map<string, any> & Omit<Map<string, any>, keyof Map<any, any>>) | undefined;
288
- content?: import("@scalar/types/legacy").RequestBodyMimeTypes;
288
+ content?: import("@scalar/types/legacy").RequestBodyMimeTypes | undefined;
289
289
  headers?: {
290
290
  [key: string]: OpenAPI.HeaderObject;
291
- };
291
+ } | undefined;
292
292
  }[] | undefined;
293
- responses?: Record<string, OpenAPI.ResponseObject>;
294
- security?: import("@scalar/openapi-types").OpenAPIV3.SecurityRequirementObject[];
293
+ responses?: Record<string, OpenAPI.ResponseObject> | undefined;
294
+ security?: import("@scalar/openapi-types").OpenAPIV3.SecurityRequirementObject[] | undefined;
295
295
  requestBody?: {
296
- description?: string;
297
- required?: boolean;
298
- content?: import("@scalar/types/legacy").RequestBodyMimeTypes;
296
+ description?: string | undefined;
297
+ required?: boolean | undefined;
298
+ content?: import("@scalar/types/legacy").RequestBodyMimeTypes | undefined;
299
299
  } | undefined;
300
- summary?: string;
301
- tags?: string[];
302
- deprecated?: boolean;
300
+ summary?: string | undefined;
301
+ tags?: string[] | undefined;
302
+ deprecated?: boolean | undefined;
303
303
  'x-custom-examples'?: {
304
304
  lang: string;
305
305
  label: string;
@@ -318,76 +318,76 @@ declare const parsedSpec: {
318
318
  } | undefined;
319
319
  pathParameters?: {
320
320
  name: string;
321
- in?: string;
322
- description?: string;
323
- required?: boolean;
324
- deprecated?: boolean;
325
- allowEmptyValue?: boolean;
326
- style?: "form" | "simple";
327
- explode?: boolean;
328
- allowReserved?: boolean;
321
+ in?: string | undefined;
322
+ description?: string | undefined;
323
+ required?: boolean | undefined;
324
+ deprecated?: boolean | undefined;
325
+ allowEmptyValue?: boolean | undefined;
326
+ style?: ("form" | "simple") | undefined;
327
+ explode?: boolean | undefined;
328
+ allowReserved?: boolean | undefined;
329
329
  schema?: {
330
330
  type: string;
331
- name?: string;
331
+ name?: string | undefined;
332
332
  example?: any;
333
333
  default?: any;
334
- format?: string;
335
- description?: string;
336
- properties?: Record<string, import("@scalar/types/legacy").Schema>;
334
+ format?: string | undefined;
335
+ description?: string | undefined;
336
+ properties?: Record<string, import("@scalar/types/legacy").Schema> | undefined;
337
337
  } | undefined;
338
338
  example?: any;
339
339
  examples?: (Map<string, any> & Omit<Map<string, any>, keyof Map<any, any>>) | undefined;
340
- content?: import("@scalar/types/legacy").RequestBodyMimeTypes;
340
+ content?: import("@scalar/types/legacy").RequestBodyMimeTypes | undefined;
341
341
  headers?: {
342
342
  [key: string]: OpenAPI.HeaderObject;
343
- };
343
+ } | undefined;
344
344
  }[] | undefined;
345
345
  }[];
346
- 'x-displayName'?: string;
346
+ 'x-displayName'?: string | undefined;
347
347
  }[] | undefined;
348
348
  info: {
349
- title?: string;
350
- description?: string;
351
- termsOfService?: string;
349
+ title?: string | undefined;
350
+ description?: string | undefined;
351
+ termsOfService?: string | undefined;
352
352
  contact?: {
353
- name?: string;
354
- url?: string;
355
- email?: string;
353
+ name?: string | undefined;
354
+ url?: string | undefined;
355
+ email?: string | undefined;
356
356
  } | undefined;
357
357
  license?: {
358
- name?: string;
359
- url?: string;
358
+ name?: string | undefined;
359
+ url?: string | undefined;
360
360
  } | undefined;
361
- version?: string;
361
+ version?: string | undefined;
362
362
  } | {
363
- title?: string;
364
- description?: string;
365
- termsOfService?: string;
363
+ title?: string | undefined;
364
+ description?: string | undefined;
365
+ termsOfService?: string | undefined;
366
366
  contact?: {
367
- name?: string;
368
- url?: string;
369
- email?: string;
367
+ name?: string | undefined;
368
+ url?: string | undefined;
369
+ email?: string | undefined;
370
370
  } | undefined;
371
371
  license?: {
372
- name?: string;
373
- url?: string;
372
+ name?: string | undefined;
373
+ url?: string | undefined;
374
374
  } | undefined;
375
- version?: string;
375
+ version?: string | undefined;
376
376
  } | {
377
- description?: string;
378
- title?: string;
379
- termsOfService?: string;
377
+ description?: string | undefined;
378
+ title?: string | undefined;
379
+ termsOfService?: string | undefined;
380
380
  contact?: {
381
- name?: string;
382
- url?: string;
383
- email?: string;
381
+ name?: string | undefined;
382
+ url?: string | undefined;
383
+ email?: string | undefined;
384
384
  } | undefined;
385
- version?: string;
386
- summary?: string;
385
+ version?: string | undefined;
386
+ summary?: string | undefined;
387
387
  license?: {
388
- url?: string;
389
- name?: string;
390
- identifier?: string;
388
+ url?: string | undefined;
389
+ name?: string | undefined;
390
+ identifier?: string | undefined;
391
391
  } | undefined;
392
392
  } | undefined;
393
393
  host?: import("@scalar/openapi-types").OpenAPIV2.Document["host"];
@@ -395,68 +395,68 @@ declare const parsedSpec: {
395
395
  schemes?: import("@scalar/openapi-types").OpenAPIV2.Document["schemes"];
396
396
  externalDocs?: {
397
397
  url: string;
398
- description?: string;
398
+ description?: string | undefined;
399
399
  } | undefined;
400
400
  servers?: {
401
- url?: string;
402
- description?: string;
401
+ url?: string | undefined;
402
+ description?: string | undefined;
403
403
  variables?: {
404
404
  [variable: string]: import("@scalar/openapi-types").OpenAPIV3.ServerVariableObject;
405
- };
405
+ } | undefined;
406
406
  }[] | {
407
- url?: string;
408
- description?: string;
409
- variables?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject>;
407
+ url?: string | undefined;
408
+ description?: string | undefined;
409
+ variables?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject> | undefined;
410
410
  }[] | undefined;
411
411
  components?: {
412
412
  schemas?: {
413
413
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.SchemaObject;
414
- };
414
+ } | undefined;
415
415
  responses?: {
416
416
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.ResponseObject;
417
- };
417
+ } | undefined;
418
418
  parameters?: {
419
419
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.ParameterObject;
420
- };
420
+ } | undefined;
421
421
  examples?: {
422
422
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.ExampleObject;
423
- };
423
+ } | undefined;
424
424
  requestBodies?: {
425
425
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.RequestBodyObject;
426
- };
426
+ } | undefined;
427
427
  headers?: {
428
428
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.HeaderObject;
429
- };
429
+ } | undefined;
430
430
  securitySchemes?: {
431
431
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.SecuritySchemeObject;
432
- };
432
+ } | undefined;
433
433
  links?: {
434
434
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.LinkObject;
435
- };
435
+ } | undefined;
436
436
  callbacks?: {
437
437
  [key: string]: import("@scalar/openapi-types").OpenAPIV3.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3.CallbackObject;
438
- };
438
+ } | undefined;
439
439
  } | {
440
- schemas?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject>;
441
- responses?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ResponseObject>;
442
- parameters?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ParameterObject>;
443
- examples?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ExampleObject>;
444
- requestBodies?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.RequestBodyObject>;
445
- headers?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.HeaderObject>;
446
- securitySchemes?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.SecuritySchemeObject>;
447
- links?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.LinkObject>;
448
- callbacks?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.CallbackObject>;
449
- pathItems?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.PathItemObject>;
440
+ schemas?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | undefined;
441
+ responses?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ResponseObject> | undefined;
442
+ parameters?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ParameterObject> | undefined;
443
+ examples?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.ExampleObject> | undefined;
444
+ requestBodies?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.RequestBodyObject> | undefined;
445
+ headers?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.HeaderObject> | undefined;
446
+ securitySchemes?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.SecuritySchemeObject> | undefined;
447
+ links?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.LinkObject> | undefined;
448
+ callbacks?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.CallbackObject> | undefined;
449
+ pathItems?: Record<string, import("@scalar/openapi-types").OpenAPIV3_1.ReferenceObject | import("@scalar/openapi-types").OpenAPIV3_1.PathItemObject> | undefined;
450
450
  } | undefined;
451
- webhooks?: import("@scalar/types/legacy").Webhooks;
452
- definitions?: import("@scalar/types/legacy").Definitions;
451
+ webhooks?: import("@scalar/types/legacy").Webhooks | undefined;
452
+ definitions?: import("@scalar/types/legacy").Definitions | undefined;
453
453
  swagger?: import("@scalar/openapi-types").OpenAPIV2.Document["swagger"];
454
454
  openapi?: import("@scalar/openapi-types").OpenAPIV3.Document["openapi"] | import("@scalar/openapi-types").OpenAPIV3_1.Document["openapi"];
455
455
  'x-tagGroups'?: {
456
456
  name: string;
457
457
  tags: string[];
458
458
  }[] | undefined;
459
- security?: import("@scalar/openapi-types").OpenAPIV3.SecurityRequirementObject[];
459
+ security?: import("@scalar/openapi-types").OpenAPIV3.SecurityRequirementObject[] | undefined;
460
460
  };
461
461
  declare function __VLS_template(): Readonly<{
462
462
  default(props: {