@scalar/workspace-store 0.43.0 → 0.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/dist/entities/auth/schema.d.ts +30 -0
- package/dist/entities/auth/schema.d.ts.map +1 -1
- package/dist/events/definitions/document.d.ts +5 -0
- package/dist/events/definitions/document.d.ts.map +1 -1
- package/dist/mutators/document.d.ts +6 -0
- package/dist/mutators/document.d.ts.map +1 -1
- package/dist/mutators/document.js +11 -0
- package/dist/mutators/index.d.ts +2 -0
- package/dist/mutators/index.d.ts.map +1 -1
- package/dist/request-example/builder/build-request.d.ts.map +1 -1
- package/dist/request-example/builder/build-request.js +41 -55
- package/dist/request-example/builder/index.d.ts +1 -0
- package/dist/request-example/builder/index.d.ts.map +1 -1
- package/dist/request-example/builder/request-factory.d.ts +150 -12
- package/dist/request-example/builder/request-factory.d.ts.map +1 -1
- package/dist/request-example/builder/request-factory.js +3 -9
- package/dist/request-example/builder/resolve-request-factory-url.d.ts +11 -0
- package/dist/request-example/builder/resolve-request-factory-url.d.ts.map +1 -0
- package/dist/request-example/builder/resolve-request-factory-url.js +28 -0
- package/dist/request-example/builder/security/build-request-security.d.ts +39 -6
- package/dist/request-example/builder/security/build-request-security.d.ts.map +1 -1
- package/dist/request-example/builder/security/build-request-security.js +14 -6
- package/dist/request-example/context/get-request-example-context.d.ts +3 -0
- package/dist/request-example/context/get-request-example-context.d.ts.map +1 -1
- package/dist/request-example/context/get-request-example-context.js +2 -2
- package/dist/request-example/context/security/get-selected-security.d.ts +9 -4
- package/dist/request-example/context/security/get-selected-security.d.ts.map +1 -1
- package/dist/request-example/context/security/get-selected-security.js +58 -8
- package/dist/request-example/index.d.ts +4 -2
- package/dist/request-example/index.d.ts.map +1 -1
- package/dist/request-example/index.js +1 -0
- package/dist/request-example/variable-store/index.d.ts +7 -0
- package/dist/request-example/variable-store/index.d.ts.map +1 -0
- package/dist/request-example/variable-store/index.js +41 -0
- package/dist/request-example/variable-store/types.d.ts +59 -0
- package/dist/request-example/variable-store/types.d.ts.map +1 -0
- package/dist/request-example/variable-store/types.js +11 -0
- package/dist/schemas/extensions/general/x-post-response.d.ts.map +1 -0
- package/dist/schemas/extensions/general/x-pre-request.d.ts +25 -0
- package/dist/schemas/extensions/general/x-pre-request.d.ts.map +1 -0
- package/dist/schemas/extensions/general/x-pre-request.js +26 -0
- package/dist/schemas/extensions/operation/index.d.ts +0 -1
- package/dist/schemas/extensions/operation/index.d.ts.map +1 -1
- package/dist/schemas/extensions/operation/index.js +0 -1
- package/dist/schemas/inmemory-workspace.d.ts +18 -0
- package/dist/schemas/inmemory-workspace.d.ts.map +1 -1
- package/dist/schemas/reference-config/index.d.ts +6 -0
- package/dist/schemas/reference-config/index.d.ts.map +1 -1
- package/dist/schemas/reference-config/settings.d.ts +6 -0
- package/dist/schemas/reference-config/settings.d.ts.map +1 -1
- package/dist/schemas/v3.1/openapi/index.d.ts +4 -0
- package/dist/schemas/v3.1/openapi/index.d.ts.map +1 -1
- package/dist/schemas/v3.1/openapi/index.js +5 -1
- package/dist/schemas/v3.1/strict/openapi-document.d.ts +217 -1
- package/dist/schemas/v3.1/strict/openapi-document.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/openapi-document.js +3 -1
- package/dist/schemas/v3.1/strict/operation.d.ts +5 -2
- package/dist/schemas/v3.1/strict/operation.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/operation.js +3 -2
- package/dist/schemas/workspace.d.ts +18 -0
- package/dist/schemas/workspace.d.ts.map +1 -1
- package/package.json +5 -5
- package/dist/schemas/extensions/operation/x-post-response.d.ts.map +0 -1
- /package/dist/schemas/extensions/{operation → general}/x-post-response.d.ts +0 -0
- /package/dist/schemas/extensions/{operation → general}/x-post-response.js +0 -0
|
@@ -5,6 +5,8 @@ import { type XScalarIsDirty } from '../../../schemas/extensions/document/x-scal
|
|
|
5
5
|
import { type XScalarOriginalDocumentHash } from '../../../schemas/extensions/document/x-scalar-original-document-hash.js';
|
|
6
6
|
import { type XScalarRegistryMeta } from '../../../schemas/extensions/document/x-scalar-registry-meta.js';
|
|
7
7
|
import { type XScalarWatchMode } from '../../../schemas/extensions/document/x-scalar-watch-mode.js';
|
|
8
|
+
import { type XPostResponse } from '../../../schemas/extensions/general/x-post-response.js';
|
|
9
|
+
import { type XPreRequest } from '../../../schemas/extensions/general/x-pre-request.js';
|
|
8
10
|
import { type XScalarActiveEnvironment } from '../../../schemas/extensions/general/x-scalar-active-environment.js';
|
|
9
11
|
import { type XScalarCookies } from '../../../schemas/extensions/general/x-scalar-cookies.js';
|
|
10
12
|
import { type XScalarOrder } from '../../../schemas/extensions/general/x-scalar-order.js';
|
|
@@ -68,13 +70,17 @@ export declare const OpenApiExtensionsSchema: import("@scalar/typebox").TInterse
|
|
|
68
70
|
namespace: import("@scalar/typebox").TString;
|
|
69
71
|
slug: import("@scalar/typebox").TString;
|
|
70
72
|
}>>;
|
|
73
|
+
}>, import("@scalar/typebox").TObject<{
|
|
74
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
75
|
+
}>, import("@scalar/typebox").TObject<{
|
|
76
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
71
77
|
}>]>;
|
|
72
78
|
export type OpenAPIExtensions = Partial<{
|
|
73
79
|
'x-original-oas-version': string;
|
|
74
80
|
/** Original document source url / when loading a document from an external source */
|
|
75
81
|
'x-scalar-original-source-url': string;
|
|
76
82
|
[extensions.document.navigation]: TraversedDocument;
|
|
77
|
-
}> & XScalarOriginalDocumentHash & XTagGroups & XScalarEnvironments & XScalarActiveEnvironment & XScalarSelectedServer & XScalarIcon & XScalarOrder & XScalarCookies & XScalarIsDirty & XScalarWatchMode & XScalarRegistryMeta;
|
|
83
|
+
}> & XScalarOriginalDocumentHash & XTagGroups & XScalarEnvironments & XScalarActiveEnvironment & XScalarSelectedServer & XScalarIcon & XScalarOrder & XScalarCookies & XScalarIsDirty & XScalarWatchMode & XScalarRegistryMeta & XPreRequest & XPostResponse;
|
|
78
84
|
export type OpenApiDocument = {
|
|
79
85
|
/** 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. */
|
|
80
86
|
openapi: string;
|
|
@@ -398,6 +404,8 @@ export declare const OpenAPIDocumentSchema: import("@scalar/typebox").TImport<{
|
|
|
398
404
|
}>>;
|
|
399
405
|
}>, import("@scalar/typebox").TObject<{
|
|
400
406
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
407
|
+
}>, import("@scalar/typebox").TObject<{
|
|
408
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
401
409
|
}>, import("@scalar/typebox").TObject<{
|
|
402
410
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
403
411
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -1407,6 +1415,10 @@ export declare const OpenAPIDocumentSchema: import("@scalar/typebox").TImport<{
|
|
|
1407
1415
|
namespace: import("@scalar/typebox").TString;
|
|
1408
1416
|
slug: import("@scalar/typebox").TString;
|
|
1409
1417
|
}>>;
|
|
1418
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1419
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1420
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1421
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1410
1422
|
}>]>]>;
|
|
1411
1423
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1412
1424
|
id: import("@scalar/typebox").TString;
|
|
@@ -1832,6 +1844,8 @@ export declare const ComponentsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
1832
1844
|
}>>;
|
|
1833
1845
|
}>, import("@scalar/typebox").TObject<{
|
|
1834
1846
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1847
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1848
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1835
1849
|
}>, import("@scalar/typebox").TObject<{
|
|
1836
1850
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
1837
1851
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -2841,6 +2855,10 @@ export declare const ComponentsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
2841
2855
|
namespace: import("@scalar/typebox").TString;
|
|
2842
2856
|
slug: import("@scalar/typebox").TString;
|
|
2843
2857
|
}>>;
|
|
2858
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2859
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
2860
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2861
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
2844
2862
|
}>]>]>;
|
|
2845
2863
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
2846
2864
|
id: import("@scalar/typebox").TString;
|
|
@@ -3266,6 +3284,8 @@ export declare const SecurityRequirementObjectSchema: import("@scalar/typebox").
|
|
|
3266
3284
|
}>>;
|
|
3267
3285
|
}>, import("@scalar/typebox").TObject<{
|
|
3268
3286
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
3287
|
+
}>, import("@scalar/typebox").TObject<{
|
|
3288
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
3269
3289
|
}>, import("@scalar/typebox").TObject<{
|
|
3270
3290
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
3271
3291
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -4275,6 +4295,10 @@ export declare const SecurityRequirementObjectSchema: import("@scalar/typebox").
|
|
|
4275
4295
|
namespace: import("@scalar/typebox").TString;
|
|
4276
4296
|
slug: import("@scalar/typebox").TString;
|
|
4277
4297
|
}>>;
|
|
4298
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4299
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
4300
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4301
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
4278
4302
|
}>]>]>;
|
|
4279
4303
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
4280
4304
|
id: import("@scalar/typebox").TString;
|
|
@@ -4700,6 +4724,8 @@ export declare const TagObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
4700
4724
|
}>>;
|
|
4701
4725
|
}>, import("@scalar/typebox").TObject<{
|
|
4702
4726
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
4727
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4728
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
4703
4729
|
}>, import("@scalar/typebox").TObject<{
|
|
4704
4730
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
4705
4731
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -5709,6 +5735,10 @@ export declare const TagObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
5709
5735
|
namespace: import("@scalar/typebox").TString;
|
|
5710
5736
|
slug: import("@scalar/typebox").TString;
|
|
5711
5737
|
}>>;
|
|
5738
|
+
}>, import("@scalar/typebox").TObject<{
|
|
5739
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
5740
|
+
}>, import("@scalar/typebox").TObject<{
|
|
5741
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
5712
5742
|
}>]>]>;
|
|
5713
5743
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
5714
5744
|
id: import("@scalar/typebox").TString;
|
|
@@ -6134,6 +6164,8 @@ export declare const CallbackObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
6134
6164
|
}>>;
|
|
6135
6165
|
}>, import("@scalar/typebox").TObject<{
|
|
6136
6166
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
6167
|
+
}>, import("@scalar/typebox").TObject<{
|
|
6168
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
6137
6169
|
}>, import("@scalar/typebox").TObject<{
|
|
6138
6170
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
6139
6171
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -7143,6 +7175,10 @@ export declare const CallbackObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
7143
7175
|
namespace: import("@scalar/typebox").TString;
|
|
7144
7176
|
slug: import("@scalar/typebox").TString;
|
|
7145
7177
|
}>>;
|
|
7178
|
+
}>, import("@scalar/typebox").TObject<{
|
|
7179
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
7180
|
+
}>, import("@scalar/typebox").TObject<{
|
|
7181
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
7146
7182
|
}>]>]>;
|
|
7147
7183
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
7148
7184
|
id: import("@scalar/typebox").TString;
|
|
@@ -7568,6 +7604,8 @@ export declare const PathItemObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
7568
7604
|
}>>;
|
|
7569
7605
|
}>, import("@scalar/typebox").TObject<{
|
|
7570
7606
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
7607
|
+
}>, import("@scalar/typebox").TObject<{
|
|
7608
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
7571
7609
|
}>, import("@scalar/typebox").TObject<{
|
|
7572
7610
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
7573
7611
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -8577,6 +8615,10 @@ export declare const PathItemObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
8577
8615
|
namespace: import("@scalar/typebox").TString;
|
|
8578
8616
|
slug: import("@scalar/typebox").TString;
|
|
8579
8617
|
}>>;
|
|
8618
|
+
}>, import("@scalar/typebox").TObject<{
|
|
8619
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
8620
|
+
}>, import("@scalar/typebox").TObject<{
|
|
8621
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
8580
8622
|
}>]>]>;
|
|
8581
8623
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
8582
8624
|
id: import("@scalar/typebox").TString;
|
|
@@ -9002,6 +9044,8 @@ export declare const PathsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
9002
9044
|
}>>;
|
|
9003
9045
|
}>, import("@scalar/typebox").TObject<{
|
|
9004
9046
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
9047
|
+
}>, import("@scalar/typebox").TObject<{
|
|
9048
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
9005
9049
|
}>, import("@scalar/typebox").TObject<{
|
|
9006
9050
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
9007
9051
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -10011,6 +10055,10 @@ export declare const PathsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
10011
10055
|
namespace: import("@scalar/typebox").TString;
|
|
10012
10056
|
slug: import("@scalar/typebox").TString;
|
|
10013
10057
|
}>>;
|
|
10058
|
+
}>, import("@scalar/typebox").TObject<{
|
|
10059
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
10060
|
+
}>, import("@scalar/typebox").TObject<{
|
|
10061
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
10014
10062
|
}>]>]>;
|
|
10015
10063
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
10016
10064
|
id: import("@scalar/typebox").TString;
|
|
@@ -10436,6 +10484,8 @@ export declare const OperationObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
10436
10484
|
}>>;
|
|
10437
10485
|
}>, import("@scalar/typebox").TObject<{
|
|
10438
10486
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
10487
|
+
}>, import("@scalar/typebox").TObject<{
|
|
10488
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
10439
10489
|
}>, import("@scalar/typebox").TObject<{
|
|
10440
10490
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
10441
10491
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -11445,6 +11495,10 @@ export declare const OperationObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
11445
11495
|
namespace: import("@scalar/typebox").TString;
|
|
11446
11496
|
slug: import("@scalar/typebox").TString;
|
|
11447
11497
|
}>>;
|
|
11498
|
+
}>, import("@scalar/typebox").TObject<{
|
|
11499
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
11500
|
+
}>, import("@scalar/typebox").TObject<{
|
|
11501
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
11448
11502
|
}>]>]>;
|
|
11449
11503
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
11450
11504
|
id: import("@scalar/typebox").TString;
|
|
@@ -11870,6 +11924,8 @@ export declare const SchemaObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
11870
11924
|
}>>;
|
|
11871
11925
|
}>, import("@scalar/typebox").TObject<{
|
|
11872
11926
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
11927
|
+
}>, import("@scalar/typebox").TObject<{
|
|
11928
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
11873
11929
|
}>, import("@scalar/typebox").TObject<{
|
|
11874
11930
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
11875
11931
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -12879,6 +12935,10 @@ export declare const SchemaObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
12879
12935
|
namespace: import("@scalar/typebox").TString;
|
|
12880
12936
|
slug: import("@scalar/typebox").TString;
|
|
12881
12937
|
}>>;
|
|
12938
|
+
}>, import("@scalar/typebox").TObject<{
|
|
12939
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
12940
|
+
}>, import("@scalar/typebox").TObject<{
|
|
12941
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
12882
12942
|
}>]>]>;
|
|
12883
12943
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
12884
12944
|
id: import("@scalar/typebox").TString;
|
|
@@ -13304,6 +13364,8 @@ export declare const EncodingObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
13304
13364
|
}>>;
|
|
13305
13365
|
}>, import("@scalar/typebox").TObject<{
|
|
13306
13366
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
13367
|
+
}>, import("@scalar/typebox").TObject<{
|
|
13368
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
13307
13369
|
}>, import("@scalar/typebox").TObject<{
|
|
13308
13370
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
13309
13371
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -14313,6 +14375,10 @@ export declare const EncodingObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
14313
14375
|
namespace: import("@scalar/typebox").TString;
|
|
14314
14376
|
slug: import("@scalar/typebox").TString;
|
|
14315
14377
|
}>>;
|
|
14378
|
+
}>, import("@scalar/typebox").TObject<{
|
|
14379
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
14380
|
+
}>, import("@scalar/typebox").TObject<{
|
|
14381
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
14316
14382
|
}>]>]>;
|
|
14317
14383
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
14318
14384
|
id: import("@scalar/typebox").TString;
|
|
@@ -14738,6 +14804,8 @@ export declare const MediaTypeObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
14738
14804
|
}>>;
|
|
14739
14805
|
}>, import("@scalar/typebox").TObject<{
|
|
14740
14806
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
14807
|
+
}>, import("@scalar/typebox").TObject<{
|
|
14808
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
14741
14809
|
}>, import("@scalar/typebox").TObject<{
|
|
14742
14810
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
14743
14811
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -15747,6 +15815,10 @@ export declare const MediaTypeObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
15747
15815
|
namespace: import("@scalar/typebox").TString;
|
|
15748
15816
|
slug: import("@scalar/typebox").TString;
|
|
15749
15817
|
}>>;
|
|
15818
|
+
}>, import("@scalar/typebox").TObject<{
|
|
15819
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
15820
|
+
}>, import("@scalar/typebox").TObject<{
|
|
15821
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
15750
15822
|
}>]>]>;
|
|
15751
15823
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
15752
15824
|
id: import("@scalar/typebox").TString;
|
|
@@ -16172,6 +16244,8 @@ export declare const HeaderObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
16172
16244
|
}>>;
|
|
16173
16245
|
}>, import("@scalar/typebox").TObject<{
|
|
16174
16246
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
16247
|
+
}>, import("@scalar/typebox").TObject<{
|
|
16248
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
16175
16249
|
}>, import("@scalar/typebox").TObject<{
|
|
16176
16250
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
16177
16251
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -17181,6 +17255,10 @@ export declare const HeaderObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
17181
17255
|
namespace: import("@scalar/typebox").TString;
|
|
17182
17256
|
slug: import("@scalar/typebox").TString;
|
|
17183
17257
|
}>>;
|
|
17258
|
+
}>, import("@scalar/typebox").TObject<{
|
|
17259
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
17260
|
+
}>, import("@scalar/typebox").TObject<{
|
|
17261
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
17184
17262
|
}>]>]>;
|
|
17185
17263
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
17186
17264
|
id: import("@scalar/typebox").TString;
|
|
@@ -17606,6 +17684,8 @@ export declare const ServerObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
17606
17684
|
}>>;
|
|
17607
17685
|
}>, import("@scalar/typebox").TObject<{
|
|
17608
17686
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
17687
|
+
}>, import("@scalar/typebox").TObject<{
|
|
17688
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
17609
17689
|
}>, import("@scalar/typebox").TObject<{
|
|
17610
17690
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
17611
17691
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -18615,6 +18695,10 @@ export declare const ServerObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
18615
18695
|
namespace: import("@scalar/typebox").TString;
|
|
18616
18696
|
slug: import("@scalar/typebox").TString;
|
|
18617
18697
|
}>>;
|
|
18698
|
+
}>, import("@scalar/typebox").TObject<{
|
|
18699
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
18700
|
+
}>, import("@scalar/typebox").TObject<{
|
|
18701
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
18618
18702
|
}>]>]>;
|
|
18619
18703
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
18620
18704
|
id: import("@scalar/typebox").TString;
|
|
@@ -19040,6 +19124,8 @@ export declare const ExternalDocumentationObjectSchema: import("@scalar/typebox"
|
|
|
19040
19124
|
}>>;
|
|
19041
19125
|
}>, import("@scalar/typebox").TObject<{
|
|
19042
19126
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
19127
|
+
}>, import("@scalar/typebox").TObject<{
|
|
19128
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
19043
19129
|
}>, import("@scalar/typebox").TObject<{
|
|
19044
19130
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
19045
19131
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -20049,6 +20135,10 @@ export declare const ExternalDocumentationObjectSchema: import("@scalar/typebox"
|
|
|
20049
20135
|
namespace: import("@scalar/typebox").TString;
|
|
20050
20136
|
slug: import("@scalar/typebox").TString;
|
|
20051
20137
|
}>>;
|
|
20138
|
+
}>, import("@scalar/typebox").TObject<{
|
|
20139
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
20140
|
+
}>, import("@scalar/typebox").TObject<{
|
|
20141
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
20052
20142
|
}>]>]>;
|
|
20053
20143
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
20054
20144
|
id: import("@scalar/typebox").TString;
|
|
@@ -20474,6 +20564,8 @@ export declare const InfoObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
20474
20564
|
}>>;
|
|
20475
20565
|
}>, import("@scalar/typebox").TObject<{
|
|
20476
20566
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
20567
|
+
}>, import("@scalar/typebox").TObject<{
|
|
20568
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
20477
20569
|
}>, import("@scalar/typebox").TObject<{
|
|
20478
20570
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
20479
20571
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -21483,6 +21575,10 @@ export declare const InfoObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
21483
21575
|
namespace: import("@scalar/typebox").TString;
|
|
21484
21576
|
slug: import("@scalar/typebox").TString;
|
|
21485
21577
|
}>>;
|
|
21578
|
+
}>, import("@scalar/typebox").TObject<{
|
|
21579
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
21580
|
+
}>, import("@scalar/typebox").TObject<{
|
|
21581
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
21486
21582
|
}>]>]>;
|
|
21487
21583
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
21488
21584
|
id: import("@scalar/typebox").TString;
|
|
@@ -21908,6 +22004,8 @@ export declare const ContactObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
21908
22004
|
}>>;
|
|
21909
22005
|
}>, import("@scalar/typebox").TObject<{
|
|
21910
22006
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
22007
|
+
}>, import("@scalar/typebox").TObject<{
|
|
22008
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
21911
22009
|
}>, import("@scalar/typebox").TObject<{
|
|
21912
22010
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
21913
22011
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -22917,6 +23015,10 @@ export declare const ContactObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
22917
23015
|
namespace: import("@scalar/typebox").TString;
|
|
22918
23016
|
slug: import("@scalar/typebox").TString;
|
|
22919
23017
|
}>>;
|
|
23018
|
+
}>, import("@scalar/typebox").TObject<{
|
|
23019
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
23020
|
+
}>, import("@scalar/typebox").TObject<{
|
|
23021
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
22920
23022
|
}>]>]>;
|
|
22921
23023
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
22922
23024
|
id: import("@scalar/typebox").TString;
|
|
@@ -23342,6 +23444,8 @@ export declare const LicenseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
23342
23444
|
}>>;
|
|
23343
23445
|
}>, import("@scalar/typebox").TObject<{
|
|
23344
23446
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
23447
|
+
}>, import("@scalar/typebox").TObject<{
|
|
23448
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
23345
23449
|
}>, import("@scalar/typebox").TObject<{
|
|
23346
23450
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
23347
23451
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -24351,6 +24455,10 @@ export declare const LicenseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
24351
24455
|
namespace: import("@scalar/typebox").TString;
|
|
24352
24456
|
slug: import("@scalar/typebox").TString;
|
|
24353
24457
|
}>>;
|
|
24458
|
+
}>, import("@scalar/typebox").TObject<{
|
|
24459
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
24460
|
+
}>, import("@scalar/typebox").TObject<{
|
|
24461
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
24354
24462
|
}>]>]>;
|
|
24355
24463
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
24356
24464
|
id: import("@scalar/typebox").TString;
|
|
@@ -24776,6 +24884,8 @@ export declare const ResponseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
24776
24884
|
}>>;
|
|
24777
24885
|
}>, import("@scalar/typebox").TObject<{
|
|
24778
24886
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
24887
|
+
}>, import("@scalar/typebox").TObject<{
|
|
24888
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
24779
24889
|
}>, import("@scalar/typebox").TObject<{
|
|
24780
24890
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
24781
24891
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -25785,6 +25895,10 @@ export declare const ResponseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
25785
25895
|
namespace: import("@scalar/typebox").TString;
|
|
25786
25896
|
slug: import("@scalar/typebox").TString;
|
|
25787
25897
|
}>>;
|
|
25898
|
+
}>, import("@scalar/typebox").TObject<{
|
|
25899
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
25900
|
+
}>, import("@scalar/typebox").TObject<{
|
|
25901
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
25788
25902
|
}>]>]>;
|
|
25789
25903
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
25790
25904
|
id: import("@scalar/typebox").TString;
|
|
@@ -26210,6 +26324,8 @@ export declare const ResponsesObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
26210
26324
|
}>>;
|
|
26211
26325
|
}>, import("@scalar/typebox").TObject<{
|
|
26212
26326
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
26327
|
+
}>, import("@scalar/typebox").TObject<{
|
|
26328
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
26213
26329
|
}>, import("@scalar/typebox").TObject<{
|
|
26214
26330
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
26215
26331
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -27219,6 +27335,10 @@ export declare const ResponsesObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
27219
27335
|
namespace: import("@scalar/typebox").TString;
|
|
27220
27336
|
slug: import("@scalar/typebox").TString;
|
|
27221
27337
|
}>>;
|
|
27338
|
+
}>, import("@scalar/typebox").TObject<{
|
|
27339
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
27340
|
+
}>, import("@scalar/typebox").TObject<{
|
|
27341
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
27222
27342
|
}>]>]>;
|
|
27223
27343
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
27224
27344
|
id: import("@scalar/typebox").TString;
|
|
@@ -27644,6 +27764,8 @@ export declare const ParameterObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
27644
27764
|
}>>;
|
|
27645
27765
|
}>, import("@scalar/typebox").TObject<{
|
|
27646
27766
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
27767
|
+
}>, import("@scalar/typebox").TObject<{
|
|
27768
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
27647
27769
|
}>, import("@scalar/typebox").TObject<{
|
|
27648
27770
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
27649
27771
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -28653,6 +28775,10 @@ export declare const ParameterObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
28653
28775
|
namespace: import("@scalar/typebox").TString;
|
|
28654
28776
|
slug: import("@scalar/typebox").TString;
|
|
28655
28777
|
}>>;
|
|
28778
|
+
}>, import("@scalar/typebox").TObject<{
|
|
28779
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
28780
|
+
}>, import("@scalar/typebox").TObject<{
|
|
28781
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
28656
28782
|
}>]>]>;
|
|
28657
28783
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
28658
28784
|
id: import("@scalar/typebox").TString;
|
|
@@ -29078,6 +29204,8 @@ export declare const ExampleObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
29078
29204
|
}>>;
|
|
29079
29205
|
}>, import("@scalar/typebox").TObject<{
|
|
29080
29206
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
29207
|
+
}>, import("@scalar/typebox").TObject<{
|
|
29208
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
29081
29209
|
}>, import("@scalar/typebox").TObject<{
|
|
29082
29210
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
29083
29211
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -30087,6 +30215,10 @@ export declare const ExampleObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
30087
30215
|
namespace: import("@scalar/typebox").TString;
|
|
30088
30216
|
slug: import("@scalar/typebox").TString;
|
|
30089
30217
|
}>>;
|
|
30218
|
+
}>, import("@scalar/typebox").TObject<{
|
|
30219
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
30220
|
+
}>, import("@scalar/typebox").TObject<{
|
|
30221
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
30090
30222
|
}>]>]>;
|
|
30091
30223
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
30092
30224
|
id: import("@scalar/typebox").TString;
|
|
@@ -30512,6 +30644,8 @@ export declare const RequestBodyObjectSchema: import("@scalar/typebox").TImport<
|
|
|
30512
30644
|
}>>;
|
|
30513
30645
|
}>, import("@scalar/typebox").TObject<{
|
|
30514
30646
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
30647
|
+
}>, import("@scalar/typebox").TObject<{
|
|
30648
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
30515
30649
|
}>, import("@scalar/typebox").TObject<{
|
|
30516
30650
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
30517
30651
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -31521,6 +31655,10 @@ export declare const RequestBodyObjectSchema: import("@scalar/typebox").TImport<
|
|
|
31521
31655
|
namespace: import("@scalar/typebox").TString;
|
|
31522
31656
|
slug: import("@scalar/typebox").TString;
|
|
31523
31657
|
}>>;
|
|
31658
|
+
}>, import("@scalar/typebox").TObject<{
|
|
31659
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
31660
|
+
}>, import("@scalar/typebox").TObject<{
|
|
31661
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
31524
31662
|
}>]>]>;
|
|
31525
31663
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
31526
31664
|
id: import("@scalar/typebox").TString;
|
|
@@ -31946,6 +32084,8 @@ export declare const SecuritySchemesSchema: import("@scalar/typebox").TImport<{
|
|
|
31946
32084
|
}>>;
|
|
31947
32085
|
}>, import("@scalar/typebox").TObject<{
|
|
31948
32086
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
32087
|
+
}>, import("@scalar/typebox").TObject<{
|
|
32088
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
31949
32089
|
}>, import("@scalar/typebox").TObject<{
|
|
31950
32090
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
31951
32091
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -32955,6 +33095,10 @@ export declare const SecuritySchemesSchema: import("@scalar/typebox").TImport<{
|
|
|
32955
33095
|
namespace: import("@scalar/typebox").TString;
|
|
32956
33096
|
slug: import("@scalar/typebox").TString;
|
|
32957
33097
|
}>>;
|
|
33098
|
+
}>, import("@scalar/typebox").TObject<{
|
|
33099
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
33100
|
+
}>, import("@scalar/typebox").TObject<{
|
|
33101
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
32958
33102
|
}>]>]>;
|
|
32959
33103
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
32960
33104
|
id: import("@scalar/typebox").TString;
|
|
@@ -33380,6 +33524,8 @@ export declare const SecuritySchemeObjectSchema: import("@scalar/typebox").TImpo
|
|
|
33380
33524
|
}>>;
|
|
33381
33525
|
}>, import("@scalar/typebox").TObject<{
|
|
33382
33526
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
33527
|
+
}>, import("@scalar/typebox").TObject<{
|
|
33528
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
33383
33529
|
}>, import("@scalar/typebox").TObject<{
|
|
33384
33530
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
33385
33531
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -34389,6 +34535,10 @@ export declare const SecuritySchemeObjectSchema: import("@scalar/typebox").TImpo
|
|
|
34389
34535
|
namespace: import("@scalar/typebox").TString;
|
|
34390
34536
|
slug: import("@scalar/typebox").TString;
|
|
34391
34537
|
}>>;
|
|
34538
|
+
}>, import("@scalar/typebox").TObject<{
|
|
34539
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
34540
|
+
}>, import("@scalar/typebox").TObject<{
|
|
34541
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
34392
34542
|
}>]>]>;
|
|
34393
34543
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
34394
34544
|
id: import("@scalar/typebox").TString;
|
|
@@ -34814,6 +34964,8 @@ export declare const LinkObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
34814
34964
|
}>>;
|
|
34815
34965
|
}>, import("@scalar/typebox").TObject<{
|
|
34816
34966
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
34967
|
+
}>, import("@scalar/typebox").TObject<{
|
|
34968
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
34817
34969
|
}>, import("@scalar/typebox").TObject<{
|
|
34818
34970
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
34819
34971
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -35823,6 +35975,10 @@ export declare const LinkObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
35823
35975
|
namespace: import("@scalar/typebox").TString;
|
|
35824
35976
|
slug: import("@scalar/typebox").TString;
|
|
35825
35977
|
}>>;
|
|
35978
|
+
}>, import("@scalar/typebox").TObject<{
|
|
35979
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
35980
|
+
}>, import("@scalar/typebox").TObject<{
|
|
35981
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
35826
35982
|
}>]>]>;
|
|
35827
35983
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
35828
35984
|
id: import("@scalar/typebox").TString;
|
|
@@ -36248,6 +36404,8 @@ export declare const XMLObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
36248
36404
|
}>>;
|
|
36249
36405
|
}>, import("@scalar/typebox").TObject<{
|
|
36250
36406
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
36407
|
+
}>, import("@scalar/typebox").TObject<{
|
|
36408
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
36251
36409
|
}>, import("@scalar/typebox").TObject<{
|
|
36252
36410
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
36253
36411
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -37257,6 +37415,10 @@ export declare const XMLObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
37257
37415
|
namespace: import("@scalar/typebox").TString;
|
|
37258
37416
|
slug: import("@scalar/typebox").TString;
|
|
37259
37417
|
}>>;
|
|
37418
|
+
}>, import("@scalar/typebox").TObject<{
|
|
37419
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
37420
|
+
}>, import("@scalar/typebox").TObject<{
|
|
37421
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
37260
37422
|
}>]>]>;
|
|
37261
37423
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
37262
37424
|
id: import("@scalar/typebox").TString;
|
|
@@ -37682,6 +37844,8 @@ export declare const DiscriminatorObjectSchema: import("@scalar/typebox").TImpor
|
|
|
37682
37844
|
}>>;
|
|
37683
37845
|
}>, import("@scalar/typebox").TObject<{
|
|
37684
37846
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
37847
|
+
}>, import("@scalar/typebox").TObject<{
|
|
37848
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
37685
37849
|
}>, import("@scalar/typebox").TObject<{
|
|
37686
37850
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
37687
37851
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -38691,6 +38855,10 @@ export declare const DiscriminatorObjectSchema: import("@scalar/typebox").TImpor
|
|
|
38691
38855
|
namespace: import("@scalar/typebox").TString;
|
|
38692
38856
|
slug: import("@scalar/typebox").TString;
|
|
38693
38857
|
}>>;
|
|
38858
|
+
}>, import("@scalar/typebox").TObject<{
|
|
38859
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
38860
|
+
}>, import("@scalar/typebox").TObject<{
|
|
38861
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
38694
38862
|
}>]>]>;
|
|
38695
38863
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
38696
38864
|
id: import("@scalar/typebox").TString;
|
|
@@ -39116,6 +39284,8 @@ export declare const OAuthFlowsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
39116
39284
|
}>>;
|
|
39117
39285
|
}>, import("@scalar/typebox").TObject<{
|
|
39118
39286
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
39287
|
+
}>, import("@scalar/typebox").TObject<{
|
|
39288
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
39119
39289
|
}>, import("@scalar/typebox").TObject<{
|
|
39120
39290
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
39121
39291
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -40125,6 +40295,10 @@ export declare const OAuthFlowsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
40125
40295
|
namespace: import("@scalar/typebox").TString;
|
|
40126
40296
|
slug: import("@scalar/typebox").TString;
|
|
40127
40297
|
}>>;
|
|
40298
|
+
}>, import("@scalar/typebox").TObject<{
|
|
40299
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
40300
|
+
}>, import("@scalar/typebox").TObject<{
|
|
40301
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
40128
40302
|
}>]>]>;
|
|
40129
40303
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
40130
40304
|
id: import("@scalar/typebox").TString;
|
|
@@ -40550,6 +40724,8 @@ export declare const ServerVariableObjectSchema: import("@scalar/typebox").TImpo
|
|
|
40550
40724
|
}>>;
|
|
40551
40725
|
}>, import("@scalar/typebox").TObject<{
|
|
40552
40726
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
40727
|
+
}>, import("@scalar/typebox").TObject<{
|
|
40728
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
40553
40729
|
}>, import("@scalar/typebox").TObject<{
|
|
40554
40730
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
40555
40731
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -41559,6 +41735,10 @@ export declare const ServerVariableObjectSchema: import("@scalar/typebox").TImpo
|
|
|
41559
41735
|
namespace: import("@scalar/typebox").TString;
|
|
41560
41736
|
slug: import("@scalar/typebox").TString;
|
|
41561
41737
|
}>>;
|
|
41738
|
+
}>, import("@scalar/typebox").TObject<{
|
|
41739
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
41740
|
+
}>, import("@scalar/typebox").TObject<{
|
|
41741
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
41562
41742
|
}>]>]>;
|
|
41563
41743
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
41564
41744
|
id: import("@scalar/typebox").TString;
|
|
@@ -41984,6 +42164,8 @@ export declare const TraversedDescriptionSchema: import("@scalar/typebox").TImpo
|
|
|
41984
42164
|
}>>;
|
|
41985
42165
|
}>, import("@scalar/typebox").TObject<{
|
|
41986
42166
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
42167
|
+
}>, import("@scalar/typebox").TObject<{
|
|
42168
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
41987
42169
|
}>, import("@scalar/typebox").TObject<{
|
|
41988
42170
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
41989
42171
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -42993,6 +43175,10 @@ export declare const TraversedDescriptionSchema: import("@scalar/typebox").TImpo
|
|
|
42993
43175
|
namespace: import("@scalar/typebox").TString;
|
|
42994
43176
|
slug: import("@scalar/typebox").TString;
|
|
42995
43177
|
}>>;
|
|
43178
|
+
}>, import("@scalar/typebox").TObject<{
|
|
43179
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
43180
|
+
}>, import("@scalar/typebox").TObject<{
|
|
43181
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
42996
43182
|
}>]>]>;
|
|
42997
43183
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
42998
43184
|
id: import("@scalar/typebox").TString;
|
|
@@ -43418,6 +43604,8 @@ export declare const TraversedEntrySchema: import("@scalar/typebox").TImport<{
|
|
|
43418
43604
|
}>>;
|
|
43419
43605
|
}>, import("@scalar/typebox").TObject<{
|
|
43420
43606
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
43607
|
+
}>, import("@scalar/typebox").TObject<{
|
|
43608
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
43421
43609
|
}>, import("@scalar/typebox").TObject<{
|
|
43422
43610
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
43423
43611
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -44427,6 +44615,10 @@ export declare const TraversedEntrySchema: import("@scalar/typebox").TImport<{
|
|
|
44427
44615
|
namespace: import("@scalar/typebox").TString;
|
|
44428
44616
|
slug: import("@scalar/typebox").TString;
|
|
44429
44617
|
}>>;
|
|
44618
|
+
}>, import("@scalar/typebox").TObject<{
|
|
44619
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
44620
|
+
}>, import("@scalar/typebox").TObject<{
|
|
44621
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
44430
44622
|
}>]>]>;
|
|
44431
44623
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
44432
44624
|
id: import("@scalar/typebox").TString;
|
|
@@ -44852,6 +45044,8 @@ export declare const TraversedTagSchema: import("@scalar/typebox").TImport<{
|
|
|
44852
45044
|
}>>;
|
|
44853
45045
|
}>, import("@scalar/typebox").TObject<{
|
|
44854
45046
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
45047
|
+
}>, import("@scalar/typebox").TObject<{
|
|
45048
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
44855
45049
|
}>, import("@scalar/typebox").TObject<{
|
|
44856
45050
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
44857
45051
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -45861,6 +46055,10 @@ export declare const TraversedTagSchema: import("@scalar/typebox").TImport<{
|
|
|
45861
46055
|
namespace: import("@scalar/typebox").TString;
|
|
45862
46056
|
slug: import("@scalar/typebox").TString;
|
|
45863
46057
|
}>>;
|
|
46058
|
+
}>, import("@scalar/typebox").TObject<{
|
|
46059
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
46060
|
+
}>, import("@scalar/typebox").TObject<{
|
|
46061
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
45864
46062
|
}>]>]>;
|
|
45865
46063
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
45866
46064
|
id: import("@scalar/typebox").TString;
|
|
@@ -46286,6 +46484,8 @@ export declare const TraversedOperationSchema: import("@scalar/typebox").TImport
|
|
|
46286
46484
|
}>>;
|
|
46287
46485
|
}>, import("@scalar/typebox").TObject<{
|
|
46288
46486
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
46487
|
+
}>, import("@scalar/typebox").TObject<{
|
|
46488
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
46289
46489
|
}>, import("@scalar/typebox").TObject<{
|
|
46290
46490
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
46291
46491
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -47295,6 +47495,10 @@ export declare const TraversedOperationSchema: import("@scalar/typebox").TImport
|
|
|
47295
47495
|
namespace: import("@scalar/typebox").TString;
|
|
47296
47496
|
slug: import("@scalar/typebox").TString;
|
|
47297
47497
|
}>>;
|
|
47498
|
+
}>, import("@scalar/typebox").TObject<{
|
|
47499
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
47500
|
+
}>, import("@scalar/typebox").TObject<{
|
|
47501
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
47298
47502
|
}>]>]>;
|
|
47299
47503
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
47300
47504
|
id: import("@scalar/typebox").TString;
|
|
@@ -47720,6 +47924,8 @@ export declare const TraversedSchemaSchema: import("@scalar/typebox").TImport<{
|
|
|
47720
47924
|
}>>;
|
|
47721
47925
|
}>, import("@scalar/typebox").TObject<{
|
|
47722
47926
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
47927
|
+
}>, import("@scalar/typebox").TObject<{
|
|
47928
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
47723
47929
|
}>, import("@scalar/typebox").TObject<{
|
|
47724
47930
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
47725
47931
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -48729,6 +48935,10 @@ export declare const TraversedSchemaSchema: import("@scalar/typebox").TImport<{
|
|
|
48729
48935
|
namespace: import("@scalar/typebox").TString;
|
|
48730
48936
|
slug: import("@scalar/typebox").TString;
|
|
48731
48937
|
}>>;
|
|
48938
|
+
}>, import("@scalar/typebox").TObject<{
|
|
48939
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
48940
|
+
}>, import("@scalar/typebox").TObject<{
|
|
48941
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
48732
48942
|
}>]>]>;
|
|
48733
48943
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
48734
48944
|
id: import("@scalar/typebox").TString;
|
|
@@ -49154,6 +49364,8 @@ export declare const TraversedWebhookSchema: import("@scalar/typebox").TImport<{
|
|
|
49154
49364
|
}>>;
|
|
49155
49365
|
}>, import("@scalar/typebox").TObject<{
|
|
49156
49366
|
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
49367
|
+
}>, import("@scalar/typebox").TObject<{
|
|
49368
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
49157
49369
|
}>, import("@scalar/typebox").TObject<{
|
|
49158
49370
|
'x-draft-examples': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
49159
49371
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -50163,6 +50375,10 @@ export declare const TraversedWebhookSchema: import("@scalar/typebox").TImport<{
|
|
|
50163
50375
|
namespace: import("@scalar/typebox").TString;
|
|
50164
50376
|
slug: import("@scalar/typebox").TString;
|
|
50165
50377
|
}>>;
|
|
50378
|
+
}>, import("@scalar/typebox").TObject<{
|
|
50379
|
+
'x-pre-request': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
50380
|
+
}>, import("@scalar/typebox").TObject<{
|
|
50381
|
+
'x-post-response': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
50166
50382
|
}>]>]>;
|
|
50167
50383
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
50168
50384
|
id: import("@scalar/typebox").TString;
|