@scalar/api-reference 1.38.0 → 1.38.1
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 +34 -0
- package/dist/browser/standalone.js +16480 -16453
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/Content/Tags/Tag.vue.d.ts.map +1 -1
- package/dist/components/Content/Tags/Tag.vue.js +22 -11
- package/dist/features/api-client-modal/useApiClient.d.ts +40 -40
- package/dist/features/api-client-modal/useApiClient.d.ts.map +1 -1
- package/dist/features/example-responses/ExampleResponse.vue.d.ts.map +1 -1
- package/dist/features/example-responses/ExampleResponse.vue.js +2 -2
- package/dist/features/example-responses/ExampleResponse.vue2.js +23 -19
- package/dist/hooks/useFreezing.d.ts.map +1 -1
- package/dist/hooks/useFreezing.js +18 -18
- package/dist/index.js +1 -1
- package/dist/style.css +1 -1
- package/dist/v2/ApiReferenceWorkspace.vue.d.ts.map +1 -1
- package/dist/v2/ApiReferenceWorkspace.vue.js +94 -83
- package/dist/v2/hooks/use-workspace-store-events.d.ts +2 -1
- package/dist/v2/hooks/use-workspace-store-events.d.ts.map +1 -1
- package/dist/v2/hooks/use-workspace-store-events.js +9 -9
- package/package.json +17 -17
- package/dist/blocks/constants.d.ts +0 -9
- package/dist/blocks/constants.d.ts.map +0 -1
- package/dist/blocks/helpers/getPointer.d.ts +0 -22
- package/dist/blocks/helpers/getPointer.d.ts.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tag.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Content/Tags/Tag.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Tag.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Content/Tags/Tag.vue"],"names":[],"mappings":"AAoCA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4CAA4C,CAAA;AAK9E,KAAK,WAAW,GAAG;IACjB,GAAG,EAAE,YAAY,CAAA;IACjB,MAAM,EAAE,SAAS,GAAG,QAAQ,CAAA;IAC5B,cAAc,EAAE,OAAO,CAAA;IACvB,SAAS,EAAE,OAAO,CAAA;IAClB,UAAU,EAAE,CAAC,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC,GAAG,SAAS,CAAA;CAC/C,CAAC;AAoDF,QAAA,IAAI,OAAO,IAAU,EAAE,QAAQ,IAAY,CAAE;AAC7C,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC5C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAsBhD,QAAA,MAAM,eAAe,kSAMnB,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAQ1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as r, createBlock as a, openBlock as e, withCtx as t, renderSlot as n } from "vue";
|
|
2
2
|
import l from "./ClassicLayout.vue.js";
|
|
3
3
|
import u from "./ModernLayout.vue.js";
|
|
4
|
-
const
|
|
4
|
+
const m = /* @__PURE__ */ r({
|
|
5
5
|
__name: "Tag",
|
|
6
6
|
props: {
|
|
7
7
|
tag: {},
|
|
@@ -10,20 +10,31 @@ const c = /* @__PURE__ */ s({
|
|
|
10
10
|
isLoading: { type: Boolean },
|
|
11
11
|
onShowMore: { type: Function }
|
|
12
12
|
},
|
|
13
|
-
setup(
|
|
14
|
-
return (o,
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
setup(s) {
|
|
14
|
+
return (o, i) => o.layout === "classic" ? (e(), a(l, {
|
|
15
|
+
key: 0,
|
|
16
|
+
layout: o.layout,
|
|
17
|
+
tag: o.tag
|
|
18
|
+
}, {
|
|
19
|
+
default: t(() => [
|
|
20
|
+
n(o.$slots, "default")
|
|
17
21
|
]),
|
|
18
22
|
_: 3
|
|
19
|
-
},
|
|
20
|
-
|
|
21
|
-
|
|
23
|
+
}, 8, ["layout", "tag"])) : (e(), a(u, {
|
|
24
|
+
key: 1,
|
|
25
|
+
isLoading: o.isLoading,
|
|
26
|
+
layout: o.layout,
|
|
27
|
+
moreThanOneTag: o.moreThanOneTag,
|
|
28
|
+
onShowMore: o.onShowMore,
|
|
29
|
+
tag: o.tag
|
|
30
|
+
}, {
|
|
31
|
+
default: t(() => [
|
|
32
|
+
n(o.$slots, "default")
|
|
22
33
|
]),
|
|
23
34
|
_: 3
|
|
24
|
-
},
|
|
35
|
+
}, 8, ["isLoading", "layout", "moreThanOneTag", "onShowMore", "tag"]));
|
|
25
36
|
}
|
|
26
37
|
});
|
|
27
38
|
export {
|
|
28
|
-
|
|
39
|
+
m as default
|
|
29
40
|
};
|
|
@@ -260,7 +260,7 @@ declare const client: import("vue").Ref<{
|
|
|
260
260
|
type: "request";
|
|
261
261
|
uid: string & import("zod").$brand<"operation">;
|
|
262
262
|
path: string;
|
|
263
|
-
method: "delete" | "get" | "
|
|
263
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
264
264
|
servers: (string & import("zod").$brand<"server">)[];
|
|
265
265
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
266
266
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -286,7 +286,7 @@ declare const client: import("vue").Ref<{
|
|
|
286
286
|
description?: string | undefined;
|
|
287
287
|
schema?: unknown;
|
|
288
288
|
content?: unknown;
|
|
289
|
-
style?: "matrix" | "
|
|
289
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
290
290
|
explode?: boolean | undefined;
|
|
291
291
|
example?: unknown;
|
|
292
292
|
examples?: Record<string, {
|
|
@@ -1302,7 +1302,7 @@ declare const client: import("vue").Ref<{
|
|
|
1302
1302
|
type: "request";
|
|
1303
1303
|
uid: string & import("zod").$brand<"operation">;
|
|
1304
1304
|
path: string;
|
|
1305
|
-
method: "delete" | "get" | "
|
|
1305
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1306
1306
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1307
1307
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1308
1308
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1328,7 +1328,7 @@ declare const client: import("vue").Ref<{
|
|
|
1328
1328
|
description?: string | undefined;
|
|
1329
1329
|
schema?: unknown;
|
|
1330
1330
|
content?: unknown;
|
|
1331
|
-
style?: "matrix" | "
|
|
1331
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1332
1332
|
explode?: boolean | undefined;
|
|
1333
1333
|
example?: unknown;
|
|
1334
1334
|
examples?: Record<string, {
|
|
@@ -1361,7 +1361,7 @@ declare const client: import("vue").Ref<{
|
|
|
1361
1361
|
type: "request";
|
|
1362
1362
|
uid: string & import("zod").$brand<"operation">;
|
|
1363
1363
|
path: string;
|
|
1364
|
-
method: "delete" | "get" | "
|
|
1364
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1365
1365
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1366
1366
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1367
1367
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1387,7 +1387,7 @@ declare const client: import("vue").Ref<{
|
|
|
1387
1387
|
description?: string | undefined;
|
|
1388
1388
|
schema?: unknown;
|
|
1389
1389
|
content?: unknown;
|
|
1390
|
-
style?: "matrix" | "
|
|
1390
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1391
1391
|
explode?: boolean | undefined;
|
|
1392
1392
|
example?: unknown;
|
|
1393
1393
|
examples?: Record<string, {
|
|
@@ -1421,7 +1421,7 @@ declare const client: import("vue").Ref<{
|
|
|
1421
1421
|
type: "request";
|
|
1422
1422
|
uid: string & import("zod").$brand<"operation">;
|
|
1423
1423
|
path: string;
|
|
1424
|
-
method: "delete" | "get" | "
|
|
1424
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1425
1425
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1426
1426
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1427
1427
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1447,7 +1447,7 @@ declare const client: import("vue").Ref<{
|
|
|
1447
1447
|
description?: string | undefined;
|
|
1448
1448
|
schema?: unknown;
|
|
1449
1449
|
content?: unknown;
|
|
1450
|
-
style?: "matrix" | "
|
|
1450
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1451
1451
|
explode?: boolean | undefined;
|
|
1452
1452
|
example?: unknown;
|
|
1453
1453
|
examples?: Record<string, {
|
|
@@ -1480,7 +1480,7 @@ declare const client: import("vue").Ref<{
|
|
|
1480
1480
|
type: "request";
|
|
1481
1481
|
uid: string & import("zod").$brand<"operation">;
|
|
1482
1482
|
path: string;
|
|
1483
|
-
method: "delete" | "get" | "
|
|
1483
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1484
1484
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1485
1485
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1486
1486
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1506,7 +1506,7 @@ declare const client: import("vue").Ref<{
|
|
|
1506
1506
|
description?: string | undefined;
|
|
1507
1507
|
schema?: unknown;
|
|
1508
1508
|
content?: unknown;
|
|
1509
|
-
style?: "matrix" | "
|
|
1509
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1510
1510
|
explode?: boolean | undefined;
|
|
1511
1511
|
example?: unknown;
|
|
1512
1512
|
examples?: Record<string, {
|
|
@@ -1538,7 +1538,7 @@ declare const client: import("vue").Ref<{
|
|
|
1538
1538
|
type: "request";
|
|
1539
1539
|
uid: string & import("zod").$brand<"operation">;
|
|
1540
1540
|
path: string;
|
|
1541
|
-
method: "delete" | "get" | "
|
|
1541
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1542
1542
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1543
1543
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1544
1544
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1564,7 +1564,7 @@ declare const client: import("vue").Ref<{
|
|
|
1564
1564
|
description?: string | undefined;
|
|
1565
1565
|
schema?: unknown;
|
|
1566
1566
|
content?: unknown;
|
|
1567
|
-
style?: "matrix" | "
|
|
1567
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1568
1568
|
explode?: boolean | undefined;
|
|
1569
1569
|
example?: unknown;
|
|
1570
1570
|
examples?: Record<string, {
|
|
@@ -1596,7 +1596,7 @@ declare const client: import("vue").Ref<{
|
|
|
1596
1596
|
type: "request";
|
|
1597
1597
|
uid: string & import("zod").$brand<"operation">;
|
|
1598
1598
|
path: string;
|
|
1599
|
-
method: "delete" | "get" | "
|
|
1599
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1600
1600
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1601
1601
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1602
1602
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1622,7 +1622,7 @@ declare const client: import("vue").Ref<{
|
|
|
1622
1622
|
description?: string | undefined;
|
|
1623
1623
|
schema?: unknown;
|
|
1624
1624
|
content?: unknown;
|
|
1625
|
-
style?: "matrix" | "
|
|
1625
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1626
1626
|
explode?: boolean | undefined;
|
|
1627
1627
|
example?: unknown;
|
|
1628
1628
|
examples?: Record<string, {
|
|
@@ -1655,7 +1655,7 @@ declare const client: import("vue").Ref<{
|
|
|
1655
1655
|
type: "request";
|
|
1656
1656
|
uid: string & import("zod").$brand<"operation">;
|
|
1657
1657
|
path: string;
|
|
1658
|
-
method: "delete" | "get" | "
|
|
1658
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1659
1659
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1660
1660
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1661
1661
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1681,7 +1681,7 @@ declare const client: import("vue").Ref<{
|
|
|
1681
1681
|
description?: string | undefined;
|
|
1682
1682
|
schema?: unknown;
|
|
1683
1683
|
content?: unknown;
|
|
1684
|
-
style?: "matrix" | "
|
|
1684
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1685
1685
|
explode?: boolean | undefined;
|
|
1686
1686
|
example?: unknown;
|
|
1687
1687
|
examples?: Record<string, {
|
|
@@ -1713,7 +1713,7 @@ declare const client: import("vue").Ref<{
|
|
|
1713
1713
|
type: "request";
|
|
1714
1714
|
uid: string & import("zod").$brand<"operation">;
|
|
1715
1715
|
path: string;
|
|
1716
|
-
method: "delete" | "get" | "
|
|
1716
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1717
1717
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1718
1718
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1719
1719
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1739,7 +1739,7 @@ declare const client: import("vue").Ref<{
|
|
|
1739
1739
|
description?: string | undefined;
|
|
1740
1740
|
schema?: unknown;
|
|
1741
1741
|
content?: unknown;
|
|
1742
|
-
style?: "matrix" | "
|
|
1742
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1743
1743
|
explode?: boolean | undefined;
|
|
1744
1744
|
example?: unknown;
|
|
1745
1745
|
examples?: Record<string, {
|
|
@@ -1771,7 +1771,7 @@ declare const client: import("vue").Ref<{
|
|
|
1771
1771
|
type: "request";
|
|
1772
1772
|
uid: string & import("zod").$brand<"operation">;
|
|
1773
1773
|
path: string;
|
|
1774
|
-
method: "delete" | "get" | "
|
|
1774
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1775
1775
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1776
1776
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1777
1777
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1797,7 +1797,7 @@ declare const client: import("vue").Ref<{
|
|
|
1797
1797
|
description?: string | undefined;
|
|
1798
1798
|
schema?: unknown;
|
|
1799
1799
|
content?: unknown;
|
|
1800
|
-
style?: "matrix" | "
|
|
1800
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1801
1801
|
explode?: boolean | undefined;
|
|
1802
1802
|
example?: unknown;
|
|
1803
1803
|
examples?: Record<string, {
|
|
@@ -4290,7 +4290,7 @@ declare const client: import("vue").Ref<{
|
|
|
4290
4290
|
type: "request";
|
|
4291
4291
|
uid: string & import("zod").$brand<"operation">;
|
|
4292
4292
|
path: string;
|
|
4293
|
-
method: "delete" | "get" | "
|
|
4293
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
4294
4294
|
servers: (string & import("zod").$brand<"server">)[];
|
|
4295
4295
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
4296
4296
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -4316,7 +4316,7 @@ declare const client: import("vue").Ref<{
|
|
|
4316
4316
|
description?: string | undefined;
|
|
4317
4317
|
schema?: unknown;
|
|
4318
4318
|
content?: unknown;
|
|
4319
|
-
style?: "matrix" | "
|
|
4319
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
4320
4320
|
explode?: boolean | undefined;
|
|
4321
4321
|
example?: unknown;
|
|
4322
4322
|
examples?: Record<string, {
|
|
@@ -5332,7 +5332,7 @@ declare const client: import("vue").Ref<{
|
|
|
5332
5332
|
type: "request";
|
|
5333
5333
|
uid: string & import("zod").$brand<"operation">;
|
|
5334
5334
|
path: string;
|
|
5335
|
-
method: "delete" | "get" | "
|
|
5335
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5336
5336
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5337
5337
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5338
5338
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5358,7 +5358,7 @@ declare const client: import("vue").Ref<{
|
|
|
5358
5358
|
description?: string | undefined;
|
|
5359
5359
|
schema?: unknown;
|
|
5360
5360
|
content?: unknown;
|
|
5361
|
-
style?: "matrix" | "
|
|
5361
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5362
5362
|
explode?: boolean | undefined;
|
|
5363
5363
|
example?: unknown;
|
|
5364
5364
|
examples?: Record<string, {
|
|
@@ -5391,7 +5391,7 @@ declare const client: import("vue").Ref<{
|
|
|
5391
5391
|
type: "request";
|
|
5392
5392
|
uid: string & import("zod").$brand<"operation">;
|
|
5393
5393
|
path: string;
|
|
5394
|
-
method: "delete" | "get" | "
|
|
5394
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5395
5395
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5396
5396
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5397
5397
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5417,7 +5417,7 @@ declare const client: import("vue").Ref<{
|
|
|
5417
5417
|
description?: string | undefined;
|
|
5418
5418
|
schema?: unknown;
|
|
5419
5419
|
content?: unknown;
|
|
5420
|
-
style?: "matrix" | "
|
|
5420
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5421
5421
|
explode?: boolean | undefined;
|
|
5422
5422
|
example?: unknown;
|
|
5423
5423
|
examples?: Record<string, {
|
|
@@ -5451,7 +5451,7 @@ declare const client: import("vue").Ref<{
|
|
|
5451
5451
|
type: "request";
|
|
5452
5452
|
uid: string & import("zod").$brand<"operation">;
|
|
5453
5453
|
path: string;
|
|
5454
|
-
method: "delete" | "get" | "
|
|
5454
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5455
5455
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5456
5456
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5457
5457
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5477,7 +5477,7 @@ declare const client: import("vue").Ref<{
|
|
|
5477
5477
|
description?: string | undefined;
|
|
5478
5478
|
schema?: unknown;
|
|
5479
5479
|
content?: unknown;
|
|
5480
|
-
style?: "matrix" | "
|
|
5480
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5481
5481
|
explode?: boolean | undefined;
|
|
5482
5482
|
example?: unknown;
|
|
5483
5483
|
examples?: Record<string, {
|
|
@@ -5510,7 +5510,7 @@ declare const client: import("vue").Ref<{
|
|
|
5510
5510
|
type: "request";
|
|
5511
5511
|
uid: string & import("zod").$brand<"operation">;
|
|
5512
5512
|
path: string;
|
|
5513
|
-
method: "delete" | "get" | "
|
|
5513
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5514
5514
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5515
5515
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5516
5516
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5536,7 +5536,7 @@ declare const client: import("vue").Ref<{
|
|
|
5536
5536
|
description?: string | undefined;
|
|
5537
5537
|
schema?: unknown;
|
|
5538
5538
|
content?: unknown;
|
|
5539
|
-
style?: "matrix" | "
|
|
5539
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5540
5540
|
explode?: boolean | undefined;
|
|
5541
5541
|
example?: unknown;
|
|
5542
5542
|
examples?: Record<string, {
|
|
@@ -5568,7 +5568,7 @@ declare const client: import("vue").Ref<{
|
|
|
5568
5568
|
type: "request";
|
|
5569
5569
|
uid: string & import("zod").$brand<"operation">;
|
|
5570
5570
|
path: string;
|
|
5571
|
-
method: "delete" | "get" | "
|
|
5571
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5572
5572
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5573
5573
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5574
5574
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5594,7 +5594,7 @@ declare const client: import("vue").Ref<{
|
|
|
5594
5594
|
description?: string | undefined;
|
|
5595
5595
|
schema?: unknown;
|
|
5596
5596
|
content?: unknown;
|
|
5597
|
-
style?: "matrix" | "
|
|
5597
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5598
5598
|
explode?: boolean | undefined;
|
|
5599
5599
|
example?: unknown;
|
|
5600
5600
|
examples?: Record<string, {
|
|
@@ -5626,7 +5626,7 @@ declare const client: import("vue").Ref<{
|
|
|
5626
5626
|
type: "request";
|
|
5627
5627
|
uid: string & import("zod").$brand<"operation">;
|
|
5628
5628
|
path: string;
|
|
5629
|
-
method: "delete" | "get" | "
|
|
5629
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5630
5630
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5631
5631
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5632
5632
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5652,7 +5652,7 @@ declare const client: import("vue").Ref<{
|
|
|
5652
5652
|
description?: string | undefined;
|
|
5653
5653
|
schema?: unknown;
|
|
5654
5654
|
content?: unknown;
|
|
5655
|
-
style?: "matrix" | "
|
|
5655
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5656
5656
|
explode?: boolean | undefined;
|
|
5657
5657
|
example?: unknown;
|
|
5658
5658
|
examples?: Record<string, {
|
|
@@ -5685,7 +5685,7 @@ declare const client: import("vue").Ref<{
|
|
|
5685
5685
|
type: "request";
|
|
5686
5686
|
uid: string & import("zod").$brand<"operation">;
|
|
5687
5687
|
path: string;
|
|
5688
|
-
method: "delete" | "get" | "
|
|
5688
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5689
5689
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5690
5690
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5691
5691
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5711,7 +5711,7 @@ declare const client: import("vue").Ref<{
|
|
|
5711
5711
|
description?: string | undefined;
|
|
5712
5712
|
schema?: unknown;
|
|
5713
5713
|
content?: unknown;
|
|
5714
|
-
style?: "matrix" | "
|
|
5714
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5715
5715
|
explode?: boolean | undefined;
|
|
5716
5716
|
example?: unknown;
|
|
5717
5717
|
examples?: Record<string, {
|
|
@@ -5743,7 +5743,7 @@ declare const client: import("vue").Ref<{
|
|
|
5743
5743
|
type: "request";
|
|
5744
5744
|
uid: string & import("zod").$brand<"operation">;
|
|
5745
5745
|
path: string;
|
|
5746
|
-
method: "delete" | "get" | "
|
|
5746
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5747
5747
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5748
5748
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5749
5749
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5769,7 +5769,7 @@ declare const client: import("vue").Ref<{
|
|
|
5769
5769
|
description?: string | undefined;
|
|
5770
5770
|
schema?: unknown;
|
|
5771
5771
|
content?: unknown;
|
|
5772
|
-
style?: "matrix" | "
|
|
5772
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5773
5773
|
explode?: boolean | undefined;
|
|
5774
5774
|
example?: unknown;
|
|
5775
5775
|
examples?: Record<string, {
|
|
@@ -5801,7 +5801,7 @@ declare const client: import("vue").Ref<{
|
|
|
5801
5801
|
type: "request";
|
|
5802
5802
|
uid: string & import("zod").$brand<"operation">;
|
|
5803
5803
|
path: string;
|
|
5804
|
-
method: "delete" | "get" | "
|
|
5804
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5805
5805
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5806
5806
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5807
5807
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5827,7 +5827,7 @@ declare const client: import("vue").Ref<{
|
|
|
5827
5827
|
description?: string | undefined;
|
|
5828
5828
|
schema?: unknown;
|
|
5829
5829
|
content?: unknown;
|
|
5830
|
-
style?: "matrix" | "
|
|
5830
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5831
5831
|
explode?: boolean | undefined;
|
|
5832
5832
|
example?: unknown;
|
|
5833
5833
|
examples?: Record<string, {
|