@scalar/workspace-store 0.51.0 → 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 +14 -0
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +23 -13
- package/dist/entities/auth/schema.d.ts +15 -0
- package/dist/entities/auth/schema.d.ts.map +1 -1
- package/dist/helpers/merge-object.d.ts +1 -1
- package/dist/helpers/merge-object.d.ts.map +1 -1
- 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/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 +5 -3
- package/dist/navigation/types.d.ts +4 -0
- package/dist/navigation/types.d.ts.map +1 -1
- package/dist/request-example/builder/body/build-request-body.d.ts.map +1 -1
- package/dist/request-example/builder/body/build-request-body.js +65 -1
- 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/reference-config/index.d.ts +3 -0
- package/dist/schemas/reference-config/index.d.ts.map +1 -1
- package/dist/schemas/reference-config/settings.d.ts +3 -0
- package/dist/schemas/reference-config/settings.d.ts.map +1 -1
- package/dist/schemas/type-guards.d.ts +1 -1
- package/dist/schemas/type-guards.d.ts.map +1 -1
- package/dist/schemas/type-guards.js +3 -8
- package/dist/schemas/v3.1/openapi/index.d.ts +2 -2
- 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 +107 -2
- package/dist/schemas/v3.1/strict/openapi-document.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/openapi-document.js +2 -6
- package/dist/schemas/workspace.d.ts +1 -12
- package/dist/schemas/workspace.d.ts.map +1 -1
- package/dist/schemas/workspace.js +0 -13
- package/dist/schemas.d.ts +1 -2
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +0 -2
- package/package.json +6 -5
- package/dist/schemas/asyncapi/asyncapi-document.d.ts +0 -79
- package/dist/schemas/asyncapi/asyncapi-document.d.ts.map +0 -1
- package/dist/schemas/asyncapi/asyncapi-document.js +0 -58
- package/dist/schemas/extensions/document/workspace-managed-extensions.d.ts +0 -25
- package/dist/schemas/extensions/document/workspace-managed-extensions.d.ts.map +0 -1
- package/dist/schemas/extensions/document/workspace-managed-extensions.js +0 -26
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { extensions } from '../../../schemas/extensions.js';
|
|
2
|
-
import { type WorkspaceManagedExtensions } from '../../../schemas/extensions/document/workspace-managed-extensions.js';
|
|
3
2
|
import { type XScalarEnvironments } from '../../../schemas/extensions/document/x-scalar-environments.js';
|
|
4
3
|
import { type XScalarIcon } from '../../../schemas/extensions/document/x-scalar-icon.js';
|
|
5
4
|
import { type XScalarIsDirty } from '../../../schemas/extensions/document/x-scalar-is-dirty.js';
|
|
6
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';
|
|
7
7
|
import { type XScalarRegistryMeta } from '../../../schemas/extensions/document/x-scalar-registry-meta.js';
|
|
8
8
|
import { type XScalarWatchMode } from '../../../schemas/extensions/document/x-scalar-watch-mode.js';
|
|
9
9
|
import { type XPostResponse } from '../../../schemas/extensions/general/x-post-response.js';
|
|
@@ -84,7 +84,7 @@ export declare const OpenApiExtensionsSchema: import("@scalar/typebox").TInterse
|
|
|
84
84
|
export type OpenAPIExtensions = Partial<{
|
|
85
85
|
'x-original-oas-version': string;
|
|
86
86
|
[extensions.document.navigation]: TraversedDocument;
|
|
87
|
-
}> &
|
|
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<{
|
|
@@ -2471,6 +2474,9 @@ export declare const ComponentsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
2471
2474
|
}>]>, import("@scalar/typebox").TObject<{
|
|
2472
2475
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
2473
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>;
|
|
2474
2480
|
}>;
|
|
2475
2481
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
2476
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<{
|
|
@@ -3916,6 +3922,9 @@ export declare const SecurityRequirementObjectSchema: import("@scalar/typebox").
|
|
|
3916
3922
|
}>]>, import("@scalar/typebox").TObject<{
|
|
3917
3923
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
3918
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>;
|
|
3919
3928
|
}>;
|
|
3920
3929
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
3921
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<{
|
|
@@ -5361,6 +5370,9 @@ export declare const TagObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
5361
5370
|
}>]>, import("@scalar/typebox").TObject<{
|
|
5362
5371
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
5363
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>;
|
|
5364
5376
|
}>;
|
|
5365
5377
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
5366
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<{
|
|
@@ -6806,6 +6818,9 @@ export declare const CallbackObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
6806
6818
|
}>]>, import("@scalar/typebox").TObject<{
|
|
6807
6819
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
6808
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>;
|
|
6809
6824
|
}>;
|
|
6810
6825
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
6811
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<{
|
|
@@ -8251,6 +8266,9 @@ export declare const PathItemObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
8251
8266
|
}>]>, import("@scalar/typebox").TObject<{
|
|
8252
8267
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
8253
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>;
|
|
8254
8272
|
}>;
|
|
8255
8273
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
8256
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<{
|
|
@@ -9696,6 +9714,9 @@ export declare const PathsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
9696
9714
|
}>]>, import("@scalar/typebox").TObject<{
|
|
9697
9715
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
9698
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>;
|
|
9699
9720
|
}>;
|
|
9700
9721
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
9701
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<{
|
|
@@ -11141,6 +11162,9 @@ export declare const OperationObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
11141
11162
|
}>]>, import("@scalar/typebox").TObject<{
|
|
11142
11163
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
11143
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>;
|
|
11144
11168
|
}>;
|
|
11145
11169
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
11146
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<{
|
|
@@ -12586,6 +12610,9 @@ export declare const SchemaObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
12586
12610
|
}>]>, import("@scalar/typebox").TObject<{
|
|
12587
12611
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
12588
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>;
|
|
12589
12616
|
}>;
|
|
12590
12617
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
12591
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<{
|
|
@@ -14031,6 +14058,9 @@ export declare const EncodingObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
14031
14058
|
}>]>, import("@scalar/typebox").TObject<{
|
|
14032
14059
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
14033
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>;
|
|
14034
14064
|
}>;
|
|
14035
14065
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
14036
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<{
|
|
@@ -15476,6 +15506,9 @@ export declare const MediaTypeObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
15476
15506
|
}>]>, import("@scalar/typebox").TObject<{
|
|
15477
15507
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
15478
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>;
|
|
15479
15512
|
}>;
|
|
15480
15513
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
15481
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<{
|
|
@@ -16921,6 +16954,9 @@ export declare const HeaderObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
16921
16954
|
}>]>, import("@scalar/typebox").TObject<{
|
|
16922
16955
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
16923
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>;
|
|
16924
16960
|
}>;
|
|
16925
16961
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
16926
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<{
|
|
@@ -18366,6 +18402,9 @@ export declare const ServerObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
18366
18402
|
}>]>, import("@scalar/typebox").TObject<{
|
|
18367
18403
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
18368
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>;
|
|
18369
18408
|
}>;
|
|
18370
18409
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
18371
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<{
|
|
@@ -19811,6 +19850,9 @@ export declare const ExternalDocumentationObjectSchema: import("@scalar/typebox"
|
|
|
19811
19850
|
}>]>, import("@scalar/typebox").TObject<{
|
|
19812
19851
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
19813
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>;
|
|
19814
19856
|
}>;
|
|
19815
19857
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
19816
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<{
|
|
@@ -21256,6 +21298,9 @@ export declare const InfoObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
21256
21298
|
}>]>, import("@scalar/typebox").TObject<{
|
|
21257
21299
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
21258
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>;
|
|
21259
21304
|
}>;
|
|
21260
21305
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
21261
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<{
|
|
@@ -22701,6 +22746,9 @@ export declare const ContactObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
22701
22746
|
}>]>, import("@scalar/typebox").TObject<{
|
|
22702
22747
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
22703
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>;
|
|
22704
22752
|
}>;
|
|
22705
22753
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
22706
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<{
|
|
@@ -24146,6 +24194,9 @@ export declare const LicenseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
24146
24194
|
}>]>, import("@scalar/typebox").TObject<{
|
|
24147
24195
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
24148
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>;
|
|
24149
24200
|
}>;
|
|
24150
24201
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
24151
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<{
|
|
@@ -25591,6 +25642,9 @@ export declare const ResponseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
25591
25642
|
}>]>, import("@scalar/typebox").TObject<{
|
|
25592
25643
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
25593
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>;
|
|
25594
25648
|
}>;
|
|
25595
25649
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
25596
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<{
|
|
@@ -27036,6 +27090,9 @@ export declare const ResponsesObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
27036
27090
|
}>]>, import("@scalar/typebox").TObject<{
|
|
27037
27091
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
27038
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>;
|
|
27039
27096
|
}>;
|
|
27040
27097
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
27041
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<{
|
|
@@ -28481,6 +28538,9 @@ export declare const ParameterObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
28481
28538
|
}>]>, import("@scalar/typebox").TObject<{
|
|
28482
28539
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
28483
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>;
|
|
28484
28544
|
}>;
|
|
28485
28545
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
28486
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<{
|
|
@@ -29926,6 +29986,9 @@ export declare const ExampleObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
29926
29986
|
}>]>, import("@scalar/typebox").TObject<{
|
|
29927
29987
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
29928
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>;
|
|
29929
29992
|
}>;
|
|
29930
29993
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
29931
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<{
|
|
@@ -31371,6 +31434,9 @@ export declare const RequestBodyObjectSchema: import("@scalar/typebox").TImport<
|
|
|
31371
31434
|
}>]>, import("@scalar/typebox").TObject<{
|
|
31372
31435
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
31373
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>;
|
|
31374
31440
|
}>;
|
|
31375
31441
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
31376
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<{
|
|
@@ -32816,6 +32882,9 @@ export declare const SecuritySchemesSchema: import("@scalar/typebox").TImport<{
|
|
|
32816
32882
|
}>]>, import("@scalar/typebox").TObject<{
|
|
32817
32883
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
32818
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>;
|
|
32819
32888
|
}>;
|
|
32820
32889
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
32821
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<{
|
|
@@ -34261,6 +34330,9 @@ export declare const SecuritySchemeObjectSchema: import("@scalar/typebox").TImpo
|
|
|
34261
34330
|
}>]>, import("@scalar/typebox").TObject<{
|
|
34262
34331
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
34263
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>;
|
|
34264
34336
|
}>;
|
|
34265
34337
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
34266
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<{
|
|
@@ -35706,6 +35778,9 @@ export declare const LinkObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
35706
35778
|
}>]>, import("@scalar/typebox").TObject<{
|
|
35707
35779
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
35708
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>;
|
|
35709
35784
|
}>;
|
|
35710
35785
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
35711
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<{
|
|
@@ -37151,6 +37226,9 @@ export declare const XMLObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
37151
37226
|
}>]>, import("@scalar/typebox").TObject<{
|
|
37152
37227
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
37153
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>;
|
|
37154
37232
|
}>;
|
|
37155
37233
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
37156
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<{
|
|
@@ -38596,6 +38674,9 @@ export declare const DiscriminatorObjectSchema: import("@scalar/typebox").TImpor
|
|
|
38596
38674
|
}>]>, import("@scalar/typebox").TObject<{
|
|
38597
38675
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
38598
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>;
|
|
38599
38680
|
}>;
|
|
38600
38681
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
38601
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<{
|
|
@@ -40041,6 +40122,9 @@ export declare const OAuthFlowsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
40041
40122
|
}>]>, import("@scalar/typebox").TObject<{
|
|
40042
40123
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
40043
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>;
|
|
40044
40128
|
}>;
|
|
40045
40129
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
40046
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<{
|
|
@@ -41486,6 +41570,9 @@ export declare const ServerVariableObjectSchema: import("@scalar/typebox").TImpo
|
|
|
41486
41570
|
}>]>, import("@scalar/typebox").TObject<{
|
|
41487
41571
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
41488
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>;
|
|
41489
41576
|
}>;
|
|
41490
41577
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
41491
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<{
|
|
@@ -42931,6 +43018,9 @@ export declare const TraversedDescriptionSchema: import("@scalar/typebox").TImpo
|
|
|
42931
43018
|
}>]>, import("@scalar/typebox").TObject<{
|
|
42932
43019
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
42933
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>;
|
|
42934
43024
|
}>;
|
|
42935
43025
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
42936
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<{
|
|
@@ -44376,6 +44466,9 @@ export declare const TraversedEntrySchema: import("@scalar/typebox").TImport<{
|
|
|
44376
44466
|
}>]>, import("@scalar/typebox").TObject<{
|
|
44377
44467
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
44378
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>;
|
|
44379
44472
|
}>;
|
|
44380
44473
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
44381
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<{
|
|
@@ -45821,6 +45914,9 @@ export declare const TraversedTagSchema: import("@scalar/typebox").TImport<{
|
|
|
45821
45914
|
}>]>, import("@scalar/typebox").TObject<{
|
|
45822
45915
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
45823
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>;
|
|
45824
45920
|
}>;
|
|
45825
45921
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
45826
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<{
|
|
@@ -47266,6 +47362,9 @@ export declare const TraversedOperationSchema: import("@scalar/typebox").TImport
|
|
|
47266
47362
|
}>]>, import("@scalar/typebox").TObject<{
|
|
47267
47363
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
47268
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>;
|
|
47269
47368
|
}>;
|
|
47270
47369
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
47271
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<{
|
|
@@ -48711,6 +48810,9 @@ export declare const TraversedSchemaSchema: import("@scalar/typebox").TImport<{
|
|
|
48711
48810
|
}>]>, import("@scalar/typebox").TObject<{
|
|
48712
48811
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
48713
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>;
|
|
48714
48816
|
}>;
|
|
48715
48817
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
48716
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<{
|
|
@@ -50156,6 +50258,9 @@ export declare const TraversedWebhookSchema: import("@scalar/typebox").TImport<{
|
|
|
50156
50258
|
}>]>, import("@scalar/typebox").TObject<{
|
|
50157
50259
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
50158
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>;
|
|
50159
50264
|
}>;
|
|
50160
50265
|
MediaTypeObject: import("@scalar/typebox").TObject<{
|
|
50161
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<{
|