@scalar/workspace-store 0.38.1 → 0.39.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 +27 -0
- package/dist/entities/auth/index.d.ts.map +1 -1
- package/dist/entities/auth/index.js +13 -21
- package/dist/entities/auth/index.js.map +2 -2
- package/dist/entities/auth/schema.d.ts +50 -0
- package/dist/entities/auth/schema.d.ts.map +1 -1
- package/dist/events/definitions/operation.d.ts +13 -0
- package/dist/events/definitions/operation.d.ts.map +1 -1
- package/dist/events/definitions/ui.d.ts +9 -1
- package/dist/events/definitions/ui.d.ts.map +1 -1
- package/dist/helpers/detect-changes-proxy.d.ts +5 -2
- package/dist/helpers/detect-changes-proxy.d.ts.map +1 -1
- package/dist/helpers/detect-changes-proxy.js +7 -0
- package/dist/helpers/detect-changes-proxy.js.map +2 -2
- package/dist/mutators/document.d.ts.map +1 -1
- package/dist/mutators/document.js +2 -2
- package/dist/mutators/document.js.map +2 -2
- package/dist/mutators/environment.d.ts +7 -0
- package/dist/mutators/environment.d.ts.map +1 -1
- package/dist/mutators/environment.js.map +2 -2
- package/dist/mutators/index.d.ts +2 -0
- package/dist/mutators/index.d.ts.map +1 -1
- package/dist/mutators/operation/helpers/sync-path-parameters.d.ts +43 -7
- package/dist/mutators/operation/helpers/sync-path-parameters.d.ts.map +1 -1
- package/dist/mutators/operation/helpers/sync-path-parameters.js +30 -25
- package/dist/mutators/operation/helpers/sync-path-parameters.js.map +2 -2
- package/dist/mutators/operation/index.d.ts +1 -0
- package/dist/mutators/operation/index.d.ts.map +1 -1
- package/dist/mutators/operation/index.js +2 -0
- package/dist/mutators/operation/index.js.map +2 -2
- package/dist/mutators/operation/operation.d.ts +12 -0
- package/dist/mutators/operation/operation.d.ts.map +1 -1
- package/dist/mutators/operation/operation.js +62 -4
- package/dist/mutators/operation/operation.js.map +2 -2
- 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/bundler/index.d.ts.map +1 -1
- package/dist/plugins/bundler/index.js +29 -25
- package/dist/plugins/bundler/index.js.map +3 -3
- package/dist/plugins/client/persistence.d.ts.map +1 -1
- package/dist/plugins/client/persistence.js +28 -1
- package/dist/plugins/client/persistence.js.map +2 -2
- package/dist/schemas/inmemory-workspace.d.ts +30 -0
- package/dist/schemas/inmemory-workspace.d.ts.map +1 -1
- package/dist/schemas/reference-config/index.d.ts +10 -0
- package/dist/schemas/reference-config/index.d.ts.map +1 -1
- package/dist/schemas/reference-config/settings.d.ts +10 -0
- package/dist/schemas/reference-config/settings.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/openapi-document.d.ts +350 -0
- package/dist/schemas/v3.1/strict/openapi-document.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/schema.d.ts +13 -0
- package/dist/schemas/v3.1/strict/schema.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/schema.js +3 -1
- package/dist/schemas/v3.1/strict/schema.js.map +2 -2
- package/dist/schemas/workspace.d.ts +30 -0
- package/dist/schemas/workspace.d.ts.map +1 -1
- package/dist/workspace-plugin.d.ts +6 -0
- package/dist/workspace-plugin.d.ts.map +1 -1
- package/package.json +6 -6
|
@@ -790,6 +790,16 @@ export declare const OpenAPIDocumentSchema: import("@scalar/typebox").TImport<{
|
|
|
790
790
|
}>]>, import("@scalar/typebox").TObject<{
|
|
791
791
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
792
792
|
}>]>]>>>;
|
|
793
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
794
|
+
$ref: import("@scalar/typebox").TString;
|
|
795
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
796
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
797
|
+
}>, import("@scalar/typebox").TObject<{
|
|
798
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
799
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
800
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
801
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
802
|
+
}>]>]>>;
|
|
793
803
|
}>, import("@scalar/typebox").TObject<{
|
|
794
804
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
795
805
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -2191,6 +2201,16 @@ export declare const ComponentsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
2191
2201
|
}>]>, import("@scalar/typebox").TObject<{
|
|
2192
2202
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
2193
2203
|
}>]>]>>>;
|
|
2204
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
2205
|
+
$ref: import("@scalar/typebox").TString;
|
|
2206
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
2207
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
2208
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2209
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
2210
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
2211
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
2212
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
2213
|
+
}>]>]>>;
|
|
2194
2214
|
}>, import("@scalar/typebox").TObject<{
|
|
2195
2215
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
2196
2216
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -3592,6 +3612,16 @@ export declare const SecurityRequirementObjectSchema: import("@scalar/typebox").
|
|
|
3592
3612
|
}>]>, import("@scalar/typebox").TObject<{
|
|
3593
3613
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
3594
3614
|
}>]>]>>>;
|
|
3615
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
3616
|
+
$ref: import("@scalar/typebox").TString;
|
|
3617
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
3618
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
3619
|
+
}>, import("@scalar/typebox").TObject<{
|
|
3620
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
3621
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
3622
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
3623
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
3624
|
+
}>]>]>>;
|
|
3595
3625
|
}>, import("@scalar/typebox").TObject<{
|
|
3596
3626
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
3597
3627
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -4993,6 +5023,16 @@ export declare const TagObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
4993
5023
|
}>]>, import("@scalar/typebox").TObject<{
|
|
4994
5024
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
4995
5025
|
}>]>]>>>;
|
|
5026
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
5027
|
+
$ref: import("@scalar/typebox").TString;
|
|
5028
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
5029
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
5030
|
+
}>, import("@scalar/typebox").TObject<{
|
|
5031
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
5032
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
5033
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
5034
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
5035
|
+
}>]>]>>;
|
|
4996
5036
|
}>, import("@scalar/typebox").TObject<{
|
|
4997
5037
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
4998
5038
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -6394,6 +6434,16 @@ export declare const CallbackObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
6394
6434
|
}>]>, import("@scalar/typebox").TObject<{
|
|
6395
6435
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
6396
6436
|
}>]>]>>>;
|
|
6437
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
6438
|
+
$ref: import("@scalar/typebox").TString;
|
|
6439
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
6440
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
6441
|
+
}>, import("@scalar/typebox").TObject<{
|
|
6442
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
6443
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
6444
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
6445
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
6446
|
+
}>]>]>>;
|
|
6397
6447
|
}>, import("@scalar/typebox").TObject<{
|
|
6398
6448
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
6399
6449
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -7795,6 +7845,16 @@ export declare const PathItemObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
7795
7845
|
}>]>, import("@scalar/typebox").TObject<{
|
|
7796
7846
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
7797
7847
|
}>]>]>>>;
|
|
7848
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
7849
|
+
$ref: import("@scalar/typebox").TString;
|
|
7850
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
7851
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
7852
|
+
}>, import("@scalar/typebox").TObject<{
|
|
7853
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
7854
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
7855
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
7856
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
7857
|
+
}>]>]>>;
|
|
7798
7858
|
}>, import("@scalar/typebox").TObject<{
|
|
7799
7859
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
7800
7860
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -9196,6 +9256,16 @@ export declare const PathsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
9196
9256
|
}>]>, import("@scalar/typebox").TObject<{
|
|
9197
9257
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
9198
9258
|
}>]>]>>>;
|
|
9259
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
9260
|
+
$ref: import("@scalar/typebox").TString;
|
|
9261
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
9262
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
9263
|
+
}>, import("@scalar/typebox").TObject<{
|
|
9264
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
9265
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
9266
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
9267
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
9268
|
+
}>]>]>>;
|
|
9199
9269
|
}>, import("@scalar/typebox").TObject<{
|
|
9200
9270
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
9201
9271
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -10597,6 +10667,16 @@ export declare const OperationObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
10597
10667
|
}>]>, import("@scalar/typebox").TObject<{
|
|
10598
10668
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
10599
10669
|
}>]>]>>>;
|
|
10670
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
10671
|
+
$ref: import("@scalar/typebox").TString;
|
|
10672
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
10673
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
10674
|
+
}>, import("@scalar/typebox").TObject<{
|
|
10675
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
10676
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
10677
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
10678
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
10679
|
+
}>]>]>>;
|
|
10600
10680
|
}>, import("@scalar/typebox").TObject<{
|
|
10601
10681
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
10602
10682
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -11998,6 +12078,16 @@ export declare const SchemaObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
11998
12078
|
}>]>, import("@scalar/typebox").TObject<{
|
|
11999
12079
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
12000
12080
|
}>]>]>>>;
|
|
12081
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
12082
|
+
$ref: import("@scalar/typebox").TString;
|
|
12083
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
12084
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
12085
|
+
}>, import("@scalar/typebox").TObject<{
|
|
12086
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
12087
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
12088
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
12089
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
12090
|
+
}>]>]>>;
|
|
12001
12091
|
}>, import("@scalar/typebox").TObject<{
|
|
12002
12092
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
12003
12093
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -13399,6 +13489,16 @@ export declare const EncodingObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
13399
13489
|
}>]>, import("@scalar/typebox").TObject<{
|
|
13400
13490
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
13401
13491
|
}>]>]>>>;
|
|
13492
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
13493
|
+
$ref: import("@scalar/typebox").TString;
|
|
13494
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
13495
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
13496
|
+
}>, import("@scalar/typebox").TObject<{
|
|
13497
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
13498
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
13499
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
13500
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
13501
|
+
}>]>]>>;
|
|
13402
13502
|
}>, import("@scalar/typebox").TObject<{
|
|
13403
13503
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
13404
13504
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -14800,6 +14900,16 @@ export declare const MediaTypeObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
14800
14900
|
}>]>, import("@scalar/typebox").TObject<{
|
|
14801
14901
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
14802
14902
|
}>]>]>>>;
|
|
14903
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
14904
|
+
$ref: import("@scalar/typebox").TString;
|
|
14905
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
14906
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
14907
|
+
}>, import("@scalar/typebox").TObject<{
|
|
14908
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
14909
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
14910
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
14911
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
14912
|
+
}>]>]>>;
|
|
14803
14913
|
}>, import("@scalar/typebox").TObject<{
|
|
14804
14914
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
14805
14915
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -16201,6 +16311,16 @@ export declare const HeaderObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
16201
16311
|
}>]>, import("@scalar/typebox").TObject<{
|
|
16202
16312
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
16203
16313
|
}>]>]>>>;
|
|
16314
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
16315
|
+
$ref: import("@scalar/typebox").TString;
|
|
16316
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
16317
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
16318
|
+
}>, import("@scalar/typebox").TObject<{
|
|
16319
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
16320
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
16321
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
16322
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
16323
|
+
}>]>]>>;
|
|
16204
16324
|
}>, import("@scalar/typebox").TObject<{
|
|
16205
16325
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
16206
16326
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -17602,6 +17722,16 @@ export declare const ServerObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
17602
17722
|
}>]>, import("@scalar/typebox").TObject<{
|
|
17603
17723
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
17604
17724
|
}>]>]>>>;
|
|
17725
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
17726
|
+
$ref: import("@scalar/typebox").TString;
|
|
17727
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
17728
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
17729
|
+
}>, import("@scalar/typebox").TObject<{
|
|
17730
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
17731
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
17732
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
17733
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
17734
|
+
}>]>]>>;
|
|
17605
17735
|
}>, import("@scalar/typebox").TObject<{
|
|
17606
17736
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
17607
17737
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -19003,6 +19133,16 @@ export declare const ExternalDocumentationObjectSchema: import("@scalar/typebox"
|
|
|
19003
19133
|
}>]>, import("@scalar/typebox").TObject<{
|
|
19004
19134
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
19005
19135
|
}>]>]>>>;
|
|
19136
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
19137
|
+
$ref: import("@scalar/typebox").TString;
|
|
19138
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
19139
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
19140
|
+
}>, import("@scalar/typebox").TObject<{
|
|
19141
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
19142
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
19143
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
19144
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
19145
|
+
}>]>]>>;
|
|
19006
19146
|
}>, import("@scalar/typebox").TObject<{
|
|
19007
19147
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
19008
19148
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -20404,6 +20544,16 @@ export declare const InfoObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
20404
20544
|
}>]>, import("@scalar/typebox").TObject<{
|
|
20405
20545
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
20406
20546
|
}>]>]>>>;
|
|
20547
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
20548
|
+
$ref: import("@scalar/typebox").TString;
|
|
20549
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
20550
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
20551
|
+
}>, import("@scalar/typebox").TObject<{
|
|
20552
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
20553
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
20554
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
20555
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
20556
|
+
}>]>]>>;
|
|
20407
20557
|
}>, import("@scalar/typebox").TObject<{
|
|
20408
20558
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
20409
20559
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -21805,6 +21955,16 @@ export declare const ContactObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
21805
21955
|
}>]>, import("@scalar/typebox").TObject<{
|
|
21806
21956
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
21807
21957
|
}>]>]>>>;
|
|
21958
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
21959
|
+
$ref: import("@scalar/typebox").TString;
|
|
21960
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
21961
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
21962
|
+
}>, import("@scalar/typebox").TObject<{
|
|
21963
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
21964
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
21965
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
21966
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
21967
|
+
}>]>]>>;
|
|
21808
21968
|
}>, import("@scalar/typebox").TObject<{
|
|
21809
21969
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
21810
21970
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -23206,6 +23366,16 @@ export declare const LicenseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
23206
23366
|
}>]>, import("@scalar/typebox").TObject<{
|
|
23207
23367
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
23208
23368
|
}>]>]>>>;
|
|
23369
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
23370
|
+
$ref: import("@scalar/typebox").TString;
|
|
23371
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
23372
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
23373
|
+
}>, import("@scalar/typebox").TObject<{
|
|
23374
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
23375
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
23376
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
23377
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
23378
|
+
}>]>]>>;
|
|
23209
23379
|
}>, import("@scalar/typebox").TObject<{
|
|
23210
23380
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
23211
23381
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -24607,6 +24777,16 @@ export declare const ResponseObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
24607
24777
|
}>]>, import("@scalar/typebox").TObject<{
|
|
24608
24778
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
24609
24779
|
}>]>]>>>;
|
|
24780
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
24781
|
+
$ref: import("@scalar/typebox").TString;
|
|
24782
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
24783
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
24784
|
+
}>, import("@scalar/typebox").TObject<{
|
|
24785
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
24786
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
24787
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
24788
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
24789
|
+
}>]>]>>;
|
|
24610
24790
|
}>, import("@scalar/typebox").TObject<{
|
|
24611
24791
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
24612
24792
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -26008,6 +26188,16 @@ export declare const ResponsesObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
26008
26188
|
}>]>, import("@scalar/typebox").TObject<{
|
|
26009
26189
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
26010
26190
|
}>]>]>>>;
|
|
26191
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
26192
|
+
$ref: import("@scalar/typebox").TString;
|
|
26193
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
26194
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
26195
|
+
}>, import("@scalar/typebox").TObject<{
|
|
26196
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
26197
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
26198
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
26199
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
26200
|
+
}>]>]>>;
|
|
26011
26201
|
}>, import("@scalar/typebox").TObject<{
|
|
26012
26202
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
26013
26203
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -27409,6 +27599,16 @@ export declare const ParameterObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
27409
27599
|
}>]>, import("@scalar/typebox").TObject<{
|
|
27410
27600
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
27411
27601
|
}>]>]>>>;
|
|
27602
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
27603
|
+
$ref: import("@scalar/typebox").TString;
|
|
27604
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
27605
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
27606
|
+
}>, import("@scalar/typebox").TObject<{
|
|
27607
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
27608
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
27609
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
27610
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
27611
|
+
}>]>]>>;
|
|
27412
27612
|
}>, import("@scalar/typebox").TObject<{
|
|
27413
27613
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
27414
27614
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -28810,6 +29010,16 @@ export declare const ExampleObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
28810
29010
|
}>]>, import("@scalar/typebox").TObject<{
|
|
28811
29011
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
28812
29012
|
}>]>]>>>;
|
|
29013
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
29014
|
+
$ref: import("@scalar/typebox").TString;
|
|
29015
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
29016
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
29017
|
+
}>, import("@scalar/typebox").TObject<{
|
|
29018
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
29019
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
29020
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
29021
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
29022
|
+
}>]>]>>;
|
|
28813
29023
|
}>, import("@scalar/typebox").TObject<{
|
|
28814
29024
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
28815
29025
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -30211,6 +30421,16 @@ export declare const RequestBodyObjectSchema: import("@scalar/typebox").TImport<
|
|
|
30211
30421
|
}>]>, import("@scalar/typebox").TObject<{
|
|
30212
30422
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
30213
30423
|
}>]>]>>>;
|
|
30424
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
30425
|
+
$ref: import("@scalar/typebox").TString;
|
|
30426
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
30427
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
30428
|
+
}>, import("@scalar/typebox").TObject<{
|
|
30429
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
30430
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
30431
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
30432
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
30433
|
+
}>]>]>>;
|
|
30214
30434
|
}>, import("@scalar/typebox").TObject<{
|
|
30215
30435
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
30216
30436
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -31612,6 +31832,16 @@ export declare const SecuritySchemesSchema: import("@scalar/typebox").TImport<{
|
|
|
31612
31832
|
}>]>, import("@scalar/typebox").TObject<{
|
|
31613
31833
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
31614
31834
|
}>]>]>>>;
|
|
31835
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
31836
|
+
$ref: import("@scalar/typebox").TString;
|
|
31837
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
31838
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
31839
|
+
}>, import("@scalar/typebox").TObject<{
|
|
31840
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
31841
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
31842
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
31843
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
31844
|
+
}>]>]>>;
|
|
31615
31845
|
}>, import("@scalar/typebox").TObject<{
|
|
31616
31846
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
31617
31847
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -33013,6 +33243,16 @@ export declare const SecuritySchemeObjectSchema: import("@scalar/typebox").TImpo
|
|
|
33013
33243
|
}>]>, import("@scalar/typebox").TObject<{
|
|
33014
33244
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
33015
33245
|
}>]>]>>>;
|
|
33246
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
33247
|
+
$ref: import("@scalar/typebox").TString;
|
|
33248
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
33249
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
33250
|
+
}>, import("@scalar/typebox").TObject<{
|
|
33251
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
33252
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
33253
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
33254
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
33255
|
+
}>]>]>>;
|
|
33016
33256
|
}>, import("@scalar/typebox").TObject<{
|
|
33017
33257
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
33018
33258
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -34414,6 +34654,16 @@ export declare const LinkObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
34414
34654
|
}>]>, import("@scalar/typebox").TObject<{
|
|
34415
34655
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
34416
34656
|
}>]>]>>>;
|
|
34657
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
34658
|
+
$ref: import("@scalar/typebox").TString;
|
|
34659
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
34660
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
34661
|
+
}>, import("@scalar/typebox").TObject<{
|
|
34662
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
34663
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
34664
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
34665
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
34666
|
+
}>]>]>>;
|
|
34417
34667
|
}>, import("@scalar/typebox").TObject<{
|
|
34418
34668
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
34419
34669
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -35815,6 +36065,16 @@ export declare const XMLObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
35815
36065
|
}>]>, import("@scalar/typebox").TObject<{
|
|
35816
36066
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
35817
36067
|
}>]>]>>>;
|
|
36068
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
36069
|
+
$ref: import("@scalar/typebox").TString;
|
|
36070
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
36071
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
36072
|
+
}>, import("@scalar/typebox").TObject<{
|
|
36073
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
36074
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
36075
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
36076
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
36077
|
+
}>]>]>>;
|
|
35818
36078
|
}>, import("@scalar/typebox").TObject<{
|
|
35819
36079
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
35820
36080
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -37216,6 +37476,16 @@ export declare const DiscriminatorObjectSchema: import("@scalar/typebox").TImpor
|
|
|
37216
37476
|
}>]>, import("@scalar/typebox").TObject<{
|
|
37217
37477
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
37218
37478
|
}>]>]>>>;
|
|
37479
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
37480
|
+
$ref: import("@scalar/typebox").TString;
|
|
37481
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
37482
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
37483
|
+
}>, import("@scalar/typebox").TObject<{
|
|
37484
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
37485
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
37486
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
37487
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
37488
|
+
}>]>]>>;
|
|
37219
37489
|
}>, import("@scalar/typebox").TObject<{
|
|
37220
37490
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
37221
37491
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -38617,6 +38887,16 @@ export declare const OAuthFlowsObjectSchema: import("@scalar/typebox").TImport<{
|
|
|
38617
38887
|
}>]>, import("@scalar/typebox").TObject<{
|
|
38618
38888
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
38619
38889
|
}>]>]>>>;
|
|
38890
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
38891
|
+
$ref: import("@scalar/typebox").TString;
|
|
38892
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
38893
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
38894
|
+
}>, import("@scalar/typebox").TObject<{
|
|
38895
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
38896
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
38897
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
38898
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
38899
|
+
}>]>]>>;
|
|
38620
38900
|
}>, import("@scalar/typebox").TObject<{
|
|
38621
38901
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
38622
38902
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -40018,6 +40298,16 @@ export declare const ServerVariableObjectSchema: import("@scalar/typebox").TImpo
|
|
|
40018
40298
|
}>]>, import("@scalar/typebox").TObject<{
|
|
40019
40299
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
40020
40300
|
}>]>]>>>;
|
|
40301
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
40302
|
+
$ref: import("@scalar/typebox").TString;
|
|
40303
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
40304
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
40305
|
+
}>, import("@scalar/typebox").TObject<{
|
|
40306
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
40307
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
40308
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
40309
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
40310
|
+
}>]>]>>;
|
|
40021
40311
|
}>, import("@scalar/typebox").TObject<{
|
|
40022
40312
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
40023
40313
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -41419,6 +41709,16 @@ export declare const TraversedDescriptionSchema: import("@scalar/typebox").TImpo
|
|
|
41419
41709
|
}>]>, import("@scalar/typebox").TObject<{
|
|
41420
41710
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
41421
41711
|
}>]>]>>>;
|
|
41712
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
41713
|
+
$ref: import("@scalar/typebox").TString;
|
|
41714
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
41715
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
41716
|
+
}>, import("@scalar/typebox").TObject<{
|
|
41717
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
41718
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
41719
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
41720
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
41721
|
+
}>]>]>>;
|
|
41422
41722
|
}>, import("@scalar/typebox").TObject<{
|
|
41423
41723
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
41424
41724
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -42820,6 +43120,16 @@ export declare const TraversedEntrySchema: import("@scalar/typebox").TImport<{
|
|
|
42820
43120
|
}>]>, import("@scalar/typebox").TObject<{
|
|
42821
43121
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
42822
43122
|
}>]>]>>>;
|
|
43123
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
43124
|
+
$ref: import("@scalar/typebox").TString;
|
|
43125
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
43126
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
43127
|
+
}>, import("@scalar/typebox").TObject<{
|
|
43128
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
43129
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
43130
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
43131
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
43132
|
+
}>]>]>>;
|
|
42823
43133
|
}>, import("@scalar/typebox").TObject<{
|
|
42824
43134
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
42825
43135
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -44221,6 +44531,16 @@ export declare const TraversedTagSchema: import("@scalar/typebox").TImport<{
|
|
|
44221
44531
|
}>]>, import("@scalar/typebox").TObject<{
|
|
44222
44532
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
44223
44533
|
}>]>]>>>;
|
|
44534
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
44535
|
+
$ref: import("@scalar/typebox").TString;
|
|
44536
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
44537
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
44538
|
+
}>, import("@scalar/typebox").TObject<{
|
|
44539
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
44540
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
44541
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
44542
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
44543
|
+
}>]>]>>;
|
|
44224
44544
|
}>, import("@scalar/typebox").TObject<{
|
|
44225
44545
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
44226
44546
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -45622,6 +45942,16 @@ export declare const TraversedOperationSchema: import("@scalar/typebox").TImport
|
|
|
45622
45942
|
}>]>, import("@scalar/typebox").TObject<{
|
|
45623
45943
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
45624
45944
|
}>]>]>>>;
|
|
45945
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
45946
|
+
$ref: import("@scalar/typebox").TString;
|
|
45947
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
45948
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
45949
|
+
}>, import("@scalar/typebox").TObject<{
|
|
45950
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
45951
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
45952
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
45953
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
45954
|
+
}>]>]>>;
|
|
45625
45955
|
}>, import("@scalar/typebox").TObject<{
|
|
45626
45956
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
45627
45957
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -47023,6 +47353,16 @@ export declare const TraversedSchemaSchema: import("@scalar/typebox").TImport<{
|
|
|
47023
47353
|
}>]>, import("@scalar/typebox").TObject<{
|
|
47024
47354
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
47025
47355
|
}>]>]>>>;
|
|
47356
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
47357
|
+
$ref: import("@scalar/typebox").TString;
|
|
47358
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
47359
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
47360
|
+
}>, import("@scalar/typebox").TObject<{
|
|
47361
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
47362
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
47363
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
47364
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
47365
|
+
}>]>]>>;
|
|
47026
47366
|
}>, import("@scalar/typebox").TObject<{
|
|
47027
47367
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
47028
47368
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -48424,6 +48764,16 @@ export declare const TraversedWebhookSchema: import("@scalar/typebox").TImport<{
|
|
|
48424
48764
|
}>]>, import("@scalar/typebox").TObject<{
|
|
48425
48765
|
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
48426
48766
|
}>]>]>>>;
|
|
48767
|
+
propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
48768
|
+
$ref: import("@scalar/typebox").TString;
|
|
48769
|
+
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
48770
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
48771
|
+
}>, import("@scalar/typebox").TObject<{
|
|
48772
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
|
|
48773
|
+
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
48774
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
48775
|
+
'$ref-value': import("@scalar/typebox").TUnknown;
|
|
48776
|
+
}>]>]>>;
|
|
48427
48777
|
}>, import("@scalar/typebox").TObject<{
|
|
48428
48778
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
48429
48779
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|