@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
package/dist/store/requests.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
7
7
|
type: "request";
|
|
8
8
|
uid: string & import("zod").$brand<"operation">;
|
|
9
9
|
path: string;
|
|
10
|
-
method: "delete" | "get" | "
|
|
10
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
11
11
|
servers: (string & import("zod").$brand<"server">)[];
|
|
12
12
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
13
13
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -33,7 +33,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
33
33
|
description?: string | undefined;
|
|
34
34
|
schema?: unknown;
|
|
35
35
|
content?: unknown;
|
|
36
|
-
style?: "matrix" | "
|
|
36
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
37
37
|
explode?: boolean | undefined;
|
|
38
38
|
example?: unknown;
|
|
39
39
|
examples?: Record<string, {
|
|
@@ -67,7 +67,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
67
67
|
type: "request";
|
|
68
68
|
uid: string & import("zod").$brand<"operation">;
|
|
69
69
|
path: string;
|
|
70
|
-
method: "delete" | "get" | "
|
|
70
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
71
71
|
servers: (string & import("zod").$brand<"server">)[];
|
|
72
72
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
73
73
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -93,7 +93,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
93
93
|
description?: string | undefined;
|
|
94
94
|
schema?: unknown;
|
|
95
95
|
content?: unknown;
|
|
96
|
-
style?: "matrix" | "
|
|
96
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
97
97
|
explode?: boolean | undefined;
|
|
98
98
|
example?: unknown;
|
|
99
99
|
examples?: Record<string, {
|
|
@@ -127,7 +127,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
127
127
|
type: "request";
|
|
128
128
|
uid: string & import("zod").$brand<"operation">;
|
|
129
129
|
path: string;
|
|
130
|
-
method: "delete" | "get" | "
|
|
130
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
131
131
|
servers: (string & import("zod").$brand<"server">)[];
|
|
132
132
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
133
133
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -153,7 +153,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
153
153
|
description?: string | undefined;
|
|
154
154
|
schema?: unknown;
|
|
155
155
|
content?: unknown;
|
|
156
|
-
style?: "matrix" | "
|
|
156
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
157
157
|
explode?: boolean | undefined;
|
|
158
158
|
example?: unknown;
|
|
159
159
|
examples?: Record<string, {
|
|
@@ -186,7 +186,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
186
186
|
type: "request";
|
|
187
187
|
uid: string & import("zod").$brand<"operation">;
|
|
188
188
|
path: string;
|
|
189
|
-
method: "delete" | "get" | "
|
|
189
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
190
190
|
servers: (string & import("zod").$brand<"server">)[];
|
|
191
191
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
192
192
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -212,7 +212,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
212
212
|
description?: string | undefined;
|
|
213
213
|
schema?: unknown;
|
|
214
214
|
content?: unknown;
|
|
215
|
-
style?: "matrix" | "
|
|
215
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
216
216
|
explode?: boolean | undefined;
|
|
217
217
|
example?: unknown;
|
|
218
218
|
examples?: Record<string, {
|
|
@@ -244,7 +244,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
244
244
|
type: "request";
|
|
245
245
|
uid: string & import("zod").$brand<"operation">;
|
|
246
246
|
path: string;
|
|
247
|
-
method: "delete" | "get" | "
|
|
247
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
248
248
|
servers: (string & import("zod").$brand<"server">)[];
|
|
249
249
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
250
250
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -270,7 +270,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
270
270
|
description?: string | undefined;
|
|
271
271
|
schema?: unknown;
|
|
272
272
|
content?: unknown;
|
|
273
|
-
style?: "matrix" | "
|
|
273
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
274
274
|
explode?: boolean | undefined;
|
|
275
275
|
example?: unknown;
|
|
276
276
|
examples?: Record<string, {
|
|
@@ -302,7 +302,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
302
302
|
type: "request";
|
|
303
303
|
uid: string & import("zod").$brand<"operation">;
|
|
304
304
|
path: string;
|
|
305
|
-
method: "delete" | "get" | "
|
|
305
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
306
306
|
servers: (string & import("zod").$brand<"server">)[];
|
|
307
307
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
308
308
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -328,7 +328,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
328
328
|
description?: string | undefined;
|
|
329
329
|
schema?: unknown;
|
|
330
330
|
content?: unknown;
|
|
331
|
-
style?: "matrix" | "
|
|
331
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
332
332
|
explode?: boolean | undefined;
|
|
333
333
|
example?: unknown;
|
|
334
334
|
examples?: Record<string, {
|
|
@@ -361,7 +361,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
361
361
|
type: "request";
|
|
362
362
|
uid: string & import("zod").$brand<"operation">;
|
|
363
363
|
path: string;
|
|
364
|
-
method: "delete" | "get" | "
|
|
364
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
365
365
|
servers: (string & import("zod").$brand<"server">)[];
|
|
366
366
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
367
367
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -387,7 +387,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
387
387
|
description?: string | undefined;
|
|
388
388
|
schema?: unknown;
|
|
389
389
|
content?: unknown;
|
|
390
|
-
style?: "matrix" | "
|
|
390
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
391
391
|
explode?: boolean | undefined;
|
|
392
392
|
example?: unknown;
|
|
393
393
|
examples?: Record<string, {
|
|
@@ -419,7 +419,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
419
419
|
type: "request";
|
|
420
420
|
uid: string & import("zod").$brand<"operation">;
|
|
421
421
|
path: string;
|
|
422
|
-
method: "delete" | "get" | "
|
|
422
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
423
423
|
servers: (string & import("zod").$brand<"server">)[];
|
|
424
424
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
425
425
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -445,7 +445,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
445
445
|
description?: string | undefined;
|
|
446
446
|
schema?: unknown;
|
|
447
447
|
content?: unknown;
|
|
448
|
-
style?: "matrix" | "
|
|
448
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
449
449
|
explode?: boolean | undefined;
|
|
450
450
|
example?: unknown;
|
|
451
451
|
examples?: Record<string, {
|
|
@@ -477,7 +477,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
477
477
|
type: "request";
|
|
478
478
|
uid: string & import("zod").$brand<"operation">;
|
|
479
479
|
path: string;
|
|
480
|
-
method: "delete" | "get" | "
|
|
480
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
481
481
|
servers: (string & import("zod").$brand<"server">)[];
|
|
482
482
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
483
483
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -503,7 +503,7 @@ export declare function createStoreRequests(useLocalStorage: boolean): {
|
|
|
503
503
|
description?: string | undefined;
|
|
504
504
|
schema?: unknown;
|
|
505
505
|
content?: unknown;
|
|
506
|
-
style?: "matrix" | "
|
|
506
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
507
507
|
explode?: boolean | undefined;
|
|
508
508
|
example?: unknown;
|
|
509
509
|
examples?: Record<string, {
|
|
@@ -546,7 +546,7 @@ export declare function extendedRequestDataFactory({ requestExamples, requestExa
|
|
|
546
546
|
type: "request";
|
|
547
547
|
uid: string & import("zod").$brand<"operation">;
|
|
548
548
|
path: string;
|
|
549
|
-
method: "delete" | "get" | "
|
|
549
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
550
550
|
servers: (string & import("zod").$brand<"server">)[];
|
|
551
551
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
552
552
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -572,7 +572,7 @@ export declare function extendedRequestDataFactory({ requestExamples, requestExa
|
|
|
572
572
|
description?: string | undefined;
|
|
573
573
|
schema?: unknown;
|
|
574
574
|
content?: unknown;
|
|
575
|
-
style?: "matrix" | "
|
|
575
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
576
576
|
explode?: boolean | undefined;
|
|
577
577
|
example?: unknown;
|
|
578
578
|
examples?: Record<string, {
|
|
@@ -615,7 +615,7 @@ export declare function createInitialRequest(): {
|
|
|
615
615
|
type: "request";
|
|
616
616
|
uid: string & import("zod").$brand<"operation">;
|
|
617
617
|
path: string;
|
|
618
|
-
method: "delete" | "get" | "
|
|
618
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
619
619
|
servers: (string & import("zod").$brand<"server">)[];
|
|
620
620
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
621
621
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -641,7 +641,7 @@ export declare function createInitialRequest(): {
|
|
|
641
641
|
description?: string | undefined;
|
|
642
642
|
schema?: unknown;
|
|
643
643
|
content?: unknown;
|
|
644
|
-
style?: "matrix" | "
|
|
644
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
645
645
|
explode?: boolean | undefined;
|
|
646
646
|
example?: unknown;
|
|
647
647
|
examples?: Record<string, {
|
package/dist/store/store.d.ts
CHANGED
|
@@ -240,7 +240,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
240
240
|
type: "request";
|
|
241
241
|
uid: string & import("zod").$brand<"operation">;
|
|
242
242
|
path: string;
|
|
243
|
-
method: "delete" | "get" | "
|
|
243
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
244
244
|
servers: (string & import("zod").$brand<"server">)[];
|
|
245
245
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
246
246
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -266,7 +266,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
266
266
|
description?: string | undefined;
|
|
267
267
|
schema?: unknown;
|
|
268
268
|
content?: unknown;
|
|
269
|
-
style?: "matrix" | "
|
|
269
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
270
270
|
explode?: boolean | undefined;
|
|
271
271
|
example?: unknown;
|
|
272
272
|
examples?: Record<string, {
|
|
@@ -1312,7 +1312,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1312
1312
|
type: "request";
|
|
1313
1313
|
uid: string & import("zod").$brand<"operation">;
|
|
1314
1314
|
path: string;
|
|
1315
|
-
method: "delete" | "get" | "
|
|
1315
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1316
1316
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1317
1317
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1318
1318
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1338,7 +1338,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1338
1338
|
description?: string | undefined;
|
|
1339
1339
|
schema?: unknown;
|
|
1340
1340
|
content?: unknown;
|
|
1341
|
-
style?: "matrix" | "
|
|
1341
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1342
1342
|
explode?: boolean | undefined;
|
|
1343
1343
|
example?: unknown;
|
|
1344
1344
|
examples?: Record<string, {
|
|
@@ -1371,7 +1371,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1371
1371
|
type: "request";
|
|
1372
1372
|
uid: string & import("zod").$brand<"operation">;
|
|
1373
1373
|
path: string;
|
|
1374
|
-
method: "delete" | "get" | "
|
|
1374
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1375
1375
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1376
1376
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1377
1377
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1397,7 +1397,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1397
1397
|
description?: string | undefined;
|
|
1398
1398
|
schema?: unknown;
|
|
1399
1399
|
content?: unknown;
|
|
1400
|
-
style?: "matrix" | "
|
|
1400
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1401
1401
|
explode?: boolean | undefined;
|
|
1402
1402
|
example?: unknown;
|
|
1403
1403
|
examples?: Record<string, {
|
|
@@ -1431,7 +1431,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1431
1431
|
type: "request";
|
|
1432
1432
|
uid: string & import("zod").$brand<"operation">;
|
|
1433
1433
|
path: string;
|
|
1434
|
-
method: "delete" | "get" | "
|
|
1434
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1435
1435
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1436
1436
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1437
1437
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1457,7 +1457,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1457
1457
|
description?: string | undefined;
|
|
1458
1458
|
schema?: unknown;
|
|
1459
1459
|
content?: unknown;
|
|
1460
|
-
style?: "matrix" | "
|
|
1460
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1461
1461
|
explode?: boolean | undefined;
|
|
1462
1462
|
example?: unknown;
|
|
1463
1463
|
examples?: Record<string, {
|
|
@@ -1490,7 +1490,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1490
1490
|
type: "request";
|
|
1491
1491
|
uid: string & import("zod").$brand<"operation">;
|
|
1492
1492
|
path: string;
|
|
1493
|
-
method: "delete" | "get" | "
|
|
1493
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1494
1494
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1495
1495
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1496
1496
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1516,7 +1516,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1516
1516
|
description?: string | undefined;
|
|
1517
1517
|
schema?: unknown;
|
|
1518
1518
|
content?: unknown;
|
|
1519
|
-
style?: "matrix" | "
|
|
1519
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1520
1520
|
explode?: boolean | undefined;
|
|
1521
1521
|
example?: unknown;
|
|
1522
1522
|
examples?: Record<string, {
|
|
@@ -1548,7 +1548,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1548
1548
|
type: "request";
|
|
1549
1549
|
uid: string & import("zod").$brand<"operation">;
|
|
1550
1550
|
path: string;
|
|
1551
|
-
method: "delete" | "get" | "
|
|
1551
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1552
1552
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1553
1553
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1554
1554
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1574,7 +1574,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1574
1574
|
description?: string | undefined;
|
|
1575
1575
|
schema?: unknown;
|
|
1576
1576
|
content?: unknown;
|
|
1577
|
-
style?: "matrix" | "
|
|
1577
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1578
1578
|
explode?: boolean | undefined;
|
|
1579
1579
|
example?: unknown;
|
|
1580
1580
|
examples?: Record<string, {
|
|
@@ -1606,7 +1606,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1606
1606
|
type: "request";
|
|
1607
1607
|
uid: string & import("zod").$brand<"operation">;
|
|
1608
1608
|
path: string;
|
|
1609
|
-
method: "delete" | "get" | "
|
|
1609
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1610
1610
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1611
1611
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1612
1612
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1632,7 +1632,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1632
1632
|
description?: string | undefined;
|
|
1633
1633
|
schema?: unknown;
|
|
1634
1634
|
content?: unknown;
|
|
1635
|
-
style?: "matrix" | "
|
|
1635
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1636
1636
|
explode?: boolean | undefined;
|
|
1637
1637
|
example?: unknown;
|
|
1638
1638
|
examples?: Record<string, {
|
|
@@ -1665,7 +1665,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1665
1665
|
type: "request";
|
|
1666
1666
|
uid: string & import("zod").$brand<"operation">;
|
|
1667
1667
|
path: string;
|
|
1668
|
-
method: "delete" | "get" | "
|
|
1668
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1669
1669
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1670
1670
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1671
1671
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1691,7 +1691,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1691
1691
|
description?: string | undefined;
|
|
1692
1692
|
schema?: unknown;
|
|
1693
1693
|
content?: unknown;
|
|
1694
|
-
style?: "matrix" | "
|
|
1694
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1695
1695
|
explode?: boolean | undefined;
|
|
1696
1696
|
example?: unknown;
|
|
1697
1697
|
examples?: Record<string, {
|
|
@@ -1723,7 +1723,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1723
1723
|
type: "request";
|
|
1724
1724
|
uid: string & import("zod").$brand<"operation">;
|
|
1725
1725
|
path: string;
|
|
1726
|
-
method: "delete" | "get" | "
|
|
1726
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1727
1727
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1728
1728
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1729
1729
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1749,7 +1749,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1749
1749
|
description?: string | undefined;
|
|
1750
1750
|
schema?: unknown;
|
|
1751
1751
|
content?: unknown;
|
|
1752
|
-
style?: "matrix" | "
|
|
1752
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1753
1753
|
explode?: boolean | undefined;
|
|
1754
1754
|
example?: unknown;
|
|
1755
1755
|
examples?: Record<string, {
|
|
@@ -1781,7 +1781,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1781
1781
|
type: "request";
|
|
1782
1782
|
uid: string & import("zod").$brand<"operation">;
|
|
1783
1783
|
path: string;
|
|
1784
|
-
method: "delete" | "get" | "
|
|
1784
|
+
method: "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
1785
1785
|
servers: (string & import("zod").$brand<"server">)[];
|
|
1786
1786
|
selectedServerUid: (string & import("zod").$brand<"server">) | null;
|
|
1787
1787
|
examples: (string & import("zod").$brand<"example">)[];
|
|
@@ -1807,7 +1807,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
1807
1807
|
description?: string | undefined;
|
|
1808
1808
|
schema?: unknown;
|
|
1809
1809
|
content?: unknown;
|
|
1810
|
-
style?: "matrix" | "
|
|
1810
|
+
style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
1811
1811
|
explode?: boolean | undefined;
|
|
1812
1812
|
example?: unknown;
|
|
1813
1813
|
examples?: Record<string, {
|