@scalar/workspace-store 0.15.6 → 0.15.8
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 +29 -0
- package/dist/client.d.ts +1 -38
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +5 -8
- package/dist/client.js.map +2 -2
- package/dist/navigation/get-navigation-options.d.ts +9 -0
- package/dist/navigation/get-navigation-options.d.ts.map +1 -0
- package/dist/navigation/get-navigation-options.js +77 -0
- package/dist/navigation/get-navigation-options.js.map +7 -0
- package/dist/navigation/helpers/get-x-keys.d.ts +10 -0
- package/dist/navigation/helpers/get-x-keys.d.ts.map +1 -0
- package/dist/navigation/helpers/get-x-keys.js +10 -0
- package/dist/navigation/helpers/get-x-keys.js.map +7 -0
- package/dist/navigation/helpers/traverse-description.d.ts +3 -5
- package/dist/navigation/helpers/traverse-description.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-description.js +4 -5
- package/dist/navigation/helpers/traverse-description.js.map +2 -2
- package/dist/navigation/helpers/traverse-document.d.ts +121 -28
- package/dist/navigation/helpers/traverse-document.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-document.js +16 -21
- package/dist/navigation/helpers/traverse-document.js.map +2 -2
- package/dist/navigation/helpers/traverse-paths.d.ts +4 -5
- package/dist/navigation/helpers/traverse-paths.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-paths.js +15 -8
- package/dist/navigation/helpers/traverse-paths.js.map +2 -2
- package/dist/navigation/helpers/traverse-schemas.d.ts +3 -6
- package/dist/navigation/helpers/traverse-schemas.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-schemas.js +7 -7
- package/dist/navigation/helpers/traverse-schemas.js.map +2 -2
- package/dist/navigation/helpers/traverse-tags.d.ts +2 -5
- package/dist/navigation/helpers/traverse-tags.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-tags.js +16 -13
- package/dist/navigation/helpers/traverse-tags.js.map +2 -2
- package/dist/navigation/helpers/traverse-webhooks.d.ts +3 -6
- package/dist/navigation/helpers/traverse-webhooks.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-webhooks.js +27 -7
- package/dist/navigation/helpers/traverse-webhooks.js.map +2 -2
- package/dist/navigation/index.d.ts +1 -0
- package/dist/navigation/index.d.ts.map +1 -1
- package/dist/navigation/index.js +2 -0
- package/dist/navigation/index.js.map +2 -2
- package/dist/navigation/types.d.ts +3 -4
- package/dist/navigation/types.d.ts.map +1 -1
- package/dist/schemas/inmemory-workspace.d.ts +162 -102
- package/dist/schemas/inmemory-workspace.d.ts.map +1 -1
- package/dist/schemas/navigation.d.ts +60 -128
- package/dist/schemas/navigation.d.ts.map +1 -1
- package/dist/schemas/navigation.js +40 -44
- package/dist/schemas/navigation.js.map +2 -2
- package/dist/schemas/reference-config/index.d.ts +81 -51
- package/dist/schemas/reference-config/index.d.ts.map +1 -1
- package/dist/schemas/reference-config/settings.d.ts +81 -51
- package/dist/schemas/reference-config/settings.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/openapi-document.d.ts +9980 -1429
- package/dist/schemas/v3.1/strict/openapi-document.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/openapi-document.js +31 -4
- package/dist/schemas/v3.1/strict/openapi-document.js.map +2 -2
- package/dist/schemas/v3.1/strict/ref-definitions.d.ts +8 -0
- package/dist/schemas/v3.1/strict/ref-definitions.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/ref-definitions.js +12 -1
- package/dist/schemas/v3.1/strict/ref-definitions.js.map +2 -2
- package/dist/schemas/v3.1/strict/schema.d.ts +2 -2
- package/dist/schemas/v3.1/strict/schema.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/schema.js +2 -44
- package/dist/schemas/v3.1/strict/schema.js.map +2 -2
- package/dist/schemas/workspace-specification/config.d.ts +113 -51
- package/dist/schemas/workspace-specification/config.d.ts.map +1 -1
- package/dist/schemas/workspace-specification/config.js.map +2 -2
- package/dist/schemas/workspace-specification/index.d.ts +81 -51
- package/dist/schemas/workspace-specification/index.d.ts.map +1 -1
- package/dist/schemas/workspace.d.ts +567 -357
- package/dist/schemas/workspace.d.ts.map +1 -1
- package/dist/server.d.ts +3 -4
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +3 -2
- package/dist/server.js.map +2 -2
- package/package.json +11 -6
|
@@ -1,80 +1,76 @@
|
|
|
1
|
+
import { httpMethods } from "@scalar/helpers/http/http-methods";
|
|
1
2
|
import { Type } from "@scalar/typebox";
|
|
2
3
|
import { compose } from "../schemas/compose.js";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Type.Literal("text"),
|
|
6
|
-
Type.Literal("operation"),
|
|
7
|
-
Type.Literal("model"),
|
|
8
|
-
Type.Literal("tag"),
|
|
9
|
-
Type.Literal("webhook")
|
|
10
|
-
]),
|
|
4
|
+
import { TraversedEntryObjectRef, TraversedTagObjectRef } from "../schemas/v3.1/strict/ref-definitions.js";
|
|
5
|
+
const NavigationBaseSchemaDefinition = Type.Object({
|
|
11
6
|
id: Type.String(),
|
|
12
7
|
title: Type.String()
|
|
13
8
|
});
|
|
14
|
-
const
|
|
15
|
-
|
|
9
|
+
const TraversedDescriptionSchemaDefinition = compose(
|
|
10
|
+
NavigationBaseSchemaDefinition,
|
|
16
11
|
Type.Object({
|
|
17
12
|
type: Type.Literal("text"),
|
|
18
|
-
children: Type.Optional(Type.Array(
|
|
13
|
+
children: Type.Optional(Type.Array(TraversedEntryObjectRef))
|
|
19
14
|
})
|
|
20
15
|
);
|
|
21
|
-
const
|
|
22
|
-
|
|
16
|
+
const TraversedOperationSchemaDefinition = compose(
|
|
17
|
+
NavigationBaseSchemaDefinition,
|
|
23
18
|
Type.Object({
|
|
24
19
|
type: Type.Literal("operation"),
|
|
25
20
|
ref: Type.String(),
|
|
26
|
-
method: Type.
|
|
27
|
-
|
|
21
|
+
method: Type.Union(
|
|
22
|
+
Array.from(httpMethods.keys()).map((method) => Type.Literal(method))
|
|
23
|
+
),
|
|
24
|
+
path: Type.String(),
|
|
25
|
+
isDeprecated: Type.Optional(Type.Boolean())
|
|
28
26
|
})
|
|
29
27
|
);
|
|
30
|
-
const
|
|
31
|
-
|
|
28
|
+
const TraversedSchemaSchemaDefinition = compose(
|
|
29
|
+
NavigationBaseSchemaDefinition,
|
|
32
30
|
Type.Object({
|
|
33
31
|
type: Type.Literal("model"),
|
|
34
32
|
ref: Type.String(),
|
|
35
33
|
name: Type.String()
|
|
36
34
|
})
|
|
37
35
|
);
|
|
38
|
-
const
|
|
39
|
-
|
|
36
|
+
const TraversedWebhookSchemaDefinition = compose(
|
|
37
|
+
NavigationBaseSchemaDefinition,
|
|
40
38
|
Type.Object({
|
|
41
39
|
type: Type.Literal("webhook"),
|
|
42
40
|
ref: Type.String(),
|
|
43
|
-
method: Type.
|
|
44
|
-
|
|
41
|
+
method: Type.Union(
|
|
42
|
+
Array.from(httpMethods.keys()).map((method) => Type.Literal(method))
|
|
43
|
+
),
|
|
44
|
+
name: Type.String(),
|
|
45
|
+
isDeprecated: Type.Optional(Type.Boolean())
|
|
45
46
|
})
|
|
46
47
|
);
|
|
47
|
-
const TraversedEntryRef = Type.Ref("TraversedEntrySchema");
|
|
48
|
-
const TraversedTagRef = Type.Ref("TraversedTagSchema");
|
|
49
48
|
const TraversedTagSchemaDefinition = compose(
|
|
50
|
-
|
|
49
|
+
NavigationBaseSchemaDefinition,
|
|
51
50
|
Type.Object({
|
|
52
51
|
type: Type.Literal("tag"),
|
|
53
52
|
name: Type.String(),
|
|
54
|
-
|
|
55
|
-
|
|
53
|
+
description: Type.Optional(Type.String()),
|
|
54
|
+
children: Type.Optional(Type.Array(TraversedEntryObjectRef)),
|
|
55
|
+
isGroup: Type.Boolean(),
|
|
56
|
+
isWebhooks: Type.Optional(Type.Boolean()),
|
|
57
|
+
xKeys: Type.Optional(Type.Record(Type.String(), Type.Unknown()))
|
|
56
58
|
})
|
|
57
59
|
);
|
|
58
60
|
const TraversedEntrySchemaDefinition = Type.Union([
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
TraversedTagObjectRef,
|
|
62
|
+
TraversedDescriptionSchemaDefinition,
|
|
63
|
+
TraversedOperationSchemaDefinition,
|
|
64
|
+
TraversedSchemaSchemaDefinition,
|
|
65
|
+
TraversedWebhookSchemaDefinition
|
|
64
66
|
]);
|
|
65
|
-
const module = Type.Module({
|
|
66
|
-
TraversedTagSchema: TraversedTagSchemaDefinition,
|
|
67
|
-
TraversedEntrySchema: TraversedEntrySchemaDefinition
|
|
68
|
-
});
|
|
69
|
-
const TraversedTagSchema = module.Import("TraversedTagSchema");
|
|
70
|
-
const TraversedEntrySchema = module.Import("TraversedEntrySchema");
|
|
71
67
|
export {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
68
|
+
NavigationBaseSchemaDefinition,
|
|
69
|
+
TraversedDescriptionSchemaDefinition,
|
|
70
|
+
TraversedEntrySchemaDefinition,
|
|
71
|
+
TraversedOperationSchemaDefinition,
|
|
72
|
+
TraversedSchemaSchemaDefinition,
|
|
73
|
+
TraversedTagSchemaDefinition,
|
|
74
|
+
TraversedWebhookSchemaDefinition
|
|
79
75
|
};
|
|
80
76
|
//# sourceMappingURL=navigation.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/schemas/navigation.ts"],
|
|
4
|
-
"sourcesContent": ["import { type
|
|
5
|
-
"mappings": "AAAA,
|
|
4
|
+
"sourcesContent": ["import { type HttpMethod, httpMethods } from '@scalar/helpers/http/http-methods'\nimport { type TLiteral, Type } from '@scalar/typebox'\n\nimport { compose } from '@/schemas/compose'\nimport { TraversedEntryObjectRef, TraversedTagObjectRef } from '@/schemas/v3.1/strict/ref-definitions'\n\nexport const NavigationBaseSchemaDefinition = Type.Object({\n id: Type.String(),\n title: Type.String(),\n})\n\nexport const TraversedDescriptionSchemaDefinition = compose(\n NavigationBaseSchemaDefinition,\n Type.Object({\n type: Type.Literal('text'),\n children: Type.Optional(Type.Array(TraversedEntryObjectRef)),\n }),\n)\n\nexport const TraversedOperationSchemaDefinition = compose(\n NavigationBaseSchemaDefinition,\n Type.Object({\n type: Type.Literal('operation'),\n ref: Type.String(),\n method: Type.Union(\n Array.from(httpMethods.keys()).map((method) => Type.Literal(method)),\n ) as unknown as TLiteral<HttpMethod>,\n path: Type.String(),\n isDeprecated: Type.Optional(Type.Boolean()),\n }),\n)\n\nexport const TraversedSchemaSchemaDefinition = compose(\n NavigationBaseSchemaDefinition,\n Type.Object({\n type: Type.Literal('model'),\n ref: Type.String(),\n name: Type.String(),\n }),\n)\n\nexport const TraversedWebhookSchemaDefinition = compose(\n NavigationBaseSchemaDefinition,\n Type.Object({\n type: Type.Literal('webhook'),\n ref: Type.String(),\n method: Type.Union(\n Array.from(httpMethods.keys()).map((method) => Type.Literal(method)),\n ) as unknown as TLiteral<HttpMethod>,\n name: Type.String(),\n isDeprecated: Type.Optional(Type.Boolean()),\n }),\n)\n\nexport const TraversedTagSchemaDefinition = compose(\n NavigationBaseSchemaDefinition,\n Type.Object({\n type: Type.Literal('tag'),\n name: Type.String(),\n description: Type.Optional(Type.String()),\n children: Type.Optional(Type.Array(TraversedEntryObjectRef)),\n isGroup: Type.Boolean(),\n isWebhooks: Type.Optional(Type.Boolean()),\n xKeys: Type.Optional(Type.Record(Type.String(), Type.Unknown())),\n }),\n)\n\nexport const TraversedEntrySchemaDefinition = Type.Union([\n TraversedTagObjectRef,\n TraversedDescriptionSchemaDefinition,\n TraversedOperationSchemaDefinition,\n TraversedSchemaSchemaDefinition,\n TraversedWebhookSchemaDefinition,\n])\n"],
|
|
5
|
+
"mappings": "AAAA,SAA0B,mBAAmB;AAC7C,SAAwB,YAAY;AAEpC,SAAS,eAAe;AACxB,SAAS,yBAAyB,6BAA6B;AAExD,MAAM,iCAAiC,KAAK,OAAO;AAAA,EACxD,IAAI,KAAK,OAAO;AAAA,EAChB,OAAO,KAAK,OAAO;AACrB,CAAC;AAEM,MAAM,uCAAuC;AAAA,EAClD;AAAA,EACA,KAAK,OAAO;AAAA,IACV,MAAM,KAAK,QAAQ,MAAM;AAAA,IACzB,UAAU,KAAK,SAAS,KAAK,MAAM,uBAAuB,CAAC;AAAA,EAC7D,CAAC;AACH;AAEO,MAAM,qCAAqC;AAAA,EAChD;AAAA,EACA,KAAK,OAAO;AAAA,IACV,MAAM,KAAK,QAAQ,WAAW;AAAA,IAC9B,KAAK,KAAK,OAAO;AAAA,IACjB,QAAQ,KAAK;AAAA,MACX,MAAM,KAAK,YAAY,KAAK,CAAC,EAAE,IAAI,CAAC,WAAW,KAAK,QAAQ,MAAM,CAAC;AAAA,IACrE;AAAA,IACA,MAAM,KAAK,OAAO;AAAA,IAClB,cAAc,KAAK,SAAS,KAAK,QAAQ,CAAC;AAAA,EAC5C,CAAC;AACH;AAEO,MAAM,kCAAkC;AAAA,EAC7C;AAAA,EACA,KAAK,OAAO;AAAA,IACV,MAAM,KAAK,QAAQ,OAAO;AAAA,IAC1B,KAAK,KAAK,OAAO;AAAA,IACjB,MAAM,KAAK,OAAO;AAAA,EACpB,CAAC;AACH;AAEO,MAAM,mCAAmC;AAAA,EAC9C;AAAA,EACA,KAAK,OAAO;AAAA,IACV,MAAM,KAAK,QAAQ,SAAS;AAAA,IAC5B,KAAK,KAAK,OAAO;AAAA,IACjB,QAAQ,KAAK;AAAA,MACX,MAAM,KAAK,YAAY,KAAK,CAAC,EAAE,IAAI,CAAC,WAAW,KAAK,QAAQ,MAAM,CAAC;AAAA,IACrE;AAAA,IACA,MAAM,KAAK,OAAO;AAAA,IAClB,cAAc,KAAK,SAAS,KAAK,QAAQ,CAAC;AAAA,EAC5C,CAAC;AACH;AAEO,MAAM,+BAA+B;AAAA,EAC1C;AAAA,EACA,KAAK,OAAO;AAAA,IACV,MAAM,KAAK,QAAQ,KAAK;AAAA,IACxB,MAAM,KAAK,OAAO;AAAA,IAClB,aAAa,KAAK,SAAS,KAAK,OAAO,CAAC;AAAA,IACxC,UAAU,KAAK,SAAS,KAAK,MAAM,uBAAuB,CAAC;AAAA,IAC3D,SAAS,KAAK,QAAQ;AAAA,IACtB,YAAY,KAAK,SAAS,KAAK,QAAQ,CAAC;AAAA,IACxC,OAAO,KAAK,SAAS,KAAK,OAAO,KAAK,OAAO,GAAG,KAAK,QAAQ,CAAC,CAAC;AAAA,EACjE,CAAC;AACH;AAEO,MAAM,iCAAiC,KAAK,MAAM;AAAA,EACvD;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,CAAC;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -584,7 +584,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
584
584
|
'x-tags': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
585
585
|
}>]>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
586
586
|
type: import("@scalar/typebox").TLiteral<"string">;
|
|
587
|
-
format: import("@scalar/typebox").TOptional<import("@scalar/typebox").
|
|
587
|
+
format: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
588
588
|
maxLength: import("@scalar/typebox").TOptional<import("@scalar/typebox").TInteger>;
|
|
589
589
|
minLength: import("@scalar/typebox").TOptional<import("@scalar/typebox").TInteger>;
|
|
590
590
|
pattern: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -1211,57 +1211,87 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
|
|
|
1211
1211
|
path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1212
1212
|
}>>>;
|
|
1213
1213
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1214
|
-
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").
|
|
1215
|
-
TraversedTagSchema: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1216
|
-
type: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"text">, import("@scalar/typebox").TLiteral<"operation">, import("@scalar/typebox").TLiteral<"model">, import("@scalar/typebox").TLiteral<"tag">, import("@scalar/typebox").TLiteral<"webhook">]>;
|
|
1217
|
-
id: import("@scalar/typebox").TString;
|
|
1218
|
-
title: import("@scalar/typebox").TString;
|
|
1219
|
-
}>, import("@scalar/typebox").TObject<{
|
|
1220
|
-
type: import("@scalar/typebox").TLiteral<"tag">;
|
|
1221
|
-
name: import("@scalar/typebox").TString;
|
|
1222
|
-
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntrySchema">>>;
|
|
1223
|
-
isGroup: import("@scalar/typebox").TBoolean;
|
|
1224
|
-
}>]>;
|
|
1225
|
-
TraversedEntrySchema: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"TraversedTagSchema">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1226
|
-
type: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"text">, import("@scalar/typebox").TLiteral<"operation">, import("@scalar/typebox").TLiteral<"model">, import("@scalar/typebox").TLiteral<"tag">, import("@scalar/typebox").TLiteral<"webhook">]>;
|
|
1227
|
-
id: import("@scalar/typebox").TString;
|
|
1228
|
-
title: import("@scalar/typebox").TString;
|
|
1229
|
-
}>, import("@scalar/typebox").TObject<{
|
|
1230
|
-
type: import("@scalar/typebox").TLiteral<"text">;
|
|
1231
|
-
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
1232
|
-
type: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"text">, import("@scalar/typebox").TLiteral<"operation">, import("@scalar/typebox").TLiteral<"model">, import("@scalar/typebox").TLiteral<"tag">, import("@scalar/typebox").TLiteral<"webhook">]>;
|
|
1233
|
-
id: import("@scalar/typebox").TString;
|
|
1234
|
-
title: import("@scalar/typebox").TString;
|
|
1235
|
-
}>>>;
|
|
1236
|
-
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1237
|
-
type: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"text">, import("@scalar/typebox").TLiteral<"operation">, import("@scalar/typebox").TLiteral<"model">, import("@scalar/typebox").TLiteral<"tag">, import("@scalar/typebox").TLiteral<"webhook">]>;
|
|
1238
|
-
id: import("@scalar/typebox").TString;
|
|
1239
|
-
title: import("@scalar/typebox").TString;
|
|
1240
|
-
}>, import("@scalar/typebox").TObject<{
|
|
1241
|
-
type: import("@scalar/typebox").TLiteral<"operation">;
|
|
1242
|
-
ref: import("@scalar/typebox").TString;
|
|
1243
|
-
method: import("@scalar/typebox").TString;
|
|
1244
|
-
path: import("@scalar/typebox").TString;
|
|
1245
|
-
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1246
|
-
type: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"text">, import("@scalar/typebox").TLiteral<"operation">, import("@scalar/typebox").TLiteral<"model">, import("@scalar/typebox").TLiteral<"tag">, import("@scalar/typebox").TLiteral<"webhook">]>;
|
|
1247
|
-
id: import("@scalar/typebox").TString;
|
|
1248
|
-
title: import("@scalar/typebox").TString;
|
|
1249
|
-
}>, import("@scalar/typebox").TObject<{
|
|
1250
|
-
type: import("@scalar/typebox").TLiteral<"model">;
|
|
1251
|
-
ref: import("@scalar/typebox").TString;
|
|
1252
|
-
name: import("@scalar/typebox").TString;
|
|
1253
|
-
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1254
|
-
type: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"text">, import("@scalar/typebox").TLiteral<"operation">, import("@scalar/typebox").TLiteral<"model">, import("@scalar/typebox").TLiteral<"tag">, import("@scalar/typebox").TLiteral<"webhook">]>;
|
|
1255
|
-
id: import("@scalar/typebox").TString;
|
|
1256
|
-
title: import("@scalar/typebox").TString;
|
|
1257
|
-
}>, import("@scalar/typebox").TObject<{
|
|
1258
|
-
type: import("@scalar/typebox").TLiteral<"webhook">;
|
|
1259
|
-
ref: import("@scalar/typebox").TString;
|
|
1260
|
-
method: import("@scalar/typebox").TString;
|
|
1261
|
-
name: import("@scalar/typebox").TString;
|
|
1262
|
-
}>]>]>;
|
|
1263
|
-
}, "TraversedEntrySchema">>>;
|
|
1214
|
+
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1264
1215
|
}>]>;
|
|
1216
|
+
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1217
|
+
id: import("@scalar/typebox").TString;
|
|
1218
|
+
title: import("@scalar/typebox").TString;
|
|
1219
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1220
|
+
type: import("@scalar/typebox").TLiteral<"text">;
|
|
1221
|
+
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1222
|
+
}>]>;
|
|
1223
|
+
TraversedOperationObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1224
|
+
id: import("@scalar/typebox").TString;
|
|
1225
|
+
title: import("@scalar/typebox").TString;
|
|
1226
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1227
|
+
type: import("@scalar/typebox").TLiteral<"operation">;
|
|
1228
|
+
ref: import("@scalar/typebox").TString;
|
|
1229
|
+
method: import("@scalar/typebox").TLiteral<import("@scalar/helpers/http/http-methods").HttpMethod>;
|
|
1230
|
+
path: import("@scalar/typebox").TString;
|
|
1231
|
+
isDeprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1232
|
+
}>]>;
|
|
1233
|
+
TraversedSchemaObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1234
|
+
id: import("@scalar/typebox").TString;
|
|
1235
|
+
title: import("@scalar/typebox").TString;
|
|
1236
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1237
|
+
type: import("@scalar/typebox").TLiteral<"model">;
|
|
1238
|
+
ref: import("@scalar/typebox").TString;
|
|
1239
|
+
name: import("@scalar/typebox").TString;
|
|
1240
|
+
}>]>;
|
|
1241
|
+
TraversedWebhookObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1242
|
+
id: import("@scalar/typebox").TString;
|
|
1243
|
+
title: import("@scalar/typebox").TString;
|
|
1244
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1245
|
+
type: import("@scalar/typebox").TLiteral<"webhook">;
|
|
1246
|
+
ref: import("@scalar/typebox").TString;
|
|
1247
|
+
method: import("@scalar/typebox").TLiteral<import("@scalar/helpers/http/http-methods").HttpMethod>;
|
|
1248
|
+
name: import("@scalar/typebox").TString;
|
|
1249
|
+
isDeprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1250
|
+
}>]>;
|
|
1251
|
+
TraversedTagObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1252
|
+
id: import("@scalar/typebox").TString;
|
|
1253
|
+
title: import("@scalar/typebox").TString;
|
|
1254
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1255
|
+
type: import("@scalar/typebox").TLiteral<"tag">;
|
|
1256
|
+
name: import("@scalar/typebox").TString;
|
|
1257
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1258
|
+
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1259
|
+
isGroup: import("@scalar/typebox").TBoolean;
|
|
1260
|
+
isWebhooks: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1261
|
+
xKeys: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TUnknown>>;
|
|
1262
|
+
}>]>;
|
|
1263
|
+
TraversedEntryObject: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"TraversedTagObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1264
|
+
id: import("@scalar/typebox").TString;
|
|
1265
|
+
title: import("@scalar/typebox").TString;
|
|
1266
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1267
|
+
type: import("@scalar/typebox").TLiteral<"text">;
|
|
1268
|
+
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1269
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1270
|
+
id: import("@scalar/typebox").TString;
|
|
1271
|
+
title: import("@scalar/typebox").TString;
|
|
1272
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1273
|
+
type: import("@scalar/typebox").TLiteral<"operation">;
|
|
1274
|
+
ref: import("@scalar/typebox").TString;
|
|
1275
|
+
method: import("@scalar/typebox").TLiteral<import("@scalar/helpers/http/http-methods").HttpMethod>;
|
|
1276
|
+
path: import("@scalar/typebox").TString;
|
|
1277
|
+
isDeprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1278
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1279
|
+
id: import("@scalar/typebox").TString;
|
|
1280
|
+
title: import("@scalar/typebox").TString;
|
|
1281
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1282
|
+
type: import("@scalar/typebox").TLiteral<"model">;
|
|
1283
|
+
ref: import("@scalar/typebox").TString;
|
|
1284
|
+
name: import("@scalar/typebox").TString;
|
|
1285
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1286
|
+
id: import("@scalar/typebox").TString;
|
|
1287
|
+
title: import("@scalar/typebox").TString;
|
|
1288
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1289
|
+
type: import("@scalar/typebox").TLiteral<"webhook">;
|
|
1290
|
+
ref: import("@scalar/typebox").TString;
|
|
1291
|
+
method: import("@scalar/typebox").TLiteral<import("@scalar/helpers/http/http-methods").HttpMethod>;
|
|
1292
|
+
name: import("@scalar/typebox").TString;
|
|
1293
|
+
isDeprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1294
|
+
}>]>]>;
|
|
1265
1295
|
}, "ServerObject">>>;
|
|
1266
1296
|
baseServerUrl: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1267
1297
|
}>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/schemas/reference-config/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAAQ,MAAM,iBAAiB,CAAA;AAEnD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AAS7C;;;;GAIG;AACH,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/schemas/reference-config/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAAQ,MAAM,iBAAiB,CAAA;AAEnD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AAS7C;;;;GAIG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBjC,CAAA;AAED,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAElE,eAAO,MAAM,sBAAsB,EAAE,YAAY,CAAC,eAAe,CAgChE,CAAA"}
|
|
@@ -576,7 +576,7 @@ export declare const SettingsSchema: import("@scalar/typebox").TObject<{
|
|
|
576
576
|
'x-tags': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
|
|
577
577
|
}>]>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
578
578
|
type: import("@scalar/typebox").TLiteral<"string">;
|
|
579
|
-
format: import("@scalar/typebox").TOptional<import("@scalar/typebox").
|
|
579
|
+
format: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
580
580
|
maxLength: import("@scalar/typebox").TOptional<import("@scalar/typebox").TInteger>;
|
|
581
581
|
minLength: import("@scalar/typebox").TOptional<import("@scalar/typebox").TInteger>;
|
|
582
582
|
pattern: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
@@ -1203,57 +1203,87 @@ export declare const SettingsSchema: import("@scalar/typebox").TObject<{
|
|
|
1203
1203
|
path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1204
1204
|
}>>>;
|
|
1205
1205
|
'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1206
|
-
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").
|
|
1207
|
-
TraversedTagSchema: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1208
|
-
type: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"text">, import("@scalar/typebox").TLiteral<"operation">, import("@scalar/typebox").TLiteral<"model">, import("@scalar/typebox").TLiteral<"tag">, import("@scalar/typebox").TLiteral<"webhook">]>;
|
|
1209
|
-
id: import("@scalar/typebox").TString;
|
|
1210
|
-
title: import("@scalar/typebox").TString;
|
|
1211
|
-
}>, import("@scalar/typebox").TObject<{
|
|
1212
|
-
type: import("@scalar/typebox").TLiteral<"tag">;
|
|
1213
|
-
name: import("@scalar/typebox").TString;
|
|
1214
|
-
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntrySchema">>>;
|
|
1215
|
-
isGroup: import("@scalar/typebox").TBoolean;
|
|
1216
|
-
}>]>;
|
|
1217
|
-
TraversedEntrySchema: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"TraversedTagSchema">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1218
|
-
type: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"text">, import("@scalar/typebox").TLiteral<"operation">, import("@scalar/typebox").TLiteral<"model">, import("@scalar/typebox").TLiteral<"tag">, import("@scalar/typebox").TLiteral<"webhook">]>;
|
|
1219
|
-
id: import("@scalar/typebox").TString;
|
|
1220
|
-
title: import("@scalar/typebox").TString;
|
|
1221
|
-
}>, import("@scalar/typebox").TObject<{
|
|
1222
|
-
type: import("@scalar/typebox").TLiteral<"text">;
|
|
1223
|
-
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
|
|
1224
|
-
type: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"text">, import("@scalar/typebox").TLiteral<"operation">, import("@scalar/typebox").TLiteral<"model">, import("@scalar/typebox").TLiteral<"tag">, import("@scalar/typebox").TLiteral<"webhook">]>;
|
|
1225
|
-
id: import("@scalar/typebox").TString;
|
|
1226
|
-
title: import("@scalar/typebox").TString;
|
|
1227
|
-
}>>>;
|
|
1228
|
-
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1229
|
-
type: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"text">, import("@scalar/typebox").TLiteral<"operation">, import("@scalar/typebox").TLiteral<"model">, import("@scalar/typebox").TLiteral<"tag">, import("@scalar/typebox").TLiteral<"webhook">]>;
|
|
1230
|
-
id: import("@scalar/typebox").TString;
|
|
1231
|
-
title: import("@scalar/typebox").TString;
|
|
1232
|
-
}>, import("@scalar/typebox").TObject<{
|
|
1233
|
-
type: import("@scalar/typebox").TLiteral<"operation">;
|
|
1234
|
-
ref: import("@scalar/typebox").TString;
|
|
1235
|
-
method: import("@scalar/typebox").TString;
|
|
1236
|
-
path: import("@scalar/typebox").TString;
|
|
1237
|
-
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1238
|
-
type: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"text">, import("@scalar/typebox").TLiteral<"operation">, import("@scalar/typebox").TLiteral<"model">, import("@scalar/typebox").TLiteral<"tag">, import("@scalar/typebox").TLiteral<"webhook">]>;
|
|
1239
|
-
id: import("@scalar/typebox").TString;
|
|
1240
|
-
title: import("@scalar/typebox").TString;
|
|
1241
|
-
}>, import("@scalar/typebox").TObject<{
|
|
1242
|
-
type: import("@scalar/typebox").TLiteral<"model">;
|
|
1243
|
-
ref: import("@scalar/typebox").TString;
|
|
1244
|
-
name: import("@scalar/typebox").TString;
|
|
1245
|
-
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1246
|
-
type: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"text">, import("@scalar/typebox").TLiteral<"operation">, import("@scalar/typebox").TLiteral<"model">, import("@scalar/typebox").TLiteral<"tag">, import("@scalar/typebox").TLiteral<"webhook">]>;
|
|
1247
|
-
id: import("@scalar/typebox").TString;
|
|
1248
|
-
title: import("@scalar/typebox").TString;
|
|
1249
|
-
}>, import("@scalar/typebox").TObject<{
|
|
1250
|
-
type: import("@scalar/typebox").TLiteral<"webhook">;
|
|
1251
|
-
ref: import("@scalar/typebox").TString;
|
|
1252
|
-
method: import("@scalar/typebox").TString;
|
|
1253
|
-
name: import("@scalar/typebox").TString;
|
|
1254
|
-
}>]>]>;
|
|
1255
|
-
}, "TraversedEntrySchema">>>;
|
|
1206
|
+
"x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1256
1207
|
}>]>;
|
|
1208
|
+
TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1209
|
+
id: import("@scalar/typebox").TString;
|
|
1210
|
+
title: import("@scalar/typebox").TString;
|
|
1211
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1212
|
+
type: import("@scalar/typebox").TLiteral<"text">;
|
|
1213
|
+
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1214
|
+
}>]>;
|
|
1215
|
+
TraversedOperationObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1216
|
+
id: import("@scalar/typebox").TString;
|
|
1217
|
+
title: import("@scalar/typebox").TString;
|
|
1218
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1219
|
+
type: import("@scalar/typebox").TLiteral<"operation">;
|
|
1220
|
+
ref: import("@scalar/typebox").TString;
|
|
1221
|
+
method: import("@scalar/typebox").TLiteral<import("@scalar/helpers/http/http-methods").HttpMethod>;
|
|
1222
|
+
path: import("@scalar/typebox").TString;
|
|
1223
|
+
isDeprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1224
|
+
}>]>;
|
|
1225
|
+
TraversedSchemaObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1226
|
+
id: import("@scalar/typebox").TString;
|
|
1227
|
+
title: import("@scalar/typebox").TString;
|
|
1228
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1229
|
+
type: import("@scalar/typebox").TLiteral<"model">;
|
|
1230
|
+
ref: import("@scalar/typebox").TString;
|
|
1231
|
+
name: import("@scalar/typebox").TString;
|
|
1232
|
+
}>]>;
|
|
1233
|
+
TraversedWebhookObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1234
|
+
id: import("@scalar/typebox").TString;
|
|
1235
|
+
title: import("@scalar/typebox").TString;
|
|
1236
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1237
|
+
type: import("@scalar/typebox").TLiteral<"webhook">;
|
|
1238
|
+
ref: import("@scalar/typebox").TString;
|
|
1239
|
+
method: import("@scalar/typebox").TLiteral<import("@scalar/helpers/http/http-methods").HttpMethod>;
|
|
1240
|
+
name: import("@scalar/typebox").TString;
|
|
1241
|
+
isDeprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1242
|
+
}>]>;
|
|
1243
|
+
TraversedTagObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1244
|
+
id: import("@scalar/typebox").TString;
|
|
1245
|
+
title: import("@scalar/typebox").TString;
|
|
1246
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1247
|
+
type: import("@scalar/typebox").TLiteral<"tag">;
|
|
1248
|
+
name: import("@scalar/typebox").TString;
|
|
1249
|
+
description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1250
|
+
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1251
|
+
isGroup: import("@scalar/typebox").TBoolean;
|
|
1252
|
+
isWebhooks: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1253
|
+
xKeys: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TUnknown>>;
|
|
1254
|
+
}>]>;
|
|
1255
|
+
TraversedEntryObject: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"TraversedTagObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1256
|
+
id: import("@scalar/typebox").TString;
|
|
1257
|
+
title: import("@scalar/typebox").TString;
|
|
1258
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1259
|
+
type: import("@scalar/typebox").TLiteral<"text">;
|
|
1260
|
+
children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
|
|
1261
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1262
|
+
id: import("@scalar/typebox").TString;
|
|
1263
|
+
title: import("@scalar/typebox").TString;
|
|
1264
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1265
|
+
type: import("@scalar/typebox").TLiteral<"operation">;
|
|
1266
|
+
ref: import("@scalar/typebox").TString;
|
|
1267
|
+
method: import("@scalar/typebox").TLiteral<import("@scalar/helpers/http/http-methods").HttpMethod>;
|
|
1268
|
+
path: import("@scalar/typebox").TString;
|
|
1269
|
+
isDeprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1270
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1271
|
+
id: import("@scalar/typebox").TString;
|
|
1272
|
+
title: import("@scalar/typebox").TString;
|
|
1273
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1274
|
+
type: import("@scalar/typebox").TLiteral<"model">;
|
|
1275
|
+
ref: import("@scalar/typebox").TString;
|
|
1276
|
+
name: import("@scalar/typebox").TString;
|
|
1277
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1278
|
+
id: import("@scalar/typebox").TString;
|
|
1279
|
+
title: import("@scalar/typebox").TString;
|
|
1280
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1281
|
+
type: import("@scalar/typebox").TLiteral<"webhook">;
|
|
1282
|
+
ref: import("@scalar/typebox").TString;
|
|
1283
|
+
method: import("@scalar/typebox").TLiteral<import("@scalar/helpers/http/http-methods").HttpMethod>;
|
|
1284
|
+
name: import("@scalar/typebox").TString;
|
|
1285
|
+
isDeprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
|
|
1286
|
+
}>]>]>;
|
|
1257
1287
|
}, "ServerObject">>>;
|
|
1258
1288
|
baseServerUrl: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1259
1289
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings.d.ts","sourceRoot":"","sources":["../../../src/schemas/reference-config/settings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAAQ,MAAM,iBAAiB,CAAA;AACnD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AAI7C,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"settings.d.ts","sourceRoot":"","sources":["../../../src/schemas/reference-config/settings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAAQ,MAAM,iBAAiB,CAAA;AACnD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AAI7C,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAS1B,CAAA;AAED,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAC,OAAO,cAAc,CAAC,CAAA;AAEpD,eAAO,MAAM,eAAe,EAAE,YAAY,CAAC,QAAQ,CAKlD,CAAA"}
|