@scalar/workspace-store 0.49.3 → 0.51.1
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 +122 -0
- package/dist/client.d.ts +2 -3
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +58 -25
- package/dist/entities/auth/schema.d.ts +25 -5
- package/dist/entities/auth/schema.d.ts.map +1 -1
- package/dist/events/bus.d.ts +70 -0
- package/dist/events/bus.d.ts.map +1 -1
- package/dist/events/bus.js +48 -11
- package/dist/events/definitions/analytics.d.ts +0 -12
- package/dist/events/definitions/analytics.d.ts.map +1 -1
- package/dist/events/definitions/auth.d.ts +44 -6
- package/dist/events/definitions/auth.d.ts.map +1 -1
- package/dist/events/definitions/index.d.ts +3 -2
- package/dist/events/definitions/index.d.ts.map +1 -1
- package/dist/events/definitions/log.d.ts +18 -0
- package/dist/events/definitions/log.d.ts.map +1 -0
- package/dist/events/definitions/log.js +1 -0
- package/dist/events/definitions/operation.d.ts +1 -1
- package/dist/events/definitions/operation.d.ts.map +1 -1
- package/dist/events/definitions/ui.d.ts +18 -1
- package/dist/events/definitions/ui.d.ts.map +1 -1
- package/dist/events/index.d.ts +1 -1
- package/dist/events/index.d.ts.map +1 -1
- package/dist/helpers/get-resolved-ref.d.ts +6 -0
- package/dist/helpers/get-resolved-ref.d.ts.map +1 -1
- package/dist/helpers/get-resolved-ref.js +9 -0
- package/dist/helpers/is-hidden.d.ts +8 -0
- package/dist/helpers/is-hidden.d.ts.map +1 -0
- package/dist/helpers/is-hidden.js +5 -0
- package/dist/helpers/merge-object.d.ts +1 -1
- package/dist/helpers/merge-object.d.ts.map +1 -1
- package/dist/mutators/auth.d.ts +22 -3
- package/dist/mutators/auth.d.ts.map +1 -1
- package/dist/mutators/auth.js +213 -37
- package/dist/mutators/cookie.d.ts.map +1 -1
- package/dist/mutators/cookie.js +3 -2
- package/dist/mutators/document.d.ts.map +1 -1
- package/dist/mutators/document.js +5 -4
- package/dist/mutators/environment.d.ts.map +1 -1
- package/dist/mutators/environment.js +12 -5
- package/dist/mutators/index.d.ts +4 -0
- package/dist/mutators/index.d.ts.map +1 -1
- package/dist/mutators/operation/body.d.ts.map +1 -1
- package/dist/mutators/operation/body.js +6 -2
- package/dist/mutators/operation/extensions.d.ts.map +1 -1
- package/dist/mutators/operation/extensions.js +5 -1
- package/dist/mutators/operation/history.d.ts.map +1 -1
- package/dist/mutators/operation/history.js +7 -3
- package/dist/mutators/operation/operation.d.ts.map +1 -1
- package/dist/mutators/operation/operation.js +15 -10
- package/dist/mutators/operation/parameters.d.ts.map +1 -1
- package/dist/mutators/operation/parameters.js +12 -5
- package/dist/mutators/server.d.ts.map +1 -1
- package/dist/mutators/server.js +2 -1
- package/dist/mutators/tag.d.ts.map +1 -1
- package/dist/mutators/tag.js +9 -4
- package/dist/navigation/get-navigation-options.d.ts +1 -1
- package/dist/navigation/get-navigation-options.d.ts.map +1 -1
- package/dist/navigation/get-navigation-options.js +1 -0
- package/dist/navigation/helpers/get-openapi-object.d.ts.map +1 -1
- package/dist/navigation/helpers/get-openapi-object.js +5 -0
- package/dist/navigation/helpers/traverse-document.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-document.js +8 -2
- package/dist/navigation/helpers/traverse-paths.d.ts +4 -2
- package/dist/navigation/helpers/traverse-paths.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-paths.js +9 -6
- package/dist/navigation/helpers/traverse-schemas.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-schemas.js +9 -4
- package/dist/navigation/helpers/traverse-tags.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-tags.js +2 -1
- package/dist/navigation/helpers/traverse-webhooks.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-webhooks.js +4 -3
- package/dist/navigation/helpers/update-order-ids.d.ts.map +1 -1
- package/dist/navigation/helpers/update-order-ids.js +4 -1
- package/dist/navigation/types.d.ts +4 -0
- package/dist/navigation/types.d.ts.map +1 -1
- package/dist/persistence/index.d.ts +123 -80
- package/dist/persistence/index.d.ts.map +1 -1
- package/dist/persistence/index.js +233 -167
- package/dist/persistence/migrations/v2-team-to-local.d.ts +22 -5
- package/dist/persistence/migrations/v2-team-to-local.d.ts.map +1 -1
- package/dist/persistence/migrations/v2-team-to-local.js +195 -137
- package/dist/request-example/builder/body/build-request-body.d.ts.map +1 -1
- package/dist/request-example/builder/body/build-request-body.js +66 -2
- package/dist/request-example/builder/build-request.d.ts +24 -3
- package/dist/request-example/builder/build-request.d.ts.map +1 -1
- package/dist/request-example/builder/build-request.js +89 -18
- package/dist/request-example/builder/index.d.ts +2 -1
- package/dist/request-example/builder/index.d.ts.map +1 -1
- package/dist/request-example/builder/index.js +2 -1
- package/dist/request-example/builder/request-factory.d.ts.map +1 -1
- package/dist/request-example/builder/request-factory.js +5 -8
- package/dist/request-example/builder/resolve-request-factory-url.d.ts +18 -1
- package/dist/request-example/builder/resolve-request-factory-url.d.ts.map +1 -1
- package/dist/request-example/builder/resolve-request-factory-url.js +29 -4
- package/dist/request-example/context/environment.d.ts.map +1 -1
- package/dist/request-example/context/environment.js +2 -1
- package/dist/request-example/context/get-request-example-context.d.ts.map +1 -1
- package/dist/request-example/context/get-request-example-context.js +7 -0
- package/dist/request-example/context/headers.d.ts +28 -13
- package/dist/request-example/context/headers.d.ts.map +1 -1
- package/dist/request-example/context/headers.js +84 -19
- package/dist/request-example/context/index.d.ts +1 -0
- package/dist/request-example/context/index.d.ts.map +1 -1
- package/dist/request-example/context/index.js +1 -0
- package/dist/request-example/context/security/get-selected-security.d.ts.map +1 -1
- package/dist/request-example/context/security/get-selected-security.js +3 -6
- package/dist/request-example/context/servers.d.ts.map +1 -1
- package/dist/request-example/context/servers.js +3 -3
- package/dist/request-example/index.d.ts +3 -3
- package/dist/request-example/index.d.ts.map +1 -1
- package/dist/request-example/index.js +2 -2
- package/dist/resolve.d.ts.map +1 -1
- package/dist/resolve.js +1 -8
- package/dist/schemas/extensions/document/x-scalar-environments.d.ts +6 -6
- package/dist/schemas/extensions/document/x-scalar-original-source-url.d.ts +15 -0
- package/dist/schemas/extensions/document/x-scalar-original-source-url.d.ts.map +1 -0
- package/dist/schemas/extensions/document/x-scalar-original-source-url.js +16 -0
- package/dist/schemas/extensions/operation/x-badge.d.ts +2 -2
- package/dist/schemas/extensions/operation/x-scalar-stability.d.ts +1 -1
- package/dist/schemas/extensions/schema/x-enum-descriptions.d.ts +2 -2
- package/dist/schemas/extensions/security/x-scalar-credentials-location.d.ts +1 -1
- package/dist/schemas/extensions/security/x-use-pkce.d.ts +1 -1
- package/dist/schemas/extensions/workspace/x-scalar-active-proxy.d.ts +1 -1
- package/dist/schemas/inmemory-workspace.d.ts +3 -4631
- package/dist/schemas/inmemory-workspace.d.ts.map +1 -1
- package/dist/schemas/inmemory-workspace.js +1 -15
- package/dist/schemas/reference-config/index.d.ts +6 -2
- package/dist/schemas/reference-config/index.d.ts.map +1 -1
- package/dist/schemas/reference-config/settings.d.ts +5 -1
- package/dist/schemas/reference-config/settings.d.ts.map +1 -1
- package/dist/schemas/type-guards.d.ts +24 -0
- package/dist/schemas/type-guards.d.ts.map +1 -0
- package/dist/schemas/type-guards.js +30 -0
- package/dist/schemas/v3.1/openapi/index.d.ts +4 -3
- package/dist/schemas/v3.1/openapi/index.d.ts.map +1 -1
- package/dist/schemas/v3.1/openapi/index.js +2 -3
- package/dist/schemas/v3.1/strict/encoding.d.ts +12 -0
- package/dist/schemas/v3.1/strict/encoding.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/encoding.js +11 -0
- package/dist/schemas/v3.1/strict/openapi-document.d.ts +179 -39
- package/dist/schemas/v3.1/strict/openapi-document.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/openapi-document.js +2 -2
- package/dist/schemas/workspace-specification/index.d.ts +1 -1
- package/dist/schemas/workspace.d.ts +4 -4377
- package/dist/schemas/workspace.d.ts.map +1 -1
- package/dist/schemas/workspace.js +0 -8
- package/dist/schemas.d.ts +2 -1
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +1 -1
- package/package.json +8 -7
|
@@ -3,6 +3,7 @@ import { type XScalarEnvironments } from '../../../schemas/extensions/document/x
|
|
|
3
3
|
import { type XScalarIcon } from '../../../schemas/extensions/document/x-scalar-icon.js';
|
|
4
4
|
import { type XScalarIsDirty } from '../../../schemas/extensions/document/x-scalar-is-dirty.js';
|
|
5
5
|
import { type XScalarOriginalDocumentHash } from '../../../schemas/extensions/document/x-scalar-original-document-hash.js';
|
|
6
|
+
import { type XScalarOriginalSourceUrl } from '../../../schemas/extensions/document/x-scalar-original-source-url.js';
|
|
6
7
|
import { type XScalarRegistryMeta } from '../../../schemas/extensions/document/x-scalar-registry-meta.js';
|
|
7
8
|
import { type XScalarWatchMode } from '../../../schemas/extensions/document/x-scalar-watch-mode.js';
|
|
8
9
|
import { type XPostResponse } from '../../../schemas/extensions/general/x-post-response.js';
|
|
@@ -22,8 +23,9 @@ import { type ServerObject } from './server.js';
|
|
|
22
23
|
import { type TagObject } from './tag.js';
|
|
23
24
|
export declare const OpenApiExtensionsSchema: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
24
25
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
25
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
26
26
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
27
|
+
}>, import("@scalar/typebox").TObject<{
|
|
28
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
27
29
|
}>, import("@scalar/typebox").TObject<{
|
|
28
30
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
29
31
|
name: import("@scalar/typebox").TString;
|
|
@@ -81,10 +83,8 @@ export declare const OpenApiExtensionsSchema: import("@scalar/typebox").TInterse
|
|
|
81
83
|
}>]>;
|
|
82
84
|
export type OpenAPIExtensions = Partial<{
|
|
83
85
|
'x-original-oas-version': string;
|
|
84
|
-
/** Original document source url / when loading a document from an external source */
|
|
85
|
-
'x-scalar-original-source-url': string;
|
|
86
86
|
[extensions.document.navigation]: TraversedDocument;
|
|
87
|
-
}> & XScalarOriginalDocumentHash & XTagGroups & XScalarEnvironments & XScalarActiveEnvironment & XScalarSelectedServer & XScalarIcon & XScalarOrder & XScalarCookies & XScalarIsDirty & XScalarWatchMode & XScalarRegistryMeta & XPreRequest & XPostResponse;
|
|
87
|
+
}> & XScalarOriginalSourceUrl & XScalarOriginalDocumentHash & XTagGroups & XScalarEnvironments & XScalarActiveEnvironment & XScalarSelectedServer & XScalarIcon & XScalarOrder & XScalarCookies & XScalarIsDirty & XScalarWatchMode & XScalarRegistryMeta & XPreRequest & XPostResponse;
|
|
88
88
|
export type OpenApiDocument = {
|
|
89
89
|
/** REQUIRED. This string MUST be the version number of the OpenAPI Specification that the OpenAPI Document uses. The openapi field SHOULD be used by tooling to interpret the OpenAPI Document. This is not related to the API info.version string. */
|
|
90
90
|
openapi: string;
|
|
@@ -1026,6 +1026,9 @@ export declare const OpenAPIDocumentSchema: import("@scalar/typebox").TImport<{
|
|
|
1026
1026
|
}>]>, import("@scalar/typebox").TObject<{
|
|
1027
1027
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
1028
1028
|
}>]>]>>>;
|
|
1029
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
1030
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1031
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1029
1032
|
}>;
|
|
1030
1033
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
1031
1034
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -1371,8 +1374,9 @@ export declare const OpenAPIDocumentSchema: import("@scalar/typebox").TImport<{
|
|
|
1371
1374
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
1372
1375
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1373
1376
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1374
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1375
1377
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
1378
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1379
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1376
1380
|
}>, import("@scalar/typebox").TObject<{
|
|
1377
1381
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1378
1382
|
name: import("@scalar/typebox").TString;
|
|
@@ -2470,6 +2474,9 @@ export declare const ComponentsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
2470
2474
|
}>]>, import("@scalar/typebox").TObject<{
|
|
2471
2475
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
2472
2476
|
}>]>]>>>;
|
|
2477
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
2478
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
2479
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
2473
2480
|
}>;
|
|
2474
2481
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
2475
2482
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -2815,8 +2822,9 @@ export declare const ComponentsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
2815
2822
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
2816
2823
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
2817
2824
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
2818
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
2819
2825
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
2826
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2827
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
2820
2828
|
}>, import("@scalar/typebox").TObject<{
|
|
2821
2829
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
2822
2830
|
name: import("@scalar/typebox").TString;
|
|
@@ -3914,6 +3922,9 @@ export declare const SecurityRequirementObjectSchema: import("@scalar/typebox").
|
|
|
3914
3922
|
}>]>, import("@scalar/typebox").TObject<{
|
|
3915
3923
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
3916
3924
|
}>]>]>>>;
|
|
3925
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
3926
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
3927
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
3917
3928
|
}>;
|
|
3918
3929
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
3919
3930
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -4259,8 +4270,9 @@ export declare const SecurityRequirementObjectSchema: import("@scalar/typebox").
|
|
|
4259
4270
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
4260
4271
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
4261
4272
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
4262
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
4263
4273
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
4274
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4275
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
4264
4276
|
}>, import("@scalar/typebox").TObject<{
|
|
4265
4277
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
4266
4278
|
name: import("@scalar/typebox").TString;
|
|
@@ -5358,6 +5370,9 @@ export declare const TagObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
5358
5370
|
}>]>, import("@scalar/typebox").TObject<{
|
|
5359
5371
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
5360
5372
|
}>]>]>>>;
|
|
5373
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
5374
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
5375
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
5361
5376
|
}>;
|
|
5362
5377
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
5363
5378
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -5703,8 +5718,9 @@ export declare const TagObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
5703
5718
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
5704
5719
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
5705
5720
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
5706
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
5707
5721
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
5722
|
+
}>, import("@scalar/typebox").TObject<{
|
|
5723
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
5708
5724
|
}>, import("@scalar/typebox").TObject<{
|
|
5709
5725
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
5710
5726
|
name: import("@scalar/typebox").TString;
|
|
@@ -6802,6 +6818,9 @@ export declare const CallbackObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
6802
6818
|
}>]>, import("@scalar/typebox").TObject<{
|
|
6803
6819
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
6804
6820
|
}>]>]>>>;
|
|
6821
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
6822
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
6823
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
6805
6824
|
}>;
|
|
6806
6825
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
6807
6826
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -7147,8 +7166,9 @@ export declare const CallbackObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
7147
7166
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
7148
7167
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
7149
7168
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
7150
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
7151
7169
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
7170
|
+
}>, import("@scalar/typebox").TObject<{
|
|
7171
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
7152
7172
|
}>, import("@scalar/typebox").TObject<{
|
|
7153
7173
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
7154
7174
|
name: import("@scalar/typebox").TString;
|
|
@@ -8246,6 +8266,9 @@ export declare const PathItemObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
8246
8266
|
}>]>, import("@scalar/typebox").TObject<{
|
|
8247
8267
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
8248
8268
|
}>]>]>>>;
|
|
8269
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
8270
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
8271
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
8249
8272
|
}>;
|
|
8250
8273
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
8251
8274
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -8591,8 +8614,9 @@ export declare const PathItemObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
8591
8614
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
8592
8615
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
8593
8616
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
8594
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
8595
8617
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
8618
|
+
}>, import("@scalar/typebox").TObject<{
|
|
8619
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
8596
8620
|
}>, import("@scalar/typebox").TObject<{
|
|
8597
8621
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
8598
8622
|
name: import("@scalar/typebox").TString;
|
|
@@ -9690,6 +9714,9 @@ export declare const PathsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
9690
9714
|
}>]>, import("@scalar/typebox").TObject<{
|
|
9691
9715
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
9692
9716
|
}>]>]>>>;
|
|
9717
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
9718
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
9719
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
9693
9720
|
}>;
|
|
9694
9721
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
9695
9722
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -10035,8 +10062,9 @@ export declare const PathsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
10035
10062
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
10036
10063
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
10037
10064
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
10038
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
10039
10065
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
10066
|
+
}>, import("@scalar/typebox").TObject<{
|
|
10067
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
10040
10068
|
}>, import("@scalar/typebox").TObject<{
|
|
10041
10069
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
10042
10070
|
name: import("@scalar/typebox").TString;
|
|
@@ -11134,6 +11162,9 @@ export declare const OperationObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
11134
11162
|
}>]>, import("@scalar/typebox").TObject<{
|
|
11135
11163
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
11136
11164
|
}>]>]>>>;
|
|
11165
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
11166
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
11167
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
11137
11168
|
}>;
|
|
11138
11169
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
11139
11170
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -11479,8 +11510,9 @@ export declare const OperationObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
11479
11510
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
11480
11511
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
11481
11512
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
11482
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
11483
11513
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
11514
|
+
}>, import("@scalar/typebox").TObject<{
|
|
11515
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
11484
11516
|
}>, import("@scalar/typebox").TObject<{
|
|
11485
11517
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
11486
11518
|
name: import("@scalar/typebox").TString;
|
|
@@ -12578,6 +12610,9 @@ export declare const SchemaObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
12578
12610
|
}>]>, import("@scalar/typebox").TObject<{
|
|
12579
12611
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
12580
12612
|
}>]>]>>>;
|
|
12613
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
12614
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
12615
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
12581
12616
|
}>;
|
|
12582
12617
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
12583
12618
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -12923,8 +12958,9 @@ export declare const SchemaObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
12923
12958
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
12924
12959
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
12925
12960
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
12926
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
12927
12961
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
12962
|
+
}>, import("@scalar/typebox").TObject<{
|
|
12963
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
12928
12964
|
}>, import("@scalar/typebox").TObject<{
|
|
12929
12965
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
12930
12966
|
name: import("@scalar/typebox").TString;
|
|
@@ -14022,6 +14058,9 @@ export declare const EncodingObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
14022
14058
|
}>]>, import("@scalar/typebox").TObject<{
|
|
14023
14059
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
14024
14060
|
}>]>]>>>;
|
|
14061
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
14062
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
14063
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
14025
14064
|
}>;
|
|
14026
14065
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
14027
14066
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -14367,8 +14406,9 @@ export declare const EncodingObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
14367
14406
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
14368
14407
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
14369
14408
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
14370
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
14371
14409
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
14410
|
+
}>, import("@scalar/typebox").TObject<{
|
|
14411
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
14372
14412
|
}>, import("@scalar/typebox").TObject<{
|
|
14373
14413
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
14374
14414
|
name: import("@scalar/typebox").TString;
|
|
@@ -15466,6 +15506,9 @@ export declare const MediaTypeObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
15466
15506
|
}>]>, import("@scalar/typebox").TObject<{
|
|
15467
15507
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
15468
15508
|
}>]>]>>>;
|
|
15509
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
15510
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
15511
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
15469
15512
|
}>;
|
|
15470
15513
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
15471
15514
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -15811,8 +15854,9 @@ export declare const MediaTypeObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
15811
15854
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
15812
15855
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
15813
15856
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
15814
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
15815
15857
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
15858
|
+
}>, import("@scalar/typebox").TObject<{
|
|
15859
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
15816
15860
|
}>, import("@scalar/typebox").TObject<{
|
|
15817
15861
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
15818
15862
|
name: import("@scalar/typebox").TString;
|
|
@@ -16910,6 +16954,9 @@ export declare const HeaderObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
16910
16954
|
}>]>, import("@scalar/typebox").TObject<{
|
|
16911
16955
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
16912
16956
|
}>]>]>>>;
|
|
16957
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
16958
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
16959
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
16913
16960
|
}>;
|
|
16914
16961
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
16915
16962
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -17255,8 +17302,9 @@ export declare const HeaderObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
17255
17302
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
17256
17303
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
17257
17304
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
17258
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
17259
17305
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
17306
|
+
}>, import("@scalar/typebox").TObject<{
|
|
17307
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
17260
17308
|
}>, import("@scalar/typebox").TObject<{
|
|
17261
17309
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
17262
17310
|
name: import("@scalar/typebox").TString;
|
|
@@ -18354,6 +18402,9 @@ export declare const ServerObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
18354
18402
|
}>]>, import("@scalar/typebox").TObject<{
|
|
18355
18403
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
18356
18404
|
}>]>]>>>;
|
|
18405
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
18406
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
18407
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
18357
18408
|
}>;
|
|
18358
18409
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
18359
18410
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -18699,8 +18750,9 @@ export declare const ServerObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
18699
18750
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
18700
18751
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
18701
18752
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
18702
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
18703
18753
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
18754
|
+
}>, import("@scalar/typebox").TObject<{
|
|
18755
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
18704
18756
|
}>, import("@scalar/typebox").TObject<{
|
|
18705
18757
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
18706
18758
|
name: import("@scalar/typebox").TString;
|
|
@@ -19798,6 +19850,9 @@ export declare const ExternalDocumentationObjectSchema: import("@scalar/typebox"
|
|
|
19798
19850
|
}>]>, import("@scalar/typebox").TObject<{
|
|
19799
19851
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
19800
19852
|
}>]>]>>>;
|
|
19853
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
19854
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
19855
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
19801
19856
|
}>;
|
|
19802
19857
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
19803
19858
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -20143,8 +20198,9 @@ export declare const ExternalDocumentationObjectSchema: import("@scalar/typebox"
|
|
|
20143
20198
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
20144
20199
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
20145
20200
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
20146
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
20147
20201
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
20202
|
+
}>, import("@scalar/typebox").TObject<{
|
|
20203
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
20148
20204
|
}>, import("@scalar/typebox").TObject<{
|
|
20149
20205
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
20150
20206
|
name: import("@scalar/typebox").TString;
|
|
@@ -21242,6 +21298,9 @@ export declare const InfoObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
21242
21298
|
}>]>, import("@scalar/typebox").TObject<{
|
|
21243
21299
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
21244
21300
|
}>]>]>>>;
|
|
21301
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
21302
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
21303
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
21245
21304
|
}>;
|
|
21246
21305
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
21247
21306
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -21587,8 +21646,9 @@ export declare const InfoObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
21587
21646
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
21588
21647
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
21589
21648
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
21590
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
21591
21649
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
21650
|
+
}>, import("@scalar/typebox").TObject<{
|
|
21651
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
21592
21652
|
}>, import("@scalar/typebox").TObject<{
|
|
21593
21653
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
21594
21654
|
name: import("@scalar/typebox").TString;
|
|
@@ -22686,6 +22746,9 @@ export declare const ContactObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
22686
22746
|
}>]>, import("@scalar/typebox").TObject<{
|
|
22687
22747
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
22688
22748
|
}>]>]>>>;
|
|
22749
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
22750
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
22751
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
22689
22752
|
}>;
|
|
22690
22753
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
22691
22754
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -23031,8 +23094,9 @@ export declare const ContactObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
23031
23094
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
23032
23095
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
23033
23096
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
23034
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
23035
23097
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
23098
|
+
}>, import("@scalar/typebox").TObject<{
|
|
23099
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
23036
23100
|
}>, import("@scalar/typebox").TObject<{
|
|
23037
23101
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
23038
23102
|
name: import("@scalar/typebox").TString;
|
|
@@ -24130,6 +24194,9 @@ export declare const LicenseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
24130
24194
|
}>]>, import("@scalar/typebox").TObject<{
|
|
24131
24195
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
24132
24196
|
}>]>]>>>;
|
|
24197
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
24198
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
24199
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
24133
24200
|
}>;
|
|
24134
24201
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
24135
24202
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -24475,8 +24542,9 @@ export declare const LicenseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
24475
24542
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
24476
24543
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
24477
24544
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
24478
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
24479
24545
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
24546
|
+
}>, import("@scalar/typebox").TObject<{
|
|
24547
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
24480
24548
|
}>, import("@scalar/typebox").TObject<{
|
|
24481
24549
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
24482
24550
|
name: import("@scalar/typebox").TString;
|
|
@@ -25574,6 +25642,9 @@ export declare const ResponseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
25574
25642
|
}>]>, import("@scalar/typebox").TObject<{
|
|
25575
25643
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
25576
25644
|
}>]>]>>>;
|
|
25645
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
25646
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
25647
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
25577
25648
|
}>;
|
|
25578
25649
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
25579
25650
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -25919,8 +25990,9 @@ export declare const ResponseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
25919
25990
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
25920
25991
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
25921
25992
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
25922
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
25923
25993
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
25994
|
+
}>, import("@scalar/typebox").TObject<{
|
|
25995
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
25924
25996
|
}>, import("@scalar/typebox").TObject<{
|
|
25925
25997
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
25926
25998
|
name: import("@scalar/typebox").TString;
|
|
@@ -27018,6 +27090,9 @@ export declare const ResponsesObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
27018
27090
|
}>]>, import("@scalar/typebox").TObject<{
|
|
27019
27091
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
27020
27092
|
}>]>]>>>;
|
|
27093
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
27094
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
27095
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
27021
27096
|
}>;
|
|
27022
27097
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
27023
27098
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -27363,8 +27438,9 @@ export declare const ResponsesObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
27363
27438
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
27364
27439
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
27365
27440
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
27366
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
27367
27441
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
27442
|
+
}>, import("@scalar/typebox").TObject<{
|
|
27443
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
27368
27444
|
}>, import("@scalar/typebox").TObject<{
|
|
27369
27445
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
27370
27446
|
name: import("@scalar/typebox").TString;
|
|
@@ -28462,6 +28538,9 @@ export declare const ParameterObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
28462
28538
|
}>]>, import("@scalar/typebox").TObject<{
|
|
28463
28539
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
28464
28540
|
}>]>]>>>;
|
|
28541
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
28542
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
28543
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
28465
28544
|
}>;
|
|
28466
28545
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
28467
28546
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -28807,8 +28886,9 @@ export declare const ParameterObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
28807
28886
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
28808
28887
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
28809
28888
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
28810
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
28811
28889
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
28890
|
+
}>, import("@scalar/typebox").TObject<{
|
|
28891
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
28812
28892
|
}>, import("@scalar/typebox").TObject<{
|
|
28813
28893
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
28814
28894
|
name: import("@scalar/typebox").TString;
|
|
@@ -29906,6 +29986,9 @@ export declare const ExampleObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
29906
29986
|
}>]>, import("@scalar/typebox").TObject<{
|
|
29907
29987
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
29908
29988
|
}>]>]>>>;
|
|
29989
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
29990
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
29991
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
29909
29992
|
}>;
|
|
29910
29993
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
29911
29994
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -30251,8 +30334,9 @@ export declare const ExampleObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
30251
30334
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
30252
30335
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
30253
30336
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
30254
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
30255
30337
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
30338
|
+
}>, import("@scalar/typebox").TObject<{
|
|
30339
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
30256
30340
|
}>, import("@scalar/typebox").TObject<{
|
|
30257
30341
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
30258
30342
|
name: import("@scalar/typebox").TString;
|
|
@@ -31350,6 +31434,9 @@ export declare const RequestBodyObjectSchema: import("@scalar/typebox").TImport<
|
|
|
31350
31434
|
}>]>, import("@scalar/typebox").TObject<{
|
|
31351
31435
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
31352
31436
|
}>]>]>>>;
|
|
31437
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
31438
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
31439
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
31353
31440
|
}>;
|
|
31354
31441
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
31355
31442
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -31695,8 +31782,9 @@ export declare const RequestBodyObjectSchema: import("@scalar/typebox").TImport<
|
|
|
31695
31782
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
31696
31783
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
31697
31784
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
31698
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
31699
31785
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
31786
|
+
}>, import("@scalar/typebox").TObject<{
|
|
31787
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
31700
31788
|
}>, import("@scalar/typebox").TObject<{
|
|
31701
31789
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
31702
31790
|
name: import("@scalar/typebox").TString;
|
|
@@ -32794,6 +32882,9 @@ export declare const SecuritySchemesSchema: import("@scalar/typebox").TImport<{
|
|
|
32794
32882
|
}>]>, import("@scalar/typebox").TObject<{
|
|
32795
32883
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
32796
32884
|
}>]>]>>>;
|
|
32885
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
32886
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
32887
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
32797
32888
|
}>;
|
|
32798
32889
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
32799
32890
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -33139,8 +33230,9 @@ export declare const SecuritySchemesSchema: import("@scalar/typebox").TImport<{
|
|
|
33139
33230
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
33140
33231
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
33141
33232
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
33142
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
33143
33233
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
33234
|
+
}>, import("@scalar/typebox").TObject<{
|
|
33235
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
33144
33236
|
}>, import("@scalar/typebox").TObject<{
|
|
33145
33237
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
33146
33238
|
name: import("@scalar/typebox").TString;
|
|
@@ -34238,6 +34330,9 @@ export declare const SecuritySchemeObjectSchema: import("@scalar/typebox").TImpo
|
|
|
34238
34330
|
}>]>, import("@scalar/typebox").TObject<{
|
|
34239
34331
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
34240
34332
|
}>]>]>>>;
|
|
34333
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
34334
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
34335
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
34241
34336
|
}>;
|
|
34242
34337
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
34243
34338
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -34583,8 +34678,9 @@ export declare const SecuritySchemeObjectSchema: import("@scalar/typebox").TImpo
|
|
|
34583
34678
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
34584
34679
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
34585
34680
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
34586
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
34587
34681
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
34682
|
+
}>, import("@scalar/typebox").TObject<{
|
|
34683
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
34588
34684
|
}>, import("@scalar/typebox").TObject<{
|
|
34589
34685
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
34590
34686
|
name: import("@scalar/typebox").TString;
|
|
@@ -35682,6 +35778,9 @@ export declare const LinkObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
35682
35778
|
}>]>, import("@scalar/typebox").TObject<{
|
|
35683
35779
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
35684
35780
|
}>]>]>>>;
|
|
35781
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
35782
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
35783
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
35685
35784
|
}>;
|
|
35686
35785
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
35687
35786
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -36027,8 +36126,9 @@ export declare const LinkObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
36027
36126
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
36028
36127
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
36029
36128
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
36030
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
36031
36129
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
36130
|
+
}>, import("@scalar/typebox").TObject<{
|
|
36131
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
36032
36132
|
}>, import("@scalar/typebox").TObject<{
|
|
36033
36133
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
36034
36134
|
name: import("@scalar/typebox").TString;
|
|
@@ -37126,6 +37226,9 @@ export declare const XMLObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
37126
37226
|
}>]>, import("@scalar/typebox").TObject<{
|
|
37127
37227
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
37128
37228
|
}>]>]>>>;
|
|
37229
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
37230
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
37231
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
37129
37232
|
}>;
|
|
37130
37233
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
37131
37234
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -37471,8 +37574,9 @@ export declare const XMLObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
37471
37574
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
37472
37575
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
37473
37576
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
37474
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
37475
37577
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
37578
|
+
}>, import("@scalar/typebox").TObject<{
|
|
37579
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
37476
37580
|
}>, import("@scalar/typebox").TObject<{
|
|
37477
37581
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
37478
37582
|
name: import("@scalar/typebox").TString;
|
|
@@ -38570,6 +38674,9 @@ export declare const DiscriminatorObjectSchema: import("@scalar/typebox").TImpor
|
|
|
38570
38674
|
}>]>, import("@scalar/typebox").TObject<{
|
|
38571
38675
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
38572
38676
|
}>]>]>>>;
|
|
38677
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
38678
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
38679
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
38573
38680
|
}>;
|
|
38574
38681
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
38575
38682
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -38915,8 +39022,9 @@ export declare const DiscriminatorObjectSchema: import("@scalar/typebox").TImpor
|
|
|
38915
39022
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
38916
39023
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
38917
39024
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
38918
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
38919
39025
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
39026
|
+
}>, import("@scalar/typebox").TObject<{
|
|
39027
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
38920
39028
|
}>, import("@scalar/typebox").TObject<{
|
|
38921
39029
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
38922
39030
|
name: import("@scalar/typebox").TString;
|
|
@@ -40014,6 +40122,9 @@ export declare const OAuthFlowsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
40014
40122
|
}>]>, import("@scalar/typebox").TObject<{
|
|
40015
40123
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
40016
40124
|
}>]>]>>>;
|
|
40125
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
40126
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
40127
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
40017
40128
|
}>;
|
|
40018
40129
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
40019
40130
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -40359,8 +40470,9 @@ export declare const OAuthFlowsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
40359
40470
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
40360
40471
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
40361
40472
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
40362
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
40363
40473
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
40474
|
+
}>, import("@scalar/typebox").TObject<{
|
|
40475
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
40364
40476
|
}>, import("@scalar/typebox").TObject<{
|
|
40365
40477
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
40366
40478
|
name: import("@scalar/typebox").TString;
|
|
@@ -41458,6 +41570,9 @@ export declare const ServerVariableObjectSchema: import("@scalar/typebox").TImpo
|
|
|
41458
41570
|
}>]>, import("@scalar/typebox").TObject<{
|
|
41459
41571
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
41460
41572
|
}>]>]>>>;
|
|
41573
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
41574
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
41575
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
41461
41576
|
}>;
|
|
41462
41577
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
41463
41578
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -41803,8 +41918,9 @@ export declare const ServerVariableObjectSchema: import("@scalar/typebox").TImpo
|
|
|
41803
41918
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
41804
41919
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
41805
41920
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
41806
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
41807
41921
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
41922
|
+
}>, import("@scalar/typebox").TObject<{
|
|
41923
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
41808
41924
|
}>, import("@scalar/typebox").TObject<{
|
|
41809
41925
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
41810
41926
|
name: import("@scalar/typebox").TString;
|
|
@@ -42902,6 +43018,9 @@ export declare const TraversedDescriptionSchema: import("@scalar/typebox").TImpo
|
|
|
42902
43018
|
}>]>, import("@scalar/typebox").TObject<{
|
|
42903
43019
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
42904
43020
|
}>]>]>>>;
|
|
43021
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
43022
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
43023
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
42905
43024
|
}>;
|
|
42906
43025
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
42907
43026
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -43247,8 +43366,9 @@ export declare const TraversedDescriptionSchema: import("@scalar/typebox").TImpo
|
|
|
43247
43366
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
43248
43367
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
43249
43368
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
43250
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
43251
43369
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
43370
|
+
}>, import("@scalar/typebox").TObject<{
|
|
43371
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
43252
43372
|
}>, import("@scalar/typebox").TObject<{
|
|
43253
43373
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
43254
43374
|
name: import("@scalar/typebox").TString;
|
|
@@ -44346,6 +44466,9 @@ export declare const TraversedEntrySchema: import("@scalar/typebox").TImport<{
|
|
|
44346
44466
|
}>]>, import("@scalar/typebox").TObject<{
|
|
44347
44467
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
44348
44468
|
}>]>]>>>;
|
|
44469
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
44470
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
44471
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
44349
44472
|
}>;
|
|
44350
44473
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
44351
44474
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -44691,8 +44814,9 @@ export declare const TraversedEntrySchema: import("@scalar/typebox").TImport<{
|
|
|
44691
44814
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
44692
44815
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
44693
44816
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
44694
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
44695
44817
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
44818
|
+
}>, import("@scalar/typebox").TObject<{
|
|
44819
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
44696
44820
|
}>, import("@scalar/typebox").TObject<{
|
|
44697
44821
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
44698
44822
|
name: import("@scalar/typebox").TString;
|
|
@@ -45790,6 +45914,9 @@ export declare const TraversedTagSchema: import("@scalar/typebox").TImport<{
|
|
|
45790
45914
|
}>]>, import("@scalar/typebox").TObject<{
|
|
45791
45915
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
45792
45916
|
}>]>]>>>;
|
|
45917
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
45918
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
45919
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
45793
45920
|
}>;
|
|
45794
45921
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
45795
45922
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -46135,8 +46262,9 @@ export declare const TraversedTagSchema: import("@scalar/typebox").TImport<{
|
|
|
46135
46262
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
46136
46263
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
46137
46264
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
46138
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
46139
46265
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
46266
|
+
}>, import("@scalar/typebox").TObject<{
|
|
46267
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
46140
46268
|
}>, import("@scalar/typebox").TObject<{
|
|
46141
46269
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
46142
46270
|
name: import("@scalar/typebox").TString;
|
|
@@ -47234,6 +47362,9 @@ export declare const TraversedOperationSchema: import("@scalar/typebox").TImport
|
|
|
47234
47362
|
}>]>, import("@scalar/typebox").TObject<{
|
|
47235
47363
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
47236
47364
|
}>]>]>>>;
|
|
47365
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
47366
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
47367
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
47237
47368
|
}>;
|
|
47238
47369
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
47239
47370
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -47579,8 +47710,9 @@ export declare const TraversedOperationSchema: import("@scalar/typebox").TImport
|
|
|
47579
47710
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
47580
47711
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
47581
47712
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
47582
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
47583
47713
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
47714
|
+
}>, import("@scalar/typebox").TObject<{
|
|
47715
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
47584
47716
|
}>, import("@scalar/typebox").TObject<{
|
|
47585
47717
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
47586
47718
|
name: import("@scalar/typebox").TString;
|
|
@@ -48678,6 +48810,9 @@ export declare const TraversedSchemaSchema: import("@scalar/typebox").TImport<{
|
|
|
48678
48810
|
}>]>, import("@scalar/typebox").TObject<{
|
|
48679
48811
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
48680
48812
|
}>]>]>>>;
|
|
48813
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
48814
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
48815
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
48681
48816
|
}>;
|
|
48682
48817
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
48683
48818
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -49023,8 +49158,9 @@ export declare const TraversedSchemaSchema: import("@scalar/typebox").TImport<{
|
|
|
49023
49158
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
49024
49159
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
49025
49160
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
49026
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
49027
49161
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
49162
|
+
}>, import("@scalar/typebox").TObject<{
|
|
49163
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
49028
49164
|
}>, import("@scalar/typebox").TObject<{
|
|
49029
49165
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
49030
49166
|
name: import("@scalar/typebox").TString;
|
|
@@ -50122,6 +50258,9 @@ export declare const TraversedWebhookSchema: import("@scalar/typebox").TImport<{
|
|
|
50122
50258
|
}>]>, import("@scalar/typebox").TObject<{
|
|
50123
50259
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
50124
50260
|
}>]>]>>>;
|
|
50261
|
+
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"form">, import("@scalar/typebox").TLiteral<"spaceDelimited">, import("@scalar/typebox").TLiteral<"pipeDelimited">, import("@scalar/typebox").TLiteral<"deepObject">]>>;
|
|
50262
|
+
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
50263
|
+
allowReserved: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
50125
50264
|
}>;
|
|
50126
50265
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
50127
50266
|
schema: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -50467,8 +50606,9 @@ export declare const TraversedWebhookSchema: import("@scalar/typebox").TImport<{
|
|
|
50467
50606
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
50468
50607
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
50469
50608
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
50470
|
-
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
50471
50609
|
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
50610
|
+
}>, import("@scalar/typebox").TObject<{
|
|
50611
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
50472
50612
|
}>, import("@scalar/typebox").TObject<{
|
|
50473
50613
|
'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
50474
50614
|
name: import("@scalar/typebox").TString;
|