@scalar/workspace-store 0.17.1 → 0.18.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 +47 -0
- package/dist/client.d.ts +31 -19
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +267 -88
- package/dist/client.js.map +3 -3
- package/dist/events/bus.d.ts +86 -0
- package/dist/events/bus.d.ts.map +1 -0
- package/dist/events/bus.js +58 -0
- package/dist/events/bus.js.map +7 -0
- package/dist/events/definitions/analytics.d.ts +27 -0
- package/dist/events/definitions/analytics.d.ts.map +1 -0
- package/dist/events/definitions/analytics.js +1 -0
- package/dist/events/definitions/analytics.js.map +7 -0
- package/dist/events/definitions/auth.d.ts +30 -0
- package/dist/events/definitions/auth.d.ts.map +1 -0
- package/dist/events/definitions/auth.js +1 -0
- package/dist/events/definitions/auth.js.map +7 -0
- package/dist/events/definitions/document.d.ts +14 -0
- package/dist/events/definitions/document.d.ts.map +1 -0
- package/dist/events/definitions/document.js +1 -0
- package/dist/events/definitions/document.js.map +7 -0
- package/dist/events/definitions/index.d.ts +10 -0
- package/dist/events/definitions/index.d.ts.map +1 -0
- package/dist/events/definitions/index.js +1 -0
- package/dist/events/definitions/index.js.map +7 -0
- package/dist/events/definitions/meta.d.ts +11 -0
- package/dist/events/definitions/meta.d.ts.map +1 -0
- package/dist/events/definitions/meta.js +1 -0
- package/dist/events/definitions/meta.js.map +7 -0
- package/dist/events/definitions/operation.d.ts +11 -0
- package/dist/events/definitions/operation.d.ts.map +1 -0
- package/dist/events/definitions/operation.js +1 -0
- package/dist/events/definitions/operation.js.map +7 -0
- package/dist/events/definitions/server.d.ts +50 -0
- package/dist/events/definitions/server.d.ts.map +1 -0
- package/dist/events/definitions/server.js +1 -0
- package/dist/events/definitions/server.js.map +7 -0
- package/dist/events/definitions/ui.d.ts +52 -0
- package/dist/events/definitions/ui.d.ts.map +1 -0
- package/dist/events/definitions/ui.js +1 -0
- package/dist/events/definitions/ui.js.map +7 -0
- package/dist/events/index.d.ts +2 -1
- package/dist/events/index.d.ts.map +1 -1
- package/dist/events/index.js +3 -1
- package/dist/events/index.js.map +2 -2
- package/dist/events/listeners.d.ts +2 -1
- package/dist/events/listeners.d.ts.map +1 -1
- package/dist/events/listeners.js.map +2 -2
- package/dist/events/{definitions.d.ts → old-definitions.d.ts} +35 -11
- package/dist/events/old-definitions.d.ts.map +1 -0
- package/dist/events/{definitions.js → old-definitions.js} +1 -1
- package/dist/events/old-definitions.js.map +7 -0
- package/dist/helpers/debounce.d.ts +28 -0
- package/dist/helpers/debounce.d.ts.map +1 -0
- package/dist/helpers/debounce.js +31 -0
- package/dist/helpers/debounce.js.map +7 -0
- package/dist/helpers/detect-changes-proxy.d.ts +47 -0
- package/dist/helpers/detect-changes-proxy.d.ts.map +1 -0
- package/dist/helpers/detect-changes-proxy.js +59 -0
- package/dist/helpers/detect-changes-proxy.js.map +7 -0
- package/dist/helpers/overrides-proxy.d.ts +17 -6
- package/dist/helpers/overrides-proxy.d.ts.map +1 -1
- package/dist/helpers/overrides-proxy.js +33 -18
- package/dist/helpers/overrides-proxy.js.map +3 -3
- package/dist/helpers/unpack-proxy.d.ts +6 -0
- package/dist/helpers/unpack-proxy.d.ts.map +1 -0
- package/dist/helpers/unpack-proxy.js +9 -0
- package/dist/helpers/unpack-proxy.js.map +7 -0
- package/dist/navigation/get-navigation-options.d.ts +1 -1
- package/dist/navigation/get-navigation-options.d.ts.map +1 -1
- package/dist/navigation/get-navigation-options.js +66 -54
- package/dist/navigation/get-navigation-options.js.map +2 -2
- package/dist/navigation/helpers/get-tag.d.ts +7 -2
- package/dist/navigation/helpers/get-tag.d.ts.map +1 -1
- package/dist/navigation/helpers/get-tag.js +16 -2
- package/dist/navigation/helpers/get-tag.js.map +2 -2
- package/dist/navigation/helpers/traverse-description.d.ts +7 -2
- package/dist/navigation/helpers/traverse-description.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-description.js +24 -6
- package/dist/navigation/helpers/traverse-description.js.map +2 -2
- package/dist/navigation/helpers/traverse-document.d.ts +5 -2
- package/dist/navigation/helpers/traverse-document.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-document.js +53 -15
- package/dist/navigation/helpers/traverse-document.js.map +2 -2
- package/dist/navigation/helpers/traverse-paths.d.ts +9 -3
- package/dist/navigation/helpers/traverse-paths.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-paths.js +63 -9
- package/dist/navigation/helpers/traverse-paths.js.map +2 -2
- package/dist/navigation/helpers/traverse-schemas.d.ts +7 -8
- package/dist/navigation/helpers/traverse-schemas.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-schemas.js +35 -7
- package/dist/navigation/helpers/traverse-schemas.js.map +2 -2
- package/dist/navigation/helpers/traverse-tags.d.ts +8 -4
- package/dist/navigation/helpers/traverse-tags.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-tags.js +65 -17
- package/dist/navigation/helpers/traverse-tags.js.map +2 -2
- package/dist/navigation/helpers/traverse-webhooks.d.ts +9 -3
- package/dist/navigation/helpers/traverse-webhooks.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-webhooks.js +43 -17
- package/dist/navigation/helpers/traverse-webhooks.js.map +2 -2
- package/dist/navigation/types.d.ts +5 -24
- package/dist/navigation/types.d.ts.map +1 -1
- package/dist/persistence/index.d.ts +86 -0
- package/dist/persistence/index.d.ts.map +1 -0
- package/dist/persistence/index.js +196 -0
- package/dist/persistence/index.js.map +7 -0
- package/dist/persistence/indexdb.d.ts +87 -0
- package/dist/persistence/indexdb.d.ts.map +1 -0
- package/dist/persistence/indexdb.js +125 -0
- package/dist/persistence/indexdb.js.map +7 -0
- package/dist/{plugins.d.ts → plugins/bundler/index.d.ts} +1 -1
- package/dist/plugins/bundler/index.d.ts.map +1 -0
- package/dist/{plugins.js → plugins/bundler/index.js} +2 -2
- package/dist/{plugins.js.map → plugins/bundler/index.js.map} +1 -1
- package/dist/plugins/client/index.d.ts +3 -0
- package/dist/plugins/client/index.d.ts.map +1 -0
- package/dist/plugins/client/index.js +5 -0
- package/dist/plugins/client/index.js.map +7 -0
- package/dist/plugins/client/persistence.d.ts +13 -0
- package/dist/plugins/client/persistence.d.ts.map +1 -0
- package/dist/plugins/client/persistence.js +57 -0
- package/dist/plugins/client/persistence.js.map +7 -0
- package/dist/schemas/extensions.d.ts +1 -0
- package/dist/schemas/extensions.d.ts.map +1 -1
- package/dist/schemas/extensions.js +1 -0
- package/dist/schemas/extensions.js.map +2 -2
- package/dist/schemas/inmemory-workspace.d.ts +71 -12
- package/dist/schemas/inmemory-workspace.d.ts.map +1 -1
- package/dist/schemas/inmemory-workspace.js +1 -9
- package/dist/schemas/inmemory-workspace.js.map +2 -2
- package/dist/schemas/navigation.d.ts +128 -1
- package/dist/schemas/navigation.d.ts.map +1 -1
- package/dist/schemas/navigation.js +20 -1
- package/dist/schemas/navigation.js.map +2 -2
- package/dist/schemas/reference-config/index.d.ts +231 -198
- package/dist/schemas/reference-config/index.d.ts.map +1 -1
- package/dist/schemas/reference-config/index.js.map +2 -2
- package/dist/schemas/reference-config/settings.d.ts +33 -1
- package/dist/schemas/reference-config/settings.d.ts.map +1 -1
- package/dist/schemas/reference-config/settings.js +1 -1
- package/dist/schemas/reference-config/settings.js.map +1 -1
- package/dist/schemas/v3.1/strict/openapi-document.d.ts +1131 -37
- package/dist/schemas/v3.1/strict/openapi-document.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/openapi-document.js +16 -9
- package/dist/schemas/v3.1/strict/openapi-document.js.map +2 -2
- package/dist/schemas/v3.1/strict/parameter.d.ts +23 -1
- package/dist/schemas/v3.1/strict/parameter.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/parameter.js +5 -1
- package/dist/schemas/v3.1/strict/parameter.js.map +2 -2
- package/dist/schemas/v3.1/strict/ref-definitions.d.ts +2 -0
- package/dist/schemas/v3.1/strict/ref-definitions.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/ref-definitions.js +4 -1
- package/dist/schemas/v3.1/strict/ref-definitions.js.map +2 -2
- package/dist/schemas/workspace-specification/config.d.ts +34 -7
- package/dist/schemas/workspace-specification/config.d.ts.map +1 -1
- package/dist/schemas/workspace-specification/config.js.map +1 -1
- package/dist/schemas/workspace-specification/index.d.ts +36 -3
- package/dist/schemas/workspace-specification/index.d.ts.map +1 -1
- package/dist/schemas/workspace.d.ts +238 -10
- package/dist/schemas/workspace.d.ts.map +1 -1
- package/dist/schemas/workspace.js +3 -1
- package/dist/schemas/workspace.js.map +2 -2
- package/dist/server.d.ts +4 -3
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +7 -6
- package/dist/server.js.map +2 -2
- package/dist/workspace-plugin.d.ts +49 -0
- package/dist/workspace-plugin.d.ts.map +1 -0
- package/dist/workspace-plugin.js +1 -0
- package/dist/workspace-plugin.js.map +7 -0
- package/package.json +21 -9
- package/dist/events/definitions.d.ts.map +0 -1
- package/dist/events/definitions.js.map +0 -7
- package/dist/plugins.d.ts.map +0 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { type TArray, type TLiteral } from '@scalar/typebox';
|
|
2
|
+
import { AVAILABLE_CLIENTS } from '@scalar/types/snippetz';
|
|
2
3
|
import type { RequiredDeep } from 'type-fest';
|
|
3
4
|
import { type Appearance } from './appearance.js';
|
|
4
5
|
import { type Features } from './features.js';
|
|
@@ -16,14 +17,14 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
16
17
|
settings: import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
17
18
|
proxyUrl: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
18
19
|
searchKey: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
19
|
-
servers: import("@scalar/typebox").TOptional<
|
|
20
|
+
servers: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TImport<{
|
|
20
21
|
ComponentsObject: import("@scalar/typebox").TObject<{
|
|
21
22
|
schemas: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
22
23
|
$ref: import("@scalar/typebox").TString;
|
|
23
24
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
24
25
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
25
26
|
}>, import("@scalar/typebox").TObject<{
|
|
26
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
27
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
27
28
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
28
29
|
}>]>, import("@scalar/typebox").TObject<{
|
|
29
30
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -33,7 +34,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
33
34
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
34
35
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
35
36
|
}>, import("@scalar/typebox").TObject<{
|
|
36
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
37
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
37
38
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
38
39
|
}>]>, import("@scalar/typebox").TObject<{
|
|
39
40
|
'$ref-value': import("@scalar/typebox").TRef<"ResponseObject">;
|
|
@@ -43,7 +44,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
43
44
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
44
45
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
45
46
|
}>, import("@scalar/typebox").TObject<{
|
|
46
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
47
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
47
48
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
48
49
|
}>]>, import("@scalar/typebox").TObject<{
|
|
49
50
|
'$ref-value': import("@scalar/typebox").TRef<"ParameterObject">;
|
|
@@ -53,7 +54,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
53
54
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
54
55
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
55
56
|
}>, import("@scalar/typebox").TObject<{
|
|
56
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
57
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
57
58
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
58
59
|
}>]>, import("@scalar/typebox").TObject<{
|
|
59
60
|
'$ref-value': import("@scalar/typebox").TRef<"ExampleObject">;
|
|
@@ -63,7 +64,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
63
64
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
64
65
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
65
66
|
}>, import("@scalar/typebox").TObject<{
|
|
66
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
67
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
67
68
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
68
69
|
}>]>, import("@scalar/typebox").TObject<{
|
|
69
70
|
'$ref-value': import("@scalar/typebox").TRef<"RequestBodyObject">;
|
|
@@ -73,7 +74,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
73
74
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
74
75
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
75
76
|
}>, import("@scalar/typebox").TObject<{
|
|
76
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
77
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
77
78
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
78
79
|
}>]>, import("@scalar/typebox").TObject<{
|
|
79
80
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
@@ -83,7 +84,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
83
84
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
84
85
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
85
86
|
}>, import("@scalar/typebox").TObject<{
|
|
86
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
87
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
87
88
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
88
89
|
}>]>, import("@scalar/typebox").TObject<{
|
|
89
90
|
'$ref-value': import("@scalar/typebox").TRef<"SecuritySchemeObject">;
|
|
@@ -93,7 +94,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
93
94
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
94
95
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
95
96
|
}>, import("@scalar/typebox").TObject<{
|
|
96
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
97
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
97
98
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
98
99
|
}>]>, import("@scalar/typebox").TObject<{
|
|
99
100
|
'$ref-value': import("@scalar/typebox").TRef<"LinkObject">;
|
|
@@ -103,14 +104,14 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
103
104
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
104
105
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
105
106
|
}>, import("@scalar/typebox").TObject<{
|
|
106
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
107
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
107
108
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
108
109
|
}>]>, import("@scalar/typebox").TObject<{
|
|
109
110
|
'$ref-value': import("@scalar/typebox").TRef<"CallbackObject">;
|
|
110
111
|
}>]>]>>>;
|
|
111
112
|
pathItems: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TRef<"PathItemObject">>>;
|
|
112
113
|
}>;
|
|
113
|
-
SecurityRequirementObject: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString,
|
|
114
|
+
SecurityRequirementObject: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, TArray<import("@scalar/typebox").TString>>;
|
|
114
115
|
TagObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
115
116
|
name: import("@scalar/typebox").TString;
|
|
116
117
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -127,7 +128,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
127
128
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
128
129
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
129
130
|
}>, import("@scalar/typebox").TObject<{
|
|
130
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
131
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
131
132
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
132
133
|
}>]>, import("@scalar/typebox").TObject<{
|
|
133
134
|
'$ref-value': import("@scalar/typebox").TRef<"PathItemObject">;
|
|
@@ -141,7 +142,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
141
142
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
142
143
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
143
144
|
}>, import("@scalar/typebox").TObject<{
|
|
144
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
145
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
145
146
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
146
147
|
}>]>, import("@scalar/typebox").TObject<{
|
|
147
148
|
'$ref-value': import("@scalar/typebox").TRef<"OperationObject">;
|
|
@@ -151,7 +152,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
151
152
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
152
153
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
153
154
|
}>, import("@scalar/typebox").TObject<{
|
|
154
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
155
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
155
156
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
156
157
|
}>]>, import("@scalar/typebox").TObject<{
|
|
157
158
|
'$ref-value': import("@scalar/typebox").TRef<"OperationObject">;
|
|
@@ -161,7 +162,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
161
162
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
162
163
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
163
164
|
}>, import("@scalar/typebox").TObject<{
|
|
164
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
165
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
165
166
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
166
167
|
}>]>, import("@scalar/typebox").TObject<{
|
|
167
168
|
'$ref-value': import("@scalar/typebox").TRef<"OperationObject">;
|
|
@@ -171,7 +172,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
171
172
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
172
173
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
173
174
|
}>, import("@scalar/typebox").TObject<{
|
|
174
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
175
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
175
176
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
176
177
|
}>]>, import("@scalar/typebox").TObject<{
|
|
177
178
|
'$ref-value': import("@scalar/typebox").TRef<"OperationObject">;
|
|
@@ -181,7 +182,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
181
182
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
182
183
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
183
184
|
}>, import("@scalar/typebox").TObject<{
|
|
184
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
185
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
185
186
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
186
187
|
}>]>, import("@scalar/typebox").TObject<{
|
|
187
188
|
'$ref-value': import("@scalar/typebox").TRef<"OperationObject">;
|
|
@@ -191,7 +192,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
191
192
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
192
193
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
193
194
|
}>, import("@scalar/typebox").TObject<{
|
|
194
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
195
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
195
196
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
196
197
|
}>]>, import("@scalar/typebox").TObject<{
|
|
197
198
|
'$ref-value': import("@scalar/typebox").TRef<"OperationObject">;
|
|
@@ -201,7 +202,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
201
202
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
202
203
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
203
204
|
}>, import("@scalar/typebox").TObject<{
|
|
204
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
205
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
205
206
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
206
207
|
}>]>, import("@scalar/typebox").TObject<{
|
|
207
208
|
'$ref-value': import("@scalar/typebox").TRef<"OperationObject">;
|
|
@@ -211,7 +212,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
211
212
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
212
213
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
213
214
|
}>, import("@scalar/typebox").TObject<{
|
|
214
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
215
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
215
216
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
216
217
|
}>]>, import("@scalar/typebox").TObject<{
|
|
217
218
|
'$ref-value': import("@scalar/typebox").TRef<"OperationObject">;
|
|
@@ -221,18 +222,18 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
221
222
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
222
223
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
223
224
|
}>, import("@scalar/typebox").TObject<{
|
|
224
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
225
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
225
226
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
226
227
|
}>]>, import("@scalar/typebox").TObject<{
|
|
227
228
|
'$ref-value': import("@scalar/typebox").TRef<"OperationObject">;
|
|
228
229
|
}>]>]>>;
|
|
229
|
-
servers: import("@scalar/typebox").TOptional<
|
|
230
|
-
parameters: import("@scalar/typebox").TOptional<
|
|
230
|
+
servers: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"ServerObject">>>;
|
|
231
|
+
parameters: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"ParameterObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
231
232
|
$ref: import("@scalar/typebox").TString;
|
|
232
233
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
233
234
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
234
235
|
}>, import("@scalar/typebox").TObject<{
|
|
235
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
236
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
236
237
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
237
238
|
}>]>, import("@scalar/typebox").TObject<{
|
|
238
239
|
'$ref-value': import("@scalar/typebox").TRef<"ParameterObject">;
|
|
@@ -240,17 +241,17 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
240
241
|
}>;
|
|
241
242
|
PathsObject: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TRef<"PathItemObject">>;
|
|
242
243
|
OperationObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
243
|
-
tags: import("@scalar/typebox").TOptional<
|
|
244
|
+
tags: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
244
245
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
245
246
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
246
247
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
247
248
|
operationId: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
248
|
-
parameters: import("@scalar/typebox").TOptional<
|
|
249
|
+
parameters: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"ParameterObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
249
250
|
$ref: import("@scalar/typebox").TString;
|
|
250
251
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
251
252
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
252
253
|
}>, import("@scalar/typebox").TObject<{
|
|
253
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
254
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
254
255
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
255
256
|
}>]>, import("@scalar/typebox").TObject<{
|
|
256
257
|
'$ref-value': import("@scalar/typebox").TRef<"ParameterObject">;
|
|
@@ -260,31 +261,31 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
260
261
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
261
262
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
262
263
|
}>, import("@scalar/typebox").TObject<{
|
|
263
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
264
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
264
265
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
265
266
|
}>]>, import("@scalar/typebox").TObject<{
|
|
266
267
|
'$ref-value': import("@scalar/typebox").TRef<"RequestBodyObject">;
|
|
267
268
|
}>]>]>>;
|
|
268
269
|
responses: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ResponsesObject">>;
|
|
269
270
|
deprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
270
|
-
security: import("@scalar/typebox").TOptional<
|
|
271
|
-
servers: import("@scalar/typebox").TOptional<
|
|
271
|
+
security: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
|
|
272
|
+
servers: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"ServerObject">>>;
|
|
272
273
|
callbacks: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"CallbackObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
273
274
|
$ref: import("@scalar/typebox").TString;
|
|
274
275
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
275
276
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
276
277
|
}>, import("@scalar/typebox").TObject<{
|
|
277
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
278
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
278
279
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
279
280
|
}>]>, import("@scalar/typebox").TObject<{
|
|
280
281
|
'$ref-value': import("@scalar/typebox").TRef<"CallbackObject">;
|
|
281
282
|
}>]>]>>>;
|
|
282
283
|
}>, import("@scalar/typebox").TObject<{
|
|
283
|
-
'x-scalar-selected-security': import("@scalar/typebox").TOptional<
|
|
284
|
+
'x-scalar-selected-security': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
|
|
284
285
|
}>, import("@scalar/typebox").TObject<{
|
|
285
|
-
'x-badges': import("@scalar/typebox").TOptional<
|
|
286
|
+
'x-badges': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TObject<{
|
|
286
287
|
name: import("@scalar/typebox").TString;
|
|
287
|
-
position: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
288
|
+
position: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"before">, TLiteral<"after">]>>;
|
|
288
289
|
color: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
289
290
|
}>>>;
|
|
290
291
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -292,23 +293,23 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
292
293
|
}>, import("@scalar/typebox").TObject<{
|
|
293
294
|
'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
294
295
|
}>, import("@scalar/typebox").TObject<{
|
|
295
|
-
'x-codeSamples': import("@scalar/typebox").TOptional<
|
|
296
|
+
'x-codeSamples': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TObject<{
|
|
296
297
|
lang: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
297
298
|
label: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
298
299
|
source: import("@scalar/typebox").TString;
|
|
299
300
|
}>>>;
|
|
300
|
-
'x-code-samples': import("@scalar/typebox").TOptional<
|
|
301
|
+
'x-code-samples': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TObject<{
|
|
301
302
|
lang: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
302
303
|
label: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
303
304
|
source: import("@scalar/typebox").TString;
|
|
304
305
|
}>>>;
|
|
305
|
-
'x-custom-examples': import("@scalar/typebox").TOptional<
|
|
306
|
+
'x-custom-examples': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TObject<{
|
|
306
307
|
lang: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
307
308
|
label: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
308
309
|
source: import("@scalar/typebox").TString;
|
|
309
310
|
}>>>;
|
|
310
311
|
}>, import("@scalar/typebox").TObject<{
|
|
311
|
-
'x-scalar-stability': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
312
|
+
'x-scalar-stability': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"deprecated">, TLiteral<"experimental">, TLiteral<"stable">]>>;
|
|
312
313
|
}>]>;
|
|
313
314
|
SchemaObject: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
314
315
|
__scalar_: import("@scalar/typebox").TString;
|
|
@@ -317,7 +318,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
317
318
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
318
319
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
319
320
|
default: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
320
|
-
enum: import("@scalar/typebox").TOptional<
|
|
321
|
+
enum: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnknown>>;
|
|
321
322
|
const: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
322
323
|
contentMediaType: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
323
324
|
contentEncoding: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -326,7 +327,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
326
327
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
327
328
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
328
329
|
}>, import("@scalar/typebox").TObject<{
|
|
329
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
330
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
330
331
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
331
332
|
}>]>, import("@scalar/typebox").TObject<{
|
|
332
333
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -338,33 +339,33 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
338
339
|
xml: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"XMLObject">>;
|
|
339
340
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
340
341
|
example: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
341
|
-
examples: import("@scalar/typebox").TOptional<
|
|
342
|
-
allOf: import("@scalar/typebox").TOptional<
|
|
342
|
+
examples: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnknown>>;
|
|
343
|
+
allOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
343
344
|
$ref: import("@scalar/typebox").TString;
|
|
344
345
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
345
346
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
346
347
|
}>, import("@scalar/typebox").TObject<{
|
|
347
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
348
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
348
349
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
349
350
|
}>]>, import("@scalar/typebox").TObject<{
|
|
350
351
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
351
352
|
}>]>]>>>;
|
|
352
|
-
oneOf: import("@scalar/typebox").TOptional<
|
|
353
|
+
oneOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
353
354
|
$ref: import("@scalar/typebox").TString;
|
|
354
355
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
355
356
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
356
357
|
}>, import("@scalar/typebox").TObject<{
|
|
357
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
358
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
358
359
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
359
360
|
}>]>, import("@scalar/typebox").TObject<{
|
|
360
361
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
361
362
|
}>]>]>>>;
|
|
362
|
-
anyOf: import("@scalar/typebox").TOptional<
|
|
363
|
+
anyOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
363
364
|
$ref: import("@scalar/typebox").TString;
|
|
364
365
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
365
366
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
366
367
|
}>, import("@scalar/typebox").TObject<{
|
|
367
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
368
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
368
369
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
369
370
|
}>]>, import("@scalar/typebox").TObject<{
|
|
370
371
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -374,7 +375,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
374
375
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
375
376
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
376
377
|
}>, import("@scalar/typebox").TObject<{
|
|
377
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
378
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
378
379
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
379
380
|
}>]>, import("@scalar/typebox").TObject<{
|
|
380
381
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -386,23 +387,23 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
386
387
|
}>, import("@scalar/typebox").TObject<{
|
|
387
388
|
'x-variable': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
388
389
|
}>, import("@scalar/typebox").TObject<{
|
|
389
|
-
'x-enumDescriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>,
|
|
390
|
-
'x-enum-descriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>,
|
|
390
|
+
'x-enumDescriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>, TArray<import("@scalar/typebox").TString>]>>;
|
|
391
|
+
'x-enum-descriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>, TArray<import("@scalar/typebox").TString>]>>;
|
|
391
392
|
}>, import("@scalar/typebox").TObject<{
|
|
392
|
-
'x-enum-varnames': import("@scalar/typebox").TOptional<
|
|
393
|
-
'x-enumNames': import("@scalar/typebox").TOptional<
|
|
393
|
+
'x-enum-varnames': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
394
|
+
'x-enumNames': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
394
395
|
}>, import("@scalar/typebox").TObject<{
|
|
395
396
|
'x-additionalPropertiesName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
396
397
|
}>, import("@scalar/typebox").TObject<{
|
|
397
|
-
'x-tags': import("@scalar/typebox").TOptional<
|
|
398
|
+
'x-tags': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
398
399
|
}>]>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
399
|
-
type: import("@scalar/typebox").TUnion<[
|
|
400
|
+
type: import("@scalar/typebox").TUnion<[TLiteral<"null">, TLiteral<"boolean">, TArray<import("@scalar/typebox").TUnion<[TLiteral<"null">, TLiteral<"boolean">, TLiteral<"string">, TLiteral<"number">, TLiteral<"integer">, TLiteral<"object">, TLiteral<"array">]>>]>;
|
|
400
401
|
}>, import("@scalar/typebox").TObject<{
|
|
401
402
|
name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
402
403
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
403
404
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
404
405
|
default: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
405
|
-
enum: import("@scalar/typebox").TOptional<
|
|
406
|
+
enum: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnknown>>;
|
|
406
407
|
const: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
407
408
|
contentMediaType: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
408
409
|
contentEncoding: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -411,7 +412,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
411
412
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
412
413
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
413
414
|
}>, import("@scalar/typebox").TObject<{
|
|
414
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
415
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
415
416
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
416
417
|
}>]>, import("@scalar/typebox").TObject<{
|
|
417
418
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -423,33 +424,33 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
423
424
|
xml: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"XMLObject">>;
|
|
424
425
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
425
426
|
example: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
426
|
-
examples: import("@scalar/typebox").TOptional<
|
|
427
|
-
allOf: import("@scalar/typebox").TOptional<
|
|
427
|
+
examples: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnknown>>;
|
|
428
|
+
allOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
428
429
|
$ref: import("@scalar/typebox").TString;
|
|
429
430
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
430
431
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
431
432
|
}>, import("@scalar/typebox").TObject<{
|
|
432
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
433
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
433
434
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
434
435
|
}>]>, import("@scalar/typebox").TObject<{
|
|
435
436
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
436
437
|
}>]>]>>>;
|
|
437
|
-
oneOf: import("@scalar/typebox").TOptional<
|
|
438
|
+
oneOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
438
439
|
$ref: import("@scalar/typebox").TString;
|
|
439
440
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
440
441
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
441
442
|
}>, import("@scalar/typebox").TObject<{
|
|
442
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
443
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
443
444
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
444
445
|
}>]>, import("@scalar/typebox").TObject<{
|
|
445
446
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
446
447
|
}>]>]>>>;
|
|
447
|
-
anyOf: import("@scalar/typebox").TOptional<
|
|
448
|
+
anyOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
448
449
|
$ref: import("@scalar/typebox").TString;
|
|
449
450
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
450
451
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
451
452
|
}>, import("@scalar/typebox").TObject<{
|
|
452
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
453
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
453
454
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
454
455
|
}>]>, import("@scalar/typebox").TObject<{
|
|
455
456
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -459,7 +460,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
459
460
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
460
461
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
461
462
|
}>, import("@scalar/typebox").TObject<{
|
|
462
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
463
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
463
464
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
464
465
|
}>]>, import("@scalar/typebox").TObject<{
|
|
465
466
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -471,17 +472,17 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
471
472
|
}>, import("@scalar/typebox").TObject<{
|
|
472
473
|
'x-variable': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
473
474
|
}>, import("@scalar/typebox").TObject<{
|
|
474
|
-
'x-enumDescriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>,
|
|
475
|
-
'x-enum-descriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>,
|
|
475
|
+
'x-enumDescriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>, TArray<import("@scalar/typebox").TString>]>>;
|
|
476
|
+
'x-enum-descriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>, TArray<import("@scalar/typebox").TString>]>>;
|
|
476
477
|
}>, import("@scalar/typebox").TObject<{
|
|
477
|
-
'x-enum-varnames': import("@scalar/typebox").TOptional<
|
|
478
|
-
'x-enumNames': import("@scalar/typebox").TOptional<
|
|
478
|
+
'x-enum-varnames': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
479
|
+
'x-enumNames': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
479
480
|
}>, import("@scalar/typebox").TObject<{
|
|
480
481
|
'x-additionalPropertiesName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
481
482
|
}>, import("@scalar/typebox").TObject<{
|
|
482
|
-
'x-tags': import("@scalar/typebox").TOptional<
|
|
483
|
+
'x-tags': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
483
484
|
}>]>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
484
|
-
type: import("@scalar/typebox").TUnion<[
|
|
485
|
+
type: import("@scalar/typebox").TUnion<[TLiteral<"number">, TLiteral<"integer">]>;
|
|
485
486
|
format: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
486
487
|
multipleOf: import("@scalar/typebox").TOptional<import("@scalar/typebox").TNumber>;
|
|
487
488
|
maximum: import("@scalar/typebox").TOptional<import("@scalar/typebox").TNumber>;
|
|
@@ -493,7 +494,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
493
494
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
494
495
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
495
496
|
default: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
496
|
-
enum: import("@scalar/typebox").TOptional<
|
|
497
|
+
enum: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnknown>>;
|
|
497
498
|
const: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
498
499
|
contentMediaType: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
499
500
|
contentEncoding: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -502,7 +503,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
502
503
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
503
504
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
504
505
|
}>, import("@scalar/typebox").TObject<{
|
|
505
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
506
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
506
507
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
507
508
|
}>]>, import("@scalar/typebox").TObject<{
|
|
508
509
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -514,33 +515,33 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
514
515
|
xml: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"XMLObject">>;
|
|
515
516
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
516
517
|
example: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
517
|
-
examples: import("@scalar/typebox").TOptional<
|
|
518
|
-
allOf: import("@scalar/typebox").TOptional<
|
|
518
|
+
examples: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnknown>>;
|
|
519
|
+
allOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
519
520
|
$ref: import("@scalar/typebox").TString;
|
|
520
521
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
521
522
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
522
523
|
}>, import("@scalar/typebox").TObject<{
|
|
523
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
524
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
524
525
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
525
526
|
}>]>, import("@scalar/typebox").TObject<{
|
|
526
527
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
527
528
|
}>]>]>>>;
|
|
528
|
-
oneOf: import("@scalar/typebox").TOptional<
|
|
529
|
+
oneOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
529
530
|
$ref: import("@scalar/typebox").TString;
|
|
530
531
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
531
532
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
532
533
|
}>, import("@scalar/typebox").TObject<{
|
|
533
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
534
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
534
535
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
535
536
|
}>]>, import("@scalar/typebox").TObject<{
|
|
536
537
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
537
538
|
}>]>]>>>;
|
|
538
|
-
anyOf: import("@scalar/typebox").TOptional<
|
|
539
|
+
anyOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
539
540
|
$ref: import("@scalar/typebox").TString;
|
|
540
541
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
541
542
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
542
543
|
}>, import("@scalar/typebox").TObject<{
|
|
543
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
544
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
544
545
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
545
546
|
}>]>, import("@scalar/typebox").TObject<{
|
|
546
547
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -550,7 +551,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
550
551
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
551
552
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
552
553
|
}>, import("@scalar/typebox").TObject<{
|
|
553
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
554
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
554
555
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
555
556
|
}>]>, import("@scalar/typebox").TObject<{
|
|
556
557
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -562,17 +563,17 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
562
563
|
}>, import("@scalar/typebox").TObject<{
|
|
563
564
|
'x-variable': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
564
565
|
}>, import("@scalar/typebox").TObject<{
|
|
565
|
-
'x-enumDescriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>,
|
|
566
|
-
'x-enum-descriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>,
|
|
566
|
+
'x-enumDescriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>, TArray<import("@scalar/typebox").TString>]>>;
|
|
567
|
+
'x-enum-descriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>, TArray<import("@scalar/typebox").TString>]>>;
|
|
567
568
|
}>, import("@scalar/typebox").TObject<{
|
|
568
|
-
'x-enum-varnames': import("@scalar/typebox").TOptional<
|
|
569
|
-
'x-enumNames': import("@scalar/typebox").TOptional<
|
|
569
|
+
'x-enum-varnames': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
570
|
+
'x-enumNames': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
570
571
|
}>, import("@scalar/typebox").TObject<{
|
|
571
572
|
'x-additionalPropertiesName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
572
573
|
}>, import("@scalar/typebox").TObject<{
|
|
573
|
-
'x-tags': import("@scalar/typebox").TOptional<
|
|
574
|
+
'x-tags': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
574
575
|
}>]>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
575
|
-
type:
|
|
576
|
+
type: TLiteral<"string">;
|
|
576
577
|
format: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
577
578
|
maxLength: import("@scalar/typebox").TOptional<import("@scalar/typebox").TInteger>;
|
|
578
579
|
minLength: import("@scalar/typebox").TOptional<import("@scalar/typebox").TInteger>;
|
|
@@ -582,7 +583,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
582
583
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
583
584
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
584
585
|
default: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
585
|
-
enum: import("@scalar/typebox").TOptional<
|
|
586
|
+
enum: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnknown>>;
|
|
586
587
|
const: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
587
588
|
contentMediaType: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
588
589
|
contentEncoding: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -591,7 +592,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
591
592
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
592
593
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
593
594
|
}>, import("@scalar/typebox").TObject<{
|
|
594
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
595
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
595
596
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
596
597
|
}>]>, import("@scalar/typebox").TObject<{
|
|
597
598
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -603,33 +604,33 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
603
604
|
xml: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"XMLObject">>;
|
|
604
605
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
605
606
|
example: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
606
|
-
examples: import("@scalar/typebox").TOptional<
|
|
607
|
-
allOf: import("@scalar/typebox").TOptional<
|
|
607
|
+
examples: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnknown>>;
|
|
608
|
+
allOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
608
609
|
$ref: import("@scalar/typebox").TString;
|
|
609
610
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
610
611
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
611
612
|
}>, import("@scalar/typebox").TObject<{
|
|
612
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
613
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
613
614
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
614
615
|
}>]>, import("@scalar/typebox").TObject<{
|
|
615
616
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
616
617
|
}>]>]>>>;
|
|
617
|
-
oneOf: import("@scalar/typebox").TOptional<
|
|
618
|
+
oneOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
618
619
|
$ref: import("@scalar/typebox").TString;
|
|
619
620
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
620
621
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
621
622
|
}>, import("@scalar/typebox").TObject<{
|
|
622
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
623
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
623
624
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
624
625
|
}>]>, import("@scalar/typebox").TObject<{
|
|
625
626
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
626
627
|
}>]>]>>>;
|
|
627
|
-
anyOf: import("@scalar/typebox").TOptional<
|
|
628
|
+
anyOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
628
629
|
$ref: import("@scalar/typebox").TString;
|
|
629
630
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
630
631
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
631
632
|
}>, import("@scalar/typebox").TObject<{
|
|
632
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
633
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
633
634
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
634
635
|
}>]>, import("@scalar/typebox").TObject<{
|
|
635
636
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -639,7 +640,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
639
640
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
640
641
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
641
642
|
}>, import("@scalar/typebox").TObject<{
|
|
642
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
643
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
643
644
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
644
645
|
}>]>, import("@scalar/typebox").TObject<{
|
|
645
646
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -651,26 +652,26 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
651
652
|
}>, import("@scalar/typebox").TObject<{
|
|
652
653
|
'x-variable': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
653
654
|
}>, import("@scalar/typebox").TObject<{
|
|
654
|
-
'x-enumDescriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>,
|
|
655
|
-
'x-enum-descriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>,
|
|
655
|
+
'x-enumDescriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>, TArray<import("@scalar/typebox").TString>]>>;
|
|
656
|
+
'x-enum-descriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>, TArray<import("@scalar/typebox").TString>]>>;
|
|
656
657
|
}>, import("@scalar/typebox").TObject<{
|
|
657
|
-
'x-enum-varnames': import("@scalar/typebox").TOptional<
|
|
658
|
-
'x-enumNames': import("@scalar/typebox").TOptional<
|
|
658
|
+
'x-enum-varnames': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
659
|
+
'x-enumNames': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
659
660
|
}>, import("@scalar/typebox").TObject<{
|
|
660
661
|
'x-additionalPropertiesName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
661
662
|
}>, import("@scalar/typebox").TObject<{
|
|
662
|
-
'x-tags': import("@scalar/typebox").TOptional<
|
|
663
|
+
'x-tags': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
663
664
|
}>]>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
664
|
-
type:
|
|
665
|
+
type: TLiteral<"object">;
|
|
665
666
|
maxProperties: import("@scalar/typebox").TOptional<import("@scalar/typebox").TInteger>;
|
|
666
667
|
minProperties: import("@scalar/typebox").TOptional<import("@scalar/typebox").TInteger>;
|
|
667
|
-
required: import("@scalar/typebox").TOptional<
|
|
668
|
+
required: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
668
669
|
properties: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
669
670
|
$ref: import("@scalar/typebox").TString;
|
|
670
671
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
671
672
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
672
673
|
}>, import("@scalar/typebox").TObject<{
|
|
673
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
674
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
674
675
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
675
676
|
}>]>, import("@scalar/typebox").TObject<{
|
|
676
677
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -680,7 +681,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
680
681
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
681
682
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
682
683
|
}>, import("@scalar/typebox").TObject<{
|
|
683
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
684
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
684
685
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
685
686
|
}>]>, import("@scalar/typebox").TObject<{
|
|
686
687
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -690,7 +691,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
690
691
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
691
692
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
692
693
|
}>, import("@scalar/typebox").TObject<{
|
|
693
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
694
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
694
695
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
695
696
|
}>]>, import("@scalar/typebox").TObject<{
|
|
696
697
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -700,7 +701,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
700
701
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
701
702
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
702
703
|
default: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
703
|
-
enum: import("@scalar/typebox").TOptional<
|
|
704
|
+
enum: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnknown>>;
|
|
704
705
|
const: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
705
706
|
contentMediaType: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
706
707
|
contentEncoding: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -709,7 +710,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
709
710
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
710
711
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
711
712
|
}>, import("@scalar/typebox").TObject<{
|
|
712
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
713
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
713
714
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
714
715
|
}>]>, import("@scalar/typebox").TObject<{
|
|
715
716
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -721,33 +722,33 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
721
722
|
xml: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"XMLObject">>;
|
|
722
723
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
723
724
|
example: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
724
|
-
examples: import("@scalar/typebox").TOptional<
|
|
725
|
-
allOf: import("@scalar/typebox").TOptional<
|
|
725
|
+
examples: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnknown>>;
|
|
726
|
+
allOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
726
727
|
$ref: import("@scalar/typebox").TString;
|
|
727
728
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
728
729
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
729
730
|
}>, import("@scalar/typebox").TObject<{
|
|
730
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
731
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
731
732
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
732
733
|
}>]>, import("@scalar/typebox").TObject<{
|
|
733
734
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
734
735
|
}>]>]>>>;
|
|
735
|
-
oneOf: import("@scalar/typebox").TOptional<
|
|
736
|
+
oneOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
736
737
|
$ref: import("@scalar/typebox").TString;
|
|
737
738
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
738
739
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
739
740
|
}>, import("@scalar/typebox").TObject<{
|
|
740
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
741
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
741
742
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
742
743
|
}>]>, import("@scalar/typebox").TObject<{
|
|
743
744
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
744
745
|
}>]>]>>>;
|
|
745
|
-
anyOf: import("@scalar/typebox").TOptional<
|
|
746
|
+
anyOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
746
747
|
$ref: import("@scalar/typebox").TString;
|
|
747
748
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
748
749
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
749
750
|
}>, import("@scalar/typebox").TObject<{
|
|
750
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
751
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
751
752
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
752
753
|
}>]>, import("@scalar/typebox").TObject<{
|
|
753
754
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -757,7 +758,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
757
758
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
758
759
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
759
760
|
}>, import("@scalar/typebox").TObject<{
|
|
760
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
761
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
761
762
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
762
763
|
}>]>, import("@scalar/typebox").TObject<{
|
|
763
764
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -769,17 +770,17 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
769
770
|
}>, import("@scalar/typebox").TObject<{
|
|
770
771
|
'x-variable': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
771
772
|
}>, import("@scalar/typebox").TObject<{
|
|
772
|
-
'x-enumDescriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>,
|
|
773
|
-
'x-enum-descriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>,
|
|
773
|
+
'x-enumDescriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>, TArray<import("@scalar/typebox").TString>]>>;
|
|
774
|
+
'x-enum-descriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>, TArray<import("@scalar/typebox").TString>]>>;
|
|
774
775
|
}>, import("@scalar/typebox").TObject<{
|
|
775
|
-
'x-enum-varnames': import("@scalar/typebox").TOptional<
|
|
776
|
-
'x-enumNames': import("@scalar/typebox").TOptional<
|
|
776
|
+
'x-enum-varnames': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
777
|
+
'x-enumNames': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
777
778
|
}>, import("@scalar/typebox").TObject<{
|
|
778
779
|
'x-additionalPropertiesName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
779
780
|
}>, import("@scalar/typebox").TObject<{
|
|
780
|
-
'x-tags': import("@scalar/typebox").TOptional<
|
|
781
|
+
'x-tags': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
781
782
|
}>]>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
782
|
-
type:
|
|
783
|
+
type: TLiteral<"array">;
|
|
783
784
|
maxItems: import("@scalar/typebox").TOptional<import("@scalar/typebox").TInteger>;
|
|
784
785
|
minItems: import("@scalar/typebox").TOptional<import("@scalar/typebox").TInteger>;
|
|
785
786
|
uniqueItems: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
@@ -788,17 +789,17 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
788
789
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
789
790
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
790
791
|
}>, import("@scalar/typebox").TObject<{
|
|
791
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
792
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
792
793
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
793
794
|
}>]>, import("@scalar/typebox").TObject<{
|
|
794
795
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
795
796
|
}>]>]>>;
|
|
796
|
-
prefixItems: import("@scalar/typebox").TOptional<
|
|
797
|
+
prefixItems: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
797
798
|
$ref: import("@scalar/typebox").TString;
|
|
798
799
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
799
800
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
800
801
|
}>, import("@scalar/typebox").TObject<{
|
|
801
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
802
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
802
803
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
803
804
|
}>]>, import("@scalar/typebox").TObject<{
|
|
804
805
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -808,7 +809,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
808
809
|
title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
809
810
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
810
811
|
default: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
811
|
-
enum: import("@scalar/typebox").TOptional<
|
|
812
|
+
enum: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnknown>>;
|
|
812
813
|
const: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
813
814
|
contentMediaType: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
814
815
|
contentEncoding: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -817,7 +818,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
817
818
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
818
819
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
819
820
|
}>, import("@scalar/typebox").TObject<{
|
|
820
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
821
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
821
822
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
822
823
|
}>]>, import("@scalar/typebox").TObject<{
|
|
823
824
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -829,33 +830,33 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
829
830
|
xml: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"XMLObject">>;
|
|
830
831
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
831
832
|
example: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
|
|
832
|
-
examples: import("@scalar/typebox").TOptional<
|
|
833
|
-
allOf: import("@scalar/typebox").TOptional<
|
|
833
|
+
examples: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnknown>>;
|
|
834
|
+
allOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
834
835
|
$ref: import("@scalar/typebox").TString;
|
|
835
836
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
836
837
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
837
838
|
}>, import("@scalar/typebox").TObject<{
|
|
838
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
839
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
839
840
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
840
841
|
}>]>, import("@scalar/typebox").TObject<{
|
|
841
842
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
842
843
|
}>]>]>>>;
|
|
843
|
-
oneOf: import("@scalar/typebox").TOptional<
|
|
844
|
+
oneOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
844
845
|
$ref: import("@scalar/typebox").TString;
|
|
845
846
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
846
847
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
847
848
|
}>, import("@scalar/typebox").TObject<{
|
|
848
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
849
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
849
850
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
850
851
|
}>]>, import("@scalar/typebox").TObject<{
|
|
851
852
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
852
853
|
}>]>]>>>;
|
|
853
|
-
anyOf: import("@scalar/typebox").TOptional<
|
|
854
|
+
anyOf: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
854
855
|
$ref: import("@scalar/typebox").TString;
|
|
855
856
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
856
857
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
857
858
|
}>, import("@scalar/typebox").TObject<{
|
|
858
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
859
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
859
860
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
860
861
|
}>]>, import("@scalar/typebox").TObject<{
|
|
861
862
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -865,7 +866,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
865
866
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
866
867
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
867
868
|
}>, import("@scalar/typebox").TObject<{
|
|
868
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
869
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
869
870
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
870
871
|
}>]>, import("@scalar/typebox").TObject<{
|
|
871
872
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -877,15 +878,15 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
877
878
|
}>, import("@scalar/typebox").TObject<{
|
|
878
879
|
'x-variable': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
879
880
|
}>, import("@scalar/typebox").TObject<{
|
|
880
|
-
'x-enumDescriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>,
|
|
881
|
-
'x-enum-descriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>,
|
|
881
|
+
'x-enumDescriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>, TArray<import("@scalar/typebox").TString>]>>;
|
|
882
|
+
'x-enum-descriptions': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>, TArray<import("@scalar/typebox").TString>]>>;
|
|
882
883
|
}>, import("@scalar/typebox").TObject<{
|
|
883
|
-
'x-enum-varnames': import("@scalar/typebox").TOptional<
|
|
884
|
-
'x-enumNames': import("@scalar/typebox").TOptional<
|
|
884
|
+
'x-enum-varnames': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
885
|
+
'x-enumNames': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
885
886
|
}>, import("@scalar/typebox").TObject<{
|
|
886
887
|
'x-additionalPropertiesName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
887
888
|
}>, import("@scalar/typebox").TObject<{
|
|
888
|
-
'x-tags': import("@scalar/typebox").TOptional<
|
|
889
|
+
'x-tags': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
889
890
|
}>]>]>]>;
|
|
890
891
|
EncodingObject: import("@scalar/typebox").TObject<{
|
|
891
892
|
contentType: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -894,7 +895,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
894
895
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
895
896
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
896
897
|
}>, import("@scalar/typebox").TObject<{
|
|
897
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
898
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
898
899
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
899
900
|
}>]>, import("@scalar/typebox").TObject<{
|
|
900
901
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
@@ -906,7 +907,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
906
907
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
907
908
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
908
909
|
}>, import("@scalar/typebox").TObject<{
|
|
909
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
910
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
910
911
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
911
912
|
}>]>, import("@scalar/typebox").TObject<{
|
|
912
913
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -917,7 +918,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
917
918
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
918
919
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
919
920
|
}>, import("@scalar/typebox").TObject<{
|
|
920
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
921
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
921
922
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
922
923
|
}>]>, import("@scalar/typebox").TObject<{
|
|
923
924
|
'$ref-value': import("@scalar/typebox").TRef<"ExampleObject">;
|
|
@@ -936,7 +937,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
936
937
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
937
938
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
938
939
|
}>, import("@scalar/typebox").TObject<{
|
|
939
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
940
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
940
941
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
941
942
|
}>]>, import("@scalar/typebox").TObject<{
|
|
942
943
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -947,7 +948,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
947
948
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
948
949
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
949
950
|
}>, import("@scalar/typebox").TObject<{
|
|
950
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
951
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
951
952
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
952
953
|
}>]>, import("@scalar/typebox").TObject<{
|
|
953
954
|
'$ref-value': import("@scalar/typebox").TRef<"ExampleObject">;
|
|
@@ -977,7 +978,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
977
978
|
contact: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ContactObject">>;
|
|
978
979
|
license: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"LicenseObject">>;
|
|
979
980
|
}>, import("@scalar/typebox").TObject<{
|
|
980
|
-
'x-scalar-sdk-installation': import("@scalar/typebox").TOptional<
|
|
981
|
+
'x-scalar-sdk-installation': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TObject<{
|
|
981
982
|
lang: import("@scalar/typebox").TString;
|
|
982
983
|
source: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
983
984
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -1000,7 +1001,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1000
1001
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1001
1002
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1002
1003
|
}>, import("@scalar/typebox").TObject<{
|
|
1003
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
1004
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
1004
1005
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1005
1006
|
}>]>, import("@scalar/typebox").TObject<{
|
|
1006
1007
|
'$ref-value': import("@scalar/typebox").TRef<"HeaderObject">;
|
|
@@ -1011,7 +1012,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1011
1012
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1012
1013
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1013
1014
|
}>, import("@scalar/typebox").TObject<{
|
|
1014
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
1015
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
1015
1016
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1016
1017
|
}>]>, import("@scalar/typebox").TObject<{
|
|
1017
1018
|
'$ref-value': import("@scalar/typebox").TRef<"LinkObject">;
|
|
@@ -1022,20 +1023,24 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1022
1023
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1023
1024
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1024
1025
|
}>, import("@scalar/typebox").TObject<{
|
|
1025
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
1026
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
1026
1027
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1027
1028
|
}>]>, import("@scalar/typebox").TObject<{
|
|
1028
1029
|
'$ref-value': import("@scalar/typebox").TRef<"ResponseObject">;
|
|
1029
1030
|
}>]>]>>;
|
|
1030
1031
|
ParameterObject: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1031
1032
|
name: import("@scalar/typebox").TString;
|
|
1032
|
-
in: import("@scalar/typebox").TUnion<[
|
|
1033
|
+
in: import("@scalar/typebox").TUnion<[TLiteral<"query">, TLiteral<"header">, TLiteral<"path">, TLiteral<"cookie">]>;
|
|
1033
1034
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1034
1035
|
required: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1035
1036
|
deprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1036
1037
|
allowEmptyValue: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1037
1038
|
}>, import("@scalar/typebox").TObject<{
|
|
1038
1039
|
'x-global': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1040
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1041
|
+
'x-internal': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1042
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1043
|
+
'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1039
1044
|
}>]>, import("@scalar/typebox").TObject<{
|
|
1040
1045
|
style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1041
1046
|
explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
@@ -1044,7 +1049,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1044
1049
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1045
1050
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1046
1051
|
}>, import("@scalar/typebox").TObject<{
|
|
1047
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
1052
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
1048
1053
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1049
1054
|
}>]>, import("@scalar/typebox").TObject<{
|
|
1050
1055
|
'$ref-value': import("@scalar/typebox").TRef<"SchemaObject">;
|
|
@@ -1055,20 +1060,24 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1055
1060
|
summary: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1056
1061
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1057
1062
|
}>, import("@scalar/typebox").TObject<{
|
|
1058
|
-
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
1063
|
+
$status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"loading">, TLiteral<"error">]>>;
|
|
1059
1064
|
$global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1060
1065
|
}>]>, import("@scalar/typebox").TObject<{
|
|
1061
1066
|
'$ref-value': import("@scalar/typebox").TRef<"ExampleObject">;
|
|
1062
1067
|
}>]>]>>>;
|
|
1063
1068
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1064
1069
|
name: import("@scalar/typebox").TString;
|
|
1065
|
-
in: import("@scalar/typebox").TUnion<[
|
|
1070
|
+
in: import("@scalar/typebox").TUnion<[TLiteral<"query">, TLiteral<"header">, TLiteral<"path">, TLiteral<"cookie">]>;
|
|
1066
1071
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1067
1072
|
required: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1068
1073
|
deprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1069
1074
|
allowEmptyValue: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1070
1075
|
}>, import("@scalar/typebox").TObject<{
|
|
1071
1076
|
'x-global': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1077
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1078
|
+
'x-internal': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1079
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1080
|
+
'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1072
1081
|
}>]>, import("@scalar/typebox").TObject<{
|
|
1073
1082
|
content: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TRef<"MediaTypeObject">>>;
|
|
1074
1083
|
}>]>]>;
|
|
@@ -1090,7 +1099,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1090
1099
|
}>, import("@scalar/typebox").TObject<{
|
|
1091
1100
|
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
1092
1101
|
}>, import("@scalar/typebox").TObject<{
|
|
1093
|
-
type:
|
|
1102
|
+
type: TLiteral<"apiKey">;
|
|
1094
1103
|
name: import("@scalar/typebox").TString;
|
|
1095
1104
|
in: import("@scalar/typebox").TString;
|
|
1096
1105
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
@@ -1101,20 +1110,20 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1101
1110
|
'x-scalar-secret-username': import("@scalar/typebox").TString;
|
|
1102
1111
|
'x-scalar-secret-password': import("@scalar/typebox").TString;
|
|
1103
1112
|
}>, import("@scalar/typebox").TObject<{
|
|
1104
|
-
type:
|
|
1113
|
+
type: TLiteral<"http">;
|
|
1105
1114
|
scheme: import("@scalar/typebox").TString;
|
|
1106
1115
|
bearerFormat: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1107
1116
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1108
1117
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1109
1118
|
}>, import("@scalar/typebox").TObject<{
|
|
1110
|
-
type:
|
|
1119
|
+
type: TLiteral<"oauth2">;
|
|
1111
1120
|
flows: import("@scalar/typebox").TRef<"OAuthFlowsObject">;
|
|
1112
1121
|
}>, import("@scalar/typebox").TObject<{
|
|
1113
|
-
'x-default-scopes': import("@scalar/typebox").TOptional<
|
|
1122
|
+
'x-default-scopes': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
1114
1123
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1115
1124
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1116
1125
|
}>, import("@scalar/typebox").TObject<{
|
|
1117
|
-
type:
|
|
1126
|
+
type: TLiteral<"openIdConnect">;
|
|
1118
1127
|
openIdConnectUrl: import("@scalar/typebox").TString;
|
|
1119
1128
|
}>]>]>;
|
|
1120
1129
|
LinkObject: import("@scalar/typebox").TObject<{
|
|
@@ -1151,7 +1160,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1151
1160
|
}>, import("@scalar/typebox").TObject<{
|
|
1152
1161
|
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1153
1162
|
}>, import("@scalar/typebox").TObject<{
|
|
1154
|
-
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
1163
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"header">, TLiteral<"body">]>>;
|
|
1155
1164
|
}>]>, import("@scalar/typebox").TObject<{
|
|
1156
1165
|
authorizationUrl: import("@scalar/typebox").TString;
|
|
1157
1166
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -1171,7 +1180,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1171
1180
|
}>, import("@scalar/typebox").TObject<{
|
|
1172
1181
|
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1173
1182
|
}>, import("@scalar/typebox").TObject<{
|
|
1174
|
-
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
1183
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"header">, TLiteral<"body">]>>;
|
|
1175
1184
|
}>]>, import("@scalar/typebox").TObject<{
|
|
1176
1185
|
tokenUrl: import("@scalar/typebox").TString;
|
|
1177
1186
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -1194,7 +1203,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1194
1203
|
}>, import("@scalar/typebox").TObject<{
|
|
1195
1204
|
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1196
1205
|
}>, import("@scalar/typebox").TObject<{
|
|
1197
|
-
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
1206
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"header">, TLiteral<"body">]>>;
|
|
1198
1207
|
}>]>, import("@scalar/typebox").TObject<{
|
|
1199
1208
|
tokenUrl: import("@scalar/typebox").TString;
|
|
1200
1209
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -1214,7 +1223,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1214
1223
|
}>, import("@scalar/typebox").TObject<{
|
|
1215
1224
|
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1216
1225
|
}>, import("@scalar/typebox").TObject<{
|
|
1217
|
-
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
1226
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"header">, TLiteral<"body">]>>;
|
|
1218
1227
|
}>]>, import("@scalar/typebox").TObject<{
|
|
1219
1228
|
authorizationUrl: import("@scalar/typebox").TString;
|
|
1220
1229
|
tokenUrl: import("@scalar/typebox").TString;
|
|
@@ -1223,11 +1232,11 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1223
1232
|
}>, import("@scalar/typebox").TObject<{
|
|
1224
1233
|
'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
|
|
1225
1234
|
}>, import("@scalar/typebox").TObject<{
|
|
1226
|
-
'x-usePkce': import("@scalar/typebox").TUnion<[
|
|
1235
|
+
'x-usePkce': import("@scalar/typebox").TUnion<[TLiteral<"SHA-256">, TLiteral<"plain">, TLiteral<"no">]>;
|
|
1227
1236
|
}>]>>;
|
|
1228
1237
|
}>;
|
|
1229
1238
|
ServerVariableObject: import("@scalar/typebox").TObject<{
|
|
1230
|
-
enum: import("@scalar/typebox").TOptional<
|
|
1239
|
+
enum: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TString>>;
|
|
1231
1240
|
default: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1232
1241
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1233
1242
|
}>;
|
|
@@ -1235,12 +1244,12 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1235
1244
|
openapi: import("@scalar/typebox").TString;
|
|
1236
1245
|
info: import("@scalar/typebox").TRef<"InfoObject">;
|
|
1237
1246
|
jsonSchemaDialect: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1238
|
-
servers: import("@scalar/typebox").TOptional<
|
|
1247
|
+
servers: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"ServerObject">>>;
|
|
1239
1248
|
paths: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"PathsObject">>;
|
|
1240
1249
|
webhooks: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TRef<"PathItemObject">>>;
|
|
1241
1250
|
components: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ComponentsObject">>;
|
|
1242
|
-
security: import("@scalar/typebox").TOptional<
|
|
1243
|
-
tags: import("@scalar/typebox").TOptional<
|
|
1251
|
+
security: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
|
|
1252
|
+
tags: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"TagObject">>>;
|
|
1244
1253
|
externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
|
|
1245
1254
|
}>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1246
1255
|
'x-scalar-client-config-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -1260,37 +1269,41 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1260
1269
|
path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1261
1270
|
}>>>;
|
|
1262
1271
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1263
|
-
'x-scalar-selected-security': import("@scalar/typebox").TOptional<
|
|
1264
|
-
|
|
1272
|
+
'x-scalar-selected-security': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
|
|
1273
|
+
'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1274
|
+
'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1275
|
+
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
|
|
1265
1276
|
}>, import("@scalar/typebox").TObject<{
|
|
1266
|
-
'x-tagGroups': import("@scalar/typebox").TOptional<
|
|
1277
|
+
'x-tagGroups': import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TObject<{
|
|
1267
1278
|
name: import("@scalar/typebox").TString;
|
|
1268
|
-
tags:
|
|
1279
|
+
tags: TArray<import("@scalar/typebox").TString>;
|
|
1269
1280
|
}>>>;
|
|
1281
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1282
|
+
'x-scalar-original-document-hash': import("@scalar/typebox").TString;
|
|
1270
1283
|
}>]>]>;
|
|
1271
1284
|
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1272
1285
|
id: import("@scalar/typebox").TString;
|
|
1273
1286
|
title: import("@scalar/typebox").TString;
|
|
1274
1287
|
}>, import("@scalar/typebox").TObject<{
|
|
1275
|
-
type:
|
|
1276
|
-
children: import("@scalar/typebox").TOptional<
|
|
1288
|
+
type: TLiteral<"text">;
|
|
1289
|
+
children: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1277
1290
|
}>]>;
|
|
1278
1291
|
TraversedOperationObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1279
1292
|
id: import("@scalar/typebox").TString;
|
|
1280
1293
|
title: import("@scalar/typebox").TString;
|
|
1281
1294
|
}>, import("@scalar/typebox").TObject<{
|
|
1282
|
-
type:
|
|
1295
|
+
type: TLiteral<"operation">;
|
|
1283
1296
|
ref: import("@scalar/typebox").TString;
|
|
1284
|
-
method:
|
|
1297
|
+
method: TLiteral<import("@scalar/helpers/http/http-methods").HttpMethod>;
|
|
1285
1298
|
path: import("@scalar/typebox").TString;
|
|
1286
1299
|
isDeprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1287
|
-
children: import("@scalar/typebox").TOptional<
|
|
1300
|
+
children: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1288
1301
|
}>]>;
|
|
1289
1302
|
TraversedSchemaObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1290
1303
|
id: import("@scalar/typebox").TString;
|
|
1291
1304
|
title: import("@scalar/typebox").TString;
|
|
1292
1305
|
}>, import("@scalar/typebox").TObject<{
|
|
1293
|
-
type:
|
|
1306
|
+
type: TLiteral<"model">;
|
|
1294
1307
|
ref: import("@scalar/typebox").TString;
|
|
1295
1308
|
name: import("@scalar/typebox").TString;
|
|
1296
1309
|
}>]>;
|
|
@@ -1298,9 +1311,9 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1298
1311
|
id: import("@scalar/typebox").TString;
|
|
1299
1312
|
title: import("@scalar/typebox").TString;
|
|
1300
1313
|
}>, import("@scalar/typebox").TObject<{
|
|
1301
|
-
type:
|
|
1314
|
+
type: TLiteral<"webhook">;
|
|
1302
1315
|
ref: import("@scalar/typebox").TString;
|
|
1303
|
-
method:
|
|
1316
|
+
method: TLiteral<import("@scalar/helpers/http/http-methods").HttpMethod>;
|
|
1304
1317
|
name: import("@scalar/typebox").TString;
|
|
1305
1318
|
isDeprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1306
1319
|
}>]>;
|
|
@@ -1308,10 +1321,10 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1308
1321
|
id: import("@scalar/typebox").TString;
|
|
1309
1322
|
title: import("@scalar/typebox").TString;
|
|
1310
1323
|
}>, import("@scalar/typebox").TObject<{
|
|
1311
|
-
type:
|
|
1324
|
+
type: TLiteral<"tag">;
|
|
1312
1325
|
name: import("@scalar/typebox").TString;
|
|
1313
1326
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1314
|
-
children: import("@scalar/typebox").TOptional<
|
|
1327
|
+
children: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1315
1328
|
isGroup: import("@scalar/typebox").TBoolean;
|
|
1316
1329
|
isWebhooks: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1317
1330
|
xKeys: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TUnknown>>;
|
|
@@ -1320,33 +1333,33 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1320
1333
|
id: import("@scalar/typebox").TString;
|
|
1321
1334
|
title: import("@scalar/typebox").TString;
|
|
1322
1335
|
}>, import("@scalar/typebox").TObject<{
|
|
1323
|
-
type:
|
|
1324
|
-
children: import("@scalar/typebox").TOptional<
|
|
1336
|
+
type: TLiteral<"text">;
|
|
1337
|
+
children: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1325
1338
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1326
1339
|
id: import("@scalar/typebox").TString;
|
|
1327
1340
|
title: import("@scalar/typebox").TString;
|
|
1328
1341
|
}>, import("@scalar/typebox").TObject<{
|
|
1329
|
-
type:
|
|
1342
|
+
type: TLiteral<"operation">;
|
|
1330
1343
|
ref: import("@scalar/typebox").TString;
|
|
1331
|
-
method:
|
|
1344
|
+
method: TLiteral<import("@scalar/helpers/http/http-methods").HttpMethod>;
|
|
1332
1345
|
path: import("@scalar/typebox").TString;
|
|
1333
1346
|
isDeprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1334
|
-
children: import("@scalar/typebox").TOptional<
|
|
1347
|
+
children: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1335
1348
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1336
1349
|
id: import("@scalar/typebox").TString;
|
|
1337
1350
|
title: import("@scalar/typebox").TString;
|
|
1338
1351
|
}>, import("@scalar/typebox").TObject<{
|
|
1339
|
-
type:
|
|
1352
|
+
type: TLiteral<"model">;
|
|
1340
1353
|
ref: import("@scalar/typebox").TString;
|
|
1341
1354
|
name: import("@scalar/typebox").TString;
|
|
1342
1355
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1343
1356
|
id: import("@scalar/typebox").TString;
|
|
1344
1357
|
title: import("@scalar/typebox").TString;
|
|
1345
1358
|
}>, import("@scalar/typebox").TObject<{
|
|
1346
|
-
type:
|
|
1359
|
+
type: TLiteral<"tag">;
|
|
1347
1360
|
name: import("@scalar/typebox").TString;
|
|
1348
1361
|
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1349
|
-
children: import("@scalar/typebox").TOptional<
|
|
1362
|
+
children: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1350
1363
|
isGroup: import("@scalar/typebox").TBoolean;
|
|
1351
1364
|
isWebhooks: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1352
1365
|
xKeys: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TUnknown>>;
|
|
@@ -1354,18 +1367,38 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1354
1367
|
id: import("@scalar/typebox").TString;
|
|
1355
1368
|
title: import("@scalar/typebox").TString;
|
|
1356
1369
|
}>, import("@scalar/typebox").TObject<{
|
|
1357
|
-
type:
|
|
1370
|
+
type: TLiteral<"webhook">;
|
|
1358
1371
|
ref: import("@scalar/typebox").TString;
|
|
1359
|
-
method:
|
|
1372
|
+
method: TLiteral<import("@scalar/helpers/http/http-methods").HttpMethod>;
|
|
1360
1373
|
name: import("@scalar/typebox").TString;
|
|
1361
1374
|
isDeprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1362
1375
|
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1363
1376
|
id: import("@scalar/typebox").TString;
|
|
1364
1377
|
title: import("@scalar/typebox").TString;
|
|
1365
1378
|
}>, import("@scalar/typebox").TObject<{
|
|
1366
|
-
type:
|
|
1379
|
+
type: TLiteral<"example">;
|
|
1380
|
+
name: import("@scalar/typebox").TString;
|
|
1381
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1382
|
+
id: import("@scalar/typebox").TString;
|
|
1383
|
+
title: import("@scalar/typebox").TString;
|
|
1384
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1385
|
+
type: TLiteral<"document">;
|
|
1386
|
+
children: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1387
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1388
|
+
id: import("@scalar/typebox").TString;
|
|
1389
|
+
title: import("@scalar/typebox").TString;
|
|
1390
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1391
|
+
type: TLiteral<"models">;
|
|
1367
1392
|
name: import("@scalar/typebox").TString;
|
|
1393
|
+
children: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1368
1394
|
}>]>]>;
|
|
1395
|
+
TraversedDocumentObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1396
|
+
id: import("@scalar/typebox").TString;
|
|
1397
|
+
title: import("@scalar/typebox").TString;
|
|
1398
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1399
|
+
type: TLiteral<"document">;
|
|
1400
|
+
children: import("@scalar/typebox").TOptional<TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1401
|
+
}>]>;
|
|
1369
1402
|
}, "ServerObject">>>;
|
|
1370
1403
|
baseServerUrl: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1371
1404
|
}>>;
|
|
@@ -1374,11 +1407,11 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1374
1407
|
pathNotFound: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1375
1408
|
}>>;
|
|
1376
1409
|
appearance: import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
1377
|
-
layout: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
1410
|
+
layout: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"modern">, TLiteral<"classic">]>>;
|
|
1378
1411
|
theme: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1379
1412
|
favicon: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1380
|
-
initialColorMode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
1381
|
-
forceColorMode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[
|
|
1413
|
+
initialColorMode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"auto">, TLiteral<"dark">, TLiteral<"light">]>>;
|
|
1414
|
+
forceColorMode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[TLiteral<"dark">, TLiteral<"light">]>>;
|
|
1382
1415
|
css: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1383
1416
|
loadDefaultFonts: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1384
1417
|
}>>;
|
|
@@ -1401,7 +1434,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1401
1434
|
ogImage: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1402
1435
|
twitterCard: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1403
1436
|
}>>;
|
|
1404
|
-
httpClients: import("@scalar/typebox").TOptional<
|
|
1437
|
+
httpClients: import("@scalar/typebox").TOptional<TArray<TLiteral<"c/libcurl" | "clojure/clj_http" | "csharp/httpclient" | "csharp/restsharp" | "dart/http" | "fsharp/httpclient" | "go/native" | "http/http1.1" | "java/asynchttp" | "java/nethttp" | "java/okhttp" | "java/unirest" | "js/axios" | "js/fetch" | "js/jquery" | "js/ofetch" | "js/xhr" | "kotlin/okhttp" | "node/axios" | "node/fetch" | "node/ofetch" | "node/undici" | "objc/nsurlsession" | "ocaml/cohttp" | "php/curl" | "php/guzzle" | "powershell/restmethod" | "powershell/webrequest" | "python/python3" | "python/requests" | "python/httpx_sync" | "python/httpx_async" | "r/httr" | "ruby/native" | "rust/reqwest" | "shell/curl" | "shell/httpie" | "shell/wget" | "swift/nsurlsession">>>;
|
|
1405
1438
|
}>;
|
|
1406
1439
|
export type ReferenceConfig = {
|
|
1407
1440
|
title?: string;
|
|
@@ -1411,7 +1444,7 @@ export type ReferenceConfig = {
|
|
|
1411
1444
|
appearance?: Appearance;
|
|
1412
1445
|
features?: Features;
|
|
1413
1446
|
meta?: Meta;
|
|
1414
|
-
httpClients?:
|
|
1447
|
+
httpClients?: (typeof AVAILABLE_CLIENTS)[number][];
|
|
1415
1448
|
};
|
|
1416
1449
|
export declare const defaultReferenceConfig: RequiredDeep<ReferenceConfig>;
|
|
1417
1450
|
//# sourceMappingURL=index.d.ts.map
|