@scalar/workspace-store 0.19.0 → 0.20.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 +14 -0
- package/dist/events/definitions/auth.d.ts +20 -2
- package/dist/events/definitions/auth.d.ts.map +1 -1
- package/dist/events/definitions/document.d.ts +5 -1
- package/dist/events/definitions/document.d.ts.map +1 -1
- package/dist/events/definitions/index.d.ts +1 -2
- package/dist/events/definitions/index.d.ts.map +1 -1
- package/dist/events/definitions/server.d.ts +20 -28
- package/dist/events/definitions/server.d.ts.map +1 -1
- package/dist/events/index.d.ts +2 -2
- package/dist/events/index.d.ts.map +1 -1
- package/dist/events/index.js.map +2 -2
- package/dist/mutators/auth.d.ts +10 -73
- package/dist/mutators/auth.d.ts.map +1 -1
- package/dist/mutators/auth.js +24 -91
- package/dist/mutators/auth.js.map +2 -2
- package/dist/mutators/document.d.ts +6 -0
- package/dist/mutators/document.d.ts.map +1 -0
- package/dist/mutators/document.js +10 -0
- package/dist/mutators/document.js.map +7 -0
- package/dist/mutators/index.d.ts +10 -7
- package/dist/mutators/index.d.ts.map +1 -1
- package/dist/mutators/index.js +36 -1
- package/dist/mutators/index.js.map +3 -3
- package/dist/mutators/server.d.ts +43 -8
- package/dist/mutators/server.d.ts.map +1 -1
- package/dist/mutators/server.js +112 -20
- package/dist/mutators/server.js.map +2 -2
- package/dist/navigation/helpers/traverse-document.d.ts +1 -0
- package/dist/navigation/helpers/traverse-document.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-document.js +2 -1
- package/dist/navigation/helpers/traverse-document.js.map +2 -2
- package/dist/plugins/client/persistence.d.ts +2 -1
- package/dist/plugins/client/persistence.d.ts.map +1 -1
- package/dist/plugins/client/persistence.js +11 -9
- package/dist/plugins/client/persistence.js.map +2 -2
- package/dist/schemas/extensions/document/x-scalar-document-security.d.ts +13 -0
- package/dist/schemas/extensions/document/x-scalar-document-security.d.ts.map +1 -0
- package/dist/schemas/extensions/document/x-scalar-document-security.js +8 -0
- package/dist/schemas/extensions/document/x-scalar-document-security.js.map +7 -0
- package/dist/schemas/extensions/security/x-scalar-selected-security.d.ts +7 -7
- package/dist/schemas/extensions/security/x-scalar-selected-security.d.ts.map +1 -1
- package/dist/schemas/extensions/security/x-scalar-selected-security.js +2 -2
- package/dist/schemas/extensions/security/x-scalar-selected-security.js.map +2 -2
- package/dist/schemas/extensions/server/x-scalar-selected-server.d.ts +8 -0
- package/dist/schemas/extensions/server/x-scalar-selected-server.d.ts.map +1 -0
- package/dist/schemas/extensions/server/x-scalar-selected-server.js +8 -0
- package/dist/schemas/extensions/server/x-scalar-selected-server.js.map +7 -0
- package/dist/schemas/inmemory-workspace.d.ts +20 -8
- package/dist/schemas/inmemory-workspace.d.ts.map +1 -1
- package/dist/schemas/navigation.d.ts +5 -0
- package/dist/schemas/navigation.d.ts.map +1 -1
- package/dist/schemas/navigation.js +1 -0
- package/dist/schemas/navigation.js.map +2 -2
- package/dist/schemas/reference-config/index.d.ts +10 -4
- package/dist/schemas/reference-config/index.d.ts.map +1 -1
- package/dist/schemas/reference-config/settings.d.ts +10 -4
- package/dist/schemas/reference-config/settings.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/openapi-document.d.ts +343 -137
- package/dist/schemas/v3.1/strict/openapi-document.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/openapi-document.js +8 -0
- package/dist/schemas/v3.1/strict/openapi-document.js.map +2 -2
- package/dist/schemas/v3.1/strict/operation.d.ts +2 -2
- package/dist/schemas/workspace-specification/config.d.ts +10 -4
- package/dist/schemas/workspace-specification/config.d.ts.map +1 -1
- package/dist/schemas/workspace-specification/index.d.ts +10 -4
- package/dist/schemas/workspace-specification/index.d.ts.map +1 -1
- package/dist/schemas/workspace.d.ts +70 -28
- package/dist/schemas/workspace.d.ts.map +1 -1
- package/package.json +5 -5
- package/dist/helpers/debounce.d.ts +0 -28
- package/dist/helpers/debounce.d.ts.map +0 -1
- package/dist/helpers/debounce.js +0 -31
- package/dist/helpers/debounce.js.map +0 -7
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { extensions } from '../../../schemas/extensions.js';
|
|
2
|
+
import { type XScalarDocumentSecurity } from '../../../schemas/extensions/document/x-scalar-document-security.js';
|
|
2
3
|
import { type XScalarEnvironments } from '../../../schemas/extensions/document/x-scalar-environments.js';
|
|
3
4
|
import { type XScalarSelectedSecurity } from '../../../schemas/extensions/security/x-scalar-selected-security.js';
|
|
5
|
+
import { type XScalarSelectedServer } from '../../../schemas/extensions/server/x-scalar-selected-server.js';
|
|
4
6
|
import { type XTagGroups } from '../../../schemas/extensions/tag/x-tag-groups.js';
|
|
5
7
|
import { type TraversedDocument } from '../../../schemas/navigation.js';
|
|
6
8
|
import { type XScalarClientConfigCookies } from './client-config-extensions/x-scalar-client-config-cookies.js';
|
|
@@ -24,7 +26,7 @@ export type OpenAPIExtensions = Partial<{
|
|
|
24
26
|
}> & {
|
|
25
27
|
/** Original input document hash */
|
|
26
28
|
'x-scalar-original-document-hash': string;
|
|
27
|
-
} & XTagGroups & XScalarEnvironments & XScalarSelectedSecurity;
|
|
29
|
+
} & XTagGroups & XScalarEnvironments & XScalarSelectedSecurity & XScalarSelectedServer & XScalarDocumentSecurity;
|
|
28
30
|
export type OpenApiDocument = {
|
|
29
31
|
/** 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. */
|
|
30
32
|
openapi: string;
|
|
@@ -312,8 +314,8 @@ export declare const OpenAPIDocumentSchema: import("@scalar/typebox").TImport<{
|
|
|
312
314
|
}>]>]>>>;
|
|
313
315
|
}>, import("@scalar/typebox").TObject<{
|
|
314
316
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
315
|
-
|
|
316
|
-
|
|
317
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
318
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
317
319
|
}>>;
|
|
318
320
|
}>, import("@scalar/typebox").TObject<{
|
|
319
321
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -1321,9 +1323,13 @@ export declare const OpenAPIDocumentSchema: import("@scalar/typebox").TImport<{
|
|
|
1321
1323
|
}>>>;
|
|
1322
1324
|
}>, import("@scalar/typebox").TObject<{
|
|
1323
1325
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
1327
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
1326
1328
|
}>>;
|
|
1329
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1330
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1331
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1332
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1327
1333
|
}>, import("@scalar/typebox").TObject<{
|
|
1328
1334
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
1329
1335
|
}>]>]>;
|
|
@@ -1429,6 +1435,7 @@ export declare const OpenAPIDocumentSchema: import("@scalar/typebox").TImport<{
|
|
|
1429
1435
|
title: import("@scalar/typebox").TString;
|
|
1430
1436
|
}>, import("@scalar/typebox").TObject<{
|
|
1431
1437
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
1438
|
+
name: import("@scalar/typebox").TString;
|
|
1432
1439
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1433
1440
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1434
1441
|
id: import("@scalar/typebox").TString;
|
|
@@ -1443,6 +1450,7 @@ export declare const OpenAPIDocumentSchema: import("@scalar/typebox").TImport<{
|
|
|
1443
1450
|
title: import("@scalar/typebox").TString;
|
|
1444
1451
|
}>, import("@scalar/typebox").TObject<{
|
|
1445
1452
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
1453
|
+
name: import("@scalar/typebox").TString;
|
|
1446
1454
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1447
1455
|
}>]>;
|
|
1448
1456
|
}, "OpenApiDocument">;
|
|
@@ -1711,8 +1719,8 @@ export declare const ComponentsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
1711
1719
|
}>]>]>>>;
|
|
1712
1720
|
}>, import("@scalar/typebox").TObject<{
|
|
1713
1721
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
1714
|
-
|
|
1715
|
-
|
|
1722
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
1723
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
1716
1724
|
}>>;
|
|
1717
1725
|
}>, import("@scalar/typebox").TObject<{
|
|
1718
1726
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -2720,9 +2728,13 @@ export declare const ComponentsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
2720
2728
|
}>>>;
|
|
2721
2729
|
}>, import("@scalar/typebox").TObject<{
|
|
2722
2730
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
2723
|
-
|
|
2724
|
-
|
|
2731
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
2732
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
2725
2733
|
}>>;
|
|
2734
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2735
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
2736
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2737
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
2726
2738
|
}>, import("@scalar/typebox").TObject<{
|
|
2727
2739
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
2728
2740
|
}>]>]>;
|
|
@@ -2828,6 +2840,7 @@ export declare const ComponentsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
2828
2840
|
title: import("@scalar/typebox").TString;
|
|
2829
2841
|
}>, import("@scalar/typebox").TObject<{
|
|
2830
2842
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
2843
|
+
name: import("@scalar/typebox").TString;
|
|
2831
2844
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
2832
2845
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
2833
2846
|
id: import("@scalar/typebox").TString;
|
|
@@ -2842,6 +2855,7 @@ export declare const ComponentsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
2842
2855
|
title: import("@scalar/typebox").TString;
|
|
2843
2856
|
}>, import("@scalar/typebox").TObject<{
|
|
2844
2857
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
2858
|
+
name: import("@scalar/typebox").TString;
|
|
2845
2859
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
2846
2860
|
}>]>;
|
|
2847
2861
|
}, "ComponentsObject">;
|
|
@@ -3110,8 +3124,8 @@ export declare const SecurityRequirementObjectSchema: import("@scalar/typebox").
|
|
|
3110
3124
|
}>]>]>>>;
|
|
3111
3125
|
}>, import("@scalar/typebox").TObject<{
|
|
3112
3126
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
3113
|
-
|
|
3114
|
-
|
|
3127
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
3128
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
3115
3129
|
}>>;
|
|
3116
3130
|
}>, import("@scalar/typebox").TObject<{
|
|
3117
3131
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -4119,9 +4133,13 @@ export declare const SecurityRequirementObjectSchema: import("@scalar/typebox").
|
|
|
4119
4133
|
}>>>;
|
|
4120
4134
|
}>, import("@scalar/typebox").TObject<{
|
|
4121
4135
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
4122
|
-
|
|
4123
|
-
|
|
4136
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
4137
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
4124
4138
|
}>>;
|
|
4139
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4140
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
4141
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4142
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
4125
4143
|
}>, import("@scalar/typebox").TObject<{
|
|
4126
4144
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
4127
4145
|
}>]>]>;
|
|
@@ -4227,6 +4245,7 @@ export declare const SecurityRequirementObjectSchema: import("@scalar/typebox").
|
|
|
4227
4245
|
title: import("@scalar/typebox").TString;
|
|
4228
4246
|
}>, import("@scalar/typebox").TObject<{
|
|
4229
4247
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
4248
|
+
name: import("@scalar/typebox").TString;
|
|
4230
4249
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
4231
4250
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
4232
4251
|
id: import("@scalar/typebox").TString;
|
|
@@ -4241,6 +4260,7 @@ export declare const SecurityRequirementObjectSchema: import("@scalar/typebox").
|
|
|
4241
4260
|
title: import("@scalar/typebox").TString;
|
|
4242
4261
|
}>, import("@scalar/typebox").TObject<{
|
|
4243
4262
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
4263
|
+
name: import("@scalar/typebox").TString;
|
|
4244
4264
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
4245
4265
|
}>]>;
|
|
4246
4266
|
}, "SecurityRequirementObject">;
|
|
@@ -4509,8 +4529,8 @@ export declare const TagObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
4509
4529
|
}>]>]>>>;
|
|
4510
4530
|
}>, import("@scalar/typebox").TObject<{
|
|
4511
4531
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
4512
|
-
|
|
4513
|
-
|
|
4532
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
4533
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
4514
4534
|
}>>;
|
|
4515
4535
|
}>, import("@scalar/typebox").TObject<{
|
|
4516
4536
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -5518,9 +5538,13 @@ export declare const TagObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
5518
5538
|
}>>>;
|
|
5519
5539
|
}>, import("@scalar/typebox").TObject<{
|
|
5520
5540
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
5521
|
-
|
|
5522
|
-
|
|
5541
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
5542
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
5523
5543
|
}>>;
|
|
5544
|
+
}>, import("@scalar/typebox").TObject<{
|
|
5545
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
5546
|
+
}>, import("@scalar/typebox").TObject<{
|
|
5547
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
5524
5548
|
}>, import("@scalar/typebox").TObject<{
|
|
5525
5549
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
5526
5550
|
}>]>]>;
|
|
@@ -5626,6 +5650,7 @@ export declare const TagObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
5626
5650
|
title: import("@scalar/typebox").TString;
|
|
5627
5651
|
}>, import("@scalar/typebox").TObject<{
|
|
5628
5652
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
5653
|
+
name: import("@scalar/typebox").TString;
|
|
5629
5654
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
5630
5655
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
5631
5656
|
id: import("@scalar/typebox").TString;
|
|
@@ -5640,6 +5665,7 @@ export declare const TagObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
5640
5665
|
title: import("@scalar/typebox").TString;
|
|
5641
5666
|
}>, import("@scalar/typebox").TObject<{
|
|
5642
5667
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
5668
|
+
name: import("@scalar/typebox").TString;
|
|
5643
5669
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
5644
5670
|
}>]>;
|
|
5645
5671
|
}, "TagObject">;
|
|
@@ -5908,8 +5934,8 @@ export declare const CallbackObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
5908
5934
|
}>]>]>>>;
|
|
5909
5935
|
}>, import("@scalar/typebox").TObject<{
|
|
5910
5936
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
5911
|
-
|
|
5912
|
-
|
|
5937
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
5938
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
5913
5939
|
}>>;
|
|
5914
5940
|
}>, import("@scalar/typebox").TObject<{
|
|
5915
5941
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -6917,9 +6943,13 @@ export declare const CallbackObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
6917
6943
|
}>>>;
|
|
6918
6944
|
}>, import("@scalar/typebox").TObject<{
|
|
6919
6945
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
6920
|
-
|
|
6921
|
-
|
|
6946
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
6947
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
6922
6948
|
}>>;
|
|
6949
|
+
}>, import("@scalar/typebox").TObject<{
|
|
6950
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
6951
|
+
}>, import("@scalar/typebox").TObject<{
|
|
6952
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
6923
6953
|
}>, import("@scalar/typebox").TObject<{
|
|
6924
6954
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
6925
6955
|
}>]>]>;
|
|
@@ -7025,6 +7055,7 @@ export declare const CallbackObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
7025
7055
|
title: import("@scalar/typebox").TString;
|
|
7026
7056
|
}>, import("@scalar/typebox").TObject<{
|
|
7027
7057
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
7058
|
+
name: import("@scalar/typebox").TString;
|
|
7028
7059
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
7029
7060
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
7030
7061
|
id: import("@scalar/typebox").TString;
|
|
@@ -7039,6 +7070,7 @@ export declare const CallbackObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
7039
7070
|
title: import("@scalar/typebox").TString;
|
|
7040
7071
|
}>, import("@scalar/typebox").TObject<{
|
|
7041
7072
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
7073
|
+
name: import("@scalar/typebox").TString;
|
|
7042
7074
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
7043
7075
|
}>]>;
|
|
7044
7076
|
}, "CallbackObject">;
|
|
@@ -7307,8 +7339,8 @@ export declare const PathItemObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
7307
7339
|
}>]>]>>>;
|
|
7308
7340
|
}>, import("@scalar/typebox").TObject<{
|
|
7309
7341
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
7310
|
-
|
|
7311
|
-
|
|
7342
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
7343
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
7312
7344
|
}>>;
|
|
7313
7345
|
}>, import("@scalar/typebox").TObject<{
|
|
7314
7346
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -8316,9 +8348,13 @@ export declare const PathItemObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
8316
8348
|
}>>>;
|
|
8317
8349
|
}>, import("@scalar/typebox").TObject<{
|
|
8318
8350
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
8319
|
-
|
|
8320
|
-
|
|
8351
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
8352
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
8321
8353
|
}>>;
|
|
8354
|
+
}>, import("@scalar/typebox").TObject<{
|
|
8355
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
8356
|
+
}>, import("@scalar/typebox").TObject<{
|
|
8357
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
8322
8358
|
}>, import("@scalar/typebox").TObject<{
|
|
8323
8359
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
8324
8360
|
}>]>]>;
|
|
@@ -8424,6 +8460,7 @@ export declare const PathItemObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
8424
8460
|
title: import("@scalar/typebox").TString;
|
|
8425
8461
|
}>, import("@scalar/typebox").TObject<{
|
|
8426
8462
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
8463
|
+
name: import("@scalar/typebox").TString;
|
|
8427
8464
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
8428
8465
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
8429
8466
|
id: import("@scalar/typebox").TString;
|
|
@@ -8438,6 +8475,7 @@ export declare const PathItemObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
8438
8475
|
title: import("@scalar/typebox").TString;
|
|
8439
8476
|
}>, import("@scalar/typebox").TObject<{
|
|
8440
8477
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
8478
|
+
name: import("@scalar/typebox").TString;
|
|
8441
8479
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
8442
8480
|
}>]>;
|
|
8443
8481
|
}, "PathItemObject">;
|
|
@@ -8706,8 +8744,8 @@ export declare const PathsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
8706
8744
|
}>]>]>>>;
|
|
8707
8745
|
}>, import("@scalar/typebox").TObject<{
|
|
8708
8746
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
8709
|
-
|
|
8710
|
-
|
|
8747
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
8748
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
8711
8749
|
}>>;
|
|
8712
8750
|
}>, import("@scalar/typebox").TObject<{
|
|
8713
8751
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -9715,9 +9753,13 @@ export declare const PathsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
9715
9753
|
}>>>;
|
|
9716
9754
|
}>, import("@scalar/typebox").TObject<{
|
|
9717
9755
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
9718
|
-
|
|
9719
|
-
|
|
9756
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
9757
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
9720
9758
|
}>>;
|
|
9759
|
+
}>, import("@scalar/typebox").TObject<{
|
|
9760
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
9761
|
+
}>, import("@scalar/typebox").TObject<{
|
|
9762
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
9721
9763
|
}>, import("@scalar/typebox").TObject<{
|
|
9722
9764
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
9723
9765
|
}>]>]>;
|
|
@@ -9823,6 +9865,7 @@ export declare const PathsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
9823
9865
|
title: import("@scalar/typebox").TString;
|
|
9824
9866
|
}>, import("@scalar/typebox").TObject<{
|
|
9825
9867
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
9868
|
+
name: import("@scalar/typebox").TString;
|
|
9826
9869
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
9827
9870
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
9828
9871
|
id: import("@scalar/typebox").TString;
|
|
@@ -9837,6 +9880,7 @@ export declare const PathsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
9837
9880
|
title: import("@scalar/typebox").TString;
|
|
9838
9881
|
}>, import("@scalar/typebox").TObject<{
|
|
9839
9882
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
9883
|
+
name: import("@scalar/typebox").TString;
|
|
9840
9884
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
9841
9885
|
}>]>;
|
|
9842
9886
|
}, "PathsObject">;
|
|
@@ -10105,8 +10149,8 @@ export declare const OperationObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
10105
10149
|
}>]>]>>>;
|
|
10106
10150
|
}>, import("@scalar/typebox").TObject<{
|
|
10107
10151
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
10108
|
-
|
|
10109
|
-
|
|
10152
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
10153
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
10110
10154
|
}>>;
|
|
10111
10155
|
}>, import("@scalar/typebox").TObject<{
|
|
10112
10156
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -11114,9 +11158,13 @@ export declare const OperationObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
11114
11158
|
}>>>;
|
|
11115
11159
|
}>, import("@scalar/typebox").TObject<{
|
|
11116
11160
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
11117
|
-
|
|
11118
|
-
|
|
11161
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
11162
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
11119
11163
|
}>>;
|
|
11164
|
+
}>, import("@scalar/typebox").TObject<{
|
|
11165
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
11166
|
+
}>, import("@scalar/typebox").TObject<{
|
|
11167
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
11120
11168
|
}>, import("@scalar/typebox").TObject<{
|
|
11121
11169
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
11122
11170
|
}>]>]>;
|
|
@@ -11222,6 +11270,7 @@ export declare const OperationObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
11222
11270
|
title: import("@scalar/typebox").TString;
|
|
11223
11271
|
}>, import("@scalar/typebox").TObject<{
|
|
11224
11272
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
11273
|
+
name: import("@scalar/typebox").TString;
|
|
11225
11274
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
11226
11275
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
11227
11276
|
id: import("@scalar/typebox").TString;
|
|
@@ -11236,6 +11285,7 @@ export declare const OperationObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
11236
11285
|
title: import("@scalar/typebox").TString;
|
|
11237
11286
|
}>, import("@scalar/typebox").TObject<{
|
|
11238
11287
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
11288
|
+
name: import("@scalar/typebox").TString;
|
|
11239
11289
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
11240
11290
|
}>]>;
|
|
11241
11291
|
}, "OperationObject">;
|
|
@@ -11504,8 +11554,8 @@ export declare const SchemaObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
11504
11554
|
}>]>]>>>;
|
|
11505
11555
|
}>, import("@scalar/typebox").TObject<{
|
|
11506
11556
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
11507
|
-
|
|
11508
|
-
|
|
11557
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
11558
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
11509
11559
|
}>>;
|
|
11510
11560
|
}>, import("@scalar/typebox").TObject<{
|
|
11511
11561
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -12513,9 +12563,13 @@ export declare const SchemaObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
12513
12563
|
}>>>;
|
|
12514
12564
|
}>, import("@scalar/typebox").TObject<{
|
|
12515
12565
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
12516
|
-
|
|
12517
|
-
|
|
12566
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
12567
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
12518
12568
|
}>>;
|
|
12569
|
+
}>, import("@scalar/typebox").TObject<{
|
|
12570
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
12571
|
+
}>, import("@scalar/typebox").TObject<{
|
|
12572
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
12519
12573
|
}>, import("@scalar/typebox").TObject<{
|
|
12520
12574
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
12521
12575
|
}>]>]>;
|
|
@@ -12621,6 +12675,7 @@ export declare const SchemaObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
12621
12675
|
title: import("@scalar/typebox").TString;
|
|
12622
12676
|
}>, import("@scalar/typebox").TObject<{
|
|
12623
12677
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
12678
|
+
name: import("@scalar/typebox").TString;
|
|
12624
12679
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
12625
12680
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
12626
12681
|
id: import("@scalar/typebox").TString;
|
|
@@ -12635,6 +12690,7 @@ export declare const SchemaObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
12635
12690
|
title: import("@scalar/typebox").TString;
|
|
12636
12691
|
}>, import("@scalar/typebox").TObject<{
|
|
12637
12692
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
12693
|
+
name: import("@scalar/typebox").TString;
|
|
12638
12694
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
12639
12695
|
}>]>;
|
|
12640
12696
|
}, "SchemaObject">;
|
|
@@ -12903,8 +12959,8 @@ export declare const EncodingObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
12903
12959
|
}>]>]>>>;
|
|
12904
12960
|
}>, import("@scalar/typebox").TObject<{
|
|
12905
12961
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
12906
|
-
|
|
12907
|
-
|
|
12962
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
12963
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
12908
12964
|
}>>;
|
|
12909
12965
|
}>, import("@scalar/typebox").TObject<{
|
|
12910
12966
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -13912,9 +13968,13 @@ export declare const EncodingObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
13912
13968
|
}>>>;
|
|
13913
13969
|
}>, import("@scalar/typebox").TObject<{
|
|
13914
13970
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
13915
|
-
|
|
13916
|
-
|
|
13971
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
13972
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
13917
13973
|
}>>;
|
|
13974
|
+
}>, import("@scalar/typebox").TObject<{
|
|
13975
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
13976
|
+
}>, import("@scalar/typebox").TObject<{
|
|
13977
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
13918
13978
|
}>, import("@scalar/typebox").TObject<{
|
|
13919
13979
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
13920
13980
|
}>]>]>;
|
|
@@ -14020,6 +14080,7 @@ export declare const EncodingObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
14020
14080
|
title: import("@scalar/typebox").TString;
|
|
14021
14081
|
}>, import("@scalar/typebox").TObject<{
|
|
14022
14082
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
14083
|
+
name: import("@scalar/typebox").TString;
|
|
14023
14084
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
14024
14085
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
14025
14086
|
id: import("@scalar/typebox").TString;
|
|
@@ -14034,6 +14095,7 @@ export declare const EncodingObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
14034
14095
|
title: import("@scalar/typebox").TString;
|
|
14035
14096
|
}>, import("@scalar/typebox").TObject<{
|
|
14036
14097
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
14098
|
+
name: import("@scalar/typebox").TString;
|
|
14037
14099
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
14038
14100
|
}>]>;
|
|
14039
14101
|
}, "EncodingObject">;
|
|
@@ -14302,8 +14364,8 @@ export declare const MediaTypeObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
14302
14364
|
}>]>]>>>;
|
|
14303
14365
|
}>, import("@scalar/typebox").TObject<{
|
|
14304
14366
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
14305
|
-
|
|
14306
|
-
|
|
14367
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
14368
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
14307
14369
|
}>>;
|
|
14308
14370
|
}>, import("@scalar/typebox").TObject<{
|
|
14309
14371
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -15311,9 +15373,13 @@ export declare const MediaTypeObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
15311
15373
|
}>>>;
|
|
15312
15374
|
}>, import("@scalar/typebox").TObject<{
|
|
15313
15375
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
15314
|
-
|
|
15315
|
-
|
|
15376
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
15377
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
15316
15378
|
}>>;
|
|
15379
|
+
}>, import("@scalar/typebox").TObject<{
|
|
15380
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
15381
|
+
}>, import("@scalar/typebox").TObject<{
|
|
15382
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
15317
15383
|
}>, import("@scalar/typebox").TObject<{
|
|
15318
15384
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
15319
15385
|
}>]>]>;
|
|
@@ -15419,6 +15485,7 @@ export declare const MediaTypeObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
15419
15485
|
title: import("@scalar/typebox").TString;
|
|
15420
15486
|
}>, import("@scalar/typebox").TObject<{
|
|
15421
15487
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
15488
|
+
name: import("@scalar/typebox").TString;
|
|
15422
15489
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
15423
15490
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
15424
15491
|
id: import("@scalar/typebox").TString;
|
|
@@ -15433,6 +15500,7 @@ export declare const MediaTypeObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
15433
15500
|
title: import("@scalar/typebox").TString;
|
|
15434
15501
|
}>, import("@scalar/typebox").TObject<{
|
|
15435
15502
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
15503
|
+
name: import("@scalar/typebox").TString;
|
|
15436
15504
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
15437
15505
|
}>]>;
|
|
15438
15506
|
}, "MediaTypeObject">;
|
|
@@ -15701,8 +15769,8 @@ export declare const HeaderObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
15701
15769
|
}>]>]>>>;
|
|
15702
15770
|
}>, import("@scalar/typebox").TObject<{
|
|
15703
15771
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
15704
|
-
|
|
15705
|
-
|
|
15772
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
15773
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
15706
15774
|
}>>;
|
|
15707
15775
|
}>, import("@scalar/typebox").TObject<{
|
|
15708
15776
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -16710,9 +16778,13 @@ export declare const HeaderObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
16710
16778
|
}>>>;
|
|
16711
16779
|
}>, import("@scalar/typebox").TObject<{
|
|
16712
16780
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
16713
|
-
|
|
16714
|
-
|
|
16781
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
16782
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
16715
16783
|
}>>;
|
|
16784
|
+
}>, import("@scalar/typebox").TObject<{
|
|
16785
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
16786
|
+
}>, import("@scalar/typebox").TObject<{
|
|
16787
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
16716
16788
|
}>, import("@scalar/typebox").TObject<{
|
|
16717
16789
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
16718
16790
|
}>]>]>;
|
|
@@ -16818,6 +16890,7 @@ export declare const HeaderObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
16818
16890
|
title: import("@scalar/typebox").TString;
|
|
16819
16891
|
}>, import("@scalar/typebox").TObject<{
|
|
16820
16892
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
16893
|
+
name: import("@scalar/typebox").TString;
|
|
16821
16894
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
16822
16895
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
16823
16896
|
id: import("@scalar/typebox").TString;
|
|
@@ -16832,6 +16905,7 @@ export declare const HeaderObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
16832
16905
|
title: import("@scalar/typebox").TString;
|
|
16833
16906
|
}>, import("@scalar/typebox").TObject<{
|
|
16834
16907
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
16908
|
+
name: import("@scalar/typebox").TString;
|
|
16835
16909
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
16836
16910
|
}>]>;
|
|
16837
16911
|
}, "HeaderObject">;
|
|
@@ -17100,8 +17174,8 @@ export declare const ServerObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
17100
17174
|
}>]>]>>>;
|
|
17101
17175
|
}>, import("@scalar/typebox").TObject<{
|
|
17102
17176
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
17103
|
-
|
|
17104
|
-
|
|
17177
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
17178
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
17105
17179
|
}>>;
|
|
17106
17180
|
}>, import("@scalar/typebox").TObject<{
|
|
17107
17181
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -18109,9 +18183,13 @@ export declare const ServerObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
18109
18183
|
}>>>;
|
|
18110
18184
|
}>, import("@scalar/typebox").TObject<{
|
|
18111
18185
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
18112
|
-
|
|
18113
|
-
|
|
18186
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
18187
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
18114
18188
|
}>>;
|
|
18189
|
+
}>, import("@scalar/typebox").TObject<{
|
|
18190
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
18191
|
+
}>, import("@scalar/typebox").TObject<{
|
|
18192
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
18115
18193
|
}>, import("@scalar/typebox").TObject<{
|
|
18116
18194
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
18117
18195
|
}>]>]>;
|
|
@@ -18217,6 +18295,7 @@ export declare const ServerObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
18217
18295
|
title: import("@scalar/typebox").TString;
|
|
18218
18296
|
}>, import("@scalar/typebox").TObject<{
|
|
18219
18297
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
18298
|
+
name: import("@scalar/typebox").TString;
|
|
18220
18299
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
18221
18300
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
18222
18301
|
id: import("@scalar/typebox").TString;
|
|
@@ -18231,6 +18310,7 @@ export declare const ServerObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
18231
18310
|
title: import("@scalar/typebox").TString;
|
|
18232
18311
|
}>, import("@scalar/typebox").TObject<{
|
|
18233
18312
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
18313
|
+
name: import("@scalar/typebox").TString;
|
|
18234
18314
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
18235
18315
|
}>]>;
|
|
18236
18316
|
}, "ServerObject">;
|
|
@@ -18499,8 +18579,8 @@ export declare const ExternalDocumentationObjectSchema: import("@scalar/typebox"
|
|
|
18499
18579
|
}>]>]>>>;
|
|
18500
18580
|
}>, import("@scalar/typebox").TObject<{
|
|
18501
18581
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
18502
|
-
|
|
18503
|
-
|
|
18582
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
18583
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
18504
18584
|
}>>;
|
|
18505
18585
|
}>, import("@scalar/typebox").TObject<{
|
|
18506
18586
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -19508,9 +19588,13 @@ export declare const ExternalDocumentationObjectSchema: import("@scalar/typebox"
|
|
|
19508
19588
|
}>>>;
|
|
19509
19589
|
}>, import("@scalar/typebox").TObject<{
|
|
19510
19590
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
19511
|
-
|
|
19512
|
-
|
|
19591
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
19592
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
19513
19593
|
}>>;
|
|
19594
|
+
}>, import("@scalar/typebox").TObject<{
|
|
19595
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
19596
|
+
}>, import("@scalar/typebox").TObject<{
|
|
19597
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
19514
19598
|
}>, import("@scalar/typebox").TObject<{
|
|
19515
19599
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
19516
19600
|
}>]>]>;
|
|
@@ -19616,6 +19700,7 @@ export declare const ExternalDocumentationObjectSchema: import("@scalar/typebox"
|
|
|
19616
19700
|
title: import("@scalar/typebox").TString;
|
|
19617
19701
|
}>, import("@scalar/typebox").TObject<{
|
|
19618
19702
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
19703
|
+
name: import("@scalar/typebox").TString;
|
|
19619
19704
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
19620
19705
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
19621
19706
|
id: import("@scalar/typebox").TString;
|
|
@@ -19630,6 +19715,7 @@ export declare const ExternalDocumentationObjectSchema: import("@scalar/typebox"
|
|
|
19630
19715
|
title: import("@scalar/typebox").TString;
|
|
19631
19716
|
}>, import("@scalar/typebox").TObject<{
|
|
19632
19717
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
19718
|
+
name: import("@scalar/typebox").TString;
|
|
19633
19719
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
19634
19720
|
}>]>;
|
|
19635
19721
|
}, "ExternalDocumentationObject">;
|
|
@@ -19898,8 +19984,8 @@ export declare const InfoObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
19898
19984
|
}>]>]>>>;
|
|
19899
19985
|
}>, import("@scalar/typebox").TObject<{
|
|
19900
19986
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
19901
|
-
|
|
19902
|
-
|
|
19987
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
19988
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
19903
19989
|
}>>;
|
|
19904
19990
|
}>, import("@scalar/typebox").TObject<{
|
|
19905
19991
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -20907,9 +20993,13 @@ export declare const InfoObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
20907
20993
|
}>>>;
|
|
20908
20994
|
}>, import("@scalar/typebox").TObject<{
|
|
20909
20995
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
20910
|
-
|
|
20911
|
-
|
|
20996
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
20997
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
20912
20998
|
}>>;
|
|
20999
|
+
}>, import("@scalar/typebox").TObject<{
|
|
21000
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
21001
|
+
}>, import("@scalar/typebox").TObject<{
|
|
21002
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
20913
21003
|
}>, import("@scalar/typebox").TObject<{
|
|
20914
21004
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
20915
21005
|
}>]>]>;
|
|
@@ -21015,6 +21105,7 @@ export declare const InfoObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
21015
21105
|
title: import("@scalar/typebox").TString;
|
|
21016
21106
|
}>, import("@scalar/typebox").TObject<{
|
|
21017
21107
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
21108
|
+
name: import("@scalar/typebox").TString;
|
|
21018
21109
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
21019
21110
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
21020
21111
|
id: import("@scalar/typebox").TString;
|
|
@@ -21029,6 +21120,7 @@ export declare const InfoObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
21029
21120
|
title: import("@scalar/typebox").TString;
|
|
21030
21121
|
}>, import("@scalar/typebox").TObject<{
|
|
21031
21122
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
21123
|
+
name: import("@scalar/typebox").TString;
|
|
21032
21124
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
21033
21125
|
}>]>;
|
|
21034
21126
|
}, "InfoObject">;
|
|
@@ -21297,8 +21389,8 @@ export declare const ContactObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
21297
21389
|
}>]>]>>>;
|
|
21298
21390
|
}>, import("@scalar/typebox").TObject<{
|
|
21299
21391
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
21300
|
-
|
|
21301
|
-
|
|
21392
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
21393
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
21302
21394
|
}>>;
|
|
21303
21395
|
}>, import("@scalar/typebox").TObject<{
|
|
21304
21396
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -22306,9 +22398,13 @@ export declare const ContactObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
22306
22398
|
}>>>;
|
|
22307
22399
|
}>, import("@scalar/typebox").TObject<{
|
|
22308
22400
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
22309
|
-
|
|
22310
|
-
|
|
22401
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
22402
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
22311
22403
|
}>>;
|
|
22404
|
+
}>, import("@scalar/typebox").TObject<{
|
|
22405
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
22406
|
+
}>, import("@scalar/typebox").TObject<{
|
|
22407
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
22312
22408
|
}>, import("@scalar/typebox").TObject<{
|
|
22313
22409
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
22314
22410
|
}>]>]>;
|
|
@@ -22414,6 +22510,7 @@ export declare const ContactObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
22414
22510
|
title: import("@scalar/typebox").TString;
|
|
22415
22511
|
}>, import("@scalar/typebox").TObject<{
|
|
22416
22512
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
22513
|
+
name: import("@scalar/typebox").TString;
|
|
22417
22514
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
22418
22515
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
22419
22516
|
id: import("@scalar/typebox").TString;
|
|
@@ -22428,6 +22525,7 @@ export declare const ContactObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
22428
22525
|
title: import("@scalar/typebox").TString;
|
|
22429
22526
|
}>, import("@scalar/typebox").TObject<{
|
|
22430
22527
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
22528
|
+
name: import("@scalar/typebox").TString;
|
|
22431
22529
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
22432
22530
|
}>]>;
|
|
22433
22531
|
}, "ContactObject">;
|
|
@@ -22696,8 +22794,8 @@ export declare const LicenseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
22696
22794
|
}>]>]>>>;
|
|
22697
22795
|
}>, import("@scalar/typebox").TObject<{
|
|
22698
22796
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
22699
|
-
|
|
22700
|
-
|
|
22797
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
22798
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
22701
22799
|
}>>;
|
|
22702
22800
|
}>, import("@scalar/typebox").TObject<{
|
|
22703
22801
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -23705,9 +23803,13 @@ export declare const LicenseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
23705
23803
|
}>>>;
|
|
23706
23804
|
}>, import("@scalar/typebox").TObject<{
|
|
23707
23805
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
23708
|
-
|
|
23709
|
-
|
|
23806
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
23807
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
23710
23808
|
}>>;
|
|
23809
|
+
}>, import("@scalar/typebox").TObject<{
|
|
23810
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
23811
|
+
}>, import("@scalar/typebox").TObject<{
|
|
23812
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
23711
23813
|
}>, import("@scalar/typebox").TObject<{
|
|
23712
23814
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
23713
23815
|
}>]>]>;
|
|
@@ -23813,6 +23915,7 @@ export declare const LicenseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
23813
23915
|
title: import("@scalar/typebox").TString;
|
|
23814
23916
|
}>, import("@scalar/typebox").TObject<{
|
|
23815
23917
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
23918
|
+
name: import("@scalar/typebox").TString;
|
|
23816
23919
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
23817
23920
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
23818
23921
|
id: import("@scalar/typebox").TString;
|
|
@@ -23827,6 +23930,7 @@ export declare const LicenseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
23827
23930
|
title: import("@scalar/typebox").TString;
|
|
23828
23931
|
}>, import("@scalar/typebox").TObject<{
|
|
23829
23932
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
23933
|
+
name: import("@scalar/typebox").TString;
|
|
23830
23934
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
23831
23935
|
}>]>;
|
|
23832
23936
|
}, "LicenseObject">;
|
|
@@ -24095,8 +24199,8 @@ export declare const ResponseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
24095
24199
|
}>]>]>>>;
|
|
24096
24200
|
}>, import("@scalar/typebox").TObject<{
|
|
24097
24201
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
24098
|
-
|
|
24099
|
-
|
|
24202
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
24203
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
24100
24204
|
}>>;
|
|
24101
24205
|
}>, import("@scalar/typebox").TObject<{
|
|
24102
24206
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -25104,9 +25208,13 @@ export declare const ResponseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
25104
25208
|
}>>>;
|
|
25105
25209
|
}>, import("@scalar/typebox").TObject<{
|
|
25106
25210
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
25107
|
-
|
|
25108
|
-
|
|
25211
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
25212
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
25109
25213
|
}>>;
|
|
25214
|
+
}>, import("@scalar/typebox").TObject<{
|
|
25215
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
25216
|
+
}>, import("@scalar/typebox").TObject<{
|
|
25217
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
25110
25218
|
}>, import("@scalar/typebox").TObject<{
|
|
25111
25219
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
25112
25220
|
}>]>]>;
|
|
@@ -25212,6 +25320,7 @@ export declare const ResponseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
25212
25320
|
title: import("@scalar/typebox").TString;
|
|
25213
25321
|
}>, import("@scalar/typebox").TObject<{
|
|
25214
25322
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
25323
|
+
name: import("@scalar/typebox").TString;
|
|
25215
25324
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
25216
25325
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
25217
25326
|
id: import("@scalar/typebox").TString;
|
|
@@ -25226,6 +25335,7 @@ export declare const ResponseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
25226
25335
|
title: import("@scalar/typebox").TString;
|
|
25227
25336
|
}>, import("@scalar/typebox").TObject<{
|
|
25228
25337
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
25338
|
+
name: import("@scalar/typebox").TString;
|
|
25229
25339
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
25230
25340
|
}>]>;
|
|
25231
25341
|
}, "ResponseObject">;
|
|
@@ -25494,8 +25604,8 @@ export declare const ResponsesObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
25494
25604
|
}>]>]>>>;
|
|
25495
25605
|
}>, import("@scalar/typebox").TObject<{
|
|
25496
25606
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
25497
|
-
|
|
25498
|
-
|
|
25607
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
25608
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
25499
25609
|
}>>;
|
|
25500
25610
|
}>, import("@scalar/typebox").TObject<{
|
|
25501
25611
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -26503,9 +26613,13 @@ export declare const ResponsesObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
26503
26613
|
}>>>;
|
|
26504
26614
|
}>, import("@scalar/typebox").TObject<{
|
|
26505
26615
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
26506
|
-
|
|
26507
|
-
|
|
26616
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
26617
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
26508
26618
|
}>>;
|
|
26619
|
+
}>, import("@scalar/typebox").TObject<{
|
|
26620
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
26621
|
+
}>, import("@scalar/typebox").TObject<{
|
|
26622
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
26509
26623
|
}>, import("@scalar/typebox").TObject<{
|
|
26510
26624
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
26511
26625
|
}>]>]>;
|
|
@@ -26611,6 +26725,7 @@ export declare const ResponsesObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
26611
26725
|
title: import("@scalar/typebox").TString;
|
|
26612
26726
|
}>, import("@scalar/typebox").TObject<{
|
|
26613
26727
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
26728
|
+
name: import("@scalar/typebox").TString;
|
|
26614
26729
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
26615
26730
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
26616
26731
|
id: import("@scalar/typebox").TString;
|
|
@@ -26625,6 +26740,7 @@ export declare const ResponsesObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
26625
26740
|
title: import("@scalar/typebox").TString;
|
|
26626
26741
|
}>, import("@scalar/typebox").TObject<{
|
|
26627
26742
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
26743
|
+
name: import("@scalar/typebox").TString;
|
|
26628
26744
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
26629
26745
|
}>]>;
|
|
26630
26746
|
}, "ResponsesObject">;
|
|
@@ -26893,8 +27009,8 @@ export declare const ParameterObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
26893
27009
|
}>]>]>>>;
|
|
26894
27010
|
}>, import("@scalar/typebox").TObject<{
|
|
26895
27011
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
26896
|
-
|
|
26897
|
-
|
|
27012
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
27013
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
26898
27014
|
}>>;
|
|
26899
27015
|
}>, import("@scalar/typebox").TObject<{
|
|
26900
27016
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -27902,9 +28018,13 @@ export declare const ParameterObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
27902
28018
|
}>>>;
|
|
27903
28019
|
}>, import("@scalar/typebox").TObject<{
|
|
27904
28020
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
27905
|
-
|
|
27906
|
-
|
|
28021
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
28022
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
27907
28023
|
}>>;
|
|
28024
|
+
}>, import("@scalar/typebox").TObject<{
|
|
28025
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
28026
|
+
}>, import("@scalar/typebox").TObject<{
|
|
28027
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
27908
28028
|
}>, import("@scalar/typebox").TObject<{
|
|
27909
28029
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
27910
28030
|
}>]>]>;
|
|
@@ -28010,6 +28130,7 @@ export declare const ParameterObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
28010
28130
|
title: import("@scalar/typebox").TString;
|
|
28011
28131
|
}>, import("@scalar/typebox").TObject<{
|
|
28012
28132
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
28133
|
+
name: import("@scalar/typebox").TString;
|
|
28013
28134
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
28014
28135
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
28015
28136
|
id: import("@scalar/typebox").TString;
|
|
@@ -28024,6 +28145,7 @@ export declare const ParameterObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
28024
28145
|
title: import("@scalar/typebox").TString;
|
|
28025
28146
|
}>, import("@scalar/typebox").TObject<{
|
|
28026
28147
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
28148
|
+
name: import("@scalar/typebox").TString;
|
|
28027
28149
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
28028
28150
|
}>]>;
|
|
28029
28151
|
}, "ParameterObject">;
|
|
@@ -28292,8 +28414,8 @@ export declare const ExampleObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
28292
28414
|
}>]>]>>>;
|
|
28293
28415
|
}>, import("@scalar/typebox").TObject<{
|
|
28294
28416
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
28295
|
-
|
|
28296
|
-
|
|
28417
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
28418
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
28297
28419
|
}>>;
|
|
28298
28420
|
}>, import("@scalar/typebox").TObject<{
|
|
28299
28421
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -29301,9 +29423,13 @@ export declare const ExampleObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
29301
29423
|
}>>>;
|
|
29302
29424
|
}>, import("@scalar/typebox").TObject<{
|
|
29303
29425
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
29304
|
-
|
|
29305
|
-
|
|
29426
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
29427
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
29306
29428
|
}>>;
|
|
29429
|
+
}>, import("@scalar/typebox").TObject<{
|
|
29430
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
29431
|
+
}>, import("@scalar/typebox").TObject<{
|
|
29432
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
29307
29433
|
}>, import("@scalar/typebox").TObject<{
|
|
29308
29434
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
29309
29435
|
}>]>]>;
|
|
@@ -29409,6 +29535,7 @@ export declare const ExampleObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
29409
29535
|
title: import("@scalar/typebox").TString;
|
|
29410
29536
|
}>, import("@scalar/typebox").TObject<{
|
|
29411
29537
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
29538
|
+
name: import("@scalar/typebox").TString;
|
|
29412
29539
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
29413
29540
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
29414
29541
|
id: import("@scalar/typebox").TString;
|
|
@@ -29423,6 +29550,7 @@ export declare const ExampleObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
29423
29550
|
title: import("@scalar/typebox").TString;
|
|
29424
29551
|
}>, import("@scalar/typebox").TObject<{
|
|
29425
29552
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
29553
|
+
name: import("@scalar/typebox").TString;
|
|
29426
29554
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
29427
29555
|
}>]>;
|
|
29428
29556
|
}, "ExampleObject">;
|
|
@@ -29691,8 +29819,8 @@ export declare const RequestBodyObjectSchema: import("@scalar/typebox").TImport<
|
|
|
29691
29819
|
}>]>]>>>;
|
|
29692
29820
|
}>, import("@scalar/typebox").TObject<{
|
|
29693
29821
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
29694
|
-
|
|
29695
|
-
|
|
29822
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
29823
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
29696
29824
|
}>>;
|
|
29697
29825
|
}>, import("@scalar/typebox").TObject<{
|
|
29698
29826
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -30700,9 +30828,13 @@ export declare const RequestBodyObjectSchema: import("@scalar/typebox").TImport<
|
|
|
30700
30828
|
}>>>;
|
|
30701
30829
|
}>, import("@scalar/typebox").TObject<{
|
|
30702
30830
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
30703
|
-
|
|
30704
|
-
|
|
30831
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
30832
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
30705
30833
|
}>>;
|
|
30834
|
+
}>, import("@scalar/typebox").TObject<{
|
|
30835
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
30836
|
+
}>, import("@scalar/typebox").TObject<{
|
|
30837
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
30706
30838
|
}>, import("@scalar/typebox").TObject<{
|
|
30707
30839
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
30708
30840
|
}>]>]>;
|
|
@@ -30808,6 +30940,7 @@ export declare const RequestBodyObjectSchema: import("@scalar/typebox").TImport<
|
|
|
30808
30940
|
title: import("@scalar/typebox").TString;
|
|
30809
30941
|
}>, import("@scalar/typebox").TObject<{
|
|
30810
30942
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
30943
|
+
name: import("@scalar/typebox").TString;
|
|
30811
30944
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
30812
30945
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
30813
30946
|
id: import("@scalar/typebox").TString;
|
|
@@ -30822,6 +30955,7 @@ export declare const RequestBodyObjectSchema: import("@scalar/typebox").TImport<
|
|
|
30822
30955
|
title: import("@scalar/typebox").TString;
|
|
30823
30956
|
}>, import("@scalar/typebox").TObject<{
|
|
30824
30957
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
30958
|
+
name: import("@scalar/typebox").TString;
|
|
30825
30959
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
30826
30960
|
}>]>;
|
|
30827
30961
|
}, "RequestBodyObject">;
|
|
@@ -31090,8 +31224,8 @@ export declare const SecuritySchemeObjectSchema: import("@scalar/typebox").TImpo
|
|
|
31090
31224
|
}>]>]>>>;
|
|
31091
31225
|
}>, import("@scalar/typebox").TObject<{
|
|
31092
31226
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
31093
|
-
|
|
31094
|
-
|
|
31227
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
31228
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
31095
31229
|
}>>;
|
|
31096
31230
|
}>, import("@scalar/typebox").TObject<{
|
|
31097
31231
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -32099,9 +32233,13 @@ export declare const SecuritySchemeObjectSchema: import("@scalar/typebox").TImpo
|
|
|
32099
32233
|
}>>>;
|
|
32100
32234
|
}>, import("@scalar/typebox").TObject<{
|
|
32101
32235
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
32102
|
-
|
|
32103
|
-
|
|
32236
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
32237
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
32104
32238
|
}>>;
|
|
32239
|
+
}>, import("@scalar/typebox").TObject<{
|
|
32240
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
32241
|
+
}>, import("@scalar/typebox").TObject<{
|
|
32242
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
32105
32243
|
}>, import("@scalar/typebox").TObject<{
|
|
32106
32244
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
32107
32245
|
}>]>]>;
|
|
@@ -32207,6 +32345,7 @@ export declare const SecuritySchemeObjectSchema: import("@scalar/typebox").TImpo
|
|
|
32207
32345
|
title: import("@scalar/typebox").TString;
|
|
32208
32346
|
}>, import("@scalar/typebox").TObject<{
|
|
32209
32347
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
32348
|
+
name: import("@scalar/typebox").TString;
|
|
32210
32349
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
32211
32350
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
32212
32351
|
id: import("@scalar/typebox").TString;
|
|
@@ -32221,6 +32360,7 @@ export declare const SecuritySchemeObjectSchema: import("@scalar/typebox").TImpo
|
|
|
32221
32360
|
title: import("@scalar/typebox").TString;
|
|
32222
32361
|
}>, import("@scalar/typebox").TObject<{
|
|
32223
32362
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
32363
|
+
name: import("@scalar/typebox").TString;
|
|
32224
32364
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
32225
32365
|
}>]>;
|
|
32226
32366
|
}, "SecuritySchemeObject">;
|
|
@@ -32489,8 +32629,8 @@ export declare const LinkObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
32489
32629
|
}>]>]>>>;
|
|
32490
32630
|
}>, import("@scalar/typebox").TObject<{
|
|
32491
32631
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
32492
|
-
|
|
32493
|
-
|
|
32632
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
32633
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
32494
32634
|
}>>;
|
|
32495
32635
|
}>, import("@scalar/typebox").TObject<{
|
|
32496
32636
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -33498,9 +33638,13 @@ export declare const LinkObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
33498
33638
|
}>>>;
|
|
33499
33639
|
}>, import("@scalar/typebox").TObject<{
|
|
33500
33640
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
33501
|
-
|
|
33502
|
-
|
|
33641
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
33642
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
33503
33643
|
}>>;
|
|
33644
|
+
}>, import("@scalar/typebox").TObject<{
|
|
33645
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
33646
|
+
}>, import("@scalar/typebox").TObject<{
|
|
33647
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
33504
33648
|
}>, import("@scalar/typebox").TObject<{
|
|
33505
33649
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
33506
33650
|
}>]>]>;
|
|
@@ -33606,6 +33750,7 @@ export declare const LinkObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
33606
33750
|
title: import("@scalar/typebox").TString;
|
|
33607
33751
|
}>, import("@scalar/typebox").TObject<{
|
|
33608
33752
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
33753
|
+
name: import("@scalar/typebox").TString;
|
|
33609
33754
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
33610
33755
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
33611
33756
|
id: import("@scalar/typebox").TString;
|
|
@@ -33620,6 +33765,7 @@ export declare const LinkObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
33620
33765
|
title: import("@scalar/typebox").TString;
|
|
33621
33766
|
}>, import("@scalar/typebox").TObject<{
|
|
33622
33767
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
33768
|
+
name: import("@scalar/typebox").TString;
|
|
33623
33769
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
33624
33770
|
}>]>;
|
|
33625
33771
|
}, "LinkObject">;
|
|
@@ -33888,8 +34034,8 @@ export declare const XMLObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
33888
34034
|
}>]>]>>>;
|
|
33889
34035
|
}>, import("@scalar/typebox").TObject<{
|
|
33890
34036
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
33891
|
-
|
|
33892
|
-
|
|
34037
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
34038
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
33893
34039
|
}>>;
|
|
33894
34040
|
}>, import("@scalar/typebox").TObject<{
|
|
33895
34041
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -34897,9 +35043,13 @@ export declare const XMLObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
34897
35043
|
}>>>;
|
|
34898
35044
|
}>, import("@scalar/typebox").TObject<{
|
|
34899
35045
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
34900
|
-
|
|
34901
|
-
|
|
35046
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
35047
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
34902
35048
|
}>>;
|
|
35049
|
+
}>, import("@scalar/typebox").TObject<{
|
|
35050
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
35051
|
+
}>, import("@scalar/typebox").TObject<{
|
|
35052
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
34903
35053
|
}>, import("@scalar/typebox").TObject<{
|
|
34904
35054
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
34905
35055
|
}>]>]>;
|
|
@@ -35005,6 +35155,7 @@ export declare const XMLObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
35005
35155
|
title: import("@scalar/typebox").TString;
|
|
35006
35156
|
}>, import("@scalar/typebox").TObject<{
|
|
35007
35157
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
35158
|
+
name: import("@scalar/typebox").TString;
|
|
35008
35159
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
35009
35160
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
35010
35161
|
id: import("@scalar/typebox").TString;
|
|
@@ -35019,6 +35170,7 @@ export declare const XMLObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
35019
35170
|
title: import("@scalar/typebox").TString;
|
|
35020
35171
|
}>, import("@scalar/typebox").TObject<{
|
|
35021
35172
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
35173
|
+
name: import("@scalar/typebox").TString;
|
|
35022
35174
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
35023
35175
|
}>]>;
|
|
35024
35176
|
}, "XMLObject">;
|
|
@@ -35287,8 +35439,8 @@ export declare const DiscriminatorObjectSchema: import("@scalar/typebox").TImpor
|
|
|
35287
35439
|
}>]>]>>>;
|
|
35288
35440
|
}>, import("@scalar/typebox").TObject<{
|
|
35289
35441
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
35290
|
-
|
|
35291
|
-
|
|
35442
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
35443
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
35292
35444
|
}>>;
|
|
35293
35445
|
}>, import("@scalar/typebox").TObject<{
|
|
35294
35446
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -36296,9 +36448,13 @@ export declare const DiscriminatorObjectSchema: import("@scalar/typebox").TImpor
|
|
|
36296
36448
|
}>>>;
|
|
36297
36449
|
}>, import("@scalar/typebox").TObject<{
|
|
36298
36450
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
36299
|
-
|
|
36300
|
-
|
|
36451
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
36452
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
36301
36453
|
}>>;
|
|
36454
|
+
}>, import("@scalar/typebox").TObject<{
|
|
36455
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
36456
|
+
}>, import("@scalar/typebox").TObject<{
|
|
36457
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
36302
36458
|
}>, import("@scalar/typebox").TObject<{
|
|
36303
36459
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
36304
36460
|
}>]>]>;
|
|
@@ -36404,6 +36560,7 @@ export declare const DiscriminatorObjectSchema: import("@scalar/typebox").TImpor
|
|
|
36404
36560
|
title: import("@scalar/typebox").TString;
|
|
36405
36561
|
}>, import("@scalar/typebox").TObject<{
|
|
36406
36562
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
36563
|
+
name: import("@scalar/typebox").TString;
|
|
36407
36564
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
36408
36565
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
36409
36566
|
id: import("@scalar/typebox").TString;
|
|
@@ -36418,6 +36575,7 @@ export declare const DiscriminatorObjectSchema: import("@scalar/typebox").TImpor
|
|
|
36418
36575
|
title: import("@scalar/typebox").TString;
|
|
36419
36576
|
}>, import("@scalar/typebox").TObject<{
|
|
36420
36577
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
36578
|
+
name: import("@scalar/typebox").TString;
|
|
36421
36579
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
36422
36580
|
}>]>;
|
|
36423
36581
|
}, "DiscriminatorObject">;
|
|
@@ -36686,8 +36844,8 @@ export declare const OAuthFlowsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
36686
36844
|
}>]>]>>>;
|
|
36687
36845
|
}>, import("@scalar/typebox").TObject<{
|
|
36688
36846
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
36689
|
-
|
|
36690
|
-
|
|
36847
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
36848
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
36691
36849
|
}>>;
|
|
36692
36850
|
}>, import("@scalar/typebox").TObject<{
|
|
36693
36851
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -37695,9 +37853,13 @@ export declare const OAuthFlowsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
37695
37853
|
}>>>;
|
|
37696
37854
|
}>, import("@scalar/typebox").TObject<{
|
|
37697
37855
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
37698
|
-
|
|
37699
|
-
|
|
37856
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
37857
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
37700
37858
|
}>>;
|
|
37859
|
+
}>, import("@scalar/typebox").TObject<{
|
|
37860
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
37861
|
+
}>, import("@scalar/typebox").TObject<{
|
|
37862
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
37701
37863
|
}>, import("@scalar/typebox").TObject<{
|
|
37702
37864
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
37703
37865
|
}>]>]>;
|
|
@@ -37803,6 +37965,7 @@ export declare const OAuthFlowsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
37803
37965
|
title: import("@scalar/typebox").TString;
|
|
37804
37966
|
}>, import("@scalar/typebox").TObject<{
|
|
37805
37967
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
37968
|
+
name: import("@scalar/typebox").TString;
|
|
37806
37969
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
37807
37970
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
37808
37971
|
id: import("@scalar/typebox").TString;
|
|
@@ -37817,6 +37980,7 @@ export declare const OAuthFlowsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
37817
37980
|
title: import("@scalar/typebox").TString;
|
|
37818
37981
|
}>, import("@scalar/typebox").TObject<{
|
|
37819
37982
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
37983
|
+
name: import("@scalar/typebox").TString;
|
|
37820
37984
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
37821
37985
|
}>]>;
|
|
37822
37986
|
}, "OAuthFlowsObject">;
|
|
@@ -38085,8 +38249,8 @@ export declare const ServerVariableObjectSchema: import("@scalar/typebox").TImpo
|
|
|
38085
38249
|
}>]>]>>>;
|
|
38086
38250
|
}>, import("@scalar/typebox").TObject<{
|
|
38087
38251
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
38088
|
-
|
|
38089
|
-
|
|
38252
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
38253
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
38090
38254
|
}>>;
|
|
38091
38255
|
}>, import("@scalar/typebox").TObject<{
|
|
38092
38256
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -39094,9 +39258,13 @@ export declare const ServerVariableObjectSchema: import("@scalar/typebox").TImpo
|
|
|
39094
39258
|
}>>>;
|
|
39095
39259
|
}>, import("@scalar/typebox").TObject<{
|
|
39096
39260
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
39097
|
-
|
|
39098
|
-
|
|
39261
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
39262
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
39099
39263
|
}>>;
|
|
39264
|
+
}>, import("@scalar/typebox").TObject<{
|
|
39265
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
39266
|
+
}>, import("@scalar/typebox").TObject<{
|
|
39267
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
39100
39268
|
}>, import("@scalar/typebox").TObject<{
|
|
39101
39269
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
39102
39270
|
}>]>]>;
|
|
@@ -39202,6 +39370,7 @@ export declare const ServerVariableObjectSchema: import("@scalar/typebox").TImpo
|
|
|
39202
39370
|
title: import("@scalar/typebox").TString;
|
|
39203
39371
|
}>, import("@scalar/typebox").TObject<{
|
|
39204
39372
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
39373
|
+
name: import("@scalar/typebox").TString;
|
|
39205
39374
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
39206
39375
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
39207
39376
|
id: import("@scalar/typebox").TString;
|
|
@@ -39216,6 +39385,7 @@ export declare const ServerVariableObjectSchema: import("@scalar/typebox").TImpo
|
|
|
39216
39385
|
title: import("@scalar/typebox").TString;
|
|
39217
39386
|
}>, import("@scalar/typebox").TObject<{
|
|
39218
39387
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
39388
|
+
name: import("@scalar/typebox").TString;
|
|
39219
39389
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
39220
39390
|
}>]>;
|
|
39221
39391
|
}, "ServerVariableObject">;
|
|
@@ -39484,8 +39654,8 @@ export declare const TraversedDescriptionSchema: import("@scalar/typebox").TImpo
|
|
|
39484
39654
|
}>]>]>>>;
|
|
39485
39655
|
}>, import("@scalar/typebox").TObject<{
|
|
39486
39656
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
39487
|
-
|
|
39488
|
-
|
|
39657
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
39658
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
39489
39659
|
}>>;
|
|
39490
39660
|
}>, import("@scalar/typebox").TObject<{
|
|
39491
39661
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -40493,9 +40663,13 @@ export declare const TraversedDescriptionSchema: import("@scalar/typebox").TImpo
|
|
|
40493
40663
|
}>>>;
|
|
40494
40664
|
}>, import("@scalar/typebox").TObject<{
|
|
40495
40665
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
40496
|
-
|
|
40497
|
-
|
|
40666
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
40667
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
40498
40668
|
}>>;
|
|
40669
|
+
}>, import("@scalar/typebox").TObject<{
|
|
40670
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
40671
|
+
}>, import("@scalar/typebox").TObject<{
|
|
40672
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
40499
40673
|
}>, import("@scalar/typebox").TObject<{
|
|
40500
40674
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
40501
40675
|
}>]>]>;
|
|
@@ -40601,6 +40775,7 @@ export declare const TraversedDescriptionSchema: import("@scalar/typebox").TImpo
|
|
|
40601
40775
|
title: import("@scalar/typebox").TString;
|
|
40602
40776
|
}>, import("@scalar/typebox").TObject<{
|
|
40603
40777
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
40778
|
+
name: import("@scalar/typebox").TString;
|
|
40604
40779
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
40605
40780
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
40606
40781
|
id: import("@scalar/typebox").TString;
|
|
@@ -40615,6 +40790,7 @@ export declare const TraversedDescriptionSchema: import("@scalar/typebox").TImpo
|
|
|
40615
40790
|
title: import("@scalar/typebox").TString;
|
|
40616
40791
|
}>, import("@scalar/typebox").TObject<{
|
|
40617
40792
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
40793
|
+
name: import("@scalar/typebox").TString;
|
|
40618
40794
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
40619
40795
|
}>]>;
|
|
40620
40796
|
}, "TraversedDescriptionObject">;
|
|
@@ -40883,8 +41059,8 @@ export declare const TraversedEntrySchema: import("@scalar/typebox").TImport<{
|
|
|
40883
41059
|
}>]>]>>>;
|
|
40884
41060
|
}>, import("@scalar/typebox").TObject<{
|
|
40885
41061
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
40886
|
-
|
|
40887
|
-
|
|
41062
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
41063
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
40888
41064
|
}>>;
|
|
40889
41065
|
}>, import("@scalar/typebox").TObject<{
|
|
40890
41066
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -41892,9 +42068,13 @@ export declare const TraversedEntrySchema: import("@scalar/typebox").TImport<{
|
|
|
41892
42068
|
}>>>;
|
|
41893
42069
|
}>, import("@scalar/typebox").TObject<{
|
|
41894
42070
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
41895
|
-
|
|
41896
|
-
|
|
42071
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
42072
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
41897
42073
|
}>>;
|
|
42074
|
+
}>, import("@scalar/typebox").TObject<{
|
|
42075
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
42076
|
+
}>, import("@scalar/typebox").TObject<{
|
|
42077
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
41898
42078
|
}>, import("@scalar/typebox").TObject<{
|
|
41899
42079
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
41900
42080
|
}>]>]>;
|
|
@@ -42000,6 +42180,7 @@ export declare const TraversedEntrySchema: import("@scalar/typebox").TImport<{
|
|
|
42000
42180
|
title: import("@scalar/typebox").TString;
|
|
42001
42181
|
}>, import("@scalar/typebox").TObject<{
|
|
42002
42182
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
42183
|
+
name: import("@scalar/typebox").TString;
|
|
42003
42184
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
42004
42185
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
42005
42186
|
id: import("@scalar/typebox").TString;
|
|
@@ -42014,6 +42195,7 @@ export declare const TraversedEntrySchema: import("@scalar/typebox").TImport<{
|
|
|
42014
42195
|
title: import("@scalar/typebox").TString;
|
|
42015
42196
|
}>, import("@scalar/typebox").TObject<{
|
|
42016
42197
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
42198
|
+
name: import("@scalar/typebox").TString;
|
|
42017
42199
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
42018
42200
|
}>]>;
|
|
42019
42201
|
}, "TraversedEntryObject">;
|
|
@@ -42282,8 +42464,8 @@ export declare const TraversedTagSchema: import("@scalar/typebox").TImport<{
|
|
|
42282
42464
|
}>]>]>>>;
|
|
42283
42465
|
}>, import("@scalar/typebox").TObject<{
|
|
42284
42466
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
42285
|
-
|
|
42286
|
-
|
|
42467
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
42468
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
42287
42469
|
}>>;
|
|
42288
42470
|
}>, import("@scalar/typebox").TObject<{
|
|
42289
42471
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -43291,9 +43473,13 @@ export declare const TraversedTagSchema: import("@scalar/typebox").TImport<{
|
|
|
43291
43473
|
}>>>;
|
|
43292
43474
|
}>, import("@scalar/typebox").TObject<{
|
|
43293
43475
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
43294
|
-
|
|
43295
|
-
|
|
43476
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
43477
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
43296
43478
|
}>>;
|
|
43479
|
+
}>, import("@scalar/typebox").TObject<{
|
|
43480
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
43481
|
+
}>, import("@scalar/typebox").TObject<{
|
|
43482
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
43297
43483
|
}>, import("@scalar/typebox").TObject<{
|
|
43298
43484
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
43299
43485
|
}>]>]>;
|
|
@@ -43399,6 +43585,7 @@ export declare const TraversedTagSchema: import("@scalar/typebox").TImport<{
|
|
|
43399
43585
|
title: import("@scalar/typebox").TString;
|
|
43400
43586
|
}>, import("@scalar/typebox").TObject<{
|
|
43401
43587
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
43588
|
+
name: import("@scalar/typebox").TString;
|
|
43402
43589
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
43403
43590
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
43404
43591
|
id: import("@scalar/typebox").TString;
|
|
@@ -43413,6 +43600,7 @@ export declare const TraversedTagSchema: import("@scalar/typebox").TImport<{
|
|
|
43413
43600
|
title: import("@scalar/typebox").TString;
|
|
43414
43601
|
}>, import("@scalar/typebox").TObject<{
|
|
43415
43602
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
43603
|
+
name: import("@scalar/typebox").TString;
|
|
43416
43604
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
43417
43605
|
}>]>;
|
|
43418
43606
|
}, "TraversedTagObject">;
|
|
@@ -43681,8 +43869,8 @@ export declare const TraversedOperationSchema: import("@scalar/typebox").TImport
|
|
|
43681
43869
|
}>]>]>>>;
|
|
43682
43870
|
}>, import("@scalar/typebox").TObject<{
|
|
43683
43871
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
43684
|
-
|
|
43685
|
-
|
|
43872
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
43873
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
43686
43874
|
}>>;
|
|
43687
43875
|
}>, import("@scalar/typebox").TObject<{
|
|
43688
43876
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -44690,9 +44878,13 @@ export declare const TraversedOperationSchema: import("@scalar/typebox").TImport
|
|
|
44690
44878
|
}>>>;
|
|
44691
44879
|
}>, import("@scalar/typebox").TObject<{
|
|
44692
44880
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
44693
|
-
|
|
44694
|
-
|
|
44881
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
44882
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
44695
44883
|
}>>;
|
|
44884
|
+
}>, import("@scalar/typebox").TObject<{
|
|
44885
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
44886
|
+
}>, import("@scalar/typebox").TObject<{
|
|
44887
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
44696
44888
|
}>, import("@scalar/typebox").TObject<{
|
|
44697
44889
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
44698
44890
|
}>]>]>;
|
|
@@ -44798,6 +44990,7 @@ export declare const TraversedOperationSchema: import("@scalar/typebox").TImport
|
|
|
44798
44990
|
title: import("@scalar/typebox").TString;
|
|
44799
44991
|
}>, import("@scalar/typebox").TObject<{
|
|
44800
44992
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
44993
|
+
name: import("@scalar/typebox").TString;
|
|
44801
44994
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
44802
44995
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
44803
44996
|
id: import("@scalar/typebox").TString;
|
|
@@ -44812,6 +45005,7 @@ export declare const TraversedOperationSchema: import("@scalar/typebox").TImport
|
|
|
44812
45005
|
title: import("@scalar/typebox").TString;
|
|
44813
45006
|
}>, import("@scalar/typebox").TObject<{
|
|
44814
45007
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
45008
|
+
name: import("@scalar/typebox").TString;
|
|
44815
45009
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
44816
45010
|
}>]>;
|
|
44817
45011
|
}, "TraversedOperationObject">;
|
|
@@ -45080,8 +45274,8 @@ export declare const TraversedSchemaSchema: import("@scalar/typebox").TImport<{
|
|
|
45080
45274
|
}>]>]>>>;
|
|
45081
45275
|
}>, import("@scalar/typebox").TObject<{
|
|
45082
45276
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
45083
|
-
|
|
45084
|
-
|
|
45277
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
45278
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
45085
45279
|
}>>;
|
|
45086
45280
|
}>, import("@scalar/typebox").TObject<{
|
|
45087
45281
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -46089,9 +46283,13 @@ export declare const TraversedSchemaSchema: import("@scalar/typebox").TImport<{
|
|
|
46089
46283
|
}>>>;
|
|
46090
46284
|
}>, import("@scalar/typebox").TObject<{
|
|
46091
46285
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
46092
|
-
|
|
46093
|
-
|
|
46286
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
46287
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
46094
46288
|
}>>;
|
|
46289
|
+
}>, import("@scalar/typebox").TObject<{
|
|
46290
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
46291
|
+
}>, import("@scalar/typebox").TObject<{
|
|
46292
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
46095
46293
|
}>, import("@scalar/typebox").TObject<{
|
|
46096
46294
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
46097
46295
|
}>]>]>;
|
|
@@ -46197,6 +46395,7 @@ export declare const TraversedSchemaSchema: import("@scalar/typebox").TImport<{
|
|
|
46197
46395
|
title: import("@scalar/typebox").TString;
|
|
46198
46396
|
}>, import("@scalar/typebox").TObject<{
|
|
46199
46397
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
46398
|
+
name: import("@scalar/typebox").TString;
|
|
46200
46399
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
46201
46400
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
46202
46401
|
id: import("@scalar/typebox").TString;
|
|
@@ -46211,6 +46410,7 @@ export declare const TraversedSchemaSchema: import("@scalar/typebox").TImport<{
|
|
|
46211
46410
|
title: import("@scalar/typebox").TString;
|
|
46212
46411
|
}>, import("@scalar/typebox").TObject<{
|
|
46213
46412
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
46413
|
+
name: import("@scalar/typebox").TString;
|
|
46214
46414
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
46215
46415
|
}>]>;
|
|
46216
46416
|
}, "TraversedSchemaObject">;
|
|
@@ -46479,8 +46679,8 @@ export declare const TraversedWebhookSchema: import("@scalar/typebox").TImport<{
|
|
|
46479
46679
|
}>]>]>>>;
|
|
46480
46680
|
}>, import("@scalar/typebox").TObject<{
|
|
46481
46681
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
46482
|
-
|
|
46483
|
-
|
|
46682
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
46683
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
46484
46684
|
}>>;
|
|
46485
46685
|
}>, import("@scalar/typebox").TObject<{
|
|
46486
46686
|
'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
@@ -47488,9 +47688,13 @@ export declare const TraversedWebhookSchema: import("@scalar/typebox").TImport<{
|
|
|
47488
47688
|
}>>>;
|
|
47489
47689
|
}>, import("@scalar/typebox").TObject<{
|
|
47490
47690
|
'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
47491
|
-
|
|
47492
|
-
|
|
47691
|
+
selectedIndex: import("@scalar/typebox").TInteger;
|
|
47692
|
+
selectedSchemes: import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>;
|
|
47493
47693
|
}>>;
|
|
47694
|
+
}>, import("@scalar/typebox").TObject<{
|
|
47695
|
+
'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
47696
|
+
}>, import("@scalar/typebox").TObject<{
|
|
47697
|
+
'x-scalar-document-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
47494
47698
|
}>, import("@scalar/typebox").TObject<{
|
|
47495
47699
|
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
47496
47700
|
}>]>]>;
|
|
@@ -47596,6 +47800,7 @@ export declare const TraversedWebhookSchema: import("@scalar/typebox").TImport<{
|
|
|
47596
47800
|
title: import("@scalar/typebox").TString;
|
|
47597
47801
|
}>, import("@scalar/typebox").TObject<{
|
|
47598
47802
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
47803
|
+
name: import("@scalar/typebox").TString;
|
|
47599
47804
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
47600
47805
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
47601
47806
|
id: import("@scalar/typebox").TString;
|
|
@@ -47610,6 +47815,7 @@ export declare const TraversedWebhookSchema: import("@scalar/typebox").TImport<{
|
|
|
47610
47815
|
title: import("@scalar/typebox").TString;
|
|
47611
47816
|
}>, import("@scalar/typebox").TObject<{
|
|
47612
47817
|
type: import("@scalar/typebox").TLiteral<"document">;
|
|
47818
|
+
name: import("@scalar/typebox").TString;
|
|
47613
47819
|
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
47614
47820
|
}>]>;
|
|
47615
47821
|
}, "TraversedWebhookObject">;
|