@scalar/api-client 2.8.0 → 2.8.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 +32 -0
- package/dist/components/CommandPalette/TheCommandPalette.vue.d.ts +4 -4
- package/dist/components/HttpMethod/HttpMethod.vue.d.ts +2 -2
- package/dist/hooks/useClientConfig.d.ts +6 -6
- package/dist/layouts/App/create-api-client-app.d.ts +20 -20
- package/dist/layouts/Modal/create-api-client-modal.d.ts +40 -40
- package/dist/layouts/Web/create-api-client-web.d.ts +20 -20
- package/dist/libs/create-client.d.ts +23 -23
- package/dist/libs/create-client.d.ts.map +1 -1
- package/dist/libs/create-client.js +23 -23
- package/dist/libs/find-request.d.ts +2 -2
- package/dist/libs/send-request/create-request-operation.js +8 -8
- package/dist/libs/send-request/create-request-operation.test.d.ts +2 -2
- package/dist/plugins/plugin-manager.d.ts +1 -1
- package/dist/store/active-entities.d.ts +2 -2
- package/dist/store/requests.d.ts +22 -22
- package/dist/store/store.d.ts +20 -20
- package/dist/style.css +1 -1
- package/dist/v2/blocks/operation-code-sample/components/OperationCodeSample.vue.js +2 -2
- package/dist/v2/blocks/operation-code-sample/components/OperationCodeSample.vue2.js +1 -1
- package/dist/v2/blocks/operation-code-sample/index.d.ts +1 -0
- package/dist/v2/blocks/operation-code-sample/index.d.ts.map +1 -1
- package/dist/v2/blocks/operation-code-sample/index.js +8 -6
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/package.json +37 -17
|
@@ -242,7 +242,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
242
242
|
type: "request";
|
|
243
243
|
uid: string & import("zod").$brand<"operation">;
|
|
244
244
|
path: string;
|
|
245
|
-
method: "delete" | "get" | "
|
|
245
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
246
246
|
servers: (string & import("zod").$brand<"server">)[];
|
|
247
247
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
248
248
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -268,7 +268,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
268
268
|
description?: string | undefined;
|
|
269
269
|
schema?: unknown;
|
|
270
270
|
content?: unknown;
|
|
271
|
-
style?: "matrix" | "
|
|
271
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
272
272
|
explode?: boolean | undefined;
|
|
273
273
|
example?: unknown;
|
|
274
274
|
examples?: Record<string, {
|
|
@@ -1314,7 +1314,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1314
1314
|
type: "request";
|
|
1315
1315
|
uid: string & import("zod").$brand<"operation">;
|
|
1316
1316
|
path: string;
|
|
1317
|
-
method: "delete" | "get" | "
|
|
1317
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1318
1318
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1319
1319
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1320
1320
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1340,7 +1340,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1340
1340
|
description?: string | undefined;
|
|
1341
1341
|
schema?: unknown;
|
|
1342
1342
|
content?: unknown;
|
|
1343
|
-
style?: "matrix" | "
|
|
1343
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1344
1344
|
explode?: boolean | undefined;
|
|
1345
1345
|
example?: unknown;
|
|
1346
1346
|
examples?: Record<string, {
|
|
@@ -1373,7 +1373,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1373
1373
|
type: "request";
|
|
1374
1374
|
uid: string & import("zod").$brand<"operation">;
|
|
1375
1375
|
path: string;
|
|
1376
|
-
method: "delete" | "get" | "
|
|
1376
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1377
1377
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1378
1378
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1379
1379
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1399,7 +1399,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1399
1399
|
description?: string | undefined;
|
|
1400
1400
|
schema?: unknown;
|
|
1401
1401
|
content?: unknown;
|
|
1402
|
-
style?: "matrix" | "
|
|
1402
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1403
1403
|
explode?: boolean | undefined;
|
|
1404
1404
|
example?: unknown;
|
|
1405
1405
|
examples?: Record<string, {
|
|
@@ -1433,7 +1433,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1433
1433
|
type: "request";
|
|
1434
1434
|
uid: string & import("zod").$brand<"operation">;
|
|
1435
1435
|
path: string;
|
|
1436
|
-
method: "delete" | "get" | "
|
|
1436
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1437
1437
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1438
1438
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1439
1439
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1459,7 +1459,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1459
1459
|
description?: string | undefined;
|
|
1460
1460
|
schema?: unknown;
|
|
1461
1461
|
content?: unknown;
|
|
1462
|
-
style?: "matrix" | "
|
|
1462
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1463
1463
|
explode?: boolean | undefined;
|
|
1464
1464
|
example?: unknown;
|
|
1465
1465
|
examples?: Record<string, {
|
|
@@ -1492,7 +1492,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1492
1492
|
type: "request";
|
|
1493
1493
|
uid: string & import("zod").$brand<"operation">;
|
|
1494
1494
|
path: string;
|
|
1495
|
-
method: "delete" | "get" | "
|
|
1495
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1496
1496
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1497
1497
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1498
1498
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1518,7 +1518,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1518
1518
|
description?: string | undefined;
|
|
1519
1519
|
schema?: unknown;
|
|
1520
1520
|
content?: unknown;
|
|
1521
|
-
style?: "matrix" | "
|
|
1521
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1522
1522
|
explode?: boolean | undefined;
|
|
1523
1523
|
example?: unknown;
|
|
1524
1524
|
examples?: Record<string, {
|
|
@@ -1550,7 +1550,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1550
1550
|
type: "request";
|
|
1551
1551
|
uid: string & import("zod").$brand<"operation">;
|
|
1552
1552
|
path: string;
|
|
1553
|
-
method: "delete" | "get" | "
|
|
1553
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1554
1554
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1555
1555
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1556
1556
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1576,7 +1576,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1576
1576
|
description?: string | undefined;
|
|
1577
1577
|
schema?: unknown;
|
|
1578
1578
|
content?: unknown;
|
|
1579
|
-
style?: "matrix" | "
|
|
1579
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1580
1580
|
explode?: boolean | undefined;
|
|
1581
1581
|
example?: unknown;
|
|
1582
1582
|
examples?: Record<string, {
|
|
@@ -1608,7 +1608,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1608
1608
|
type: "request";
|
|
1609
1609
|
uid: string & import("zod").$brand<"operation">;
|
|
1610
1610
|
path: string;
|
|
1611
|
-
method: "delete" | "get" | "
|
|
1611
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1612
1612
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1613
1613
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1614
1614
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1634,7 +1634,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1634
1634
|
description?: string | undefined;
|
|
1635
1635
|
schema?: unknown;
|
|
1636
1636
|
content?: unknown;
|
|
1637
|
-
style?: "matrix" | "
|
|
1637
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1638
1638
|
explode?: boolean | undefined;
|
|
1639
1639
|
example?: unknown;
|
|
1640
1640
|
examples?: Record<string, {
|
|
@@ -1667,7 +1667,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1667
1667
|
type: "request";
|
|
1668
1668
|
uid: string & import("zod").$brand<"operation">;
|
|
1669
1669
|
path: string;
|
|
1670
|
-
method: "delete" | "get" | "
|
|
1670
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1671
1671
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1672
1672
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1673
1673
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1693,7 +1693,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1693
1693
|
description?: string | undefined;
|
|
1694
1694
|
schema?: unknown;
|
|
1695
1695
|
content?: unknown;
|
|
1696
|
-
style?: "matrix" | "
|
|
1696
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1697
1697
|
explode?: boolean | undefined;
|
|
1698
1698
|
example?: unknown;
|
|
1699
1699
|
examples?: Record<string, {
|
|
@@ -1725,7 +1725,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1725
1725
|
type: "request";
|
|
1726
1726
|
uid: string & import("zod").$brand<"operation">;
|
|
1727
1727
|
path: string;
|
|
1728
|
-
method: "delete" | "get" | "
|
|
1728
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1729
1729
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1730
1730
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1731
1731
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1751,7 +1751,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1751
1751
|
description?: string | undefined;
|
|
1752
1752
|
schema?: unknown;
|
|
1753
1753
|
content?: unknown;
|
|
1754
|
-
style?: "matrix" | "
|
|
1754
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1755
1755
|
explode?: boolean | undefined;
|
|
1756
1756
|
example?: unknown;
|
|
1757
1757
|
examples?: Record<string, {
|
|
@@ -1783,7 +1783,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1783
1783
|
type: "request";
|
|
1784
1784
|
uid: string & import("zod").$brand<"operation">;
|
|
1785
1785
|
path: string;
|
|
1786
|
-
method: "delete" | "get" | "
|
|
1786
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1787
1787
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1788
1788
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1789
1789
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1809,7 +1809,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
1809
1809
|
description?: string | undefined;
|
|
1810
1810
|
schema?: unknown;
|
|
1811
1811
|
content?: unknown;
|
|
1812
|
-
style?: "matrix" | "
|
|
1812
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1813
1813
|
explode?: boolean | undefined;
|
|
1814
1814
|
example?: unknown;
|
|
1815
1815
|
examples?: Record<string, {
|
|
@@ -4289,7 +4289,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
4289
4289
|
type: "request";
|
|
4290
4290
|
uid: string & import("zod").$brand<"operation">;
|
|
4291
4291
|
path: string;
|
|
4292
|
-
method: "delete" | "get" | "
|
|
4292
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
4293
4293
|
servers: (string & import("zod").$brand<"server">)[];
|
|
4294
4294
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
4295
4295
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -4315,7 +4315,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
4315
4315
|
description?: string | undefined;
|
|
4316
4316
|
schema?: unknown;
|
|
4317
4317
|
content?: unknown;
|
|
4318
|
-
style?: "matrix" | "
|
|
4318
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
4319
4319
|
explode?: boolean | undefined;
|
|
4320
4320
|
example?: unknown;
|
|
4321
4321
|
examples?: Record<string, {
|
|
@@ -5361,7 +5361,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5361
5361
|
type: "request";
|
|
5362
5362
|
uid: string & import("zod").$brand<"operation">;
|
|
5363
5363
|
path: string;
|
|
5364
|
-
method: "delete" | "get" | "
|
|
5364
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5365
5365
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5366
5366
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5367
5367
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5387,7 +5387,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5387
5387
|
description?: string | undefined;
|
|
5388
5388
|
schema?: unknown;
|
|
5389
5389
|
content?: unknown;
|
|
5390
|
-
style?: "matrix" | "
|
|
5390
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5391
5391
|
explode?: boolean | undefined;
|
|
5392
5392
|
example?: unknown;
|
|
5393
5393
|
examples?: Record<string, {
|
|
@@ -5420,7 +5420,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5420
5420
|
type: "request";
|
|
5421
5421
|
uid: string & import("zod").$brand<"operation">;
|
|
5422
5422
|
path: string;
|
|
5423
|
-
method: "delete" | "get" | "
|
|
5423
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5424
5424
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5425
5425
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5426
5426
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5446,7 +5446,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5446
5446
|
description?: string | undefined;
|
|
5447
5447
|
schema?: unknown;
|
|
5448
5448
|
content?: unknown;
|
|
5449
|
-
style?: "matrix" | "
|
|
5449
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5450
5450
|
explode?: boolean | undefined;
|
|
5451
5451
|
example?: unknown;
|
|
5452
5452
|
examples?: Record<string, {
|
|
@@ -5480,7 +5480,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5480
5480
|
type: "request";
|
|
5481
5481
|
uid: string & import("zod").$brand<"operation">;
|
|
5482
5482
|
path: string;
|
|
5483
|
-
method: "delete" | "get" | "
|
|
5483
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5484
5484
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5485
5485
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5486
5486
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5506,7 +5506,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5506
5506
|
description?: string | undefined;
|
|
5507
5507
|
schema?: unknown;
|
|
5508
5508
|
content?: unknown;
|
|
5509
|
-
style?: "matrix" | "
|
|
5509
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5510
5510
|
explode?: boolean | undefined;
|
|
5511
5511
|
example?: unknown;
|
|
5512
5512
|
examples?: Record<string, {
|
|
@@ -5539,7 +5539,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5539
5539
|
type: "request";
|
|
5540
5540
|
uid: string & import("zod").$brand<"operation">;
|
|
5541
5541
|
path: string;
|
|
5542
|
-
method: "delete" | "get" | "
|
|
5542
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5543
5543
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5544
5544
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5545
5545
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5565,7 +5565,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5565
5565
|
description?: string | undefined;
|
|
5566
5566
|
schema?: unknown;
|
|
5567
5567
|
content?: unknown;
|
|
5568
|
-
style?: "matrix" | "
|
|
5568
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5569
5569
|
explode?: boolean | undefined;
|
|
5570
5570
|
example?: unknown;
|
|
5571
5571
|
examples?: Record<string, {
|
|
@@ -5597,7 +5597,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5597
5597
|
type: "request";
|
|
5598
5598
|
uid: string & import("zod").$brand<"operation">;
|
|
5599
5599
|
path: string;
|
|
5600
|
-
method: "delete" | "get" | "
|
|
5600
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5601
5601
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5602
5602
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5603
5603
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5623,7 +5623,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5623
5623
|
description?: string | undefined;
|
|
5624
5624
|
schema?: unknown;
|
|
5625
5625
|
content?: unknown;
|
|
5626
|
-
style?: "matrix" | "
|
|
5626
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5627
5627
|
explode?: boolean | undefined;
|
|
5628
5628
|
example?: unknown;
|
|
5629
5629
|
examples?: Record<string, {
|
|
@@ -5655,7 +5655,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5655
5655
|
type: "request";
|
|
5656
5656
|
uid: string & import("zod").$brand<"operation">;
|
|
5657
5657
|
path: string;
|
|
5658
|
-
method: "delete" | "get" | "
|
|
5658
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5659
5659
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5660
5660
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5661
5661
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5681,7 +5681,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5681
5681
|
description?: string | undefined;
|
|
5682
5682
|
schema?: unknown;
|
|
5683
5683
|
content?: unknown;
|
|
5684
|
-
style?: "matrix" | "
|
|
5684
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5685
5685
|
explode?: boolean | undefined;
|
|
5686
5686
|
example?: unknown;
|
|
5687
5687
|
examples?: Record<string, {
|
|
@@ -5714,7 +5714,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5714
5714
|
type: "request";
|
|
5715
5715
|
uid: string & import("zod").$brand<"operation">;
|
|
5716
5716
|
path: string;
|
|
5717
|
-
method: "delete" | "get" | "
|
|
5717
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5718
5718
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5719
5719
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5720
5720
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5740,7 +5740,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5740
5740
|
description?: string | undefined;
|
|
5741
5741
|
schema?: unknown;
|
|
5742
5742
|
content?: unknown;
|
|
5743
|
-
style?: "matrix" | "
|
|
5743
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5744
5744
|
explode?: boolean | undefined;
|
|
5745
5745
|
example?: unknown;
|
|
5746
5746
|
examples?: Record<string, {
|
|
@@ -5772,7 +5772,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5772
5772
|
type: "request";
|
|
5773
5773
|
uid: string & import("zod").$brand<"operation">;
|
|
5774
5774
|
path: string;
|
|
5775
|
-
method: "delete" | "get" | "
|
|
5775
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5776
5776
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5777
5777
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5778
5778
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5798,7 +5798,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5798
5798
|
description?: string | undefined;
|
|
5799
5799
|
schema?: unknown;
|
|
5800
5800
|
content?: unknown;
|
|
5801
|
-
style?: "matrix" | "
|
|
5801
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5802
5802
|
explode?: boolean | undefined;
|
|
5803
5803
|
example?: unknown;
|
|
5804
5804
|
examples?: Record<string, {
|
|
@@ -5830,7 +5830,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5830
5830
|
type: "request";
|
|
5831
5831
|
uid: string & import("zod").$brand<"operation">;
|
|
5832
5832
|
path: string;
|
|
5833
|
-
method: "delete" | "get" | "
|
|
5833
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
5834
5834
|
servers: (string & import("zod").$brand<"server">)[];
|
|
5835
5835
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
5836
5836
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -5856,7 +5856,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
5856
5856
|
description?: string | undefined;
|
|
5857
5857
|
schema?: unknown;
|
|
5858
5858
|
content?: unknown;
|
|
5859
|
-
style?: "matrix" | "
|
|
5859
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
5860
5860
|
explode?: boolean | undefined;
|
|
5861
5861
|
example?: unknown;
|
|
5862
5862
|
examples?: Record<string, {
|
|
@@ -249,7 +249,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
249
249
|
type: "request";
|
|
250
250
|
uid: string & import("zod").$brand<"operation">;
|
|
251
251
|
path: string;
|
|
252
|
-
method: "delete" | "get" | "
|
|
252
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
253
253
|
servers: (string & import("zod").$brand<"server">)[];
|
|
254
254
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
255
255
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -275,7 +275,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
275
275
|
description?: string | undefined;
|
|
276
276
|
schema?: unknown;
|
|
277
277
|
content?: unknown;
|
|
278
|
-
style?: "matrix" | "
|
|
278
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
279
279
|
explode?: boolean | undefined;
|
|
280
280
|
example?: unknown;
|
|
281
281
|
examples?: Record<string, {
|
|
@@ -1321,7 +1321,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1321
1321
|
type: "request";
|
|
1322
1322
|
uid: string & import("zod").$brand<"operation">;
|
|
1323
1323
|
path: string;
|
|
1324
|
-
method: "delete" | "get" | "
|
|
1324
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1325
1325
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1326
1326
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1327
1327
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1347,7 +1347,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1347
1347
|
description?: string | undefined;
|
|
1348
1348
|
schema?: unknown;
|
|
1349
1349
|
content?: unknown;
|
|
1350
|
-
style?: "matrix" | "
|
|
1350
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1351
1351
|
explode?: boolean | undefined;
|
|
1352
1352
|
example?: unknown;
|
|
1353
1353
|
examples?: Record<string, {
|
|
@@ -1380,7 +1380,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1380
1380
|
type: "request";
|
|
1381
1381
|
uid: string & import("zod").$brand<"operation">;
|
|
1382
1382
|
path: string;
|
|
1383
|
-
method: "delete" | "get" | "
|
|
1383
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1384
1384
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1385
1385
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1386
1386
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1406,7 +1406,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1406
1406
|
description?: string | undefined;
|
|
1407
1407
|
schema?: unknown;
|
|
1408
1408
|
content?: unknown;
|
|
1409
|
-
style?: "matrix" | "
|
|
1409
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1410
1410
|
explode?: boolean | undefined;
|
|
1411
1411
|
example?: unknown;
|
|
1412
1412
|
examples?: Record<string, {
|
|
@@ -1440,7 +1440,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1440
1440
|
type: "request";
|
|
1441
1441
|
uid: string & import("zod").$brand<"operation">;
|
|
1442
1442
|
path: string;
|
|
1443
|
-
method: "delete" | "get" | "
|
|
1443
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1444
1444
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1445
1445
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1446
1446
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1466,7 +1466,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1466
1466
|
description?: string | undefined;
|
|
1467
1467
|
schema?: unknown;
|
|
1468
1468
|
content?: unknown;
|
|
1469
|
-
style?: "matrix" | "
|
|
1469
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1470
1470
|
explode?: boolean | undefined;
|
|
1471
1471
|
example?: unknown;
|
|
1472
1472
|
examples?: Record<string, {
|
|
@@ -1499,7 +1499,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1499
1499
|
type: "request";
|
|
1500
1500
|
uid: string & import("zod").$brand<"operation">;
|
|
1501
1501
|
path: string;
|
|
1502
|
-
method: "delete" | "get" | "
|
|
1502
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1503
1503
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1504
1504
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1505
1505
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1525,7 +1525,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1525
1525
|
description?: string | undefined;
|
|
1526
1526
|
schema?: unknown;
|
|
1527
1527
|
content?: unknown;
|
|
1528
|
-
style?: "matrix" | "
|
|
1528
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1529
1529
|
explode?: boolean | undefined;
|
|
1530
1530
|
example?: unknown;
|
|
1531
1531
|
examples?: Record<string, {
|
|
@@ -1557,7 +1557,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1557
1557
|
type: "request";
|
|
1558
1558
|
uid: string & import("zod").$brand<"operation">;
|
|
1559
1559
|
path: string;
|
|
1560
|
-
method: "delete" | "get" | "
|
|
1560
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1561
1561
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1562
1562
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1563
1563
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1583,7 +1583,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1583
1583
|
description?: string | undefined;
|
|
1584
1584
|
schema?: unknown;
|
|
1585
1585
|
content?: unknown;
|
|
1586
|
-
style?: "matrix" | "
|
|
1586
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1587
1587
|
explode?: boolean | undefined;
|
|
1588
1588
|
example?: unknown;
|
|
1589
1589
|
examples?: Record<string, {
|
|
@@ -1615,7 +1615,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1615
1615
|
type: "request";
|
|
1616
1616
|
uid: string & import("zod").$brand<"operation">;
|
|
1617
1617
|
path: string;
|
|
1618
|
-
method: "delete" | "get" | "
|
|
1618
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1619
1619
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1620
1620
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1621
1621
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1641,7 +1641,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1641
1641
|
description?: string | undefined;
|
|
1642
1642
|
schema?: unknown;
|
|
1643
1643
|
content?: unknown;
|
|
1644
|
-
style?: "matrix" | "
|
|
1644
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1645
1645
|
explode?: boolean | undefined;
|
|
1646
1646
|
example?: unknown;
|
|
1647
1647
|
examples?: Record<string, {
|
|
@@ -1674,7 +1674,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1674
1674
|
type: "request";
|
|
1675
1675
|
uid: string & import("zod").$brand<"operation">;
|
|
1676
1676
|
path: string;
|
|
1677
|
-
method: "delete" | "get" | "
|
|
1677
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1678
1678
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1679
1679
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1680
1680
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1700,7 +1700,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1700
1700
|
description?: string | undefined;
|
|
1701
1701
|
schema?: unknown;
|
|
1702
1702
|
content?: unknown;
|
|
1703
|
-
style?: "matrix" | "
|
|
1703
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1704
1704
|
explode?: boolean | undefined;
|
|
1705
1705
|
example?: unknown;
|
|
1706
1706
|
examples?: Record<string, {
|
|
@@ -1732,7 +1732,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1732
1732
|
type: "request";
|
|
1733
1733
|
uid: string & import("zod").$brand<"operation">;
|
|
1734
1734
|
path: string;
|
|
1735
|
-
method: "delete" | "get" | "
|
|
1735
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1736
1736
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1737
1737
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1738
1738
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1758,7 +1758,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1758
1758
|
description?: string | undefined;
|
|
1759
1759
|
schema?: unknown;
|
|
1760
1760
|
content?: unknown;
|
|
1761
|
-
style?: "matrix" | "
|
|
1761
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1762
1762
|
explode?: boolean | undefined;
|
|
1763
1763
|
example?: unknown;
|
|
1764
1764
|
examples?: Record<string, {
|
|
@@ -1790,7 +1790,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1790
1790
|
type: "request";
|
|
1791
1791
|
uid: string & import("zod").$brand<"operation">;
|
|
1792
1792
|
path: string;
|
|
1793
|
-
method: "delete" | "get" | "
|
|
1793
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1794
1794
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1795
1795
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1796
1796
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1816,7 +1816,7 @@ mountOnInitialize?: boolean) => Promise<{
|
|
|
1816
1816
|
description?: string | undefined;
|
|
1817
1817
|
schema?: unknown;
|
|
1818
1818
|
content?: unknown;
|
|
1819
|
-
style?: "matrix" | "
|
|
1819
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1820
1820
|
explode?: boolean | undefined;
|
|
1821
1821
|
example?: unknown;
|
|
1822
1822
|
examples?: Record<string, {
|