@scalar/api-reference 1.25.120 → 1.25.122
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 +7686 -7593
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/Card/CardFooter.vue.d.ts.map +1 -1
- package/dist/components/Card/CardFooter.vue.js +2 -2
- package/dist/components/Card/CardHeader.vue.d.ts.map +1 -1
- package/dist/components/Card/CardHeader.vue.js +2 -2
- package/dist/components/Content/Content.vue.d.ts.map +1 -1
- package/dist/components/Content/Content.vue.js +2 -2
- package/dist/components/Content/Content.vue2.js +59 -51
- package/dist/components/Content/Tag/TagAccordion.vue.d.ts +1 -2
- package/dist/components/Content/Tag/TagAccordion.vue.d.ts.map +1 -1
- package/dist/components/Content/Tag/TagAccordion.vue.js +2 -2
- package/dist/components/Content/Tag/TagAccordion.vue2.js +3 -4
- package/dist/components/Layouts/Layouts.vue.d.ts.map +1 -1
- package/dist/components/ScreenReader.vue.d.ts.map +1 -1
- package/dist/components/ScreenReader.vue.js +2 -2
- package/dist/features/ApiClientModal/useApiClient.d.ts +786 -966
- package/dist/features/ApiClientModal/useApiClient.d.ts.map +1 -1
- package/dist/helpers/get-request.d.ts +7 -7
- package/dist/helpers/get-request.d.ts.map +1 -1
- package/dist/helpers/parse.d.ts.map +1 -1
- package/dist/helpers/parse.js +14 -31
- package/dist/index.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +12 -12
|
@@ -25,7 +25,7 @@ declare const client: import("vue").Ref<{
|
|
|
25
25
|
};
|
|
26
26
|
store: {
|
|
27
27
|
servers: Record<string, {
|
|
28
|
-
uid: string
|
|
28
|
+
uid: string & import("zod").BRAND<"server">;
|
|
29
29
|
url: string;
|
|
30
30
|
description?: string | undefined;
|
|
31
31
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -35,9 +35,9 @@ declare const client: import("vue").Ref<{
|
|
|
35
35
|
}>;
|
|
36
36
|
tags: Record<string, {
|
|
37
37
|
type: "tag";
|
|
38
|
-
uid: string
|
|
38
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
39
39
|
name: string;
|
|
40
|
-
children: string[];
|
|
40
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
41
41
|
description?: string | undefined;
|
|
42
42
|
externalDocs?: {
|
|
43
43
|
url: string;
|
|
@@ -52,14 +52,14 @@ declare const client: import("vue").Ref<{
|
|
|
52
52
|
securitySchemes: Record<string, {
|
|
53
53
|
type: "apiKey";
|
|
54
54
|
value: string;
|
|
55
|
-
uid: string
|
|
55
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
56
56
|
name: string;
|
|
57
57
|
nameKey: string;
|
|
58
|
-
in: "
|
|
58
|
+
in: "cookie" | "query" | "header";
|
|
59
59
|
description?: string | undefined;
|
|
60
60
|
} | {
|
|
61
61
|
type: "http";
|
|
62
|
-
uid: string
|
|
62
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
63
63
|
nameKey: string;
|
|
64
64
|
scheme: "basic" | "bearer";
|
|
65
65
|
bearerFormat: string;
|
|
@@ -69,13 +69,13 @@ declare const client: import("vue").Ref<{
|
|
|
69
69
|
description?: string | undefined;
|
|
70
70
|
} | {
|
|
71
71
|
type: "openIdConnect";
|
|
72
|
-
uid: string
|
|
72
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
73
73
|
nameKey: string;
|
|
74
74
|
openIdConnectUrl: string;
|
|
75
75
|
description?: string | undefined;
|
|
76
76
|
} | {
|
|
77
77
|
type: "oauth2";
|
|
78
|
-
uid: string
|
|
78
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
79
79
|
nameKey: string;
|
|
80
80
|
flows: {
|
|
81
81
|
password?: {
|
|
@@ -128,7 +128,7 @@ declare const client: import("vue").Ref<{
|
|
|
128
128
|
}>;
|
|
129
129
|
cookies: Record<string, {
|
|
130
130
|
value: string;
|
|
131
|
-
uid: string
|
|
131
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
132
132
|
name: string;
|
|
133
133
|
path?: string | undefined;
|
|
134
134
|
domain?: string | undefined;
|
|
@@ -136,11 +136,11 @@ declare const client: import("vue").Ref<{
|
|
|
136
136
|
requests: Record<string, {
|
|
137
137
|
path: string;
|
|
138
138
|
type: "request";
|
|
139
|
-
uid: string
|
|
140
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
141
|
-
selectedServerUid: string;
|
|
142
|
-
servers: string[];
|
|
143
|
-
examples: string[];
|
|
139
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
140
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
141
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
142
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
143
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
144
144
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
145
145
|
description?: string | undefined;
|
|
146
146
|
summary?: string | undefined;
|
|
@@ -157,10 +157,10 @@ declare const client: import("vue").Ref<{
|
|
|
157
157
|
parameters?: {
|
|
158
158
|
required: boolean;
|
|
159
159
|
name: string;
|
|
160
|
-
in: "path" | "
|
|
160
|
+
in: "path" | "cookie" | "query" | "header";
|
|
161
161
|
deprecated: boolean;
|
|
162
|
-
description?: string | undefined;
|
|
163
162
|
example?: unknown;
|
|
163
|
+
description?: string | undefined;
|
|
164
164
|
schema?: unknown;
|
|
165
165
|
content?: unknown;
|
|
166
166
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -180,13 +180,13 @@ declare const client: import("vue").Ref<{
|
|
|
180
180
|
showSidebar: boolean;
|
|
181
181
|
hideClientButton: boolean;
|
|
182
182
|
workspaces: Record<string, {
|
|
183
|
-
uid: string
|
|
183
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
184
184
|
name: string;
|
|
185
185
|
description: string;
|
|
186
|
-
collections: string[];
|
|
186
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
187
187
|
environments: Record<string, string>;
|
|
188
188
|
activeEnvironmentId: string;
|
|
189
|
-
cookies: string[];
|
|
189
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
190
190
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
191
191
|
selectedHttpClient: {
|
|
192
192
|
targetKey: string;
|
|
@@ -203,17 +203,16 @@ declare const client: import("vue").Ref<{
|
|
|
203
203
|
}>;
|
|
204
204
|
collections: Record<string, {
|
|
205
205
|
type: "collection";
|
|
206
|
-
uid: string
|
|
207
|
-
children: string[];
|
|
206
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
207
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
208
208
|
openapi: string;
|
|
209
209
|
security: Record<string, string[]>[];
|
|
210
210
|
"x-scalar-icon": string;
|
|
211
211
|
securitySchemes: string[];
|
|
212
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
tags: string[];
|
|
212
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
213
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
214
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
215
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
217
216
|
watchMode: boolean;
|
|
218
217
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
219
218
|
externalDocs?: {
|
|
@@ -250,22 +249,23 @@ declare const client: import("vue").Ref<{
|
|
|
250
249
|
color?: string | undefined;
|
|
251
250
|
}> | undefined;
|
|
252
251
|
"x-scalar-secrets"?: Record<string, {
|
|
253
|
-
description?: string | undefined;
|
|
254
252
|
example?: string | undefined;
|
|
253
|
+
description?: string | undefined;
|
|
255
254
|
}> | undefined;
|
|
255
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
256
256
|
documentUrl?: string | undefined;
|
|
257
257
|
integration?: string | null | undefined;
|
|
258
258
|
}>;
|
|
259
259
|
environments: Record<string, {
|
|
260
260
|
value: string;
|
|
261
|
-
uid: string
|
|
261
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
262
262
|
name: string;
|
|
263
263
|
color: string;
|
|
264
264
|
isDefault?: boolean | undefined;
|
|
265
265
|
}>;
|
|
266
266
|
requestExamples: Record<string, {
|
|
267
267
|
type: "requestExample";
|
|
268
|
-
uid: string
|
|
268
|
+
uid: string & import("zod").BRAND<"example">;
|
|
269
269
|
name: string;
|
|
270
270
|
parameters: {
|
|
271
271
|
path: {
|
|
@@ -360,7 +360,7 @@ declare const client: import("vue").Ref<{
|
|
|
360
360
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
361
361
|
} | undefined;
|
|
362
362
|
};
|
|
363
|
-
requestUid
|
|
363
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
364
364
|
serverVariables?: Record<string, string[]> | undefined;
|
|
365
365
|
}>;
|
|
366
366
|
setSidebarWidth: (width: string) => void;
|
|
@@ -372,7 +372,7 @@ declare const client: import("vue").Ref<{
|
|
|
372
372
|
description?: string | undefined;
|
|
373
373
|
url?: string | undefined;
|
|
374
374
|
} | undefined;
|
|
375
|
-
children?:
|
|
375
|
+
children?: string[] | undefined;
|
|
376
376
|
openapi?: string | undefined;
|
|
377
377
|
jsonSchemaDialect?: string | undefined;
|
|
378
378
|
info?: {
|
|
@@ -406,15 +406,15 @@ declare const client: import("vue").Ref<{
|
|
|
406
406
|
color?: string | undefined;
|
|
407
407
|
}> | undefined;
|
|
408
408
|
"x-scalar-secrets"?: Record<string, {
|
|
409
|
-
description?: string | undefined;
|
|
410
409
|
example?: string | undefined;
|
|
410
|
+
description?: string | undefined;
|
|
411
411
|
}> | undefined;
|
|
412
412
|
securitySchemes?: string[] | undefined;
|
|
413
|
-
selectedSecuritySchemeUids?: (string |
|
|
413
|
+
selectedSecuritySchemeUids?: (string | string[])[] | undefined;
|
|
414
414
|
selectedServerUid?: string | undefined;
|
|
415
|
-
servers?:
|
|
416
|
-
requests?:
|
|
417
|
-
tags?:
|
|
415
|
+
servers?: string[] | undefined;
|
|
416
|
+
requests?: string[] | undefined;
|
|
417
|
+
tags?: string[] | undefined;
|
|
418
418
|
documentUrl?: string | undefined;
|
|
419
419
|
watchMode?: boolean | undefined;
|
|
420
420
|
integration?: string | null | undefined;
|
|
@@ -423,59 +423,14 @@ declare const client: import("vue").Ref<{
|
|
|
423
423
|
setCollectionSecurity?: boolean;
|
|
424
424
|
shouldLoad?: boolean;
|
|
425
425
|
} & Pick<import("@scalar/types").ReferenceConfiguration, "servers">) => Promise<{
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
"
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
selectedServerUid: string;
|
|
435
|
-
servers: string[];
|
|
436
|
-
requests: string[];
|
|
437
|
-
tags: string[];
|
|
438
|
-
watchMode: boolean;
|
|
439
|
-
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
440
|
-
externalDocs?: {
|
|
441
|
-
url: string;
|
|
442
|
-
description?: string | undefined;
|
|
443
|
-
} | undefined;
|
|
444
|
-
jsonSchemaDialect?: string | undefined;
|
|
445
|
-
info?: {
|
|
446
|
-
title: string;
|
|
447
|
-
version: string;
|
|
448
|
-
description?: string | undefined;
|
|
449
|
-
summary?: string | undefined;
|
|
450
|
-
termsOfService?: string | undefined;
|
|
451
|
-
contact?: {
|
|
452
|
-
name?: string | undefined;
|
|
453
|
-
url?: string | undefined;
|
|
454
|
-
email?: string | undefined;
|
|
455
|
-
} | undefined;
|
|
456
|
-
license?: {
|
|
457
|
-
name: string;
|
|
458
|
-
identifier?: string | undefined;
|
|
459
|
-
url?: string | undefined;
|
|
460
|
-
} | undefined;
|
|
461
|
-
} | undefined;
|
|
462
|
-
components?: Record<string, unknown> | undefined;
|
|
463
|
-
webhooks?: Record<string, unknown> | undefined;
|
|
464
|
-
"x-scalar-active-environment"?: string | undefined;
|
|
465
|
-
"x-scalar-environments"?: Record<string, {
|
|
466
|
-
variables: Record<string, string | {
|
|
467
|
-
default: string;
|
|
468
|
-
description?: string | undefined;
|
|
469
|
-
}>;
|
|
470
|
-
description?: string | undefined;
|
|
471
|
-
color?: string | undefined;
|
|
472
|
-
}> | undefined;
|
|
473
|
-
"x-scalar-secrets"?: Record<string, {
|
|
474
|
-
description?: string | undefined;
|
|
475
|
-
example?: string | undefined;
|
|
476
|
-
}> | undefined;
|
|
477
|
-
documentUrl?: string | undefined;
|
|
478
|
-
integration?: string | null | undefined;
|
|
426
|
+
error: false;
|
|
427
|
+
collection: import("@scalar/oas-utils/entities/spec").Collection;
|
|
428
|
+
requests: import("@scalar/oas-utils/entities/spec").Request[];
|
|
429
|
+
schema: import("@scalar/openapi-types").OpenAPIV3_1.Document;
|
|
430
|
+
examples: import("@scalar/oas-utils/entities/spec").RequestExample[];
|
|
431
|
+
servers: import("@scalar/oas-utils/entities/spec").Server[];
|
|
432
|
+
tags: import("@scalar/oas-utils/entities/spec").Tag[];
|
|
433
|
+
securitySchemes: import("@scalar/oas-utils/entities/spec").SecurityScheme[];
|
|
479
434
|
} | undefined>;
|
|
480
435
|
importSpecFromUrl: (url: string, workspaceUid: string, { proxyUrl, ...options }?: Omit<Pick<{
|
|
481
436
|
type?: "collection" | undefined;
|
|
@@ -484,7 +439,7 @@ declare const client: import("vue").Ref<{
|
|
|
484
439
|
description?: string | undefined;
|
|
485
440
|
url?: string | undefined;
|
|
486
441
|
} | undefined;
|
|
487
|
-
children?:
|
|
442
|
+
children?: string[] | undefined;
|
|
488
443
|
openapi?: string | undefined;
|
|
489
444
|
jsonSchemaDialect?: string | undefined;
|
|
490
445
|
info?: {
|
|
@@ -518,15 +473,15 @@ declare const client: import("vue").Ref<{
|
|
|
518
473
|
color?: string | undefined;
|
|
519
474
|
}> | undefined;
|
|
520
475
|
"x-scalar-secrets"?: Record<string, {
|
|
521
|
-
description?: string | undefined;
|
|
522
476
|
example?: string | undefined;
|
|
477
|
+
description?: string | undefined;
|
|
523
478
|
}> | undefined;
|
|
524
479
|
securitySchemes?: string[] | undefined;
|
|
525
|
-
selectedSecuritySchemeUids?: (string |
|
|
480
|
+
selectedSecuritySchemeUids?: (string | string[])[] | undefined;
|
|
526
481
|
selectedServerUid?: string | undefined;
|
|
527
|
-
servers?:
|
|
528
|
-
requests?:
|
|
529
|
-
tags?:
|
|
482
|
+
servers?: string[] | undefined;
|
|
483
|
+
requests?: string[] | undefined;
|
|
484
|
+
tags?: string[] | undefined;
|
|
530
485
|
documentUrl?: string | undefined;
|
|
531
486
|
watchMode?: boolean | undefined;
|
|
532
487
|
integration?: string | null | undefined;
|
|
@@ -541,7 +496,7 @@ declare const client: import("vue").Ref<{
|
|
|
541
496
|
description?: string | undefined;
|
|
542
497
|
url?: string | undefined;
|
|
543
498
|
} | undefined;
|
|
544
|
-
children?:
|
|
499
|
+
children?: string[] | undefined;
|
|
545
500
|
openapi?: string | undefined;
|
|
546
501
|
jsonSchemaDialect?: string | undefined;
|
|
547
502
|
info?: {
|
|
@@ -575,15 +530,15 @@ declare const client: import("vue").Ref<{
|
|
|
575
530
|
color?: string | undefined;
|
|
576
531
|
}> | undefined;
|
|
577
532
|
"x-scalar-secrets"?: Record<string, {
|
|
578
|
-
description?: string | undefined;
|
|
579
533
|
example?: string | undefined;
|
|
534
|
+
description?: string | undefined;
|
|
580
535
|
}> | undefined;
|
|
581
536
|
securitySchemes?: string[] | undefined;
|
|
582
|
-
selectedSecuritySchemeUids?: (string |
|
|
537
|
+
selectedSecuritySchemeUids?: (string | string[])[] | undefined;
|
|
583
538
|
selectedServerUid?: string | undefined;
|
|
584
|
-
servers?:
|
|
585
|
-
requests?:
|
|
586
|
-
tags?:
|
|
539
|
+
servers?: string[] | undefined;
|
|
540
|
+
requests?: string[] | undefined;
|
|
541
|
+
tags?: string[] | undefined;
|
|
587
542
|
documentUrl?: string | undefined;
|
|
588
543
|
watchMode?: boolean | undefined;
|
|
589
544
|
integration?: string | null | undefined;
|
|
@@ -592,132 +547,86 @@ declare const client: import("vue").Ref<{
|
|
|
592
547
|
setCollectionSecurity?: boolean;
|
|
593
548
|
shouldLoad?: boolean;
|
|
594
549
|
} & Pick<import("@scalar/types").ReferenceConfiguration, "servers">) => Promise<{
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
"
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
selectedServerUid: string;
|
|
604
|
-
servers: string[];
|
|
605
|
-
requests: string[];
|
|
606
|
-
tags: string[];
|
|
607
|
-
watchMode: boolean;
|
|
608
|
-
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
609
|
-
externalDocs?: {
|
|
610
|
-
url: string;
|
|
611
|
-
description?: string | undefined;
|
|
612
|
-
} | undefined;
|
|
613
|
-
jsonSchemaDialect?: string | undefined;
|
|
614
|
-
info?: {
|
|
615
|
-
title: string;
|
|
616
|
-
version: string;
|
|
617
|
-
description?: string | undefined;
|
|
618
|
-
summary?: string | undefined;
|
|
619
|
-
termsOfService?: string | undefined;
|
|
620
|
-
contact?: {
|
|
621
|
-
name?: string | undefined;
|
|
622
|
-
url?: string | undefined;
|
|
623
|
-
email?: string | undefined;
|
|
624
|
-
} | undefined;
|
|
625
|
-
license?: {
|
|
626
|
-
name: string;
|
|
627
|
-
identifier?: string | undefined;
|
|
628
|
-
url?: string | undefined;
|
|
629
|
-
} | undefined;
|
|
630
|
-
} | undefined;
|
|
631
|
-
components?: Record<string, unknown> | undefined;
|
|
632
|
-
webhooks?: Record<string, unknown> | undefined;
|
|
633
|
-
"x-scalar-active-environment"?: string | undefined;
|
|
634
|
-
"x-scalar-environments"?: Record<string, {
|
|
635
|
-
variables: Record<string, string | {
|
|
636
|
-
default: string;
|
|
637
|
-
description?: string | undefined;
|
|
638
|
-
}>;
|
|
639
|
-
description?: string | undefined;
|
|
640
|
-
color?: string | undefined;
|
|
641
|
-
}> | undefined;
|
|
642
|
-
"x-scalar-secrets"?: Record<string, {
|
|
643
|
-
description?: string | undefined;
|
|
644
|
-
example?: string | undefined;
|
|
645
|
-
}> | undefined;
|
|
646
|
-
documentUrl?: string | undefined;
|
|
647
|
-
integration?: string | null | undefined;
|
|
550
|
+
error: false;
|
|
551
|
+
collection: import("@scalar/oas-utils/entities/spec").Collection;
|
|
552
|
+
requests: import("@scalar/oas-utils/entities/spec").Request[];
|
|
553
|
+
schema: import("@scalar/openapi-types").OpenAPIV3_1.Document;
|
|
554
|
+
examples: import("@scalar/oas-utils/entities/spec").RequestExample[];
|
|
555
|
+
servers: import("@scalar/oas-utils/entities/spec").Server[];
|
|
556
|
+
tags: import("@scalar/oas-utils/entities/spec").Tag[];
|
|
557
|
+
securitySchemes: import("@scalar/oas-utils/entities/spec").SecurityScheme[];
|
|
648
558
|
} | undefined>>>>>;
|
|
649
559
|
cookieMutators: {
|
|
650
560
|
add: (item: {
|
|
651
561
|
value: string;
|
|
652
|
-
uid: string
|
|
562
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
653
563
|
name: string;
|
|
654
564
|
path?: string | undefined;
|
|
655
565
|
domain?: string | undefined;
|
|
656
566
|
}) => void;
|
|
657
|
-
delete: (uid: string) => void;
|
|
567
|
+
delete: (uid: (string & import("zod").BRAND<"cookie">) | null | undefined) => void;
|
|
658
568
|
set: (item: {
|
|
659
569
|
value: string;
|
|
660
|
-
uid: string
|
|
570
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
661
571
|
name: string;
|
|
662
572
|
path?: string | undefined;
|
|
663
573
|
domain?: string | undefined;
|
|
664
574
|
}) => void;
|
|
665
|
-
edit: <P extends "name" | "uid" | "path" | "value" | "domain">(uid: string, path: P, value: P extends "name" | "uid" | "path" | "value" | "domain" ? {
|
|
575
|
+
edit: <P extends "name" | "uid" | "path" | "value" | "domain">(uid: (string & import("zod").BRAND<"cookie">) | null | undefined, path: P, value: P extends "name" | "uid" | "path" | "value" | "domain" ? {
|
|
666
576
|
value: string;
|
|
667
|
-
uid: string
|
|
577
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
668
578
|
name: string;
|
|
669
579
|
path?: string | undefined;
|
|
670
580
|
domain?: string | undefined;
|
|
671
581
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "name" | "uid" | "path" | "value" | "domain" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
672
582
|
value: string;
|
|
673
|
-
uid: string
|
|
583
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
674
584
|
name: string;
|
|
675
585
|
path?: string | undefined;
|
|
676
586
|
domain?: string | undefined;
|
|
677
587
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
678
588
|
value: string;
|
|
679
|
-
uid: string
|
|
589
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
680
590
|
name: string;
|
|
681
591
|
path?: string | undefined;
|
|
682
592
|
domain?: string | undefined;
|
|
683
593
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
684
|
-
untrackedEdit: <P extends "name" | "uid" | "path" | "value" | "domain">(uid: string
|
|
594
|
+
untrackedEdit: <P extends "name" | "uid" | "path" | "value" | "domain">(uid: string & import("zod").BRAND<"cookie">, path: P, value: P extends "name" | "uid" | "path" | "value" | "domain" ? {
|
|
685
595
|
value: string;
|
|
686
|
-
uid: string
|
|
596
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
687
597
|
name: string;
|
|
688
598
|
path?: string | undefined;
|
|
689
599
|
domain?: string | undefined;
|
|
690
600
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "name" | "uid" | "path" | "value" | "domain" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
691
601
|
value: string;
|
|
692
|
-
uid: string
|
|
602
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
693
603
|
name: string;
|
|
694
604
|
path?: string | undefined;
|
|
695
605
|
domain?: string | undefined;
|
|
696
606
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
697
607
|
value: string;
|
|
698
|
-
uid: string
|
|
608
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
699
609
|
name: string;
|
|
700
610
|
path?: string | undefined;
|
|
701
611
|
domain?: string | undefined;
|
|
702
612
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
703
|
-
undo: (uid: string) => void;
|
|
704
|
-
redo: (uid: string) => void;
|
|
613
|
+
undo: (uid: string & import("zod").BRAND<"cookie">) => void;
|
|
614
|
+
redo: (uid: string & import("zod").BRAND<"cookie">) => void;
|
|
705
615
|
reset: () => void;
|
|
706
616
|
};
|
|
707
617
|
collectionMutators: {
|
|
708
618
|
rawAdd: (item: {
|
|
709
619
|
type: "collection";
|
|
710
|
-
uid: string
|
|
711
|
-
children: string[];
|
|
620
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
621
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
712
622
|
openapi: string;
|
|
713
623
|
security: Record<string, string[]>[];
|
|
714
624
|
"x-scalar-icon": string;
|
|
715
625
|
securitySchemes: string[];
|
|
716
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
tags: string[];
|
|
626
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
627
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
628
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
629
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
721
630
|
watchMode: boolean;
|
|
722
631
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
723
632
|
externalDocs?: {
|
|
@@ -754,25 +663,25 @@ declare const client: import("vue").Ref<{
|
|
|
754
663
|
color?: string | undefined;
|
|
755
664
|
}> | undefined;
|
|
756
665
|
"x-scalar-secrets"?: Record<string, {
|
|
757
|
-
description?: string | undefined;
|
|
758
666
|
example?: string | undefined;
|
|
667
|
+
description?: string | undefined;
|
|
759
668
|
}> | undefined;
|
|
669
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
760
670
|
documentUrl?: string | undefined;
|
|
761
671
|
integration?: string | null | undefined;
|
|
762
672
|
}) => void;
|
|
763
|
-
add: (payload: import("@scalar/oas-utils/entities/spec").CollectionPayload, workspaceUid:
|
|
673
|
+
add: (payload: import("@scalar/oas-utils/entities/spec").CollectionPayload, workspaceUid: import("@scalar/oas-utils/entities").Workspace["uid"]) => {
|
|
764
674
|
type: "collection";
|
|
765
|
-
uid: string
|
|
766
|
-
children: string[];
|
|
675
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
676
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
767
677
|
openapi: string;
|
|
768
678
|
security: Record<string, string[]>[];
|
|
769
679
|
"x-scalar-icon": string;
|
|
770
680
|
securitySchemes: string[];
|
|
771
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
tags: string[];
|
|
681
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
682
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
683
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
684
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
776
685
|
watchMode: boolean;
|
|
777
686
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
778
687
|
externalDocs?: {
|
|
@@ -809,28 +718,28 @@ declare const client: import("vue").Ref<{
|
|
|
809
718
|
color?: string | undefined;
|
|
810
719
|
}> | undefined;
|
|
811
720
|
"x-scalar-secrets"?: Record<string, {
|
|
812
|
-
description?: string | undefined;
|
|
813
721
|
example?: string | undefined;
|
|
722
|
+
description?: string | undefined;
|
|
814
723
|
}> | undefined;
|
|
724
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
815
725
|
documentUrl?: string | undefined;
|
|
816
726
|
integration?: string | null | undefined;
|
|
817
727
|
};
|
|
818
728
|
delete: (collection: import("@scalar/oas-utils/entities/spec").Collection, workspace: import("@scalar/oas-utils/entities").Workspace) => void;
|
|
819
|
-
addEnvironment: (environmentName: string, environment: import("@scalar/oas-utils/entities/spec").XScalarEnvironment, collectionUid:
|
|
820
|
-
removeEnvironment: (environmentName: string, collectionUid:
|
|
729
|
+
addEnvironment: (environmentName: string, environment: import("@scalar/oas-utils/entities/spec").XScalarEnvironment, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void;
|
|
730
|
+
removeEnvironment: (environmentName: string, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void;
|
|
821
731
|
set: (item: {
|
|
822
732
|
type: "collection";
|
|
823
|
-
uid: string
|
|
824
|
-
children: string[];
|
|
733
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
734
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
825
735
|
openapi: string;
|
|
826
736
|
security: Record<string, string[]>[];
|
|
827
737
|
"x-scalar-icon": string;
|
|
828
738
|
securitySchemes: string[];
|
|
829
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
tags: string[];
|
|
739
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
740
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
741
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
742
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
834
743
|
watchMode: boolean;
|
|
835
744
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
836
745
|
externalDocs?: {
|
|
@@ -867,25 +776,25 @@ declare const client: import("vue").Ref<{
|
|
|
867
776
|
color?: string | undefined;
|
|
868
777
|
}> | undefined;
|
|
869
778
|
"x-scalar-secrets"?: Record<string, {
|
|
870
|
-
description?: string | undefined;
|
|
871
779
|
example?: string | undefined;
|
|
780
|
+
description?: string | undefined;
|
|
872
781
|
}> | undefined;
|
|
782
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
873
783
|
documentUrl?: string | undefined;
|
|
874
784
|
integration?: string | null | undefined;
|
|
875
785
|
}) => void;
|
|
876
|
-
edit: <P extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "
|
|
786
|
+
edit: <P extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "watchMode" | "watchModeStatus" | "jsonSchemaDialect" | "info" | "components" | "webhooks" | "x-scalar-active-environment" | "x-scalar-secrets" | "selectedServerUid" | "documentUrl" | "integration" | `servers.${number}` | `tags.${number}` | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `requests.${number}` | `x-scalar-environments.${string}` | `children.${number}` | `securitySchemes.${number}` | `selectedSecuritySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}.${number}` | "info.summary" | "info.description" | "info.title" | "info.version" | "info.termsOfService" | "info.contact" | "info.license" | "info.contact.name" | "info.contact.url" | "info.contact.email" | "info.license.name" | "info.license.url" | "info.license.identifier" | `components.${string}` | `webhooks.${string}` | `x-scalar-secrets.${string}`>(uid: (string & import("zod").BRAND<"collection">) | null | undefined, path: P, value: P extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "watchMode" | "watchModeStatus" | "jsonSchemaDialect" | "info" | "components" | "webhooks" | "x-scalar-active-environment" | "x-scalar-secrets" | "selectedServerUid" | "documentUrl" | "integration" ? {
|
|
877
787
|
type: "collection";
|
|
878
|
-
uid: string
|
|
879
|
-
children: string[];
|
|
788
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
789
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
880
790
|
openapi: string;
|
|
881
791
|
security: Record<string, string[]>[];
|
|
882
792
|
"x-scalar-icon": string;
|
|
883
793
|
securitySchemes: string[];
|
|
884
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
tags: string[];
|
|
794
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
795
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
796
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
797
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
889
798
|
watchMode: boolean;
|
|
890
799
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
891
800
|
externalDocs?: {
|
|
@@ -922,24 +831,24 @@ declare const client: import("vue").Ref<{
|
|
|
922
831
|
color?: string | undefined;
|
|
923
832
|
}> | undefined;
|
|
924
833
|
"x-scalar-secrets"?: Record<string, {
|
|
925
|
-
description?: string | undefined;
|
|
926
834
|
example?: string | undefined;
|
|
835
|
+
description?: string | undefined;
|
|
927
836
|
}> | undefined;
|
|
837
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
928
838
|
documentUrl?: string | undefined;
|
|
929
839
|
integration?: string | null | undefined;
|
|
930
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "
|
|
840
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "watchMode" | "watchModeStatus" | "jsonSchemaDialect" | "info" | "components" | "webhooks" | "x-scalar-active-environment" | "x-scalar-secrets" | "selectedServerUid" | "documentUrl" | "integration" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
931
841
|
type: "collection";
|
|
932
|
-
uid: string
|
|
933
|
-
children: string[];
|
|
842
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
843
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
934
844
|
openapi: string;
|
|
935
845
|
security: Record<string, string[]>[];
|
|
936
846
|
"x-scalar-icon": string;
|
|
937
847
|
securitySchemes: string[];
|
|
938
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
tags: string[];
|
|
848
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
849
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
850
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
851
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
943
852
|
watchMode: boolean;
|
|
944
853
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
945
854
|
externalDocs?: {
|
|
@@ -976,24 +885,24 @@ declare const client: import("vue").Ref<{
|
|
|
976
885
|
color?: string | undefined;
|
|
977
886
|
}> | undefined;
|
|
978
887
|
"x-scalar-secrets"?: Record<string, {
|
|
979
|
-
description?: string | undefined;
|
|
980
888
|
example?: string | undefined;
|
|
889
|
+
description?: string | undefined;
|
|
981
890
|
}> | undefined;
|
|
891
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
982
892
|
documentUrl?: string | undefined;
|
|
983
893
|
integration?: string | null | undefined;
|
|
984
894
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
985
895
|
type: "collection";
|
|
986
|
-
uid: string
|
|
987
|
-
children: string[];
|
|
896
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
897
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
988
898
|
openapi: string;
|
|
989
899
|
security: Record<string, string[]>[];
|
|
990
900
|
"x-scalar-icon": string;
|
|
991
901
|
securitySchemes: string[];
|
|
992
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
tags: string[];
|
|
902
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
903
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
904
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
905
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
997
906
|
watchMode: boolean;
|
|
998
907
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
999
908
|
externalDocs?: {
|
|
@@ -1030,25 +939,25 @@ declare const client: import("vue").Ref<{
|
|
|
1030
939
|
color?: string | undefined;
|
|
1031
940
|
}> | undefined;
|
|
1032
941
|
"x-scalar-secrets"?: Record<string, {
|
|
1033
|
-
description?: string | undefined;
|
|
1034
942
|
example?: string | undefined;
|
|
943
|
+
description?: string | undefined;
|
|
1035
944
|
}> | undefined;
|
|
945
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
1036
946
|
documentUrl?: string | undefined;
|
|
1037
947
|
integration?: string | null | undefined;
|
|
1038
948
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1039
|
-
untrackedEdit: <P extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "
|
|
949
|
+
untrackedEdit: <P extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "watchMode" | "watchModeStatus" | "jsonSchemaDialect" | "info" | "components" | "webhooks" | "x-scalar-active-environment" | "x-scalar-secrets" | "selectedServerUid" | "documentUrl" | "integration" | `servers.${number}` | `tags.${number}` | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `requests.${number}` | `x-scalar-environments.${string}` | `children.${number}` | `securitySchemes.${number}` | `selectedSecuritySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}.${number}` | "info.summary" | "info.description" | "info.title" | "info.version" | "info.termsOfService" | "info.contact" | "info.license" | "info.contact.name" | "info.contact.url" | "info.contact.email" | "info.license.name" | "info.license.url" | "info.license.identifier" | `components.${string}` | `webhooks.${string}` | `x-scalar-secrets.${string}`>(uid: string & import("zod").BRAND<"collection">, path: P, value: P extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "watchMode" | "watchModeStatus" | "jsonSchemaDialect" | "info" | "components" | "webhooks" | "x-scalar-active-environment" | "x-scalar-secrets" | "selectedServerUid" | "documentUrl" | "integration" ? {
|
|
1040
950
|
type: "collection";
|
|
1041
|
-
uid: string
|
|
1042
|
-
children: string[];
|
|
951
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
952
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
1043
953
|
openapi: string;
|
|
1044
954
|
security: Record<string, string[]>[];
|
|
1045
955
|
"x-scalar-icon": string;
|
|
1046
956
|
securitySchemes: string[];
|
|
1047
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
tags: string[];
|
|
957
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
958
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
959
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
960
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
1052
961
|
watchMode: boolean;
|
|
1053
962
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
1054
963
|
externalDocs?: {
|
|
@@ -1085,24 +994,24 @@ declare const client: import("vue").Ref<{
|
|
|
1085
994
|
color?: string | undefined;
|
|
1086
995
|
}> | undefined;
|
|
1087
996
|
"x-scalar-secrets"?: Record<string, {
|
|
1088
|
-
description?: string | undefined;
|
|
1089
997
|
example?: string | undefined;
|
|
998
|
+
description?: string | undefined;
|
|
1090
999
|
}> | undefined;
|
|
1000
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
1091
1001
|
documentUrl?: string | undefined;
|
|
1092
1002
|
integration?: string | null | undefined;
|
|
1093
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "
|
|
1003
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "watchMode" | "watchModeStatus" | "jsonSchemaDialect" | "info" | "components" | "webhooks" | "x-scalar-active-environment" | "x-scalar-secrets" | "selectedServerUid" | "documentUrl" | "integration" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
1094
1004
|
type: "collection";
|
|
1095
|
-
uid: string
|
|
1096
|
-
children: string[];
|
|
1005
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
1006
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
1097
1007
|
openapi: string;
|
|
1098
1008
|
security: Record<string, string[]>[];
|
|
1099
1009
|
"x-scalar-icon": string;
|
|
1100
1010
|
securitySchemes: string[];
|
|
1101
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
tags: string[];
|
|
1011
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
1012
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
1013
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
1014
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
1106
1015
|
watchMode: boolean;
|
|
1107
1016
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
1108
1017
|
externalDocs?: {
|
|
@@ -1139,24 +1048,24 @@ declare const client: import("vue").Ref<{
|
|
|
1139
1048
|
color?: string | undefined;
|
|
1140
1049
|
}> | undefined;
|
|
1141
1050
|
"x-scalar-secrets"?: Record<string, {
|
|
1142
|
-
description?: string | undefined;
|
|
1143
1051
|
example?: string | undefined;
|
|
1052
|
+
description?: string | undefined;
|
|
1144
1053
|
}> | undefined;
|
|
1054
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
1145
1055
|
documentUrl?: string | undefined;
|
|
1146
1056
|
integration?: string | null | undefined;
|
|
1147
1057
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
1148
1058
|
type: "collection";
|
|
1149
|
-
uid: string
|
|
1150
|
-
children: string[];
|
|
1059
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
1060
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
1151
1061
|
openapi: string;
|
|
1152
1062
|
security: Record<string, string[]>[];
|
|
1153
1063
|
"x-scalar-icon": string;
|
|
1154
1064
|
securitySchemes: string[];
|
|
1155
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
tags: string[];
|
|
1065
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
1066
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
1067
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
1068
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
1160
1069
|
watchMode: boolean;
|
|
1161
1070
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
1162
1071
|
externalDocs?: {
|
|
@@ -1193,83 +1102,84 @@ declare const client: import("vue").Ref<{
|
|
|
1193
1102
|
color?: string | undefined;
|
|
1194
1103
|
}> | undefined;
|
|
1195
1104
|
"x-scalar-secrets"?: Record<string, {
|
|
1196
|
-
description?: string | undefined;
|
|
1197
1105
|
example?: string | undefined;
|
|
1106
|
+
description?: string | undefined;
|
|
1198
1107
|
}> | undefined;
|
|
1108
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
1199
1109
|
documentUrl?: string | undefined;
|
|
1200
1110
|
integration?: string | null | undefined;
|
|
1201
1111
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1202
|
-
undo: (uid: string) => void;
|
|
1203
|
-
redo: (uid: string) => void;
|
|
1112
|
+
undo: (uid: string & import("zod").BRAND<"collection">) => void;
|
|
1113
|
+
redo: (uid: string & import("zod").BRAND<"collection">) => void;
|
|
1204
1114
|
reset: () => void;
|
|
1205
1115
|
};
|
|
1206
1116
|
environmentMutators: {
|
|
1207
|
-
delete: (uid:
|
|
1117
|
+
delete: (uid: import("@scalar/oas-utils/entities/environment").Environment["uid"]) => void;
|
|
1208
1118
|
add: (item: {
|
|
1209
1119
|
value: string;
|
|
1210
|
-
uid: string
|
|
1120
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
1211
1121
|
name: string;
|
|
1212
1122
|
color: string;
|
|
1213
1123
|
isDefault?: boolean | undefined;
|
|
1214
1124
|
}) => void;
|
|
1215
1125
|
set: (item: {
|
|
1216
1126
|
value: string;
|
|
1217
|
-
uid: string
|
|
1127
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
1218
1128
|
name: string;
|
|
1219
1129
|
color: string;
|
|
1220
1130
|
isDefault?: boolean | undefined;
|
|
1221
1131
|
}) => void;
|
|
1222
|
-
edit: <P extends "name" | "uid" | "color" | "
|
|
1132
|
+
edit: <P extends "name" | "uid" | "color" | "value" | "isDefault">(uid: (string & import("zod").BRAND<"environment">) | null | undefined, path: P, value: P extends "name" | "uid" | "color" | "value" | "isDefault" ? {
|
|
1223
1133
|
value: string;
|
|
1224
|
-
uid: string
|
|
1134
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
1225
1135
|
name: string;
|
|
1226
1136
|
color: string;
|
|
1227
1137
|
isDefault?: boolean | undefined;
|
|
1228
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "name" | "uid" | "color" | "
|
|
1138
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "name" | "uid" | "color" | "value" | "isDefault" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
1229
1139
|
value: string;
|
|
1230
|
-
uid: string
|
|
1140
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
1231
1141
|
name: string;
|
|
1232
1142
|
color: string;
|
|
1233
1143
|
isDefault?: boolean | undefined;
|
|
1234
1144
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
1235
1145
|
value: string;
|
|
1236
|
-
uid: string
|
|
1146
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
1237
1147
|
name: string;
|
|
1238
1148
|
color: string;
|
|
1239
1149
|
isDefault?: boolean | undefined;
|
|
1240
1150
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1241
|
-
untrackedEdit: <P extends "name" | "uid" | "color" | "
|
|
1151
|
+
untrackedEdit: <P extends "name" | "uid" | "color" | "value" | "isDefault">(uid: string & import("zod").BRAND<"environment">, path: P, value: P extends "name" | "uid" | "color" | "value" | "isDefault" ? {
|
|
1242
1152
|
value: string;
|
|
1243
|
-
uid: string
|
|
1153
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
1244
1154
|
name: string;
|
|
1245
1155
|
color: string;
|
|
1246
1156
|
isDefault?: boolean | undefined;
|
|
1247
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "name" | "uid" | "color" | "
|
|
1157
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "name" | "uid" | "color" | "value" | "isDefault" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
1248
1158
|
value: string;
|
|
1249
|
-
uid: string
|
|
1159
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
1250
1160
|
name: string;
|
|
1251
1161
|
color: string;
|
|
1252
1162
|
isDefault?: boolean | undefined;
|
|
1253
1163
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
1254
1164
|
value: string;
|
|
1255
|
-
uid: string
|
|
1165
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
1256
1166
|
name: string;
|
|
1257
1167
|
color: string;
|
|
1258
1168
|
isDefault?: boolean | undefined;
|
|
1259
1169
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1260
|
-
undo: (uid: string) => void;
|
|
1261
|
-
redo: (uid: string) => void;
|
|
1170
|
+
undo: (uid: string & import("zod").BRAND<"environment">) => void;
|
|
1171
|
+
redo: (uid: string & import("zod").BRAND<"environment">) => void;
|
|
1262
1172
|
reset: () => void;
|
|
1263
1173
|
};
|
|
1264
1174
|
requestMutators: {
|
|
1265
1175
|
rawAdd: (item: {
|
|
1266
1176
|
path: string;
|
|
1267
1177
|
type: "request";
|
|
1268
|
-
uid: string
|
|
1269
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
1270
|
-
selectedServerUid: string;
|
|
1271
|
-
servers: string[];
|
|
1272
|
-
examples: string[];
|
|
1178
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
1179
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
1180
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
1181
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
1182
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
1273
1183
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
1274
1184
|
description?: string | undefined;
|
|
1275
1185
|
summary?: string | undefined;
|
|
@@ -1286,10 +1196,10 @@ declare const client: import("vue").Ref<{
|
|
|
1286
1196
|
parameters?: {
|
|
1287
1197
|
required: boolean;
|
|
1288
1198
|
name: string;
|
|
1289
|
-
in: "path" | "
|
|
1199
|
+
in: "path" | "cookie" | "query" | "header";
|
|
1290
1200
|
deprecated: boolean;
|
|
1291
|
-
description?: string | undefined;
|
|
1292
1201
|
example?: unknown;
|
|
1202
|
+
description?: string | undefined;
|
|
1293
1203
|
schema?: unknown;
|
|
1294
1204
|
content?: unknown;
|
|
1295
1205
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -1301,14 +1211,14 @@ declare const client: import("vue").Ref<{
|
|
|
1301
1211
|
requestBody?: any;
|
|
1302
1212
|
responses?: Record<string, any> | undefined;
|
|
1303
1213
|
}) => void;
|
|
1304
|
-
add: (payload: import("@scalar/oas-utils/entities/spec").RequestPayload, collectionUid:
|
|
1214
|
+
add: (payload: import("@scalar/oas-utils/entities/spec").RequestPayload, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void | {
|
|
1305
1215
|
path: string;
|
|
1306
1216
|
type: "request";
|
|
1307
|
-
uid: string
|
|
1308
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
1309
|
-
selectedServerUid: string;
|
|
1310
|
-
servers: string[];
|
|
1311
|
-
examples: string[];
|
|
1217
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
1218
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
1219
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
1220
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
1221
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
1312
1222
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
1313
1223
|
description?: string | undefined;
|
|
1314
1224
|
summary?: string | undefined;
|
|
@@ -1325,10 +1235,10 @@ declare const client: import("vue").Ref<{
|
|
|
1325
1235
|
parameters?: {
|
|
1326
1236
|
required: boolean;
|
|
1327
1237
|
name: string;
|
|
1328
|
-
in: "path" | "
|
|
1238
|
+
in: "path" | "cookie" | "query" | "header";
|
|
1329
1239
|
deprecated: boolean;
|
|
1330
|
-
description?: string | undefined;
|
|
1331
1240
|
example?: unknown;
|
|
1241
|
+
description?: string | undefined;
|
|
1332
1242
|
schema?: unknown;
|
|
1333
1243
|
content?: unknown;
|
|
1334
1244
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -1340,15 +1250,15 @@ declare const client: import("vue").Ref<{
|
|
|
1340
1250
|
requestBody?: any;
|
|
1341
1251
|
responses?: Record<string, any> | undefined;
|
|
1342
1252
|
};
|
|
1343
|
-
delete: (request: import("@scalar/oas-utils/entities/spec").Request, collectionUid:
|
|
1253
|
+
delete: (request: import("@scalar/oas-utils/entities/spec").Request, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void;
|
|
1344
1254
|
set: (item: {
|
|
1345
1255
|
path: string;
|
|
1346
1256
|
type: "request";
|
|
1347
|
-
uid: string
|
|
1348
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
1349
|
-
selectedServerUid: string;
|
|
1350
|
-
servers: string[];
|
|
1351
|
-
examples: string[];
|
|
1257
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
1258
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
1259
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
1260
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
1261
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
1352
1262
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
1353
1263
|
description?: string | undefined;
|
|
1354
1264
|
summary?: string | undefined;
|
|
@@ -1365,10 +1275,10 @@ declare const client: import("vue").Ref<{
|
|
|
1365
1275
|
parameters?: {
|
|
1366
1276
|
required: boolean;
|
|
1367
1277
|
name: string;
|
|
1368
|
-
in: "path" | "
|
|
1278
|
+
in: "path" | "cookie" | "query" | "header";
|
|
1369
1279
|
deprecated: boolean;
|
|
1370
|
-
description?: string | undefined;
|
|
1371
1280
|
example?: unknown;
|
|
1281
|
+
description?: string | undefined;
|
|
1372
1282
|
schema?: unknown;
|
|
1373
1283
|
content?: unknown;
|
|
1374
1284
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -1380,14 +1290,14 @@ declare const client: import("vue").Ref<{
|
|
|
1380
1290
|
requestBody?: any;
|
|
1381
1291
|
responses?: Record<string, any> | undefined;
|
|
1382
1292
|
}) => void;
|
|
1383
|
-
edit: <P extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | `servers.${number}` | `tags.${number}` | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `selectedSecuritySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}.${number}` | "
|
|
1293
|
+
edit: <P extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | `servers.${number}` | `tags.${number}` | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `selectedSecuritySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}.${number}` | "path" | "method" | "examples" | `requestBody.${string}` | `parameters.${number}` | `parameters.${number}.description` | `parameters.${number}.deprecated` | `parameters.${number}.name` | `parameters.${number}.in` | `parameters.${number}.example` | `parameters.${number}.style` | `parameters.${number}.required` | `parameters.${number}.examples` | `parameters.${number}.content` | `parameters.${number}.schema` | `parameters.${number}.examples.${string}` | `responses.${string}` | `examples.${number}`>(uid: (string & import("zod").BRAND<"operation">) | null | undefined, path: P, value: P extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | "path" | "method" | "examples" ? {
|
|
1384
1294
|
path: string;
|
|
1385
1295
|
type: "request";
|
|
1386
|
-
uid: string
|
|
1387
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
1388
|
-
selectedServerUid: string;
|
|
1389
|
-
servers: string[];
|
|
1390
|
-
examples: string[];
|
|
1296
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
1297
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
1298
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
1299
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
1300
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
1391
1301
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
1392
1302
|
description?: string | undefined;
|
|
1393
1303
|
summary?: string | undefined;
|
|
@@ -1404,10 +1314,10 @@ declare const client: import("vue").Ref<{
|
|
|
1404
1314
|
parameters?: {
|
|
1405
1315
|
required: boolean;
|
|
1406
1316
|
name: string;
|
|
1407
|
-
in: "path" | "
|
|
1317
|
+
in: "path" | "cookie" | "query" | "header";
|
|
1408
1318
|
deprecated: boolean;
|
|
1409
|
-
description?: string | undefined;
|
|
1410
1319
|
example?: unknown;
|
|
1320
|
+
description?: string | undefined;
|
|
1411
1321
|
schema?: unknown;
|
|
1412
1322
|
content?: unknown;
|
|
1413
1323
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -1418,14 +1328,14 @@ declare const client: import("vue").Ref<{
|
|
|
1418
1328
|
}[] | undefined;
|
|
1419
1329
|
requestBody?: any;
|
|
1420
1330
|
responses?: Record<string, any> | undefined;
|
|
1421
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | "
|
|
1331
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | "path" | "method" | "examples" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
1422
1332
|
path: string;
|
|
1423
1333
|
type: "request";
|
|
1424
|
-
uid: string
|
|
1425
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
1426
|
-
selectedServerUid: string;
|
|
1427
|
-
servers: string[];
|
|
1428
|
-
examples: string[];
|
|
1334
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
1335
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
1336
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
1337
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
1338
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
1429
1339
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
1430
1340
|
description?: string | undefined;
|
|
1431
1341
|
summary?: string | undefined;
|
|
@@ -1442,10 +1352,10 @@ declare const client: import("vue").Ref<{
|
|
|
1442
1352
|
parameters?: {
|
|
1443
1353
|
required: boolean;
|
|
1444
1354
|
name: string;
|
|
1445
|
-
in: "path" | "
|
|
1355
|
+
in: "path" | "cookie" | "query" | "header";
|
|
1446
1356
|
deprecated: boolean;
|
|
1447
|
-
description?: string | undefined;
|
|
1448
1357
|
example?: unknown;
|
|
1358
|
+
description?: string | undefined;
|
|
1449
1359
|
schema?: unknown;
|
|
1450
1360
|
content?: unknown;
|
|
1451
1361
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -1459,11 +1369,11 @@ declare const client: import("vue").Ref<{
|
|
|
1459
1369
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
1460
1370
|
path: string;
|
|
1461
1371
|
type: "request";
|
|
1462
|
-
uid: string
|
|
1463
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
1464
|
-
selectedServerUid: string;
|
|
1465
|
-
servers: string[];
|
|
1466
|
-
examples: string[];
|
|
1372
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
1373
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
1374
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
1375
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
1376
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
1467
1377
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
1468
1378
|
description?: string | undefined;
|
|
1469
1379
|
summary?: string | undefined;
|
|
@@ -1480,10 +1390,10 @@ declare const client: import("vue").Ref<{
|
|
|
1480
1390
|
parameters?: {
|
|
1481
1391
|
required: boolean;
|
|
1482
1392
|
name: string;
|
|
1483
|
-
in: "path" | "
|
|
1393
|
+
in: "path" | "cookie" | "query" | "header";
|
|
1484
1394
|
deprecated: boolean;
|
|
1485
|
-
description?: string | undefined;
|
|
1486
1395
|
example?: unknown;
|
|
1396
|
+
description?: string | undefined;
|
|
1487
1397
|
schema?: unknown;
|
|
1488
1398
|
content?: unknown;
|
|
1489
1399
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -1495,14 +1405,14 @@ declare const client: import("vue").Ref<{
|
|
|
1495
1405
|
requestBody?: any;
|
|
1496
1406
|
responses?: Record<string, any> | undefined;
|
|
1497
1407
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1498
|
-
untrackedEdit: <P extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | `servers.${number}` | `tags.${number}` | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `selectedSecuritySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}.${number}` | "
|
|
1408
|
+
untrackedEdit: <P extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | `servers.${number}` | `tags.${number}` | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `selectedSecuritySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}.${number}` | "path" | "method" | "examples" | `requestBody.${string}` | `parameters.${number}` | `parameters.${number}.description` | `parameters.${number}.deprecated` | `parameters.${number}.name` | `parameters.${number}.in` | `parameters.${number}.example` | `parameters.${number}.style` | `parameters.${number}.required` | `parameters.${number}.examples` | `parameters.${number}.content` | `parameters.${number}.schema` | `parameters.${number}.examples.${string}` | `responses.${string}` | `examples.${number}`>(uid: string & import("zod").BRAND<"operation">, path: P, value: P extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | "path" | "method" | "examples" ? {
|
|
1499
1409
|
path: string;
|
|
1500
1410
|
type: "request";
|
|
1501
|
-
uid: string
|
|
1502
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
1503
|
-
selectedServerUid: string;
|
|
1504
|
-
servers: string[];
|
|
1505
|
-
examples: string[];
|
|
1411
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
1412
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
1413
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
1414
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
1415
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
1506
1416
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
1507
1417
|
description?: string | undefined;
|
|
1508
1418
|
summary?: string | undefined;
|
|
@@ -1519,10 +1429,10 @@ declare const client: import("vue").Ref<{
|
|
|
1519
1429
|
parameters?: {
|
|
1520
1430
|
required: boolean;
|
|
1521
1431
|
name: string;
|
|
1522
|
-
in: "path" | "
|
|
1432
|
+
in: "path" | "cookie" | "query" | "header";
|
|
1523
1433
|
deprecated: boolean;
|
|
1524
|
-
description?: string | undefined;
|
|
1525
1434
|
example?: unknown;
|
|
1435
|
+
description?: string | undefined;
|
|
1526
1436
|
schema?: unknown;
|
|
1527
1437
|
content?: unknown;
|
|
1528
1438
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -1533,14 +1443,14 @@ declare const client: import("vue").Ref<{
|
|
|
1533
1443
|
}[] | undefined;
|
|
1534
1444
|
requestBody?: any;
|
|
1535
1445
|
responses?: Record<string, any> | undefined;
|
|
1536
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | "
|
|
1446
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | "path" | "method" | "examples" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
1537
1447
|
path: string;
|
|
1538
1448
|
type: "request";
|
|
1539
|
-
uid: string
|
|
1540
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
1541
|
-
selectedServerUid: string;
|
|
1542
|
-
servers: string[];
|
|
1543
|
-
examples: string[];
|
|
1449
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
1450
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
1451
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
1452
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
1453
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
1544
1454
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
1545
1455
|
description?: string | undefined;
|
|
1546
1456
|
summary?: string | undefined;
|
|
@@ -1557,10 +1467,10 @@ declare const client: import("vue").Ref<{
|
|
|
1557
1467
|
parameters?: {
|
|
1558
1468
|
required: boolean;
|
|
1559
1469
|
name: string;
|
|
1560
|
-
in: "path" | "
|
|
1470
|
+
in: "path" | "cookie" | "query" | "header";
|
|
1561
1471
|
deprecated: boolean;
|
|
1562
|
-
description?: string | undefined;
|
|
1563
1472
|
example?: unknown;
|
|
1473
|
+
description?: string | undefined;
|
|
1564
1474
|
schema?: unknown;
|
|
1565
1475
|
content?: unknown;
|
|
1566
1476
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -1574,11 +1484,11 @@ declare const client: import("vue").Ref<{
|
|
|
1574
1484
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
1575
1485
|
path: string;
|
|
1576
1486
|
type: "request";
|
|
1577
|
-
uid: string
|
|
1578
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
1579
|
-
selectedServerUid: string;
|
|
1580
|
-
servers: string[];
|
|
1581
|
-
examples: string[];
|
|
1487
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
1488
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
1489
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
1490
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
1491
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
1582
1492
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
1583
1493
|
description?: string | undefined;
|
|
1584
1494
|
summary?: string | undefined;
|
|
@@ -1595,10 +1505,10 @@ declare const client: import("vue").Ref<{
|
|
|
1595
1505
|
parameters?: {
|
|
1596
1506
|
required: boolean;
|
|
1597
1507
|
name: string;
|
|
1598
|
-
in: "path" | "
|
|
1508
|
+
in: "path" | "cookie" | "query" | "header";
|
|
1599
1509
|
deprecated: boolean;
|
|
1600
|
-
description?: string | undefined;
|
|
1601
1510
|
example?: unknown;
|
|
1511
|
+
description?: string | undefined;
|
|
1602
1512
|
schema?: unknown;
|
|
1603
1513
|
content?: unknown;
|
|
1604
1514
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -1610,15 +1520,15 @@ declare const client: import("vue").Ref<{
|
|
|
1610
1520
|
requestBody?: any;
|
|
1611
1521
|
responses?: Record<string, any> | undefined;
|
|
1612
1522
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1613
|
-
undo: (uid: string) => void;
|
|
1614
|
-
redo: (uid: string) => void;
|
|
1523
|
+
undo: (uid: string & import("zod").BRAND<"operation">) => void;
|
|
1524
|
+
redo: (uid: string & import("zod").BRAND<"operation">) => void;
|
|
1615
1525
|
reset: () => void;
|
|
1616
1526
|
};
|
|
1617
1527
|
findRequestParents: (r: import("@scalar/oas-utils/entities/spec").Request) => string[];
|
|
1618
1528
|
requestExampleMutators: {
|
|
1619
1529
|
rawAdd: (item: {
|
|
1620
1530
|
type: "requestExample";
|
|
1621
|
-
uid: string
|
|
1531
|
+
uid: string & import("zod").BRAND<"example">;
|
|
1622
1532
|
name: string;
|
|
1623
1533
|
parameters: {
|
|
1624
1534
|
path: {
|
|
@@ -1713,12 +1623,12 @@ declare const client: import("vue").Ref<{
|
|
|
1713
1623
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1714
1624
|
} | undefined;
|
|
1715
1625
|
};
|
|
1716
|
-
requestUid
|
|
1626
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
1717
1627
|
serverVariables?: Record<string, string[]> | undefined;
|
|
1718
1628
|
}) => void;
|
|
1719
1629
|
add: (request: import("@scalar/oas-utils/entities/spec").Request, _name?: string) => {
|
|
1720
1630
|
type: "requestExample";
|
|
1721
|
-
uid: string
|
|
1631
|
+
uid: string & import("zod").BRAND<"example">;
|
|
1722
1632
|
name: string;
|
|
1723
1633
|
parameters: {
|
|
1724
1634
|
path: {
|
|
@@ -1813,13 +1723,13 @@ declare const client: import("vue").Ref<{
|
|
|
1813
1723
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1814
1724
|
} | undefined;
|
|
1815
1725
|
};
|
|
1816
|
-
requestUid
|
|
1726
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
1817
1727
|
serverVariables?: Record<string, string[]> | undefined;
|
|
1818
1728
|
};
|
|
1819
1729
|
delete: (requestExample: import("@scalar/oas-utils/entities/spec").RequestExample) => void;
|
|
1820
1730
|
set: (item: {
|
|
1821
1731
|
type: "requestExample";
|
|
1822
|
-
uid: string
|
|
1732
|
+
uid: string & import("zod").BRAND<"example">;
|
|
1823
1733
|
name: string;
|
|
1824
1734
|
parameters: {
|
|
1825
1735
|
path: {
|
|
@@ -1914,12 +1824,12 @@ declare const client: import("vue").Ref<{
|
|
|
1914
1824
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1915
1825
|
} | undefined;
|
|
1916
1826
|
};
|
|
1917
|
-
requestUid
|
|
1827
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
1918
1828
|
serverVariables?: Record<string, string[]> | undefined;
|
|
1919
1829
|
}) => void;
|
|
1920
|
-
edit: <P extends "parameters" | "type" | "name" | "uid" | "body" | "requestUid" | "serverVariables" | "body.
|
|
1830
|
+
edit: <P extends "parameters" | "type" | "name" | "uid" | "body" | "requestUid" | "serverVariables" | "body.formData.value" | "parameters.cookies" | `parameters.cookies.${number}` | "parameters.path" | "parameters.headers" | "parameters.query" | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.examples` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.examples.${number}` | `parameters.cookies.${number}.enum.${number}` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.type.${number}` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.path.${number}` | `parameters.path.${number}.description` | `parameters.path.${number}.required` | `parameters.path.${number}.examples` | `parameters.path.${number}.type` | `parameters.path.${number}.default` | `parameters.path.${number}.key` | `parameters.path.${number}.file` | `parameters.path.${number}.value` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.format` | `parameters.path.${number}.maximum` | `parameters.path.${number}.minimum` | `parameters.path.${number}.examples.${number}` | `parameters.path.${number}.enum.${number}` | `parameters.path.${number}.enabled` | `parameters.path.${number}.type.${number}` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.headers.${number}` | `parameters.headers.${number}.description` | `parameters.headers.${number}.required` | `parameters.headers.${number}.examples` | `parameters.headers.${number}.type` | `parameters.headers.${number}.default` | `parameters.headers.${number}.key` | `parameters.headers.${number}.file` | `parameters.headers.${number}.value` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.format` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.examples.${number}` | `parameters.headers.${number}.enum.${number}` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.type.${number}` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.query.${number}` | `parameters.query.${number}.description` | `parameters.query.${number}.required` | `parameters.query.${number}.examples` | `parameters.query.${number}.type` | `parameters.query.${number}.default` | `parameters.query.${number}.key` | `parameters.query.${number}.file` | `parameters.query.${number}.value` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.format` | `parameters.query.${number}.maximum` | `parameters.query.${number}.minimum` | `parameters.query.${number}.examples.${number}` | `parameters.query.${number}.enum.${number}` | `parameters.query.${number}.enabled` | `parameters.query.${number}.type.${number}` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | "body.binary" | "body.formData" | "body.raw" | "body.activeBody" | "body.binary.type" | "body.binary.size" | "body.binary.slice" | "body.binary.text" | "body.binary.arrayBuffer" | "body.binary.stream" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.description` | `body.formData.value.${number}.required` | `body.formData.value.${number}.examples` | `body.formData.value.${number}.type` | `body.formData.value.${number}.default` | `body.formData.value.${number}.key` | `body.formData.value.${number}.file` | `body.formData.value.${number}.value` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.format` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.examples.${number}` | `body.formData.value.${number}.enum.${number}` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.type.${number}` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | "body.raw.value" | "body.raw.encoding" | `serverVariables.${string}`>(uid: (string & import("zod").BRAND<"example">) | null | undefined, path: P, value: P extends "parameters" | "type" | "name" | "uid" | "body" | "requestUid" | "serverVariables" ? {
|
|
1921
1831
|
type: "requestExample";
|
|
1922
|
-
uid: string
|
|
1832
|
+
uid: string & import("zod").BRAND<"example">;
|
|
1923
1833
|
name: string;
|
|
1924
1834
|
parameters: {
|
|
1925
1835
|
path: {
|
|
@@ -2014,11 +1924,11 @@ declare const client: import("vue").Ref<{
|
|
|
2014
1924
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
2015
1925
|
} | undefined;
|
|
2016
1926
|
};
|
|
2017
|
-
requestUid
|
|
1927
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
2018
1928
|
serverVariables?: Record<string, string[]> | undefined;
|
|
2019
1929
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "parameters" | "type" | "name" | "uid" | "body" | "requestUid" | "serverVariables" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2020
1930
|
type: "requestExample";
|
|
2021
|
-
uid: string
|
|
1931
|
+
uid: string & import("zod").BRAND<"example">;
|
|
2022
1932
|
name: string;
|
|
2023
1933
|
parameters: {
|
|
2024
1934
|
path: {
|
|
@@ -2113,11 +2023,11 @@ declare const client: import("vue").Ref<{
|
|
|
2113
2023
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
2114
2024
|
} | undefined;
|
|
2115
2025
|
};
|
|
2116
|
-
requestUid
|
|
2026
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
2117
2027
|
serverVariables?: Record<string, string[]> | undefined;
|
|
2118
2028
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2119
2029
|
type: "requestExample";
|
|
2120
|
-
uid: string
|
|
2030
|
+
uid: string & import("zod").BRAND<"example">;
|
|
2121
2031
|
name: string;
|
|
2122
2032
|
parameters: {
|
|
2123
2033
|
path: {
|
|
@@ -2212,12 +2122,12 @@ declare const client: import("vue").Ref<{
|
|
|
2212
2122
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
2213
2123
|
} | undefined;
|
|
2214
2124
|
};
|
|
2215
|
-
requestUid
|
|
2125
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
2216
2126
|
serverVariables?: Record<string, string[]> | undefined;
|
|
2217
2127
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2218
|
-
untrackedEdit: <P extends "parameters" | "type" | "name" | "uid" | "body" | "requestUid" | "serverVariables" | "body.
|
|
2128
|
+
untrackedEdit: <P extends "parameters" | "type" | "name" | "uid" | "body" | "requestUid" | "serverVariables" | "body.formData.value" | "parameters.cookies" | `parameters.cookies.${number}` | "parameters.path" | "parameters.headers" | "parameters.query" | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.examples` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.examples.${number}` | `parameters.cookies.${number}.enum.${number}` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.type.${number}` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.path.${number}` | `parameters.path.${number}.description` | `parameters.path.${number}.required` | `parameters.path.${number}.examples` | `parameters.path.${number}.type` | `parameters.path.${number}.default` | `parameters.path.${number}.key` | `parameters.path.${number}.file` | `parameters.path.${number}.value` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.format` | `parameters.path.${number}.maximum` | `parameters.path.${number}.minimum` | `parameters.path.${number}.examples.${number}` | `parameters.path.${number}.enum.${number}` | `parameters.path.${number}.enabled` | `parameters.path.${number}.type.${number}` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.headers.${number}` | `parameters.headers.${number}.description` | `parameters.headers.${number}.required` | `parameters.headers.${number}.examples` | `parameters.headers.${number}.type` | `parameters.headers.${number}.default` | `parameters.headers.${number}.key` | `parameters.headers.${number}.file` | `parameters.headers.${number}.value` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.format` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.examples.${number}` | `parameters.headers.${number}.enum.${number}` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.type.${number}` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.query.${number}` | `parameters.query.${number}.description` | `parameters.query.${number}.required` | `parameters.query.${number}.examples` | `parameters.query.${number}.type` | `parameters.query.${number}.default` | `parameters.query.${number}.key` | `parameters.query.${number}.file` | `parameters.query.${number}.value` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.format` | `parameters.query.${number}.maximum` | `parameters.query.${number}.minimum` | `parameters.query.${number}.examples.${number}` | `parameters.query.${number}.enum.${number}` | `parameters.query.${number}.enabled` | `parameters.query.${number}.type.${number}` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | "body.binary" | "body.formData" | "body.raw" | "body.activeBody" | "body.binary.type" | "body.binary.size" | "body.binary.slice" | "body.binary.text" | "body.binary.arrayBuffer" | "body.binary.stream" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.description` | `body.formData.value.${number}.required` | `body.formData.value.${number}.examples` | `body.formData.value.${number}.type` | `body.formData.value.${number}.default` | `body.formData.value.${number}.key` | `body.formData.value.${number}.file` | `body.formData.value.${number}.value` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.format` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.examples.${number}` | `body.formData.value.${number}.enum.${number}` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.type.${number}` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | "body.raw.value" | "body.raw.encoding" | `serverVariables.${string}`>(uid: string & import("zod").BRAND<"example">, path: P, value: P extends "parameters" | "type" | "name" | "uid" | "body" | "requestUid" | "serverVariables" ? {
|
|
2219
2129
|
type: "requestExample";
|
|
2220
|
-
uid: string
|
|
2130
|
+
uid: string & import("zod").BRAND<"example">;
|
|
2221
2131
|
name: string;
|
|
2222
2132
|
parameters: {
|
|
2223
2133
|
path: {
|
|
@@ -2312,11 +2222,11 @@ declare const client: import("vue").Ref<{
|
|
|
2312
2222
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
2313
2223
|
} | undefined;
|
|
2314
2224
|
};
|
|
2315
|
-
requestUid
|
|
2225
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
2316
2226
|
serverVariables?: Record<string, string[]> | undefined;
|
|
2317
2227
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "parameters" | "type" | "name" | "uid" | "body" | "requestUid" | "serverVariables" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2318
2228
|
type: "requestExample";
|
|
2319
|
-
uid: string
|
|
2229
|
+
uid: string & import("zod").BRAND<"example">;
|
|
2320
2230
|
name: string;
|
|
2321
2231
|
parameters: {
|
|
2322
2232
|
path: {
|
|
@@ -2411,11 +2321,11 @@ declare const client: import("vue").Ref<{
|
|
|
2411
2321
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
2412
2322
|
} | undefined;
|
|
2413
2323
|
};
|
|
2414
|
-
requestUid
|
|
2324
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
2415
2325
|
serverVariables?: Record<string, string[]> | undefined;
|
|
2416
2326
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2417
2327
|
type: "requestExample";
|
|
2418
|
-
uid: string
|
|
2328
|
+
uid: string & import("zod").BRAND<"example">;
|
|
2419
2329
|
name: string;
|
|
2420
2330
|
parameters: {
|
|
2421
2331
|
path: {
|
|
@@ -2510,25 +2420,25 @@ declare const client: import("vue").Ref<{
|
|
|
2510
2420
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
2511
2421
|
} | undefined;
|
|
2512
2422
|
};
|
|
2513
|
-
requestUid
|
|
2423
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
2514
2424
|
serverVariables?: Record<string, string[]> | undefined;
|
|
2515
2425
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2516
|
-
undo: (uid: string) => void;
|
|
2517
|
-
redo: (uid: string) => void;
|
|
2426
|
+
undo: (uid: string & import("zod").BRAND<"example">) => void;
|
|
2427
|
+
redo: (uid: string & import("zod").BRAND<"example">) => void;
|
|
2518
2428
|
reset: () => void;
|
|
2519
2429
|
};
|
|
2520
2430
|
securitySchemeMutators: {
|
|
2521
2431
|
rawAdd: (item: {
|
|
2522
2432
|
type: "apiKey";
|
|
2523
2433
|
value: string;
|
|
2524
|
-
uid: string
|
|
2434
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2525
2435
|
name: string;
|
|
2526
2436
|
nameKey: string;
|
|
2527
|
-
in: "
|
|
2437
|
+
in: "cookie" | "query" | "header";
|
|
2528
2438
|
description?: string | undefined;
|
|
2529
2439
|
} | {
|
|
2530
2440
|
type: "http";
|
|
2531
|
-
uid: string
|
|
2441
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2532
2442
|
nameKey: string;
|
|
2533
2443
|
scheme: "basic" | "bearer";
|
|
2534
2444
|
bearerFormat: string;
|
|
@@ -2538,13 +2448,13 @@ declare const client: import("vue").Ref<{
|
|
|
2538
2448
|
description?: string | undefined;
|
|
2539
2449
|
} | {
|
|
2540
2450
|
type: "openIdConnect";
|
|
2541
|
-
uid: string
|
|
2451
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2542
2452
|
nameKey: string;
|
|
2543
2453
|
openIdConnectUrl: string;
|
|
2544
2454
|
description?: string | undefined;
|
|
2545
2455
|
} | {
|
|
2546
2456
|
type: "oauth2";
|
|
2547
|
-
uid: string
|
|
2457
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2548
2458
|
nameKey: string;
|
|
2549
2459
|
flows: {
|
|
2550
2460
|
password?: {
|
|
@@ -2595,17 +2505,17 @@ declare const client: import("vue").Ref<{
|
|
|
2595
2505
|
};
|
|
2596
2506
|
description?: string | undefined;
|
|
2597
2507
|
}) => void;
|
|
2598
|
-
add: (payload: import("@scalar/oas-utils/entities/spec").SecuritySchemePayload, collectionUid:
|
|
2508
|
+
add: (payload: import("@scalar/oas-utils/entities/spec").SecuritySchemePayload, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => {
|
|
2599
2509
|
type: "apiKey";
|
|
2600
2510
|
value: string;
|
|
2601
|
-
uid: string
|
|
2511
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2602
2512
|
name: string;
|
|
2603
2513
|
nameKey: string;
|
|
2604
|
-
in: "
|
|
2514
|
+
in: "cookie" | "query" | "header";
|
|
2605
2515
|
description?: string | undefined;
|
|
2606
2516
|
} | {
|
|
2607
2517
|
type: "http";
|
|
2608
|
-
uid: string
|
|
2518
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2609
2519
|
nameKey: string;
|
|
2610
2520
|
scheme: "basic" | "bearer";
|
|
2611
2521
|
bearerFormat: string;
|
|
@@ -2615,13 +2525,13 @@ declare const client: import("vue").Ref<{
|
|
|
2615
2525
|
description?: string | undefined;
|
|
2616
2526
|
} | {
|
|
2617
2527
|
type: "openIdConnect";
|
|
2618
|
-
uid: string
|
|
2528
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2619
2529
|
nameKey: string;
|
|
2620
2530
|
openIdConnectUrl: string;
|
|
2621
2531
|
description?: string | undefined;
|
|
2622
2532
|
} | {
|
|
2623
2533
|
type: "oauth2";
|
|
2624
|
-
uid: string
|
|
2534
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2625
2535
|
nameKey: string;
|
|
2626
2536
|
flows: {
|
|
2627
2537
|
password?: {
|
|
@@ -2672,18 +2582,18 @@ declare const client: import("vue").Ref<{
|
|
|
2672
2582
|
};
|
|
2673
2583
|
description?: string | undefined;
|
|
2674
2584
|
};
|
|
2675
|
-
delete: (schemeUid:
|
|
2585
|
+
delete: (schemeUid: import("@scalar/oas-utils/entities/spec").SecurityScheme["uid"]) => void;
|
|
2676
2586
|
set: (item: {
|
|
2677
2587
|
type: "apiKey";
|
|
2678
2588
|
value: string;
|
|
2679
|
-
uid: string
|
|
2589
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2680
2590
|
name: string;
|
|
2681
2591
|
nameKey: string;
|
|
2682
|
-
in: "
|
|
2592
|
+
in: "cookie" | "query" | "header";
|
|
2683
2593
|
description?: string | undefined;
|
|
2684
2594
|
} | {
|
|
2685
2595
|
type: "http";
|
|
2686
|
-
uid: string
|
|
2596
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2687
2597
|
nameKey: string;
|
|
2688
2598
|
scheme: "basic" | "bearer";
|
|
2689
2599
|
bearerFormat: string;
|
|
@@ -2693,13 +2603,13 @@ declare const client: import("vue").Ref<{
|
|
|
2693
2603
|
description?: string | undefined;
|
|
2694
2604
|
} | {
|
|
2695
2605
|
type: "openIdConnect";
|
|
2696
|
-
uid: string
|
|
2606
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2697
2607
|
nameKey: string;
|
|
2698
2608
|
openIdConnectUrl: string;
|
|
2699
2609
|
description?: string | undefined;
|
|
2700
2610
|
} | {
|
|
2701
2611
|
type: "oauth2";
|
|
2702
|
-
uid: string
|
|
2612
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2703
2613
|
nameKey: string;
|
|
2704
2614
|
flows: {
|
|
2705
2615
|
password?: {
|
|
@@ -2750,33 +2660,33 @@ declare const client: import("vue").Ref<{
|
|
|
2750
2660
|
};
|
|
2751
2661
|
description?: string | undefined;
|
|
2752
2662
|
}) => void;
|
|
2753
|
-
edit: <P extends "description" | "type" | "name" | "in" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "flows" | "
|
|
2663
|
+
edit: <P extends "description" | "type" | "name" | "in" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "flows" | "password" | "username" | "value" | "token" | "flows.password" | "flows.implicit" | "flows.clientCredentials" | "flows.authorizationCode" | "flows.password.type" | "flows.password.password" | "flows.password.username" | "flows.password.token" | "flows.password.refreshUrl" | "flows.password.scopes" | "flows.password.selectedScopes" | "flows.password.x-scalar-client-id" | "flows.password.tokenUrl" | "flows.password.clientSecret" | `flows.password.scopes.${string}` | `flows.password.selectedScopes.${number}` | "flows.implicit.type" | "flows.implicit.token" | "flows.implicit.refreshUrl" | "flows.implicit.scopes" | "flows.implicit.selectedScopes" | "flows.implicit.x-scalar-client-id" | `flows.implicit.scopes.${string}` | `flows.implicit.selectedScopes.${number}` | "flows.implicit.authorizationUrl" | "flows.implicit.x-scalar-redirect-uri" | "flows.clientCredentials.type" | "flows.clientCredentials.token" | "flows.clientCredentials.refreshUrl" | "flows.clientCredentials.scopes" | "flows.clientCredentials.selectedScopes" | "flows.clientCredentials.x-scalar-client-id" | "flows.clientCredentials.tokenUrl" | "flows.clientCredentials.clientSecret" | `flows.clientCredentials.scopes.${string}` | `flows.clientCredentials.selectedScopes.${number}` | "flows.authorizationCode.type" | "flows.authorizationCode.token" | "flows.authorizationCode.refreshUrl" | "flows.authorizationCode.scopes" | "flows.authorizationCode.selectedScopes" | "flows.authorizationCode.x-scalar-client-id" | "flows.authorizationCode.tokenUrl" | "flows.authorizationCode.clientSecret" | `flows.authorizationCode.scopes.${string}` | `flows.authorizationCode.selectedScopes.${number}` | "flows.authorizationCode.authorizationUrl" | "flows.authorizationCode.x-scalar-redirect-uri" | "flows.authorizationCode.x-usePkce">(uid: (string & import("zod").BRAND<"securityScheme">) | null | undefined, path: P, value: (P extends "description" | "type" | "name" | "in" | "uid" | "nameKey" | "value" ? {
|
|
2754
2664
|
type: "apiKey";
|
|
2755
2665
|
value: string;
|
|
2756
|
-
uid: string
|
|
2666
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2757
2667
|
name: string;
|
|
2758
2668
|
nameKey: string;
|
|
2759
|
-
in: "
|
|
2669
|
+
in: "cookie" | "query" | "header";
|
|
2760
2670
|
description?: string | undefined;
|
|
2761
2671
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "type" | "name" | "in" | "uid" | "nameKey" | "value" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2762
2672
|
type: "apiKey";
|
|
2763
2673
|
value: string;
|
|
2764
|
-
uid: string
|
|
2674
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2765
2675
|
name: string;
|
|
2766
2676
|
nameKey: string;
|
|
2767
|
-
in: "
|
|
2677
|
+
in: "cookie" | "query" | "header";
|
|
2768
2678
|
description?: string | undefined;
|
|
2769
2679
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2770
2680
|
type: "apiKey";
|
|
2771
2681
|
value: string;
|
|
2772
|
-
uid: string
|
|
2682
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2773
2683
|
name: string;
|
|
2774
2684
|
nameKey: string;
|
|
2775
|
-
in: "
|
|
2685
|
+
in: "cookie" | "query" | "header";
|
|
2776
2686
|
description?: string | undefined;
|
|
2777
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "password" | "
|
|
2687
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "password" | "username" | "token" ? {
|
|
2778
2688
|
type: "http";
|
|
2779
|
-
uid: string
|
|
2689
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2780
2690
|
nameKey: string;
|
|
2781
2691
|
scheme: "basic" | "bearer";
|
|
2782
2692
|
bearerFormat: string;
|
|
@@ -2784,9 +2694,9 @@ declare const client: import("vue").Ref<{
|
|
|
2784
2694
|
password: string;
|
|
2785
2695
|
token: string;
|
|
2786
2696
|
description?: string | undefined;
|
|
2787
|
-
}[P] : P extends `${infer K}.${infer R_1}` ? K extends "description" | "type" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "password" | "
|
|
2697
|
+
}[P] : P extends `${infer K}.${infer R_1}` ? K extends "description" | "type" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "password" | "username" | "token" ? R_1 extends import("@scalar/object-utils/nested").Path<{
|
|
2788
2698
|
type: "http";
|
|
2789
|
-
uid: string
|
|
2699
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2790
2700
|
nameKey: string;
|
|
2791
2701
|
scheme: "basic" | "bearer";
|
|
2792
2702
|
bearerFormat: string;
|
|
@@ -2796,7 +2706,7 @@ declare const client: import("vue").Ref<{
|
|
|
2796
2706
|
description?: string | undefined;
|
|
2797
2707
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2798
2708
|
type: "http";
|
|
2799
|
-
uid: string
|
|
2709
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2800
2710
|
nameKey: string;
|
|
2801
2711
|
scheme: "basic" | "bearer";
|
|
2802
2712
|
bearerFormat: string;
|
|
@@ -2806,25 +2716,25 @@ declare const client: import("vue").Ref<{
|
|
|
2806
2716
|
description?: string | undefined;
|
|
2807
2717
|
}[K], R_1> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "openIdConnectUrl" ? {
|
|
2808
2718
|
type: "openIdConnect";
|
|
2809
|
-
uid: string
|
|
2719
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2810
2720
|
nameKey: string;
|
|
2811
2721
|
openIdConnectUrl: string;
|
|
2812
2722
|
description?: string | undefined;
|
|
2813
2723
|
}[P] : P extends `${infer K}.${infer R_2}` ? K extends "description" | "type" | "uid" | "nameKey" | "openIdConnectUrl" ? R_2 extends import("@scalar/object-utils/nested").Path<{
|
|
2814
2724
|
type: "openIdConnect";
|
|
2815
|
-
uid: string
|
|
2725
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2816
2726
|
nameKey: string;
|
|
2817
2727
|
openIdConnectUrl: string;
|
|
2818
2728
|
description?: string | undefined;
|
|
2819
2729
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2820
2730
|
type: "openIdConnect";
|
|
2821
|
-
uid: string
|
|
2731
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2822
2732
|
nameKey: string;
|
|
2823
2733
|
openIdConnectUrl: string;
|
|
2824
2734
|
description?: string | undefined;
|
|
2825
2735
|
}[K], R_2> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "flows" ? {
|
|
2826
2736
|
type: "oauth2";
|
|
2827
|
-
uid: string
|
|
2737
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2828
2738
|
nameKey: string;
|
|
2829
2739
|
flows: {
|
|
2830
2740
|
password?: {
|
|
@@ -2876,7 +2786,7 @@ declare const client: import("vue").Ref<{
|
|
|
2876
2786
|
description?: string | undefined;
|
|
2877
2787
|
}[P] : P extends `${infer K}.${infer R_3}` ? K extends "description" | "type" | "uid" | "nameKey" | "flows" ? R_3 extends import("@scalar/object-utils/nested").Path<{
|
|
2878
2788
|
type: "oauth2";
|
|
2879
|
-
uid: string
|
|
2789
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2880
2790
|
nameKey: string;
|
|
2881
2791
|
flows: {
|
|
2882
2792
|
password?: {
|
|
@@ -2928,7 +2838,7 @@ declare const client: import("vue").Ref<{
|
|
|
2928
2838
|
description?: string | undefined;
|
|
2929
2839
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2930
2840
|
type: "oauth2";
|
|
2931
|
-
uid: string
|
|
2841
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2932
2842
|
nameKey: string;
|
|
2933
2843
|
flows: {
|
|
2934
2844
|
password?: {
|
|
@@ -2979,33 +2889,33 @@ declare const client: import("vue").Ref<{
|
|
|
2979
2889
|
};
|
|
2980
2890
|
description?: string | undefined;
|
|
2981
2891
|
}[K], R_3> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
2982
|
-
untrackedEdit: <P extends "description" | "type" | "name" | "in" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "flows" | "
|
|
2892
|
+
untrackedEdit: <P extends "description" | "type" | "name" | "in" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "flows" | "password" | "username" | "value" | "token" | "flows.password" | "flows.implicit" | "flows.clientCredentials" | "flows.authorizationCode" | "flows.password.type" | "flows.password.password" | "flows.password.username" | "flows.password.token" | "flows.password.refreshUrl" | "flows.password.scopes" | "flows.password.selectedScopes" | "flows.password.x-scalar-client-id" | "flows.password.tokenUrl" | "flows.password.clientSecret" | `flows.password.scopes.${string}` | `flows.password.selectedScopes.${number}` | "flows.implicit.type" | "flows.implicit.token" | "flows.implicit.refreshUrl" | "flows.implicit.scopes" | "flows.implicit.selectedScopes" | "flows.implicit.x-scalar-client-id" | `flows.implicit.scopes.${string}` | `flows.implicit.selectedScopes.${number}` | "flows.implicit.authorizationUrl" | "flows.implicit.x-scalar-redirect-uri" | "flows.clientCredentials.type" | "flows.clientCredentials.token" | "flows.clientCredentials.refreshUrl" | "flows.clientCredentials.scopes" | "flows.clientCredentials.selectedScopes" | "flows.clientCredentials.x-scalar-client-id" | "flows.clientCredentials.tokenUrl" | "flows.clientCredentials.clientSecret" | `flows.clientCredentials.scopes.${string}` | `flows.clientCredentials.selectedScopes.${number}` | "flows.authorizationCode.type" | "flows.authorizationCode.token" | "flows.authorizationCode.refreshUrl" | "flows.authorizationCode.scopes" | "flows.authorizationCode.selectedScopes" | "flows.authorizationCode.x-scalar-client-id" | "flows.authorizationCode.tokenUrl" | "flows.authorizationCode.clientSecret" | `flows.authorizationCode.scopes.${string}` | `flows.authorizationCode.selectedScopes.${number}` | "flows.authorizationCode.authorizationUrl" | "flows.authorizationCode.x-scalar-redirect-uri" | "flows.authorizationCode.x-usePkce">(uid: string & import("zod").BRAND<"securityScheme">, path: P, value: (P extends "description" | "type" | "name" | "in" | "uid" | "nameKey" | "value" ? {
|
|
2983
2893
|
type: "apiKey";
|
|
2984
2894
|
value: string;
|
|
2985
|
-
uid: string
|
|
2895
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2986
2896
|
name: string;
|
|
2987
2897
|
nameKey: string;
|
|
2988
|
-
in: "
|
|
2898
|
+
in: "cookie" | "query" | "header";
|
|
2989
2899
|
description?: string | undefined;
|
|
2990
2900
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "type" | "name" | "in" | "uid" | "nameKey" | "value" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2991
2901
|
type: "apiKey";
|
|
2992
2902
|
value: string;
|
|
2993
|
-
uid: string
|
|
2903
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2994
2904
|
name: string;
|
|
2995
2905
|
nameKey: string;
|
|
2996
|
-
in: "
|
|
2906
|
+
in: "cookie" | "query" | "header";
|
|
2997
2907
|
description?: string | undefined;
|
|
2998
2908
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2999
2909
|
type: "apiKey";
|
|
3000
2910
|
value: string;
|
|
3001
|
-
uid: string
|
|
2911
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
3002
2912
|
name: string;
|
|
3003
2913
|
nameKey: string;
|
|
3004
|
-
in: "
|
|
2914
|
+
in: "cookie" | "query" | "header";
|
|
3005
2915
|
description?: string | undefined;
|
|
3006
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "password" | "
|
|
2916
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "password" | "username" | "token" ? {
|
|
3007
2917
|
type: "http";
|
|
3008
|
-
uid: string
|
|
2918
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
3009
2919
|
nameKey: string;
|
|
3010
2920
|
scheme: "basic" | "bearer";
|
|
3011
2921
|
bearerFormat: string;
|
|
@@ -3013,9 +2923,9 @@ declare const client: import("vue").Ref<{
|
|
|
3013
2923
|
password: string;
|
|
3014
2924
|
token: string;
|
|
3015
2925
|
description?: string | undefined;
|
|
3016
|
-
}[P] : P extends `${infer K}.${infer R_1}` ? K extends "description" | "type" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "password" | "
|
|
2926
|
+
}[P] : P extends `${infer K}.${infer R_1}` ? K extends "description" | "type" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "password" | "username" | "token" ? R_1 extends import("@scalar/object-utils/nested").Path<{
|
|
3017
2927
|
type: "http";
|
|
3018
|
-
uid: string
|
|
2928
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
3019
2929
|
nameKey: string;
|
|
3020
2930
|
scheme: "basic" | "bearer";
|
|
3021
2931
|
bearerFormat: string;
|
|
@@ -3025,7 +2935,7 @@ declare const client: import("vue").Ref<{
|
|
|
3025
2935
|
description?: string | undefined;
|
|
3026
2936
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
3027
2937
|
type: "http";
|
|
3028
|
-
uid: string
|
|
2938
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
3029
2939
|
nameKey: string;
|
|
3030
2940
|
scheme: "basic" | "bearer";
|
|
3031
2941
|
bearerFormat: string;
|
|
@@ -3035,25 +2945,25 @@ declare const client: import("vue").Ref<{
|
|
|
3035
2945
|
description?: string | undefined;
|
|
3036
2946
|
}[K], R_1> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "openIdConnectUrl" ? {
|
|
3037
2947
|
type: "openIdConnect";
|
|
3038
|
-
uid: string
|
|
2948
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
3039
2949
|
nameKey: string;
|
|
3040
2950
|
openIdConnectUrl: string;
|
|
3041
2951
|
description?: string | undefined;
|
|
3042
2952
|
}[P] : P extends `${infer K}.${infer R_2}` ? K extends "description" | "type" | "uid" | "nameKey" | "openIdConnectUrl" ? R_2 extends import("@scalar/object-utils/nested").Path<{
|
|
3043
2953
|
type: "openIdConnect";
|
|
3044
|
-
uid: string
|
|
2954
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
3045
2955
|
nameKey: string;
|
|
3046
2956
|
openIdConnectUrl: string;
|
|
3047
2957
|
description?: string | undefined;
|
|
3048
2958
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
3049
2959
|
type: "openIdConnect";
|
|
3050
|
-
uid: string
|
|
2960
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
3051
2961
|
nameKey: string;
|
|
3052
2962
|
openIdConnectUrl: string;
|
|
3053
2963
|
description?: string | undefined;
|
|
3054
2964
|
}[K], R_2> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "flows" ? {
|
|
3055
2965
|
type: "oauth2";
|
|
3056
|
-
uid: string
|
|
2966
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
3057
2967
|
nameKey: string;
|
|
3058
2968
|
flows: {
|
|
3059
2969
|
password?: {
|
|
@@ -3105,7 +3015,7 @@ declare const client: import("vue").Ref<{
|
|
|
3105
3015
|
description?: string | undefined;
|
|
3106
3016
|
}[P] : P extends `${infer K}.${infer R_3}` ? K extends "description" | "type" | "uid" | "nameKey" | "flows" ? R_3 extends import("@scalar/object-utils/nested").Path<{
|
|
3107
3017
|
type: "oauth2";
|
|
3108
|
-
uid: string
|
|
3018
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
3109
3019
|
nameKey: string;
|
|
3110
3020
|
flows: {
|
|
3111
3021
|
password?: {
|
|
@@ -3157,7 +3067,7 @@ declare const client: import("vue").Ref<{
|
|
|
3157
3067
|
description?: string | undefined;
|
|
3158
3068
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
3159
3069
|
type: "oauth2";
|
|
3160
|
-
uid: string
|
|
3070
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
3161
3071
|
nameKey: string;
|
|
3162
3072
|
flows: {
|
|
3163
3073
|
password?: {
|
|
@@ -3208,13 +3118,13 @@ declare const client: import("vue").Ref<{
|
|
|
3208
3118
|
};
|
|
3209
3119
|
description?: string | undefined;
|
|
3210
3120
|
}[K], R_3> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
3211
|
-
undo: (uid: string) => void;
|
|
3212
|
-
redo: (uid: string) => void;
|
|
3121
|
+
undo: (uid: string & import("zod").BRAND<"securityScheme">) => void;
|
|
3122
|
+
redo: (uid: string & import("zod").BRAND<"securityScheme">) => void;
|
|
3213
3123
|
reset: () => void;
|
|
3214
3124
|
};
|
|
3215
3125
|
serverMutators: {
|
|
3216
3126
|
rawAdd: (item: {
|
|
3217
|
-
uid: string
|
|
3127
|
+
uid: string & import("zod").BRAND<"server">;
|
|
3218
3128
|
url: string;
|
|
3219
3129
|
description?: string | undefined;
|
|
3220
3130
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -3223,7 +3133,7 @@ declare const client: import("vue").Ref<{
|
|
|
3223
3133
|
}> | undefined;
|
|
3224
3134
|
}) => void;
|
|
3225
3135
|
add: (payload: import("@scalar/oas-utils/entities/spec").ServerPayload, parentUid: string) => {
|
|
3226
|
-
uid: string
|
|
3136
|
+
uid: string & import("zod").BRAND<"server">;
|
|
3227
3137
|
url: string;
|
|
3228
3138
|
description?: string | undefined;
|
|
3229
3139
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -3231,9 +3141,9 @@ declare const client: import("vue").Ref<{
|
|
|
3231
3141
|
value?: string;
|
|
3232
3142
|
}> | undefined;
|
|
3233
3143
|
};
|
|
3234
|
-
delete: (serverUid:
|
|
3144
|
+
delete: (serverUid: import("@scalar/oas-utils/entities/spec").Server["uid"], collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void;
|
|
3235
3145
|
set: (item: {
|
|
3236
|
-
uid: string
|
|
3146
|
+
uid: string & import("zod").BRAND<"server">;
|
|
3237
3147
|
url: string;
|
|
3238
3148
|
description?: string | undefined;
|
|
3239
3149
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -3241,8 +3151,8 @@ declare const client: import("vue").Ref<{
|
|
|
3241
3151
|
value?: string;
|
|
3242
3152
|
}> | undefined;
|
|
3243
3153
|
}) => void;
|
|
3244
|
-
edit: <P extends "description" | "uid" | "url" | "variables" | `variables.${string}`>(uid: string, path: P, value: P extends "description" | "uid" | "url" | "variables" ? {
|
|
3245
|
-
uid: string
|
|
3154
|
+
edit: <P extends "description" | "uid" | "url" | "variables" | `variables.${string}`>(uid: (string & import("zod").BRAND<"server">) | null | undefined, path: P, value: P extends "description" | "uid" | "url" | "variables" ? {
|
|
3155
|
+
uid: string & import("zod").BRAND<"server">;
|
|
3246
3156
|
url: string;
|
|
3247
3157
|
description?: string | undefined;
|
|
3248
3158
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -3250,7 +3160,7 @@ declare const client: import("vue").Ref<{
|
|
|
3250
3160
|
value?: string;
|
|
3251
3161
|
}> | undefined;
|
|
3252
3162
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "uid" | "url" | "variables" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
3253
|
-
uid: string
|
|
3163
|
+
uid: string & import("zod").BRAND<"server">;
|
|
3254
3164
|
url: string;
|
|
3255
3165
|
description?: string | undefined;
|
|
3256
3166
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -3258,7 +3168,7 @@ declare const client: import("vue").Ref<{
|
|
|
3258
3168
|
value?: string;
|
|
3259
3169
|
}> | undefined;
|
|
3260
3170
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
3261
|
-
uid: string
|
|
3171
|
+
uid: string & import("zod").BRAND<"server">;
|
|
3262
3172
|
url: string;
|
|
3263
3173
|
description?: string | undefined;
|
|
3264
3174
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -3266,8 +3176,8 @@ declare const client: import("vue").Ref<{
|
|
|
3266
3176
|
value?: string;
|
|
3267
3177
|
}> | undefined;
|
|
3268
3178
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
3269
|
-
untrackedEdit: <P extends "description" | "uid" | "url" | "variables" | `variables.${string}`>(uid: string
|
|
3270
|
-
uid: string
|
|
3179
|
+
untrackedEdit: <P extends "description" | "uid" | "url" | "variables" | `variables.${string}`>(uid: string & import("zod").BRAND<"server">, path: P, value: P extends "description" | "uid" | "url" | "variables" ? {
|
|
3180
|
+
uid: string & import("zod").BRAND<"server">;
|
|
3271
3181
|
url: string;
|
|
3272
3182
|
description?: string | undefined;
|
|
3273
3183
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -3275,7 +3185,7 @@ declare const client: import("vue").Ref<{
|
|
|
3275
3185
|
value?: string;
|
|
3276
3186
|
}> | undefined;
|
|
3277
3187
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "uid" | "url" | "variables" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
3278
|
-
uid: string
|
|
3188
|
+
uid: string & import("zod").BRAND<"server">;
|
|
3279
3189
|
url: string;
|
|
3280
3190
|
description?: string | undefined;
|
|
3281
3191
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -3283,7 +3193,7 @@ declare const client: import("vue").Ref<{
|
|
|
3283
3193
|
value?: string;
|
|
3284
3194
|
}> | undefined;
|
|
3285
3195
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
3286
|
-
uid: string
|
|
3196
|
+
uid: string & import("zod").BRAND<"server">;
|
|
3287
3197
|
url: string;
|
|
3288
3198
|
description?: string | undefined;
|
|
3289
3199
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -3291,16 +3201,16 @@ declare const client: import("vue").Ref<{
|
|
|
3291
3201
|
value?: string;
|
|
3292
3202
|
}> | undefined;
|
|
3293
3203
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
3294
|
-
undo: (uid: string) => void;
|
|
3295
|
-
redo: (uid: string) => void;
|
|
3204
|
+
undo: (uid: string & import("zod").BRAND<"server">) => void;
|
|
3205
|
+
redo: (uid: string & import("zod").BRAND<"server">) => void;
|
|
3296
3206
|
reset: () => void;
|
|
3297
3207
|
};
|
|
3298
3208
|
tagMutators: {
|
|
3299
3209
|
rawAdd: (item: {
|
|
3300
3210
|
type: "tag";
|
|
3301
|
-
uid: string
|
|
3211
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
3302
3212
|
name: string;
|
|
3303
|
-
children: string[];
|
|
3213
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
3304
3214
|
description?: string | undefined;
|
|
3305
3215
|
externalDocs?: {
|
|
3306
3216
|
url: string;
|
|
@@ -3312,11 +3222,11 @@ declare const client: import("vue").Ref<{
|
|
|
3312
3222
|
"x-internal"?: boolean | undefined;
|
|
3313
3223
|
"x-scalar-ignore"?: boolean | undefined;
|
|
3314
3224
|
}) => void;
|
|
3315
|
-
add: (payload: import("@scalar/oas-utils/entities/spec").TagPayload, collectionUid:
|
|
3225
|
+
add: (payload: import("@scalar/oas-utils/entities/spec").TagPayload, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void | {
|
|
3316
3226
|
type: "tag";
|
|
3317
|
-
uid: string
|
|
3227
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
3318
3228
|
name: string;
|
|
3319
|
-
children: string[];
|
|
3229
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
3320
3230
|
description?: string | undefined;
|
|
3321
3231
|
externalDocs?: {
|
|
3322
3232
|
url: string;
|
|
@@ -3328,12 +3238,12 @@ declare const client: import("vue").Ref<{
|
|
|
3328
3238
|
"x-internal"?: boolean | undefined;
|
|
3329
3239
|
"x-scalar-ignore"?: boolean | undefined;
|
|
3330
3240
|
};
|
|
3331
|
-
delete: (tag: import("@scalar/oas-utils/entities/spec").Tag, collectionUid:
|
|
3241
|
+
delete: (tag: import("@scalar/oas-utils/entities/spec").Tag, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void;
|
|
3332
3242
|
set: (item: {
|
|
3333
3243
|
type: "tag";
|
|
3334
|
-
uid: string
|
|
3244
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
3335
3245
|
name: string;
|
|
3336
|
-
children: string[];
|
|
3246
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
3337
3247
|
description?: string | undefined;
|
|
3338
3248
|
externalDocs?: {
|
|
3339
3249
|
url: string;
|
|
@@ -3345,11 +3255,11 @@ declare const client: import("vue").Ref<{
|
|
|
3345
3255
|
"x-internal"?: boolean | undefined;
|
|
3346
3256
|
"x-scalar-ignore"?: boolean | undefined;
|
|
3347
3257
|
}) => void;
|
|
3348
|
-
edit: <P extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "externalDocs.description" | "externalDocs.url" | `children.${number}` | "x-scalar-children" | `x-scalar-children.${number}` | `x-scalar-children.${number}.tagName`>(uid: string, path: P, value: P extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "x-scalar-children" ? {
|
|
3258
|
+
edit: <P extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "externalDocs.description" | "externalDocs.url" | `children.${number}` | "x-scalar-children" | `x-scalar-children.${number}` | `x-scalar-children.${number}.tagName`>(uid: (string & import("zod").BRAND<"tag">) | null | undefined, path: P, value: P extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "x-scalar-children" ? {
|
|
3349
3259
|
type: "tag";
|
|
3350
|
-
uid: string
|
|
3260
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
3351
3261
|
name: string;
|
|
3352
|
-
children: string[];
|
|
3262
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
3353
3263
|
description?: string | undefined;
|
|
3354
3264
|
externalDocs?: {
|
|
3355
3265
|
url: string;
|
|
@@ -3362,9 +3272,9 @@ declare const client: import("vue").Ref<{
|
|
|
3362
3272
|
"x-scalar-ignore"?: boolean | undefined;
|
|
3363
3273
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "x-scalar-children" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
3364
3274
|
type: "tag";
|
|
3365
|
-
uid: string
|
|
3275
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
3366
3276
|
name: string;
|
|
3367
|
-
children: string[];
|
|
3277
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
3368
3278
|
description?: string | undefined;
|
|
3369
3279
|
externalDocs?: {
|
|
3370
3280
|
url: string;
|
|
@@ -3377,9 +3287,9 @@ declare const client: import("vue").Ref<{
|
|
|
3377
3287
|
"x-scalar-ignore"?: boolean | undefined;
|
|
3378
3288
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
3379
3289
|
type: "tag";
|
|
3380
|
-
uid: string
|
|
3290
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
3381
3291
|
name: string;
|
|
3382
|
-
children: string[];
|
|
3292
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
3383
3293
|
description?: string | undefined;
|
|
3384
3294
|
externalDocs?: {
|
|
3385
3295
|
url: string;
|
|
@@ -3391,11 +3301,11 @@ declare const client: import("vue").Ref<{
|
|
|
3391
3301
|
"x-internal"?: boolean | undefined;
|
|
3392
3302
|
"x-scalar-ignore"?: boolean | undefined;
|
|
3393
3303
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
3394
|
-
untrackedEdit: <P extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "externalDocs.description" | "externalDocs.url" | `children.${number}` | "x-scalar-children" | `x-scalar-children.${number}` | `x-scalar-children.${number}.tagName`>(uid: string
|
|
3304
|
+
untrackedEdit: <P extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "externalDocs.description" | "externalDocs.url" | `children.${number}` | "x-scalar-children" | `x-scalar-children.${number}` | `x-scalar-children.${number}.tagName`>(uid: string & import("zod").BRAND<"tag">, path: P, value: P extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "x-scalar-children" ? {
|
|
3395
3305
|
type: "tag";
|
|
3396
|
-
uid: string
|
|
3306
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
3397
3307
|
name: string;
|
|
3398
|
-
children: string[];
|
|
3308
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
3399
3309
|
description?: string | undefined;
|
|
3400
3310
|
externalDocs?: {
|
|
3401
3311
|
url: string;
|
|
@@ -3408,9 +3318,9 @@ declare const client: import("vue").Ref<{
|
|
|
3408
3318
|
"x-scalar-ignore"?: boolean | undefined;
|
|
3409
3319
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "x-scalar-children" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
3410
3320
|
type: "tag";
|
|
3411
|
-
uid: string
|
|
3321
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
3412
3322
|
name: string;
|
|
3413
|
-
children: string[];
|
|
3323
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
3414
3324
|
description?: string | undefined;
|
|
3415
3325
|
externalDocs?: {
|
|
3416
3326
|
url: string;
|
|
@@ -3423,9 +3333,9 @@ declare const client: import("vue").Ref<{
|
|
|
3423
3333
|
"x-scalar-ignore"?: boolean | undefined;
|
|
3424
3334
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
3425
3335
|
type: "tag";
|
|
3426
|
-
uid: string
|
|
3336
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
3427
3337
|
name: string;
|
|
3428
|
-
children: string[];
|
|
3338
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
3429
3339
|
description?: string | undefined;
|
|
3430
3340
|
externalDocs?: {
|
|
3431
3341
|
url: string;
|
|
@@ -3437,19 +3347,19 @@ declare const client: import("vue").Ref<{
|
|
|
3437
3347
|
"x-internal"?: boolean | undefined;
|
|
3438
3348
|
"x-scalar-ignore"?: boolean | undefined;
|
|
3439
3349
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
3440
|
-
undo: (uid: string) => void;
|
|
3441
|
-
redo: (uid: string) => void;
|
|
3350
|
+
undo: (uid: string & import("zod").BRAND<"tag">) => void;
|
|
3351
|
+
redo: (uid: string & import("zod").BRAND<"tag">) => void;
|
|
3442
3352
|
reset: () => void;
|
|
3443
3353
|
};
|
|
3444
3354
|
workspaceMutators: {
|
|
3445
3355
|
rawAdd: (item: {
|
|
3446
|
-
uid: string
|
|
3356
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
3447
3357
|
name: string;
|
|
3448
3358
|
description: string;
|
|
3449
|
-
collections: string[];
|
|
3359
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
3450
3360
|
environments: Record<string, string>;
|
|
3451
3361
|
activeEnvironmentId: string;
|
|
3452
|
-
cookies: string[];
|
|
3362
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
3453
3363
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
3454
3364
|
selectedHttpClient: {
|
|
3455
3365
|
targetKey: string;
|
|
@@ -3465,13 +3375,13 @@ declare const client: import("vue").Ref<{
|
|
|
3465
3375
|
proxyUrl?: string | undefined;
|
|
3466
3376
|
}) => void;
|
|
3467
3377
|
add: (payload?: Partial<import("@scalar/oas-utils/entities").Workspace>) => {
|
|
3468
|
-
uid: string
|
|
3378
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
3469
3379
|
name: string;
|
|
3470
3380
|
description: string;
|
|
3471
|
-
collections: string[];
|
|
3381
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
3472
3382
|
environments: Record<string, string>;
|
|
3473
3383
|
activeEnvironmentId: string;
|
|
3474
|
-
cookies: string[];
|
|
3384
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
3475
3385
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
3476
3386
|
selectedHttpClient: {
|
|
3477
3387
|
targetKey: string;
|
|
@@ -3486,15 +3396,15 @@ declare const client: import("vue").Ref<{
|
|
|
3486
3396
|
} | undefined;
|
|
3487
3397
|
proxyUrl?: string | undefined;
|
|
3488
3398
|
};
|
|
3489
|
-
delete: (uid:
|
|
3399
|
+
delete: (uid: import("@scalar/oas-utils/entities").Workspace["uid"]) => void;
|
|
3490
3400
|
set: (item: {
|
|
3491
|
-
uid: string
|
|
3401
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
3492
3402
|
name: string;
|
|
3493
3403
|
description: string;
|
|
3494
|
-
collections: string[];
|
|
3404
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
3495
3405
|
environments: Record<string, string>;
|
|
3496
3406
|
activeEnvironmentId: string;
|
|
3497
|
-
cookies: string[];
|
|
3407
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
3498
3408
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
3499
3409
|
selectedHttpClient: {
|
|
3500
3410
|
targetKey: string;
|
|
@@ -3509,14 +3419,14 @@ declare const client: import("vue").Ref<{
|
|
|
3509
3419
|
} | undefined;
|
|
3510
3420
|
proxyUrl?: string | undefined;
|
|
3511
3421
|
}) => void;
|
|
3512
|
-
edit: <P extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" | `cookies.${number}` | `collections.${number}` | `environments.${string}` | "selectedHttpClient.targetKey" | "selectedHttpClient.clientKey" | "hotKeyConfig.modifiers" | "hotKeyConfig.hotKeys" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}` | "hotKeyConfig.hotKeys.].event">(uid: string, path: P, value: P extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" ? {
|
|
3513
|
-
uid: string
|
|
3422
|
+
edit: <P extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" | `cookies.${number}` | `collections.${number}` | `environments.${string}` | "selectedHttpClient.targetKey" | "selectedHttpClient.clientKey" | "hotKeyConfig.modifiers" | "hotKeyConfig.hotKeys" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}` | "hotKeyConfig.hotKeys.].event">(uid: (string & import("zod").BRAND<"workspace">) | null | undefined, path: P, value: P extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" ? {
|
|
3423
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
3514
3424
|
name: string;
|
|
3515
3425
|
description: string;
|
|
3516
|
-
collections: string[];
|
|
3426
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
3517
3427
|
environments: Record<string, string>;
|
|
3518
3428
|
activeEnvironmentId: string;
|
|
3519
|
-
cookies: string[];
|
|
3429
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
3520
3430
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
3521
3431
|
selectedHttpClient: {
|
|
3522
3432
|
targetKey: string;
|
|
@@ -3531,13 +3441,13 @@ declare const client: import("vue").Ref<{
|
|
|
3531
3441
|
} | undefined;
|
|
3532
3442
|
proxyUrl?: string | undefined;
|
|
3533
3443
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
3534
|
-
uid: string
|
|
3444
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
3535
3445
|
name: string;
|
|
3536
3446
|
description: string;
|
|
3537
|
-
collections: string[];
|
|
3447
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
3538
3448
|
environments: Record<string, string>;
|
|
3539
3449
|
activeEnvironmentId: string;
|
|
3540
|
-
cookies: string[];
|
|
3450
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
3541
3451
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
3542
3452
|
selectedHttpClient: {
|
|
3543
3453
|
targetKey: string;
|
|
@@ -3552,13 +3462,13 @@ declare const client: import("vue").Ref<{
|
|
|
3552
3462
|
} | undefined;
|
|
3553
3463
|
proxyUrl?: string | undefined;
|
|
3554
3464
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
3555
|
-
uid: string
|
|
3465
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
3556
3466
|
name: string;
|
|
3557
3467
|
description: string;
|
|
3558
|
-
collections: string[];
|
|
3468
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
3559
3469
|
environments: Record<string, string>;
|
|
3560
3470
|
activeEnvironmentId: string;
|
|
3561
|
-
cookies: string[];
|
|
3471
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
3562
3472
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
3563
3473
|
selectedHttpClient: {
|
|
3564
3474
|
targetKey: string;
|
|
@@ -3573,14 +3483,14 @@ declare const client: import("vue").Ref<{
|
|
|
3573
3483
|
} | undefined;
|
|
3574
3484
|
proxyUrl?: string | undefined;
|
|
3575
3485
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
3576
|
-
untrackedEdit: <P extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" | `cookies.${number}` | `collections.${number}` | `environments.${string}` | "selectedHttpClient.targetKey" | "selectedHttpClient.clientKey" | "hotKeyConfig.modifiers" | "hotKeyConfig.hotKeys" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}` | "hotKeyConfig.hotKeys.].event">(uid: string, path: P, value: P extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" ? {
|
|
3577
|
-
uid: string
|
|
3486
|
+
untrackedEdit: <P extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" | `cookies.${number}` | `collections.${number}` | `environments.${string}` | "selectedHttpClient.targetKey" | "selectedHttpClient.clientKey" | "hotKeyConfig.modifiers" | "hotKeyConfig.hotKeys" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}` | "hotKeyConfig.hotKeys.].event">(uid: string & import("zod").BRAND<"workspace">, path: P, value: P extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" ? {
|
|
3487
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
3578
3488
|
name: string;
|
|
3579
3489
|
description: string;
|
|
3580
|
-
collections: string[];
|
|
3490
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
3581
3491
|
environments: Record<string, string>;
|
|
3582
3492
|
activeEnvironmentId: string;
|
|
3583
|
-
cookies: string[];
|
|
3493
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
3584
3494
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
3585
3495
|
selectedHttpClient: {
|
|
3586
3496
|
targetKey: string;
|
|
@@ -3595,13 +3505,13 @@ declare const client: import("vue").Ref<{
|
|
|
3595
3505
|
} | undefined;
|
|
3596
3506
|
proxyUrl?: string | undefined;
|
|
3597
3507
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
3598
|
-
uid: string
|
|
3508
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
3599
3509
|
name: string;
|
|
3600
3510
|
description: string;
|
|
3601
|
-
collections: string[];
|
|
3511
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
3602
3512
|
environments: Record<string, string>;
|
|
3603
3513
|
activeEnvironmentId: string;
|
|
3604
|
-
cookies: string[];
|
|
3514
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
3605
3515
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
3606
3516
|
selectedHttpClient: {
|
|
3607
3517
|
targetKey: string;
|
|
@@ -3616,13 +3526,13 @@ declare const client: import("vue").Ref<{
|
|
|
3616
3526
|
} | undefined;
|
|
3617
3527
|
proxyUrl?: string | undefined;
|
|
3618
3528
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
3619
|
-
uid: string
|
|
3529
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
3620
3530
|
name: string;
|
|
3621
3531
|
description: string;
|
|
3622
|
-
collections: string[];
|
|
3532
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
3623
3533
|
environments: Record<string, string>;
|
|
3624
3534
|
activeEnvironmentId: string;
|
|
3625
|
-
cookies: string[];
|
|
3535
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
3626
3536
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
3627
3537
|
selectedHttpClient: {
|
|
3628
3538
|
targetKey: string;
|
|
@@ -3637,12 +3547,12 @@ declare const client: import("vue").Ref<{
|
|
|
3637
3547
|
} | undefined;
|
|
3638
3548
|
proxyUrl?: string | undefined;
|
|
3639
3549
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
3640
|
-
undo: (uid: string) => void;
|
|
3641
|
-
redo: (uid: string) => void;
|
|
3550
|
+
undo: (uid: string & import("zod").BRAND<"workspace">) => void;
|
|
3551
|
+
redo: (uid: string & import("zod").BRAND<"workspace">) => void;
|
|
3642
3552
|
reset: () => void;
|
|
3643
3553
|
};
|
|
3644
|
-
addCollectionEnvironment: (environmentName: string, environment: import("@scalar/oas-utils/entities/spec").XScalarEnvironment, collectionUid:
|
|
3645
|
-
removeCollectionEnvironment: (environmentName: string, collectionUid:
|
|
3554
|
+
addCollectionEnvironment: (environmentName: string, environment: import("@scalar/oas-utils/entities/spec").XScalarEnvironment, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void;
|
|
3555
|
+
removeCollectionEnvironment: (environmentName: string, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void;
|
|
3646
3556
|
};
|
|
3647
3557
|
} | null, ApiClient | {
|
|
3648
3558
|
updateSpec: (spec: import("@scalar/types").SpecConfiguration) => Promise<void>;
|
|
@@ -3668,7 +3578,7 @@ declare const client: import("vue").Ref<{
|
|
|
3668
3578
|
};
|
|
3669
3579
|
store: {
|
|
3670
3580
|
servers: Record<string, {
|
|
3671
|
-
uid: string
|
|
3581
|
+
uid: string & import("zod").BRAND<"server">;
|
|
3672
3582
|
url: string;
|
|
3673
3583
|
description?: string | undefined;
|
|
3674
3584
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -3678,9 +3588,9 @@ declare const client: import("vue").Ref<{
|
|
|
3678
3588
|
}>;
|
|
3679
3589
|
tags: Record<string, {
|
|
3680
3590
|
type: "tag";
|
|
3681
|
-
uid: string
|
|
3591
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
3682
3592
|
name: string;
|
|
3683
|
-
children: string[];
|
|
3593
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
3684
3594
|
description?: string | undefined;
|
|
3685
3595
|
externalDocs?: {
|
|
3686
3596
|
url: string;
|
|
@@ -3695,14 +3605,14 @@ declare const client: import("vue").Ref<{
|
|
|
3695
3605
|
securitySchemes: Record<string, {
|
|
3696
3606
|
type: "apiKey";
|
|
3697
3607
|
value: string;
|
|
3698
|
-
uid: string
|
|
3608
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
3699
3609
|
name: string;
|
|
3700
3610
|
nameKey: string;
|
|
3701
|
-
in: "
|
|
3611
|
+
in: "cookie" | "query" | "header";
|
|
3702
3612
|
description?: string | undefined;
|
|
3703
3613
|
} | {
|
|
3704
3614
|
type: "http";
|
|
3705
|
-
uid: string
|
|
3615
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
3706
3616
|
nameKey: string;
|
|
3707
3617
|
scheme: "basic" | "bearer";
|
|
3708
3618
|
bearerFormat: string;
|
|
@@ -3712,13 +3622,13 @@ declare const client: import("vue").Ref<{
|
|
|
3712
3622
|
description?: string | undefined;
|
|
3713
3623
|
} | {
|
|
3714
3624
|
type: "openIdConnect";
|
|
3715
|
-
uid: string
|
|
3625
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
3716
3626
|
nameKey: string;
|
|
3717
3627
|
openIdConnectUrl: string;
|
|
3718
3628
|
description?: string | undefined;
|
|
3719
3629
|
} | {
|
|
3720
3630
|
type: "oauth2";
|
|
3721
|
-
uid: string
|
|
3631
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
3722
3632
|
nameKey: string;
|
|
3723
3633
|
flows: {
|
|
3724
3634
|
password?: {
|
|
@@ -3771,7 +3681,7 @@ declare const client: import("vue").Ref<{
|
|
|
3771
3681
|
}>;
|
|
3772
3682
|
cookies: Record<string, {
|
|
3773
3683
|
value: string;
|
|
3774
|
-
uid: string
|
|
3684
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
3775
3685
|
name: string;
|
|
3776
3686
|
path?: string | undefined;
|
|
3777
3687
|
domain?: string | undefined;
|
|
@@ -3779,11 +3689,11 @@ declare const client: import("vue").Ref<{
|
|
|
3779
3689
|
requests: Record<string, {
|
|
3780
3690
|
path: string;
|
|
3781
3691
|
type: "request";
|
|
3782
|
-
uid: string
|
|
3783
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
3784
|
-
selectedServerUid: string;
|
|
3785
|
-
servers: string[];
|
|
3786
|
-
examples: string[];
|
|
3692
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
3693
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
3694
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
3695
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
3696
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
3787
3697
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
3788
3698
|
description?: string | undefined;
|
|
3789
3699
|
summary?: string | undefined;
|
|
@@ -3800,10 +3710,10 @@ declare const client: import("vue").Ref<{
|
|
|
3800
3710
|
parameters?: {
|
|
3801
3711
|
required: boolean;
|
|
3802
3712
|
name: string;
|
|
3803
|
-
in: "path" | "
|
|
3713
|
+
in: "path" | "cookie" | "query" | "header";
|
|
3804
3714
|
deprecated: boolean;
|
|
3805
|
-
description?: string | undefined;
|
|
3806
3715
|
example?: unknown;
|
|
3716
|
+
description?: string | undefined;
|
|
3807
3717
|
schema?: unknown;
|
|
3808
3718
|
content?: unknown;
|
|
3809
3719
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -3823,13 +3733,13 @@ declare const client: import("vue").Ref<{
|
|
|
3823
3733
|
showSidebar: boolean;
|
|
3824
3734
|
hideClientButton: boolean;
|
|
3825
3735
|
workspaces: Record<string, {
|
|
3826
|
-
uid: string
|
|
3736
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
3827
3737
|
name: string;
|
|
3828
3738
|
description: string;
|
|
3829
|
-
collections: string[];
|
|
3739
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
3830
3740
|
environments: Record<string, string>;
|
|
3831
3741
|
activeEnvironmentId: string;
|
|
3832
|
-
cookies: string[];
|
|
3742
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
3833
3743
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
3834
3744
|
selectedHttpClient: {
|
|
3835
3745
|
targetKey: string;
|
|
@@ -3846,17 +3756,16 @@ declare const client: import("vue").Ref<{
|
|
|
3846
3756
|
}>;
|
|
3847
3757
|
collections: Record<string, {
|
|
3848
3758
|
type: "collection";
|
|
3849
|
-
uid: string
|
|
3850
|
-
children: string[];
|
|
3759
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
3760
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
3851
3761
|
openapi: string;
|
|
3852
3762
|
security: Record<string, string[]>[];
|
|
3853
3763
|
"x-scalar-icon": string;
|
|
3854
3764
|
securitySchemes: string[];
|
|
3855
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
tags: string[];
|
|
3765
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
3766
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
3767
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
3768
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
3860
3769
|
watchMode: boolean;
|
|
3861
3770
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
3862
3771
|
externalDocs?: {
|
|
@@ -3893,22 +3802,23 @@ declare const client: import("vue").Ref<{
|
|
|
3893
3802
|
color?: string | undefined;
|
|
3894
3803
|
}> | undefined;
|
|
3895
3804
|
"x-scalar-secrets"?: Record<string, {
|
|
3896
|
-
description?: string | undefined;
|
|
3897
3805
|
example?: string | undefined;
|
|
3806
|
+
description?: string | undefined;
|
|
3898
3807
|
}> | undefined;
|
|
3808
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
3899
3809
|
documentUrl?: string | undefined;
|
|
3900
3810
|
integration?: string | null | undefined;
|
|
3901
3811
|
}>;
|
|
3902
3812
|
environments: Record<string, {
|
|
3903
3813
|
value: string;
|
|
3904
|
-
uid: string
|
|
3814
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
3905
3815
|
name: string;
|
|
3906
3816
|
color: string;
|
|
3907
3817
|
isDefault?: boolean | undefined;
|
|
3908
3818
|
}>;
|
|
3909
3819
|
requestExamples: Record<string, {
|
|
3910
3820
|
type: "requestExample";
|
|
3911
|
-
uid: string
|
|
3821
|
+
uid: string & import("zod").BRAND<"example">;
|
|
3912
3822
|
name: string;
|
|
3913
3823
|
parameters: {
|
|
3914
3824
|
path: {
|
|
@@ -4003,7 +3913,7 @@ declare const client: import("vue").Ref<{
|
|
|
4003
3913
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4004
3914
|
} | undefined;
|
|
4005
3915
|
};
|
|
4006
|
-
requestUid
|
|
3916
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
4007
3917
|
serverVariables?: Record<string, string[]> | undefined;
|
|
4008
3918
|
}>;
|
|
4009
3919
|
setSidebarWidth: (width: string) => void;
|
|
@@ -4015,7 +3925,7 @@ declare const client: import("vue").Ref<{
|
|
|
4015
3925
|
description?: string | undefined;
|
|
4016
3926
|
url?: string | undefined;
|
|
4017
3927
|
} | undefined;
|
|
4018
|
-
children?:
|
|
3928
|
+
children?: string[] | undefined;
|
|
4019
3929
|
openapi?: string | undefined;
|
|
4020
3930
|
jsonSchemaDialect?: string | undefined;
|
|
4021
3931
|
info?: {
|
|
@@ -4049,15 +3959,15 @@ declare const client: import("vue").Ref<{
|
|
|
4049
3959
|
color?: string | undefined;
|
|
4050
3960
|
}> | undefined;
|
|
4051
3961
|
"x-scalar-secrets"?: Record<string, {
|
|
4052
|
-
description?: string | undefined;
|
|
4053
3962
|
example?: string | undefined;
|
|
3963
|
+
description?: string | undefined;
|
|
4054
3964
|
}> | undefined;
|
|
4055
3965
|
securitySchemes?: string[] | undefined;
|
|
4056
|
-
selectedSecuritySchemeUids?: (string |
|
|
3966
|
+
selectedSecuritySchemeUids?: (string | string[])[] | undefined;
|
|
4057
3967
|
selectedServerUid?: string | undefined;
|
|
4058
|
-
servers?:
|
|
4059
|
-
requests?:
|
|
4060
|
-
tags?:
|
|
3968
|
+
servers?: string[] | undefined;
|
|
3969
|
+
requests?: string[] | undefined;
|
|
3970
|
+
tags?: string[] | undefined;
|
|
4061
3971
|
documentUrl?: string | undefined;
|
|
4062
3972
|
watchMode?: boolean | undefined;
|
|
4063
3973
|
integration?: string | null | undefined;
|
|
@@ -4066,59 +3976,14 @@ declare const client: import("vue").Ref<{
|
|
|
4066
3976
|
setCollectionSecurity?: boolean;
|
|
4067
3977
|
shouldLoad?: boolean;
|
|
4068
3978
|
} & Pick<import("@scalar/types").ReferenceConfiguration, "servers">) => Promise<{
|
|
4069
|
-
|
|
4070
|
-
|
|
4071
|
-
|
|
4072
|
-
|
|
4073
|
-
|
|
4074
|
-
"
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
selectedServerUid: string;
|
|
4078
|
-
servers: string[];
|
|
4079
|
-
requests: string[];
|
|
4080
|
-
tags: string[];
|
|
4081
|
-
watchMode: boolean;
|
|
4082
|
-
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
4083
|
-
externalDocs?: {
|
|
4084
|
-
url: string;
|
|
4085
|
-
description?: string | undefined;
|
|
4086
|
-
} | undefined;
|
|
4087
|
-
jsonSchemaDialect?: string | undefined;
|
|
4088
|
-
info?: {
|
|
4089
|
-
title: string;
|
|
4090
|
-
version: string;
|
|
4091
|
-
description?: string | undefined;
|
|
4092
|
-
summary?: string | undefined;
|
|
4093
|
-
termsOfService?: string | undefined;
|
|
4094
|
-
contact?: {
|
|
4095
|
-
name?: string | undefined;
|
|
4096
|
-
url?: string | undefined;
|
|
4097
|
-
email?: string | undefined;
|
|
4098
|
-
} | undefined;
|
|
4099
|
-
license?: {
|
|
4100
|
-
name: string;
|
|
4101
|
-
identifier?: string | undefined;
|
|
4102
|
-
url?: string | undefined;
|
|
4103
|
-
} | undefined;
|
|
4104
|
-
} | undefined;
|
|
4105
|
-
components?: Record<string, unknown> | undefined;
|
|
4106
|
-
webhooks?: Record<string, unknown> | undefined;
|
|
4107
|
-
"x-scalar-active-environment"?: string | undefined;
|
|
4108
|
-
"x-scalar-environments"?: Record<string, {
|
|
4109
|
-
variables: Record<string, string | {
|
|
4110
|
-
default: string;
|
|
4111
|
-
description?: string | undefined;
|
|
4112
|
-
}>;
|
|
4113
|
-
description?: string | undefined;
|
|
4114
|
-
color?: string | undefined;
|
|
4115
|
-
}> | undefined;
|
|
4116
|
-
"x-scalar-secrets"?: Record<string, {
|
|
4117
|
-
description?: string | undefined;
|
|
4118
|
-
example?: string | undefined;
|
|
4119
|
-
}> | undefined;
|
|
4120
|
-
documentUrl?: string | undefined;
|
|
4121
|
-
integration?: string | null | undefined;
|
|
3979
|
+
error: false;
|
|
3980
|
+
collection: import("@scalar/oas-utils/entities/spec").Collection;
|
|
3981
|
+
requests: import("@scalar/oas-utils/entities/spec").Request[];
|
|
3982
|
+
schema: import("@scalar/openapi-types").OpenAPIV3_1.Document;
|
|
3983
|
+
examples: import("@scalar/oas-utils/entities/spec").RequestExample[];
|
|
3984
|
+
servers: import("@scalar/oas-utils/entities/spec").Server[];
|
|
3985
|
+
tags: import("@scalar/oas-utils/entities/spec").Tag[];
|
|
3986
|
+
securitySchemes: import("@scalar/oas-utils/entities/spec").SecurityScheme[];
|
|
4122
3987
|
} | undefined>;
|
|
4123
3988
|
importSpecFromUrl: (url: string, workspaceUid: string, { proxyUrl, ...options }?: Omit<Pick<{
|
|
4124
3989
|
type?: "collection" | undefined;
|
|
@@ -4127,7 +3992,7 @@ declare const client: import("vue").Ref<{
|
|
|
4127
3992
|
description?: string | undefined;
|
|
4128
3993
|
url?: string | undefined;
|
|
4129
3994
|
} | undefined;
|
|
4130
|
-
children?:
|
|
3995
|
+
children?: string[] | undefined;
|
|
4131
3996
|
openapi?: string | undefined;
|
|
4132
3997
|
jsonSchemaDialect?: string | undefined;
|
|
4133
3998
|
info?: {
|
|
@@ -4161,15 +4026,15 @@ declare const client: import("vue").Ref<{
|
|
|
4161
4026
|
color?: string | undefined;
|
|
4162
4027
|
}> | undefined;
|
|
4163
4028
|
"x-scalar-secrets"?: Record<string, {
|
|
4164
|
-
description?: string | undefined;
|
|
4165
4029
|
example?: string | undefined;
|
|
4030
|
+
description?: string | undefined;
|
|
4166
4031
|
}> | undefined;
|
|
4167
4032
|
securitySchemes?: string[] | undefined;
|
|
4168
|
-
selectedSecuritySchemeUids?: (string |
|
|
4033
|
+
selectedSecuritySchemeUids?: (string | string[])[] | undefined;
|
|
4169
4034
|
selectedServerUid?: string | undefined;
|
|
4170
|
-
servers?:
|
|
4171
|
-
requests?:
|
|
4172
|
-
tags?:
|
|
4035
|
+
servers?: string[] | undefined;
|
|
4036
|
+
requests?: string[] | undefined;
|
|
4037
|
+
tags?: string[] | undefined;
|
|
4173
4038
|
documentUrl?: string | undefined;
|
|
4174
4039
|
watchMode?: boolean | undefined;
|
|
4175
4040
|
integration?: string | null | undefined;
|
|
@@ -4184,7 +4049,7 @@ declare const client: import("vue").Ref<{
|
|
|
4184
4049
|
description?: string | undefined;
|
|
4185
4050
|
url?: string | undefined;
|
|
4186
4051
|
} | undefined;
|
|
4187
|
-
children?:
|
|
4052
|
+
children?: string[] | undefined;
|
|
4188
4053
|
openapi?: string | undefined;
|
|
4189
4054
|
jsonSchemaDialect?: string | undefined;
|
|
4190
4055
|
info?: {
|
|
@@ -4218,15 +4083,15 @@ declare const client: import("vue").Ref<{
|
|
|
4218
4083
|
color?: string | undefined;
|
|
4219
4084
|
}> | undefined;
|
|
4220
4085
|
"x-scalar-secrets"?: Record<string, {
|
|
4221
|
-
description?: string | undefined;
|
|
4222
4086
|
example?: string | undefined;
|
|
4087
|
+
description?: string | undefined;
|
|
4223
4088
|
}> | undefined;
|
|
4224
4089
|
securitySchemes?: string[] | undefined;
|
|
4225
|
-
selectedSecuritySchemeUids?: (string |
|
|
4090
|
+
selectedSecuritySchemeUids?: (string | string[])[] | undefined;
|
|
4226
4091
|
selectedServerUid?: string | undefined;
|
|
4227
|
-
servers?:
|
|
4228
|
-
requests?:
|
|
4229
|
-
tags?:
|
|
4092
|
+
servers?: string[] | undefined;
|
|
4093
|
+
requests?: string[] | undefined;
|
|
4094
|
+
tags?: string[] | undefined;
|
|
4230
4095
|
documentUrl?: string | undefined;
|
|
4231
4096
|
watchMode?: boolean | undefined;
|
|
4232
4097
|
integration?: string | null | undefined;
|
|
@@ -4235,132 +4100,86 @@ declare const client: import("vue").Ref<{
|
|
|
4235
4100
|
setCollectionSecurity?: boolean;
|
|
4236
4101
|
shouldLoad?: boolean;
|
|
4237
4102
|
} & Pick<import("@scalar/types").ReferenceConfiguration, "servers">) => Promise<{
|
|
4238
|
-
|
|
4239
|
-
|
|
4240
|
-
|
|
4241
|
-
|
|
4242
|
-
|
|
4243
|
-
"
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
selectedServerUid: string;
|
|
4247
|
-
servers: string[];
|
|
4248
|
-
requests: string[];
|
|
4249
|
-
tags: string[];
|
|
4250
|
-
watchMode: boolean;
|
|
4251
|
-
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
4252
|
-
externalDocs?: {
|
|
4253
|
-
url: string;
|
|
4254
|
-
description?: string | undefined;
|
|
4255
|
-
} | undefined;
|
|
4256
|
-
jsonSchemaDialect?: string | undefined;
|
|
4257
|
-
info?: {
|
|
4258
|
-
title: string;
|
|
4259
|
-
version: string;
|
|
4260
|
-
description?: string | undefined;
|
|
4261
|
-
summary?: string | undefined;
|
|
4262
|
-
termsOfService?: string | undefined;
|
|
4263
|
-
contact?: {
|
|
4264
|
-
name?: string | undefined;
|
|
4265
|
-
url?: string | undefined;
|
|
4266
|
-
email?: string | undefined;
|
|
4267
|
-
} | undefined;
|
|
4268
|
-
license?: {
|
|
4269
|
-
name: string;
|
|
4270
|
-
identifier?: string | undefined;
|
|
4271
|
-
url?: string | undefined;
|
|
4272
|
-
} | undefined;
|
|
4273
|
-
} | undefined;
|
|
4274
|
-
components?: Record<string, unknown> | undefined;
|
|
4275
|
-
webhooks?: Record<string, unknown> | undefined;
|
|
4276
|
-
"x-scalar-active-environment"?: string | undefined;
|
|
4277
|
-
"x-scalar-environments"?: Record<string, {
|
|
4278
|
-
variables: Record<string, string | {
|
|
4279
|
-
default: string;
|
|
4280
|
-
description?: string | undefined;
|
|
4281
|
-
}>;
|
|
4282
|
-
description?: string | undefined;
|
|
4283
|
-
color?: string | undefined;
|
|
4284
|
-
}> | undefined;
|
|
4285
|
-
"x-scalar-secrets"?: Record<string, {
|
|
4286
|
-
description?: string | undefined;
|
|
4287
|
-
example?: string | undefined;
|
|
4288
|
-
}> | undefined;
|
|
4289
|
-
documentUrl?: string | undefined;
|
|
4290
|
-
integration?: string | null | undefined;
|
|
4103
|
+
error: false;
|
|
4104
|
+
collection: import("@scalar/oas-utils/entities/spec").Collection;
|
|
4105
|
+
requests: import("@scalar/oas-utils/entities/spec").Request[];
|
|
4106
|
+
schema: import("@scalar/openapi-types").OpenAPIV3_1.Document;
|
|
4107
|
+
examples: import("@scalar/oas-utils/entities/spec").RequestExample[];
|
|
4108
|
+
servers: import("@scalar/oas-utils/entities/spec").Server[];
|
|
4109
|
+
tags: import("@scalar/oas-utils/entities/spec").Tag[];
|
|
4110
|
+
securitySchemes: import("@scalar/oas-utils/entities/spec").SecurityScheme[];
|
|
4291
4111
|
} | undefined>>>>>;
|
|
4292
4112
|
cookieMutators: {
|
|
4293
4113
|
add: (item: {
|
|
4294
4114
|
value: string;
|
|
4295
|
-
uid: string
|
|
4115
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
4296
4116
|
name: string;
|
|
4297
4117
|
path?: string | undefined;
|
|
4298
4118
|
domain?: string | undefined;
|
|
4299
4119
|
}) => void;
|
|
4300
|
-
delete: (uid: string) => void;
|
|
4120
|
+
delete: (uid: (string & import("zod").BRAND<"cookie">) | null | undefined) => void;
|
|
4301
4121
|
set: (item: {
|
|
4302
4122
|
value: string;
|
|
4303
|
-
uid: string
|
|
4123
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
4304
4124
|
name: string;
|
|
4305
4125
|
path?: string | undefined;
|
|
4306
4126
|
domain?: string | undefined;
|
|
4307
4127
|
}) => void;
|
|
4308
|
-
edit: <P extends "name" | "uid" | "path" | "value" | "domain">(uid: string, path: P, value: P extends "name" | "uid" | "path" | "value" | "domain" ? {
|
|
4128
|
+
edit: <P extends "name" | "uid" | "path" | "value" | "domain">(uid: (string & import("zod").BRAND<"cookie">) | null | undefined, path: P, value: P extends "name" | "uid" | "path" | "value" | "domain" ? {
|
|
4309
4129
|
value: string;
|
|
4310
|
-
uid: string
|
|
4130
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
4311
4131
|
name: string;
|
|
4312
4132
|
path?: string | undefined;
|
|
4313
4133
|
domain?: string | undefined;
|
|
4314
4134
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "name" | "uid" | "path" | "value" | "domain" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
4315
4135
|
value: string;
|
|
4316
|
-
uid: string
|
|
4136
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
4317
4137
|
name: string;
|
|
4318
4138
|
path?: string | undefined;
|
|
4319
4139
|
domain?: string | undefined;
|
|
4320
4140
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
4321
4141
|
value: string;
|
|
4322
|
-
uid: string
|
|
4142
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
4323
4143
|
name: string;
|
|
4324
4144
|
path?: string | undefined;
|
|
4325
4145
|
domain?: string | undefined;
|
|
4326
4146
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4327
|
-
untrackedEdit: <P extends "name" | "uid" | "path" | "value" | "domain">(uid: string
|
|
4147
|
+
untrackedEdit: <P extends "name" | "uid" | "path" | "value" | "domain">(uid: string & import("zod").BRAND<"cookie">, path: P, value: P extends "name" | "uid" | "path" | "value" | "domain" ? {
|
|
4328
4148
|
value: string;
|
|
4329
|
-
uid: string
|
|
4149
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
4330
4150
|
name: string;
|
|
4331
4151
|
path?: string | undefined;
|
|
4332
4152
|
domain?: string | undefined;
|
|
4333
4153
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "name" | "uid" | "path" | "value" | "domain" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
4334
4154
|
value: string;
|
|
4335
|
-
uid: string
|
|
4155
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
4336
4156
|
name: string;
|
|
4337
4157
|
path?: string | undefined;
|
|
4338
4158
|
domain?: string | undefined;
|
|
4339
4159
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
4340
4160
|
value: string;
|
|
4341
|
-
uid: string
|
|
4161
|
+
uid: string & import("zod").BRAND<"cookie">;
|
|
4342
4162
|
name: string;
|
|
4343
4163
|
path?: string | undefined;
|
|
4344
4164
|
domain?: string | undefined;
|
|
4345
4165
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4346
|
-
undo: (uid: string) => void;
|
|
4347
|
-
redo: (uid: string) => void;
|
|
4166
|
+
undo: (uid: string & import("zod").BRAND<"cookie">) => void;
|
|
4167
|
+
redo: (uid: string & import("zod").BRAND<"cookie">) => void;
|
|
4348
4168
|
reset: () => void;
|
|
4349
4169
|
};
|
|
4350
4170
|
collectionMutators: {
|
|
4351
4171
|
rawAdd: (item: {
|
|
4352
4172
|
type: "collection";
|
|
4353
|
-
uid: string
|
|
4354
|
-
children: string[];
|
|
4173
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
4174
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
4355
4175
|
openapi: string;
|
|
4356
4176
|
security: Record<string, string[]>[];
|
|
4357
4177
|
"x-scalar-icon": string;
|
|
4358
4178
|
securitySchemes: string[];
|
|
4359
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
tags: string[];
|
|
4179
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
4180
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
4181
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
4182
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
4364
4183
|
watchMode: boolean;
|
|
4365
4184
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
4366
4185
|
externalDocs?: {
|
|
@@ -4397,25 +4216,25 @@ declare const client: import("vue").Ref<{
|
|
|
4397
4216
|
color?: string | undefined;
|
|
4398
4217
|
}> | undefined;
|
|
4399
4218
|
"x-scalar-secrets"?: Record<string, {
|
|
4400
|
-
description?: string | undefined;
|
|
4401
4219
|
example?: string | undefined;
|
|
4220
|
+
description?: string | undefined;
|
|
4402
4221
|
}> | undefined;
|
|
4222
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
4403
4223
|
documentUrl?: string | undefined;
|
|
4404
4224
|
integration?: string | null | undefined;
|
|
4405
4225
|
}) => void;
|
|
4406
|
-
add: (payload: import("@scalar/oas-utils/entities/spec").CollectionPayload, workspaceUid:
|
|
4226
|
+
add: (payload: import("@scalar/oas-utils/entities/spec").CollectionPayload, workspaceUid: import("@scalar/oas-utils/entities").Workspace["uid"]) => {
|
|
4407
4227
|
type: "collection";
|
|
4408
|
-
uid: string
|
|
4409
|
-
children: string[];
|
|
4228
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
4229
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
4410
4230
|
openapi: string;
|
|
4411
4231
|
security: Record<string, string[]>[];
|
|
4412
4232
|
"x-scalar-icon": string;
|
|
4413
4233
|
securitySchemes: string[];
|
|
4414
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
4415
|
-
|
|
4416
|
-
|
|
4417
|
-
|
|
4418
|
-
tags: string[];
|
|
4234
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
4235
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
4236
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
4237
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
4419
4238
|
watchMode: boolean;
|
|
4420
4239
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
4421
4240
|
externalDocs?: {
|
|
@@ -4452,28 +4271,28 @@ declare const client: import("vue").Ref<{
|
|
|
4452
4271
|
color?: string | undefined;
|
|
4453
4272
|
}> | undefined;
|
|
4454
4273
|
"x-scalar-secrets"?: Record<string, {
|
|
4455
|
-
description?: string | undefined;
|
|
4456
4274
|
example?: string | undefined;
|
|
4275
|
+
description?: string | undefined;
|
|
4457
4276
|
}> | undefined;
|
|
4277
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
4458
4278
|
documentUrl?: string | undefined;
|
|
4459
4279
|
integration?: string | null | undefined;
|
|
4460
4280
|
};
|
|
4461
4281
|
delete: (collection: import("@scalar/oas-utils/entities/spec").Collection, workspace: import("@scalar/oas-utils/entities").Workspace) => void;
|
|
4462
|
-
addEnvironment: (environmentName: string, environment: import("@scalar/oas-utils/entities/spec").XScalarEnvironment, collectionUid:
|
|
4463
|
-
removeEnvironment: (environmentName: string, collectionUid:
|
|
4282
|
+
addEnvironment: (environmentName: string, environment: import("@scalar/oas-utils/entities/spec").XScalarEnvironment, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void;
|
|
4283
|
+
removeEnvironment: (environmentName: string, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void;
|
|
4464
4284
|
set: (item: {
|
|
4465
4285
|
type: "collection";
|
|
4466
|
-
uid: string
|
|
4467
|
-
children: string[];
|
|
4286
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
4287
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
4468
4288
|
openapi: string;
|
|
4469
4289
|
security: Record<string, string[]>[];
|
|
4470
4290
|
"x-scalar-icon": string;
|
|
4471
4291
|
securitySchemes: string[];
|
|
4472
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
4473
|
-
|
|
4474
|
-
|
|
4475
|
-
|
|
4476
|
-
tags: string[];
|
|
4292
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
4293
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
4294
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
4295
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
4477
4296
|
watchMode: boolean;
|
|
4478
4297
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
4479
4298
|
externalDocs?: {
|
|
@@ -4510,25 +4329,25 @@ declare const client: import("vue").Ref<{
|
|
|
4510
4329
|
color?: string | undefined;
|
|
4511
4330
|
}> | undefined;
|
|
4512
4331
|
"x-scalar-secrets"?: Record<string, {
|
|
4513
|
-
description?: string | undefined;
|
|
4514
4332
|
example?: string | undefined;
|
|
4333
|
+
description?: string | undefined;
|
|
4515
4334
|
}> | undefined;
|
|
4335
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
4516
4336
|
documentUrl?: string | undefined;
|
|
4517
4337
|
integration?: string | null | undefined;
|
|
4518
4338
|
}) => void;
|
|
4519
|
-
edit: <P extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "
|
|
4339
|
+
edit: <P extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "watchMode" | "watchModeStatus" | "jsonSchemaDialect" | "info" | "components" | "webhooks" | "x-scalar-active-environment" | "x-scalar-secrets" | "selectedServerUid" | "documentUrl" | "integration" | `servers.${number}` | `tags.${number}` | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `requests.${number}` | `x-scalar-environments.${string}` | `children.${number}` | `securitySchemes.${number}` | `selectedSecuritySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}.${number}` | "info.summary" | "info.description" | "info.title" | "info.version" | "info.termsOfService" | "info.contact" | "info.license" | "info.contact.name" | "info.contact.url" | "info.contact.email" | "info.license.name" | "info.license.url" | "info.license.identifier" | `components.${string}` | `webhooks.${string}` | `x-scalar-secrets.${string}`>(uid: (string & import("zod").BRAND<"collection">) | null | undefined, path: P, value: P extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "watchMode" | "watchModeStatus" | "jsonSchemaDialect" | "info" | "components" | "webhooks" | "x-scalar-active-environment" | "x-scalar-secrets" | "selectedServerUid" | "documentUrl" | "integration" ? {
|
|
4520
4340
|
type: "collection";
|
|
4521
|
-
uid: string
|
|
4522
|
-
children: string[];
|
|
4341
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
4342
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
4523
4343
|
openapi: string;
|
|
4524
4344
|
security: Record<string, string[]>[];
|
|
4525
4345
|
"x-scalar-icon": string;
|
|
4526
4346
|
securitySchemes: string[];
|
|
4527
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
4528
|
-
|
|
4529
|
-
|
|
4530
|
-
|
|
4531
|
-
tags: string[];
|
|
4347
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
4348
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
4349
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
4350
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
4532
4351
|
watchMode: boolean;
|
|
4533
4352
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
4534
4353
|
externalDocs?: {
|
|
@@ -4565,24 +4384,24 @@ declare const client: import("vue").Ref<{
|
|
|
4565
4384
|
color?: string | undefined;
|
|
4566
4385
|
}> | undefined;
|
|
4567
4386
|
"x-scalar-secrets"?: Record<string, {
|
|
4568
|
-
description?: string | undefined;
|
|
4569
4387
|
example?: string | undefined;
|
|
4388
|
+
description?: string | undefined;
|
|
4570
4389
|
}> | undefined;
|
|
4390
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
4571
4391
|
documentUrl?: string | undefined;
|
|
4572
4392
|
integration?: string | null | undefined;
|
|
4573
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "
|
|
4393
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "watchMode" | "watchModeStatus" | "jsonSchemaDialect" | "info" | "components" | "webhooks" | "x-scalar-active-environment" | "x-scalar-secrets" | "selectedServerUid" | "documentUrl" | "integration" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
4574
4394
|
type: "collection";
|
|
4575
|
-
uid: string
|
|
4576
|
-
children: string[];
|
|
4395
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
4396
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
4577
4397
|
openapi: string;
|
|
4578
4398
|
security: Record<string, string[]>[];
|
|
4579
4399
|
"x-scalar-icon": string;
|
|
4580
4400
|
securitySchemes: string[];
|
|
4581
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
4582
|
-
|
|
4583
|
-
|
|
4584
|
-
|
|
4585
|
-
tags: string[];
|
|
4401
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
4402
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
4403
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
4404
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
4586
4405
|
watchMode: boolean;
|
|
4587
4406
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
4588
4407
|
externalDocs?: {
|
|
@@ -4619,24 +4438,24 @@ declare const client: import("vue").Ref<{
|
|
|
4619
4438
|
color?: string | undefined;
|
|
4620
4439
|
}> | undefined;
|
|
4621
4440
|
"x-scalar-secrets"?: Record<string, {
|
|
4622
|
-
description?: string | undefined;
|
|
4623
4441
|
example?: string | undefined;
|
|
4442
|
+
description?: string | undefined;
|
|
4624
4443
|
}> | undefined;
|
|
4444
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
4625
4445
|
documentUrl?: string | undefined;
|
|
4626
4446
|
integration?: string | null | undefined;
|
|
4627
4447
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
4628
4448
|
type: "collection";
|
|
4629
|
-
uid: string
|
|
4630
|
-
children: string[];
|
|
4449
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
4450
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
4631
4451
|
openapi: string;
|
|
4632
4452
|
security: Record<string, string[]>[];
|
|
4633
4453
|
"x-scalar-icon": string;
|
|
4634
4454
|
securitySchemes: string[];
|
|
4635
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
4636
|
-
|
|
4637
|
-
|
|
4638
|
-
|
|
4639
|
-
tags: string[];
|
|
4455
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
4456
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
4457
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
4458
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
4640
4459
|
watchMode: boolean;
|
|
4641
4460
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
4642
4461
|
externalDocs?: {
|
|
@@ -4673,25 +4492,25 @@ declare const client: import("vue").Ref<{
|
|
|
4673
4492
|
color?: string | undefined;
|
|
4674
4493
|
}> | undefined;
|
|
4675
4494
|
"x-scalar-secrets"?: Record<string, {
|
|
4676
|
-
description?: string | undefined;
|
|
4677
4495
|
example?: string | undefined;
|
|
4496
|
+
description?: string | undefined;
|
|
4678
4497
|
}> | undefined;
|
|
4498
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
4679
4499
|
documentUrl?: string | undefined;
|
|
4680
4500
|
integration?: string | null | undefined;
|
|
4681
4501
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4682
|
-
untrackedEdit: <P extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "
|
|
4502
|
+
untrackedEdit: <P extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "watchMode" | "watchModeStatus" | "jsonSchemaDialect" | "info" | "components" | "webhooks" | "x-scalar-active-environment" | "x-scalar-secrets" | "selectedServerUid" | "documentUrl" | "integration" | `servers.${number}` | `tags.${number}` | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `requests.${number}` | `x-scalar-environments.${string}` | `children.${number}` | `securitySchemes.${number}` | `selectedSecuritySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}.${number}` | "info.summary" | "info.description" | "info.title" | "info.version" | "info.termsOfService" | "info.contact" | "info.license" | "info.contact.name" | "info.contact.url" | "info.contact.email" | "info.license.name" | "info.license.url" | "info.license.identifier" | `components.${string}` | `webhooks.${string}` | `x-scalar-secrets.${string}`>(uid: string & import("zod").BRAND<"collection">, path: P, value: P extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "watchMode" | "watchModeStatus" | "jsonSchemaDialect" | "info" | "components" | "webhooks" | "x-scalar-active-environment" | "x-scalar-secrets" | "selectedServerUid" | "documentUrl" | "integration" ? {
|
|
4683
4503
|
type: "collection";
|
|
4684
|
-
uid: string
|
|
4685
|
-
children: string[];
|
|
4504
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
4505
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
4686
4506
|
openapi: string;
|
|
4687
4507
|
security: Record<string, string[]>[];
|
|
4688
4508
|
"x-scalar-icon": string;
|
|
4689
4509
|
securitySchemes: string[];
|
|
4690
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
tags: string[];
|
|
4510
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
4511
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
4512
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
4513
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
4695
4514
|
watchMode: boolean;
|
|
4696
4515
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
4697
4516
|
externalDocs?: {
|
|
@@ -4728,24 +4547,24 @@ declare const client: import("vue").Ref<{
|
|
|
4728
4547
|
color?: string | undefined;
|
|
4729
4548
|
}> | undefined;
|
|
4730
4549
|
"x-scalar-secrets"?: Record<string, {
|
|
4731
|
-
description?: string | undefined;
|
|
4732
4550
|
example?: string | undefined;
|
|
4551
|
+
description?: string | undefined;
|
|
4733
4552
|
}> | undefined;
|
|
4553
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
4734
4554
|
documentUrl?: string | undefined;
|
|
4735
4555
|
integration?: string | null | undefined;
|
|
4736
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "
|
|
4556
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "servers" | "tags" | "security" | "externalDocs" | "type" | "uid" | "requests" | "x-scalar-environments" | "children" | "openapi" | "x-scalar-icon" | "securitySchemes" | "selectedSecuritySchemeUids" | "watchMode" | "watchModeStatus" | "jsonSchemaDialect" | "info" | "components" | "webhooks" | "x-scalar-active-environment" | "x-scalar-secrets" | "selectedServerUid" | "documentUrl" | "integration" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
4737
4557
|
type: "collection";
|
|
4738
|
-
uid: string
|
|
4739
|
-
children: string[];
|
|
4558
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
4559
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
4740
4560
|
openapi: string;
|
|
4741
4561
|
security: Record<string, string[]>[];
|
|
4742
4562
|
"x-scalar-icon": string;
|
|
4743
4563
|
securitySchemes: string[];
|
|
4744
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
4745
|
-
|
|
4746
|
-
|
|
4747
|
-
|
|
4748
|
-
tags: string[];
|
|
4564
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
4565
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
4566
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
4567
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
4749
4568
|
watchMode: boolean;
|
|
4750
4569
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
4751
4570
|
externalDocs?: {
|
|
@@ -4782,24 +4601,24 @@ declare const client: import("vue").Ref<{
|
|
|
4782
4601
|
color?: string | undefined;
|
|
4783
4602
|
}> | undefined;
|
|
4784
4603
|
"x-scalar-secrets"?: Record<string, {
|
|
4785
|
-
description?: string | undefined;
|
|
4786
4604
|
example?: string | undefined;
|
|
4605
|
+
description?: string | undefined;
|
|
4787
4606
|
}> | undefined;
|
|
4607
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
4788
4608
|
documentUrl?: string | undefined;
|
|
4789
4609
|
integration?: string | null | undefined;
|
|
4790
4610
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
4791
4611
|
type: "collection";
|
|
4792
|
-
uid: string
|
|
4793
|
-
children: string[];
|
|
4612
|
+
uid: string & import("zod").BRAND<"collection">;
|
|
4613
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
4794
4614
|
openapi: string;
|
|
4795
4615
|
security: Record<string, string[]>[];
|
|
4796
4616
|
"x-scalar-icon": string;
|
|
4797
4617
|
securitySchemes: string[];
|
|
4798
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
4799
|
-
|
|
4800
|
-
|
|
4801
|
-
|
|
4802
|
-
tags: string[];
|
|
4618
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
4619
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
4620
|
+
requests: (string & import("zod").BRAND<"operation">)[];
|
|
4621
|
+
tags: (string & import("zod").BRAND<"tag">)[];
|
|
4803
4622
|
watchMode: boolean;
|
|
4804
4623
|
watchModeStatus: "IDLE" | "WATCHING" | "ERROR";
|
|
4805
4624
|
externalDocs?: {
|
|
@@ -4836,83 +4655,84 @@ declare const client: import("vue").Ref<{
|
|
|
4836
4655
|
color?: string | undefined;
|
|
4837
4656
|
}> | undefined;
|
|
4838
4657
|
"x-scalar-secrets"?: Record<string, {
|
|
4839
|
-
description?: string | undefined;
|
|
4840
4658
|
example?: string | undefined;
|
|
4659
|
+
description?: string | undefined;
|
|
4841
4660
|
}> | undefined;
|
|
4661
|
+
selectedServerUid?: (string & import("zod").BRAND<"server">) | undefined;
|
|
4842
4662
|
documentUrl?: string | undefined;
|
|
4843
4663
|
integration?: string | null | undefined;
|
|
4844
4664
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4845
|
-
undo: (uid: string) => void;
|
|
4846
|
-
redo: (uid: string) => void;
|
|
4665
|
+
undo: (uid: string & import("zod").BRAND<"collection">) => void;
|
|
4666
|
+
redo: (uid: string & import("zod").BRAND<"collection">) => void;
|
|
4847
4667
|
reset: () => void;
|
|
4848
4668
|
};
|
|
4849
4669
|
environmentMutators: {
|
|
4850
|
-
delete: (uid:
|
|
4670
|
+
delete: (uid: import("@scalar/oas-utils/entities/environment").Environment["uid"]) => void;
|
|
4851
4671
|
add: (item: {
|
|
4852
4672
|
value: string;
|
|
4853
|
-
uid: string
|
|
4673
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
4854
4674
|
name: string;
|
|
4855
4675
|
color: string;
|
|
4856
4676
|
isDefault?: boolean | undefined;
|
|
4857
4677
|
}) => void;
|
|
4858
4678
|
set: (item: {
|
|
4859
4679
|
value: string;
|
|
4860
|
-
uid: string
|
|
4680
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
4861
4681
|
name: string;
|
|
4862
4682
|
color: string;
|
|
4863
4683
|
isDefault?: boolean | undefined;
|
|
4864
4684
|
}) => void;
|
|
4865
|
-
edit: <P extends "name" | "uid" | "color" | "
|
|
4685
|
+
edit: <P extends "name" | "uid" | "color" | "value" | "isDefault">(uid: (string & import("zod").BRAND<"environment">) | null | undefined, path: P, value: P extends "name" | "uid" | "color" | "value" | "isDefault" ? {
|
|
4866
4686
|
value: string;
|
|
4867
|
-
uid: string
|
|
4687
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
4868
4688
|
name: string;
|
|
4869
4689
|
color: string;
|
|
4870
4690
|
isDefault?: boolean | undefined;
|
|
4871
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "name" | "uid" | "color" | "
|
|
4691
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "name" | "uid" | "color" | "value" | "isDefault" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
4872
4692
|
value: string;
|
|
4873
|
-
uid: string
|
|
4693
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
4874
4694
|
name: string;
|
|
4875
4695
|
color: string;
|
|
4876
4696
|
isDefault?: boolean | undefined;
|
|
4877
4697
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
4878
4698
|
value: string;
|
|
4879
|
-
uid: string
|
|
4699
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
4880
4700
|
name: string;
|
|
4881
4701
|
color: string;
|
|
4882
4702
|
isDefault?: boolean | undefined;
|
|
4883
4703
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4884
|
-
untrackedEdit: <P extends "name" | "uid" | "color" | "
|
|
4704
|
+
untrackedEdit: <P extends "name" | "uid" | "color" | "value" | "isDefault">(uid: string & import("zod").BRAND<"environment">, path: P, value: P extends "name" | "uid" | "color" | "value" | "isDefault" ? {
|
|
4885
4705
|
value: string;
|
|
4886
|
-
uid: string
|
|
4706
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
4887
4707
|
name: string;
|
|
4888
4708
|
color: string;
|
|
4889
4709
|
isDefault?: boolean | undefined;
|
|
4890
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "name" | "uid" | "color" | "
|
|
4710
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "name" | "uid" | "color" | "value" | "isDefault" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
4891
4711
|
value: string;
|
|
4892
|
-
uid: string
|
|
4712
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
4893
4713
|
name: string;
|
|
4894
4714
|
color: string;
|
|
4895
4715
|
isDefault?: boolean | undefined;
|
|
4896
4716
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
4897
4717
|
value: string;
|
|
4898
|
-
uid: string
|
|
4718
|
+
uid: string & import("zod").BRAND<"environment">;
|
|
4899
4719
|
name: string;
|
|
4900
4720
|
color: string;
|
|
4901
4721
|
isDefault?: boolean | undefined;
|
|
4902
4722
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4903
|
-
undo: (uid: string) => void;
|
|
4904
|
-
redo: (uid: string) => void;
|
|
4723
|
+
undo: (uid: string & import("zod").BRAND<"environment">) => void;
|
|
4724
|
+
redo: (uid: string & import("zod").BRAND<"environment">) => void;
|
|
4905
4725
|
reset: () => void;
|
|
4906
4726
|
};
|
|
4907
4727
|
requestMutators: {
|
|
4908
4728
|
rawAdd: (item: {
|
|
4909
4729
|
path: string;
|
|
4910
4730
|
type: "request";
|
|
4911
|
-
uid: string
|
|
4912
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
4913
|
-
selectedServerUid: string;
|
|
4914
|
-
servers: string[];
|
|
4915
|
-
examples: string[];
|
|
4731
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
4732
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
4733
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
4734
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
4735
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
4916
4736
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
4917
4737
|
description?: string | undefined;
|
|
4918
4738
|
summary?: string | undefined;
|
|
@@ -4929,10 +4749,10 @@ declare const client: import("vue").Ref<{
|
|
|
4929
4749
|
parameters?: {
|
|
4930
4750
|
required: boolean;
|
|
4931
4751
|
name: string;
|
|
4932
|
-
in: "path" | "
|
|
4752
|
+
in: "path" | "cookie" | "query" | "header";
|
|
4933
4753
|
deprecated: boolean;
|
|
4934
|
-
description?: string | undefined;
|
|
4935
4754
|
example?: unknown;
|
|
4755
|
+
description?: string | undefined;
|
|
4936
4756
|
schema?: unknown;
|
|
4937
4757
|
content?: unknown;
|
|
4938
4758
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -4944,14 +4764,14 @@ declare const client: import("vue").Ref<{
|
|
|
4944
4764
|
requestBody?: any;
|
|
4945
4765
|
responses?: Record<string, any> | undefined;
|
|
4946
4766
|
}) => void;
|
|
4947
|
-
add: (payload: import("@scalar/oas-utils/entities/spec").RequestPayload, collectionUid:
|
|
4767
|
+
add: (payload: import("@scalar/oas-utils/entities/spec").RequestPayload, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void | {
|
|
4948
4768
|
path: string;
|
|
4949
4769
|
type: "request";
|
|
4950
|
-
uid: string
|
|
4951
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
4952
|
-
selectedServerUid: string;
|
|
4953
|
-
servers: string[];
|
|
4954
|
-
examples: string[];
|
|
4770
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
4771
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
4772
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
4773
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
4774
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
4955
4775
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
4956
4776
|
description?: string | undefined;
|
|
4957
4777
|
summary?: string | undefined;
|
|
@@ -4968,10 +4788,10 @@ declare const client: import("vue").Ref<{
|
|
|
4968
4788
|
parameters?: {
|
|
4969
4789
|
required: boolean;
|
|
4970
4790
|
name: string;
|
|
4971
|
-
in: "path" | "
|
|
4791
|
+
in: "path" | "cookie" | "query" | "header";
|
|
4972
4792
|
deprecated: boolean;
|
|
4973
|
-
description?: string | undefined;
|
|
4974
4793
|
example?: unknown;
|
|
4794
|
+
description?: string | undefined;
|
|
4975
4795
|
schema?: unknown;
|
|
4976
4796
|
content?: unknown;
|
|
4977
4797
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -4983,15 +4803,15 @@ declare const client: import("vue").Ref<{
|
|
|
4983
4803
|
requestBody?: any;
|
|
4984
4804
|
responses?: Record<string, any> | undefined;
|
|
4985
4805
|
};
|
|
4986
|
-
delete: (request: import("@scalar/oas-utils/entities/spec").Request, collectionUid:
|
|
4806
|
+
delete: (request: import("@scalar/oas-utils/entities/spec").Request, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void;
|
|
4987
4807
|
set: (item: {
|
|
4988
4808
|
path: string;
|
|
4989
4809
|
type: "request";
|
|
4990
|
-
uid: string
|
|
4991
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
4992
|
-
selectedServerUid: string;
|
|
4993
|
-
servers: string[];
|
|
4994
|
-
examples: string[];
|
|
4810
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
4811
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
4812
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
4813
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
4814
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
4995
4815
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
4996
4816
|
description?: string | undefined;
|
|
4997
4817
|
summary?: string | undefined;
|
|
@@ -5008,10 +4828,10 @@ declare const client: import("vue").Ref<{
|
|
|
5008
4828
|
parameters?: {
|
|
5009
4829
|
required: boolean;
|
|
5010
4830
|
name: string;
|
|
5011
|
-
in: "path" | "
|
|
4831
|
+
in: "path" | "cookie" | "query" | "header";
|
|
5012
4832
|
deprecated: boolean;
|
|
5013
|
-
description?: string | undefined;
|
|
5014
4833
|
example?: unknown;
|
|
4834
|
+
description?: string | undefined;
|
|
5015
4835
|
schema?: unknown;
|
|
5016
4836
|
content?: unknown;
|
|
5017
4837
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -5023,14 +4843,14 @@ declare const client: import("vue").Ref<{
|
|
|
5023
4843
|
requestBody?: any;
|
|
5024
4844
|
responses?: Record<string, any> | undefined;
|
|
5025
4845
|
}) => void;
|
|
5026
|
-
edit: <P extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | `servers.${number}` | `tags.${number}` | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `selectedSecuritySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}.${number}` | "
|
|
4846
|
+
edit: <P extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | `servers.${number}` | `tags.${number}` | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `selectedSecuritySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}.${number}` | "path" | "method" | "examples" | `requestBody.${string}` | `parameters.${number}` | `parameters.${number}.description` | `parameters.${number}.deprecated` | `parameters.${number}.name` | `parameters.${number}.in` | `parameters.${number}.example` | `parameters.${number}.style` | `parameters.${number}.required` | `parameters.${number}.examples` | `parameters.${number}.content` | `parameters.${number}.schema` | `parameters.${number}.examples.${string}` | `responses.${string}` | `examples.${number}`>(uid: (string & import("zod").BRAND<"operation">) | null | undefined, path: P, value: P extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | "path" | "method" | "examples" ? {
|
|
5027
4847
|
path: string;
|
|
5028
4848
|
type: "request";
|
|
5029
|
-
uid: string
|
|
5030
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
5031
|
-
selectedServerUid: string;
|
|
5032
|
-
servers: string[];
|
|
5033
|
-
examples: string[];
|
|
4849
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
4850
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
4851
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
4852
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
4853
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
5034
4854
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
5035
4855
|
description?: string | undefined;
|
|
5036
4856
|
summary?: string | undefined;
|
|
@@ -5047,10 +4867,10 @@ declare const client: import("vue").Ref<{
|
|
|
5047
4867
|
parameters?: {
|
|
5048
4868
|
required: boolean;
|
|
5049
4869
|
name: string;
|
|
5050
|
-
in: "path" | "
|
|
4870
|
+
in: "path" | "cookie" | "query" | "header";
|
|
5051
4871
|
deprecated: boolean;
|
|
5052
|
-
description?: string | undefined;
|
|
5053
4872
|
example?: unknown;
|
|
4873
|
+
description?: string | undefined;
|
|
5054
4874
|
schema?: unknown;
|
|
5055
4875
|
content?: unknown;
|
|
5056
4876
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -5061,14 +4881,14 @@ declare const client: import("vue").Ref<{
|
|
|
5061
4881
|
}[] | undefined;
|
|
5062
4882
|
requestBody?: any;
|
|
5063
4883
|
responses?: Record<string, any> | undefined;
|
|
5064
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | "
|
|
4884
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | "path" | "method" | "examples" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
5065
4885
|
path: string;
|
|
5066
4886
|
type: "request";
|
|
5067
|
-
uid: string
|
|
5068
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
5069
|
-
selectedServerUid: string;
|
|
5070
|
-
servers: string[];
|
|
5071
|
-
examples: string[];
|
|
4887
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
4888
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
4889
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
4890
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
4891
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
5072
4892
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
5073
4893
|
description?: string | undefined;
|
|
5074
4894
|
summary?: string | undefined;
|
|
@@ -5085,10 +4905,10 @@ declare const client: import("vue").Ref<{
|
|
|
5085
4905
|
parameters?: {
|
|
5086
4906
|
required: boolean;
|
|
5087
4907
|
name: string;
|
|
5088
|
-
in: "path" | "
|
|
4908
|
+
in: "path" | "cookie" | "query" | "header";
|
|
5089
4909
|
deprecated: boolean;
|
|
5090
|
-
description?: string | undefined;
|
|
5091
4910
|
example?: unknown;
|
|
4911
|
+
description?: string | undefined;
|
|
5092
4912
|
schema?: unknown;
|
|
5093
4913
|
content?: unknown;
|
|
5094
4914
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -5102,11 +4922,11 @@ declare const client: import("vue").Ref<{
|
|
|
5102
4922
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
5103
4923
|
path: string;
|
|
5104
4924
|
type: "request";
|
|
5105
|
-
uid: string
|
|
5106
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
5107
|
-
selectedServerUid: string;
|
|
5108
|
-
servers: string[];
|
|
5109
|
-
examples: string[];
|
|
4925
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
4926
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
4927
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
4928
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
4929
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
5110
4930
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
5111
4931
|
description?: string | undefined;
|
|
5112
4932
|
summary?: string | undefined;
|
|
@@ -5123,10 +4943,10 @@ declare const client: import("vue").Ref<{
|
|
|
5123
4943
|
parameters?: {
|
|
5124
4944
|
required: boolean;
|
|
5125
4945
|
name: string;
|
|
5126
|
-
in: "path" | "
|
|
4946
|
+
in: "path" | "cookie" | "query" | "header";
|
|
5127
4947
|
deprecated: boolean;
|
|
5128
|
-
description?: string | undefined;
|
|
5129
4948
|
example?: unknown;
|
|
4949
|
+
description?: string | undefined;
|
|
5130
4950
|
schema?: unknown;
|
|
5131
4951
|
content?: unknown;
|
|
5132
4952
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -5138,14 +4958,14 @@ declare const client: import("vue").Ref<{
|
|
|
5138
4958
|
requestBody?: any;
|
|
5139
4959
|
responses?: Record<string, any> | undefined;
|
|
5140
4960
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
5141
|
-
untrackedEdit: <P extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | `servers.${number}` | `tags.${number}` | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `selectedSecuritySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}.${number}` | "
|
|
4961
|
+
untrackedEdit: <P extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | `servers.${number}` | `tags.${number}` | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `selectedSecuritySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}.${number}` | "path" | "method" | "examples" | `requestBody.${string}` | `parameters.${number}` | `parameters.${number}.description` | `parameters.${number}.deprecated` | `parameters.${number}.name` | `parameters.${number}.in` | `parameters.${number}.example` | `parameters.${number}.style` | `parameters.${number}.required` | `parameters.${number}.examples` | `parameters.${number}.content` | `parameters.${number}.schema` | `parameters.${number}.examples.${string}` | `responses.${string}` | `examples.${number}`>(uid: string & import("zod").BRAND<"operation">, path: P, value: P extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | "path" | "method" | "examples" ? {
|
|
5142
4962
|
path: string;
|
|
5143
4963
|
type: "request";
|
|
5144
|
-
uid: string
|
|
5145
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
5146
|
-
selectedServerUid: string;
|
|
5147
|
-
servers: string[];
|
|
5148
|
-
examples: string[];
|
|
4964
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
4965
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
4966
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
4967
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
4968
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
5149
4969
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
5150
4970
|
description?: string | undefined;
|
|
5151
4971
|
summary?: string | undefined;
|
|
@@ -5162,10 +4982,10 @@ declare const client: import("vue").Ref<{
|
|
|
5162
4982
|
parameters?: {
|
|
5163
4983
|
required: boolean;
|
|
5164
4984
|
name: string;
|
|
5165
|
-
in: "path" | "
|
|
4985
|
+
in: "path" | "cookie" | "query" | "header";
|
|
5166
4986
|
deprecated: boolean;
|
|
5167
|
-
description?: string | undefined;
|
|
5168
4987
|
example?: unknown;
|
|
4988
|
+
description?: string | undefined;
|
|
5169
4989
|
schema?: unknown;
|
|
5170
4990
|
content?: unknown;
|
|
5171
4991
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -5176,14 +4996,14 @@ declare const client: import("vue").Ref<{
|
|
|
5176
4996
|
}[] | undefined;
|
|
5177
4997
|
requestBody?: any;
|
|
5178
4998
|
responses?: Record<string, any> | undefined;
|
|
5179
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | "
|
|
4999
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "servers" | "tags" | "summary" | "description" | "operationId" | "security" | "requestBody" | "parameters" | "externalDocs" | "deprecated" | "responses" | "x-internal" | "x-scalar-ignore" | "type" | "uid" | "selectedSecuritySchemeUids" | "selectedServerUid" | "path" | "method" | "examples" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
5180
5000
|
path: string;
|
|
5181
5001
|
type: "request";
|
|
5182
|
-
uid: string
|
|
5183
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
5184
|
-
selectedServerUid: string;
|
|
5185
|
-
servers: string[];
|
|
5186
|
-
examples: string[];
|
|
5002
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
5003
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
5004
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
5005
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
5006
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
5187
5007
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
5188
5008
|
description?: string | undefined;
|
|
5189
5009
|
summary?: string | undefined;
|
|
@@ -5200,10 +5020,10 @@ declare const client: import("vue").Ref<{
|
|
|
5200
5020
|
parameters?: {
|
|
5201
5021
|
required: boolean;
|
|
5202
5022
|
name: string;
|
|
5203
|
-
in: "path" | "
|
|
5023
|
+
in: "path" | "cookie" | "query" | "header";
|
|
5204
5024
|
deprecated: boolean;
|
|
5205
|
-
description?: string | undefined;
|
|
5206
5025
|
example?: unknown;
|
|
5026
|
+
description?: string | undefined;
|
|
5207
5027
|
schema?: unknown;
|
|
5208
5028
|
content?: unknown;
|
|
5209
5029
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -5217,11 +5037,11 @@ declare const client: import("vue").Ref<{
|
|
|
5217
5037
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
5218
5038
|
path: string;
|
|
5219
5039
|
type: "request";
|
|
5220
|
-
uid: string
|
|
5221
|
-
selectedSecuritySchemeUids: (string | string[])[];
|
|
5222
|
-
selectedServerUid: string;
|
|
5223
|
-
servers: string[];
|
|
5224
|
-
examples: string[];
|
|
5040
|
+
uid: string & import("zod").BRAND<"operation">;
|
|
5041
|
+
selectedSecuritySchemeUids: ((string & import("zod").BRAND<"securityScheme">) | (string & import("zod").BRAND<"securityScheme">)[])[];
|
|
5042
|
+
selectedServerUid: (string & import("zod").BRAND<"server">) | null;
|
|
5043
|
+
servers: (string & import("zod").BRAND<"server">)[];
|
|
5044
|
+
examples: (string & import("zod").BRAND<"example">)[];
|
|
5225
5045
|
method: "options" | "connect" | "delete" | "get" | "head" | "patch" | "post" | "put" | "trace";
|
|
5226
5046
|
description?: string | undefined;
|
|
5227
5047
|
summary?: string | undefined;
|
|
@@ -5238,10 +5058,10 @@ declare const client: import("vue").Ref<{
|
|
|
5238
5058
|
parameters?: {
|
|
5239
5059
|
required: boolean;
|
|
5240
5060
|
name: string;
|
|
5241
|
-
in: "path" | "
|
|
5061
|
+
in: "path" | "cookie" | "query" | "header";
|
|
5242
5062
|
deprecated: boolean;
|
|
5243
|
-
description?: string | undefined;
|
|
5244
5063
|
example?: unknown;
|
|
5064
|
+
description?: string | undefined;
|
|
5245
5065
|
schema?: unknown;
|
|
5246
5066
|
content?: unknown;
|
|
5247
5067
|
style?: "matrix" | "simple" | "form" | "label" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
|
|
@@ -5253,15 +5073,15 @@ declare const client: import("vue").Ref<{
|
|
|
5253
5073
|
requestBody?: any;
|
|
5254
5074
|
responses?: Record<string, any> | undefined;
|
|
5255
5075
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
5256
|
-
undo: (uid: string) => void;
|
|
5257
|
-
redo: (uid: string) => void;
|
|
5076
|
+
undo: (uid: string & import("zod").BRAND<"operation">) => void;
|
|
5077
|
+
redo: (uid: string & import("zod").BRAND<"operation">) => void;
|
|
5258
5078
|
reset: () => void;
|
|
5259
5079
|
};
|
|
5260
5080
|
findRequestParents: (r: import("@scalar/oas-utils/entities/spec").Request) => string[];
|
|
5261
5081
|
requestExampleMutators: {
|
|
5262
5082
|
rawAdd: (item: {
|
|
5263
5083
|
type: "requestExample";
|
|
5264
|
-
uid: string
|
|
5084
|
+
uid: string & import("zod").BRAND<"example">;
|
|
5265
5085
|
name: string;
|
|
5266
5086
|
parameters: {
|
|
5267
5087
|
path: {
|
|
@@ -5356,12 +5176,12 @@ declare const client: import("vue").Ref<{
|
|
|
5356
5176
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
5357
5177
|
} | undefined;
|
|
5358
5178
|
};
|
|
5359
|
-
requestUid
|
|
5179
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
5360
5180
|
serverVariables?: Record<string, string[]> | undefined;
|
|
5361
5181
|
}) => void;
|
|
5362
5182
|
add: (request: import("@scalar/oas-utils/entities/spec").Request, _name?: string) => {
|
|
5363
5183
|
type: "requestExample";
|
|
5364
|
-
uid: string
|
|
5184
|
+
uid: string & import("zod").BRAND<"example">;
|
|
5365
5185
|
name: string;
|
|
5366
5186
|
parameters: {
|
|
5367
5187
|
path: {
|
|
@@ -5456,13 +5276,13 @@ declare const client: import("vue").Ref<{
|
|
|
5456
5276
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
5457
5277
|
} | undefined;
|
|
5458
5278
|
};
|
|
5459
|
-
requestUid
|
|
5279
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
5460
5280
|
serverVariables?: Record<string, string[]> | undefined;
|
|
5461
5281
|
};
|
|
5462
5282
|
delete: (requestExample: import("@scalar/oas-utils/entities/spec").RequestExample) => void;
|
|
5463
5283
|
set: (item: {
|
|
5464
5284
|
type: "requestExample";
|
|
5465
|
-
uid: string
|
|
5285
|
+
uid: string & import("zod").BRAND<"example">;
|
|
5466
5286
|
name: string;
|
|
5467
5287
|
parameters: {
|
|
5468
5288
|
path: {
|
|
@@ -5557,12 +5377,12 @@ declare const client: import("vue").Ref<{
|
|
|
5557
5377
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
5558
5378
|
} | undefined;
|
|
5559
5379
|
};
|
|
5560
|
-
requestUid
|
|
5380
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
5561
5381
|
serverVariables?: Record<string, string[]> | undefined;
|
|
5562
5382
|
}) => void;
|
|
5563
|
-
edit: <P extends "parameters" | "type" | "name" | "uid" | "body" | "requestUid" | "serverVariables" | "body.
|
|
5383
|
+
edit: <P extends "parameters" | "type" | "name" | "uid" | "body" | "requestUid" | "serverVariables" | "body.formData.value" | "parameters.cookies" | `parameters.cookies.${number}` | "parameters.path" | "parameters.headers" | "parameters.query" | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.examples` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.examples.${number}` | `parameters.cookies.${number}.enum.${number}` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.type.${number}` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.path.${number}` | `parameters.path.${number}.description` | `parameters.path.${number}.required` | `parameters.path.${number}.examples` | `parameters.path.${number}.type` | `parameters.path.${number}.default` | `parameters.path.${number}.key` | `parameters.path.${number}.file` | `parameters.path.${number}.value` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.format` | `parameters.path.${number}.maximum` | `parameters.path.${number}.minimum` | `parameters.path.${number}.examples.${number}` | `parameters.path.${number}.enum.${number}` | `parameters.path.${number}.enabled` | `parameters.path.${number}.type.${number}` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.headers.${number}` | `parameters.headers.${number}.description` | `parameters.headers.${number}.required` | `parameters.headers.${number}.examples` | `parameters.headers.${number}.type` | `parameters.headers.${number}.default` | `parameters.headers.${number}.key` | `parameters.headers.${number}.file` | `parameters.headers.${number}.value` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.format` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.examples.${number}` | `parameters.headers.${number}.enum.${number}` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.type.${number}` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.query.${number}` | `parameters.query.${number}.description` | `parameters.query.${number}.required` | `parameters.query.${number}.examples` | `parameters.query.${number}.type` | `parameters.query.${number}.default` | `parameters.query.${number}.key` | `parameters.query.${number}.file` | `parameters.query.${number}.value` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.format` | `parameters.query.${number}.maximum` | `parameters.query.${number}.minimum` | `parameters.query.${number}.examples.${number}` | `parameters.query.${number}.enum.${number}` | `parameters.query.${number}.enabled` | `parameters.query.${number}.type.${number}` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | "body.binary" | "body.formData" | "body.raw" | "body.activeBody" | "body.binary.type" | "body.binary.size" | "body.binary.slice" | "body.binary.text" | "body.binary.arrayBuffer" | "body.binary.stream" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.description` | `body.formData.value.${number}.required` | `body.formData.value.${number}.examples` | `body.formData.value.${number}.type` | `body.formData.value.${number}.default` | `body.formData.value.${number}.key` | `body.formData.value.${number}.file` | `body.formData.value.${number}.value` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.format` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.examples.${number}` | `body.formData.value.${number}.enum.${number}` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.type.${number}` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | "body.raw.value" | "body.raw.encoding" | `serverVariables.${string}`>(uid: (string & import("zod").BRAND<"example">) | null | undefined, path: P, value: P extends "parameters" | "type" | "name" | "uid" | "body" | "requestUid" | "serverVariables" ? {
|
|
5564
5384
|
type: "requestExample";
|
|
5565
|
-
uid: string
|
|
5385
|
+
uid: string & import("zod").BRAND<"example">;
|
|
5566
5386
|
name: string;
|
|
5567
5387
|
parameters: {
|
|
5568
5388
|
path: {
|
|
@@ -5657,11 +5477,11 @@ declare const client: import("vue").Ref<{
|
|
|
5657
5477
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
5658
5478
|
} | undefined;
|
|
5659
5479
|
};
|
|
5660
|
-
requestUid
|
|
5480
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
5661
5481
|
serverVariables?: Record<string, string[]> | undefined;
|
|
5662
5482
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "parameters" | "type" | "name" | "uid" | "body" | "requestUid" | "serverVariables" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
5663
5483
|
type: "requestExample";
|
|
5664
|
-
uid: string
|
|
5484
|
+
uid: string & import("zod").BRAND<"example">;
|
|
5665
5485
|
name: string;
|
|
5666
5486
|
parameters: {
|
|
5667
5487
|
path: {
|
|
@@ -5756,11 +5576,11 @@ declare const client: import("vue").Ref<{
|
|
|
5756
5576
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
5757
5577
|
} | undefined;
|
|
5758
5578
|
};
|
|
5759
|
-
requestUid
|
|
5579
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
5760
5580
|
serverVariables?: Record<string, string[]> | undefined;
|
|
5761
5581
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
5762
5582
|
type: "requestExample";
|
|
5763
|
-
uid: string
|
|
5583
|
+
uid: string & import("zod").BRAND<"example">;
|
|
5764
5584
|
name: string;
|
|
5765
5585
|
parameters: {
|
|
5766
5586
|
path: {
|
|
@@ -5855,12 +5675,12 @@ declare const client: import("vue").Ref<{
|
|
|
5855
5675
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
5856
5676
|
} | undefined;
|
|
5857
5677
|
};
|
|
5858
|
-
requestUid
|
|
5678
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
5859
5679
|
serverVariables?: Record<string, string[]> | undefined;
|
|
5860
5680
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
5861
|
-
untrackedEdit: <P extends "parameters" | "type" | "name" | "uid" | "body" | "requestUid" | "serverVariables" | "body.
|
|
5681
|
+
untrackedEdit: <P extends "parameters" | "type" | "name" | "uid" | "body" | "requestUid" | "serverVariables" | "body.formData.value" | "parameters.cookies" | `parameters.cookies.${number}` | "parameters.path" | "parameters.headers" | "parameters.query" | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.examples` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.examples.${number}` | `parameters.cookies.${number}.enum.${number}` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.type.${number}` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.path.${number}` | `parameters.path.${number}.description` | `parameters.path.${number}.required` | `parameters.path.${number}.examples` | `parameters.path.${number}.type` | `parameters.path.${number}.default` | `parameters.path.${number}.key` | `parameters.path.${number}.file` | `parameters.path.${number}.value` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.format` | `parameters.path.${number}.maximum` | `parameters.path.${number}.minimum` | `parameters.path.${number}.examples.${number}` | `parameters.path.${number}.enum.${number}` | `parameters.path.${number}.enabled` | `parameters.path.${number}.type.${number}` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.headers.${number}` | `parameters.headers.${number}.description` | `parameters.headers.${number}.required` | `parameters.headers.${number}.examples` | `parameters.headers.${number}.type` | `parameters.headers.${number}.default` | `parameters.headers.${number}.key` | `parameters.headers.${number}.file` | `parameters.headers.${number}.value` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.format` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.examples.${number}` | `parameters.headers.${number}.enum.${number}` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.type.${number}` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.query.${number}` | `parameters.query.${number}.description` | `parameters.query.${number}.required` | `parameters.query.${number}.examples` | `parameters.query.${number}.type` | `parameters.query.${number}.default` | `parameters.query.${number}.key` | `parameters.query.${number}.file` | `parameters.query.${number}.value` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.format` | `parameters.query.${number}.maximum` | `parameters.query.${number}.minimum` | `parameters.query.${number}.examples.${number}` | `parameters.query.${number}.enum.${number}` | `parameters.query.${number}.enabled` | `parameters.query.${number}.type.${number}` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | "body.binary" | "body.formData" | "body.raw" | "body.activeBody" | "body.binary.type" | "body.binary.size" | "body.binary.slice" | "body.binary.text" | "body.binary.arrayBuffer" | "body.binary.stream" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.description` | `body.formData.value.${number}.required` | `body.formData.value.${number}.examples` | `body.formData.value.${number}.type` | `body.formData.value.${number}.default` | `body.formData.value.${number}.key` | `body.formData.value.${number}.file` | `body.formData.value.${number}.value` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.format` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.examples.${number}` | `body.formData.value.${number}.enum.${number}` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.type.${number}` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | "body.raw.value" | "body.raw.encoding" | `serverVariables.${string}`>(uid: string & import("zod").BRAND<"example">, path: P, value: P extends "parameters" | "type" | "name" | "uid" | "body" | "requestUid" | "serverVariables" ? {
|
|
5862
5682
|
type: "requestExample";
|
|
5863
|
-
uid: string
|
|
5683
|
+
uid: string & import("zod").BRAND<"example">;
|
|
5864
5684
|
name: string;
|
|
5865
5685
|
parameters: {
|
|
5866
5686
|
path: {
|
|
@@ -5955,11 +5775,11 @@ declare const client: import("vue").Ref<{
|
|
|
5955
5775
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
5956
5776
|
} | undefined;
|
|
5957
5777
|
};
|
|
5958
|
-
requestUid
|
|
5778
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
5959
5779
|
serverVariables?: Record<string, string[]> | undefined;
|
|
5960
5780
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "parameters" | "type" | "name" | "uid" | "body" | "requestUid" | "serverVariables" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
5961
5781
|
type: "requestExample";
|
|
5962
|
-
uid: string
|
|
5782
|
+
uid: string & import("zod").BRAND<"example">;
|
|
5963
5783
|
name: string;
|
|
5964
5784
|
parameters: {
|
|
5965
5785
|
path: {
|
|
@@ -6054,11 +5874,11 @@ declare const client: import("vue").Ref<{
|
|
|
6054
5874
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
6055
5875
|
} | undefined;
|
|
6056
5876
|
};
|
|
6057
|
-
requestUid
|
|
5877
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
6058
5878
|
serverVariables?: Record<string, string[]> | undefined;
|
|
6059
5879
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
6060
5880
|
type: "requestExample";
|
|
6061
|
-
uid: string
|
|
5881
|
+
uid: string & import("zod").BRAND<"example">;
|
|
6062
5882
|
name: string;
|
|
6063
5883
|
parameters: {
|
|
6064
5884
|
path: {
|
|
@@ -6153,25 +5973,25 @@ declare const client: import("vue").Ref<{
|
|
|
6153
5973
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
6154
5974
|
} | undefined;
|
|
6155
5975
|
};
|
|
6156
|
-
requestUid
|
|
5976
|
+
requestUid?: (string & import("zod").BRAND<"operation">) | undefined;
|
|
6157
5977
|
serverVariables?: Record<string, string[]> | undefined;
|
|
6158
5978
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
6159
|
-
undo: (uid: string) => void;
|
|
6160
|
-
redo: (uid: string) => void;
|
|
5979
|
+
undo: (uid: string & import("zod").BRAND<"example">) => void;
|
|
5980
|
+
redo: (uid: string & import("zod").BRAND<"example">) => void;
|
|
6161
5981
|
reset: () => void;
|
|
6162
5982
|
};
|
|
6163
5983
|
securitySchemeMutators: {
|
|
6164
5984
|
rawAdd: (item: {
|
|
6165
5985
|
type: "apiKey";
|
|
6166
5986
|
value: string;
|
|
6167
|
-
uid: string
|
|
5987
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6168
5988
|
name: string;
|
|
6169
5989
|
nameKey: string;
|
|
6170
|
-
in: "
|
|
5990
|
+
in: "cookie" | "query" | "header";
|
|
6171
5991
|
description?: string | undefined;
|
|
6172
5992
|
} | {
|
|
6173
5993
|
type: "http";
|
|
6174
|
-
uid: string
|
|
5994
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6175
5995
|
nameKey: string;
|
|
6176
5996
|
scheme: "basic" | "bearer";
|
|
6177
5997
|
bearerFormat: string;
|
|
@@ -6181,13 +6001,13 @@ declare const client: import("vue").Ref<{
|
|
|
6181
6001
|
description?: string | undefined;
|
|
6182
6002
|
} | {
|
|
6183
6003
|
type: "openIdConnect";
|
|
6184
|
-
uid: string
|
|
6004
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6185
6005
|
nameKey: string;
|
|
6186
6006
|
openIdConnectUrl: string;
|
|
6187
6007
|
description?: string | undefined;
|
|
6188
6008
|
} | {
|
|
6189
6009
|
type: "oauth2";
|
|
6190
|
-
uid: string
|
|
6010
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6191
6011
|
nameKey: string;
|
|
6192
6012
|
flows: {
|
|
6193
6013
|
password?: {
|
|
@@ -6238,17 +6058,17 @@ declare const client: import("vue").Ref<{
|
|
|
6238
6058
|
};
|
|
6239
6059
|
description?: string | undefined;
|
|
6240
6060
|
}) => void;
|
|
6241
|
-
add: (payload: import("@scalar/oas-utils/entities/spec").SecuritySchemePayload, collectionUid:
|
|
6061
|
+
add: (payload: import("@scalar/oas-utils/entities/spec").SecuritySchemePayload, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => {
|
|
6242
6062
|
type: "apiKey";
|
|
6243
6063
|
value: string;
|
|
6244
|
-
uid: string
|
|
6064
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6245
6065
|
name: string;
|
|
6246
6066
|
nameKey: string;
|
|
6247
|
-
in: "
|
|
6067
|
+
in: "cookie" | "query" | "header";
|
|
6248
6068
|
description?: string | undefined;
|
|
6249
6069
|
} | {
|
|
6250
6070
|
type: "http";
|
|
6251
|
-
uid: string
|
|
6071
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6252
6072
|
nameKey: string;
|
|
6253
6073
|
scheme: "basic" | "bearer";
|
|
6254
6074
|
bearerFormat: string;
|
|
@@ -6258,13 +6078,13 @@ declare const client: import("vue").Ref<{
|
|
|
6258
6078
|
description?: string | undefined;
|
|
6259
6079
|
} | {
|
|
6260
6080
|
type: "openIdConnect";
|
|
6261
|
-
uid: string
|
|
6081
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6262
6082
|
nameKey: string;
|
|
6263
6083
|
openIdConnectUrl: string;
|
|
6264
6084
|
description?: string | undefined;
|
|
6265
6085
|
} | {
|
|
6266
6086
|
type: "oauth2";
|
|
6267
|
-
uid: string
|
|
6087
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6268
6088
|
nameKey: string;
|
|
6269
6089
|
flows: {
|
|
6270
6090
|
password?: {
|
|
@@ -6315,18 +6135,18 @@ declare const client: import("vue").Ref<{
|
|
|
6315
6135
|
};
|
|
6316
6136
|
description?: string | undefined;
|
|
6317
6137
|
};
|
|
6318
|
-
delete: (schemeUid:
|
|
6138
|
+
delete: (schemeUid: import("@scalar/oas-utils/entities/spec").SecurityScheme["uid"]) => void;
|
|
6319
6139
|
set: (item: {
|
|
6320
6140
|
type: "apiKey";
|
|
6321
6141
|
value: string;
|
|
6322
|
-
uid: string
|
|
6142
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6323
6143
|
name: string;
|
|
6324
6144
|
nameKey: string;
|
|
6325
|
-
in: "
|
|
6145
|
+
in: "cookie" | "query" | "header";
|
|
6326
6146
|
description?: string | undefined;
|
|
6327
6147
|
} | {
|
|
6328
6148
|
type: "http";
|
|
6329
|
-
uid: string
|
|
6149
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6330
6150
|
nameKey: string;
|
|
6331
6151
|
scheme: "basic" | "bearer";
|
|
6332
6152
|
bearerFormat: string;
|
|
@@ -6336,13 +6156,13 @@ declare const client: import("vue").Ref<{
|
|
|
6336
6156
|
description?: string | undefined;
|
|
6337
6157
|
} | {
|
|
6338
6158
|
type: "openIdConnect";
|
|
6339
|
-
uid: string
|
|
6159
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6340
6160
|
nameKey: string;
|
|
6341
6161
|
openIdConnectUrl: string;
|
|
6342
6162
|
description?: string | undefined;
|
|
6343
6163
|
} | {
|
|
6344
6164
|
type: "oauth2";
|
|
6345
|
-
uid: string
|
|
6165
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6346
6166
|
nameKey: string;
|
|
6347
6167
|
flows: {
|
|
6348
6168
|
password?: {
|
|
@@ -6393,33 +6213,33 @@ declare const client: import("vue").Ref<{
|
|
|
6393
6213
|
};
|
|
6394
6214
|
description?: string | undefined;
|
|
6395
6215
|
}) => void;
|
|
6396
|
-
edit: <P extends "description" | "type" | "name" | "in" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "flows" | "
|
|
6216
|
+
edit: <P extends "description" | "type" | "name" | "in" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "flows" | "password" | "username" | "value" | "token" | "flows.password" | "flows.implicit" | "flows.clientCredentials" | "flows.authorizationCode" | "flows.password.type" | "flows.password.password" | "flows.password.username" | "flows.password.token" | "flows.password.refreshUrl" | "flows.password.scopes" | "flows.password.selectedScopes" | "flows.password.x-scalar-client-id" | "flows.password.tokenUrl" | "flows.password.clientSecret" | `flows.password.scopes.${string}` | `flows.password.selectedScopes.${number}` | "flows.implicit.type" | "flows.implicit.token" | "flows.implicit.refreshUrl" | "flows.implicit.scopes" | "flows.implicit.selectedScopes" | "flows.implicit.x-scalar-client-id" | `flows.implicit.scopes.${string}` | `flows.implicit.selectedScopes.${number}` | "flows.implicit.authorizationUrl" | "flows.implicit.x-scalar-redirect-uri" | "flows.clientCredentials.type" | "flows.clientCredentials.token" | "flows.clientCredentials.refreshUrl" | "flows.clientCredentials.scopes" | "flows.clientCredentials.selectedScopes" | "flows.clientCredentials.x-scalar-client-id" | "flows.clientCredentials.tokenUrl" | "flows.clientCredentials.clientSecret" | `flows.clientCredentials.scopes.${string}` | `flows.clientCredentials.selectedScopes.${number}` | "flows.authorizationCode.type" | "flows.authorizationCode.token" | "flows.authorizationCode.refreshUrl" | "flows.authorizationCode.scopes" | "flows.authorizationCode.selectedScopes" | "flows.authorizationCode.x-scalar-client-id" | "flows.authorizationCode.tokenUrl" | "flows.authorizationCode.clientSecret" | `flows.authorizationCode.scopes.${string}` | `flows.authorizationCode.selectedScopes.${number}` | "flows.authorizationCode.authorizationUrl" | "flows.authorizationCode.x-scalar-redirect-uri" | "flows.authorizationCode.x-usePkce">(uid: (string & import("zod").BRAND<"securityScheme">) | null | undefined, path: P, value: (P extends "description" | "type" | "name" | "in" | "uid" | "nameKey" | "value" ? {
|
|
6397
6217
|
type: "apiKey";
|
|
6398
6218
|
value: string;
|
|
6399
|
-
uid: string
|
|
6219
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6400
6220
|
name: string;
|
|
6401
6221
|
nameKey: string;
|
|
6402
|
-
in: "
|
|
6222
|
+
in: "cookie" | "query" | "header";
|
|
6403
6223
|
description?: string | undefined;
|
|
6404
6224
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "type" | "name" | "in" | "uid" | "nameKey" | "value" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
6405
6225
|
type: "apiKey";
|
|
6406
6226
|
value: string;
|
|
6407
|
-
uid: string
|
|
6227
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6408
6228
|
name: string;
|
|
6409
6229
|
nameKey: string;
|
|
6410
|
-
in: "
|
|
6230
|
+
in: "cookie" | "query" | "header";
|
|
6411
6231
|
description?: string | undefined;
|
|
6412
6232
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
6413
6233
|
type: "apiKey";
|
|
6414
6234
|
value: string;
|
|
6415
|
-
uid: string
|
|
6235
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6416
6236
|
name: string;
|
|
6417
6237
|
nameKey: string;
|
|
6418
|
-
in: "
|
|
6238
|
+
in: "cookie" | "query" | "header";
|
|
6419
6239
|
description?: string | undefined;
|
|
6420
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "password" | "
|
|
6240
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "password" | "username" | "token" ? {
|
|
6421
6241
|
type: "http";
|
|
6422
|
-
uid: string
|
|
6242
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6423
6243
|
nameKey: string;
|
|
6424
6244
|
scheme: "basic" | "bearer";
|
|
6425
6245
|
bearerFormat: string;
|
|
@@ -6427,9 +6247,9 @@ declare const client: import("vue").Ref<{
|
|
|
6427
6247
|
password: string;
|
|
6428
6248
|
token: string;
|
|
6429
6249
|
description?: string | undefined;
|
|
6430
|
-
}[P] : P extends `${infer K}.${infer R_1}` ? K extends "description" | "type" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "password" | "
|
|
6250
|
+
}[P] : P extends `${infer K}.${infer R_1}` ? K extends "description" | "type" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "password" | "username" | "token" ? R_1 extends import("@scalar/object-utils/nested").Path<{
|
|
6431
6251
|
type: "http";
|
|
6432
|
-
uid: string
|
|
6252
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6433
6253
|
nameKey: string;
|
|
6434
6254
|
scheme: "basic" | "bearer";
|
|
6435
6255
|
bearerFormat: string;
|
|
@@ -6439,7 +6259,7 @@ declare const client: import("vue").Ref<{
|
|
|
6439
6259
|
description?: string | undefined;
|
|
6440
6260
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
6441
6261
|
type: "http";
|
|
6442
|
-
uid: string
|
|
6262
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6443
6263
|
nameKey: string;
|
|
6444
6264
|
scheme: "basic" | "bearer";
|
|
6445
6265
|
bearerFormat: string;
|
|
@@ -6449,25 +6269,25 @@ declare const client: import("vue").Ref<{
|
|
|
6449
6269
|
description?: string | undefined;
|
|
6450
6270
|
}[K], R_1> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "openIdConnectUrl" ? {
|
|
6451
6271
|
type: "openIdConnect";
|
|
6452
|
-
uid: string
|
|
6272
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6453
6273
|
nameKey: string;
|
|
6454
6274
|
openIdConnectUrl: string;
|
|
6455
6275
|
description?: string | undefined;
|
|
6456
6276
|
}[P] : P extends `${infer K}.${infer R_2}` ? K extends "description" | "type" | "uid" | "nameKey" | "openIdConnectUrl" ? R_2 extends import("@scalar/object-utils/nested").Path<{
|
|
6457
6277
|
type: "openIdConnect";
|
|
6458
|
-
uid: string
|
|
6278
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6459
6279
|
nameKey: string;
|
|
6460
6280
|
openIdConnectUrl: string;
|
|
6461
6281
|
description?: string | undefined;
|
|
6462
6282
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
6463
6283
|
type: "openIdConnect";
|
|
6464
|
-
uid: string
|
|
6284
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6465
6285
|
nameKey: string;
|
|
6466
6286
|
openIdConnectUrl: string;
|
|
6467
6287
|
description?: string | undefined;
|
|
6468
6288
|
}[K], R_2> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "flows" ? {
|
|
6469
6289
|
type: "oauth2";
|
|
6470
|
-
uid: string
|
|
6290
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6471
6291
|
nameKey: string;
|
|
6472
6292
|
flows: {
|
|
6473
6293
|
password?: {
|
|
@@ -6519,7 +6339,7 @@ declare const client: import("vue").Ref<{
|
|
|
6519
6339
|
description?: string | undefined;
|
|
6520
6340
|
}[P] : P extends `${infer K}.${infer R_3}` ? K extends "description" | "type" | "uid" | "nameKey" | "flows" ? R_3 extends import("@scalar/object-utils/nested").Path<{
|
|
6521
6341
|
type: "oauth2";
|
|
6522
|
-
uid: string
|
|
6342
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6523
6343
|
nameKey: string;
|
|
6524
6344
|
flows: {
|
|
6525
6345
|
password?: {
|
|
@@ -6571,7 +6391,7 @@ declare const client: import("vue").Ref<{
|
|
|
6571
6391
|
description?: string | undefined;
|
|
6572
6392
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
6573
6393
|
type: "oauth2";
|
|
6574
|
-
uid: string
|
|
6394
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6575
6395
|
nameKey: string;
|
|
6576
6396
|
flows: {
|
|
6577
6397
|
password?: {
|
|
@@ -6622,33 +6442,33 @@ declare const client: import("vue").Ref<{
|
|
|
6622
6442
|
};
|
|
6623
6443
|
description?: string | undefined;
|
|
6624
6444
|
}[K], R_3> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
6625
|
-
untrackedEdit: <P extends "description" | "type" | "name" | "in" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "flows" | "
|
|
6445
|
+
untrackedEdit: <P extends "description" | "type" | "name" | "in" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "flows" | "password" | "username" | "value" | "token" | "flows.password" | "flows.implicit" | "flows.clientCredentials" | "flows.authorizationCode" | "flows.password.type" | "flows.password.password" | "flows.password.username" | "flows.password.token" | "flows.password.refreshUrl" | "flows.password.scopes" | "flows.password.selectedScopes" | "flows.password.x-scalar-client-id" | "flows.password.tokenUrl" | "flows.password.clientSecret" | `flows.password.scopes.${string}` | `flows.password.selectedScopes.${number}` | "flows.implicit.type" | "flows.implicit.token" | "flows.implicit.refreshUrl" | "flows.implicit.scopes" | "flows.implicit.selectedScopes" | "flows.implicit.x-scalar-client-id" | `flows.implicit.scopes.${string}` | `flows.implicit.selectedScopes.${number}` | "flows.implicit.authorizationUrl" | "flows.implicit.x-scalar-redirect-uri" | "flows.clientCredentials.type" | "flows.clientCredentials.token" | "flows.clientCredentials.refreshUrl" | "flows.clientCredentials.scopes" | "flows.clientCredentials.selectedScopes" | "flows.clientCredentials.x-scalar-client-id" | "flows.clientCredentials.tokenUrl" | "flows.clientCredentials.clientSecret" | `flows.clientCredentials.scopes.${string}` | `flows.clientCredentials.selectedScopes.${number}` | "flows.authorizationCode.type" | "flows.authorizationCode.token" | "flows.authorizationCode.refreshUrl" | "flows.authorizationCode.scopes" | "flows.authorizationCode.selectedScopes" | "flows.authorizationCode.x-scalar-client-id" | "flows.authorizationCode.tokenUrl" | "flows.authorizationCode.clientSecret" | `flows.authorizationCode.scopes.${string}` | `flows.authorizationCode.selectedScopes.${number}` | "flows.authorizationCode.authorizationUrl" | "flows.authorizationCode.x-scalar-redirect-uri" | "flows.authorizationCode.x-usePkce">(uid: string & import("zod").BRAND<"securityScheme">, path: P, value: (P extends "description" | "type" | "name" | "in" | "uid" | "nameKey" | "value" ? {
|
|
6626
6446
|
type: "apiKey";
|
|
6627
6447
|
value: string;
|
|
6628
|
-
uid: string
|
|
6448
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6629
6449
|
name: string;
|
|
6630
6450
|
nameKey: string;
|
|
6631
|
-
in: "
|
|
6451
|
+
in: "cookie" | "query" | "header";
|
|
6632
6452
|
description?: string | undefined;
|
|
6633
6453
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "type" | "name" | "in" | "uid" | "nameKey" | "value" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
6634
6454
|
type: "apiKey";
|
|
6635
6455
|
value: string;
|
|
6636
|
-
uid: string
|
|
6456
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6637
6457
|
name: string;
|
|
6638
6458
|
nameKey: string;
|
|
6639
|
-
in: "
|
|
6459
|
+
in: "cookie" | "query" | "header";
|
|
6640
6460
|
description?: string | undefined;
|
|
6641
6461
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
6642
6462
|
type: "apiKey";
|
|
6643
6463
|
value: string;
|
|
6644
|
-
uid: string
|
|
6464
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6645
6465
|
name: string;
|
|
6646
6466
|
nameKey: string;
|
|
6647
|
-
in: "
|
|
6467
|
+
in: "cookie" | "query" | "header";
|
|
6648
6468
|
description?: string | undefined;
|
|
6649
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "password" | "
|
|
6469
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "password" | "username" | "token" ? {
|
|
6650
6470
|
type: "http";
|
|
6651
|
-
uid: string
|
|
6471
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6652
6472
|
nameKey: string;
|
|
6653
6473
|
scheme: "basic" | "bearer";
|
|
6654
6474
|
bearerFormat: string;
|
|
@@ -6656,9 +6476,9 @@ declare const client: import("vue").Ref<{
|
|
|
6656
6476
|
password: string;
|
|
6657
6477
|
token: string;
|
|
6658
6478
|
description?: string | undefined;
|
|
6659
|
-
}[P] : P extends `${infer K}.${infer R_1}` ? K extends "description" | "type" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "password" | "
|
|
6479
|
+
}[P] : P extends `${infer K}.${infer R_1}` ? K extends "description" | "type" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "password" | "username" | "token" ? R_1 extends import("@scalar/object-utils/nested").Path<{
|
|
6660
6480
|
type: "http";
|
|
6661
|
-
uid: string
|
|
6481
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6662
6482
|
nameKey: string;
|
|
6663
6483
|
scheme: "basic" | "bearer";
|
|
6664
6484
|
bearerFormat: string;
|
|
@@ -6668,7 +6488,7 @@ declare const client: import("vue").Ref<{
|
|
|
6668
6488
|
description?: string | undefined;
|
|
6669
6489
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
6670
6490
|
type: "http";
|
|
6671
|
-
uid: string
|
|
6491
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6672
6492
|
nameKey: string;
|
|
6673
6493
|
scheme: "basic" | "bearer";
|
|
6674
6494
|
bearerFormat: string;
|
|
@@ -6678,25 +6498,25 @@ declare const client: import("vue").Ref<{
|
|
|
6678
6498
|
description?: string | undefined;
|
|
6679
6499
|
}[K], R_1> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "openIdConnectUrl" ? {
|
|
6680
6500
|
type: "openIdConnect";
|
|
6681
|
-
uid: string
|
|
6501
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6682
6502
|
nameKey: string;
|
|
6683
6503
|
openIdConnectUrl: string;
|
|
6684
6504
|
description?: string | undefined;
|
|
6685
6505
|
}[P] : P extends `${infer K}.${infer R_2}` ? K extends "description" | "type" | "uid" | "nameKey" | "openIdConnectUrl" ? R_2 extends import("@scalar/object-utils/nested").Path<{
|
|
6686
6506
|
type: "openIdConnect";
|
|
6687
|
-
uid: string
|
|
6507
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6688
6508
|
nameKey: string;
|
|
6689
6509
|
openIdConnectUrl: string;
|
|
6690
6510
|
description?: string | undefined;
|
|
6691
6511
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
6692
6512
|
type: "openIdConnect";
|
|
6693
|
-
uid: string
|
|
6513
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6694
6514
|
nameKey: string;
|
|
6695
6515
|
openIdConnectUrl: string;
|
|
6696
6516
|
description?: string | undefined;
|
|
6697
6517
|
}[K], R_2> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "flows" ? {
|
|
6698
6518
|
type: "oauth2";
|
|
6699
|
-
uid: string
|
|
6519
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6700
6520
|
nameKey: string;
|
|
6701
6521
|
flows: {
|
|
6702
6522
|
password?: {
|
|
@@ -6748,7 +6568,7 @@ declare const client: import("vue").Ref<{
|
|
|
6748
6568
|
description?: string | undefined;
|
|
6749
6569
|
}[P] : P extends `${infer K}.${infer R_3}` ? K extends "description" | "type" | "uid" | "nameKey" | "flows" ? R_3 extends import("@scalar/object-utils/nested").Path<{
|
|
6750
6570
|
type: "oauth2";
|
|
6751
|
-
uid: string
|
|
6571
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6752
6572
|
nameKey: string;
|
|
6753
6573
|
flows: {
|
|
6754
6574
|
password?: {
|
|
@@ -6800,7 +6620,7 @@ declare const client: import("vue").Ref<{
|
|
|
6800
6620
|
description?: string | undefined;
|
|
6801
6621
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
6802
6622
|
type: "oauth2";
|
|
6803
|
-
uid: string
|
|
6623
|
+
uid: string & import("zod").BRAND<"securityScheme">;
|
|
6804
6624
|
nameKey: string;
|
|
6805
6625
|
flows: {
|
|
6806
6626
|
password?: {
|
|
@@ -6851,13 +6671,13 @@ declare const client: import("vue").Ref<{
|
|
|
6851
6671
|
};
|
|
6852
6672
|
description?: string | undefined;
|
|
6853
6673
|
}[K], R_3> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
6854
|
-
undo: (uid: string) => void;
|
|
6855
|
-
redo: (uid: string) => void;
|
|
6674
|
+
undo: (uid: string & import("zod").BRAND<"securityScheme">) => void;
|
|
6675
|
+
redo: (uid: string & import("zod").BRAND<"securityScheme">) => void;
|
|
6856
6676
|
reset: () => void;
|
|
6857
6677
|
};
|
|
6858
6678
|
serverMutators: {
|
|
6859
6679
|
rawAdd: (item: {
|
|
6860
|
-
uid: string
|
|
6680
|
+
uid: string & import("zod").BRAND<"server">;
|
|
6861
6681
|
url: string;
|
|
6862
6682
|
description?: string | undefined;
|
|
6863
6683
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -6866,7 +6686,7 @@ declare const client: import("vue").Ref<{
|
|
|
6866
6686
|
}> | undefined;
|
|
6867
6687
|
}) => void;
|
|
6868
6688
|
add: (payload: import("@scalar/oas-utils/entities/spec").ServerPayload, parentUid: string) => {
|
|
6869
|
-
uid: string
|
|
6689
|
+
uid: string & import("zod").BRAND<"server">;
|
|
6870
6690
|
url: string;
|
|
6871
6691
|
description?: string | undefined;
|
|
6872
6692
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -6874,9 +6694,9 @@ declare const client: import("vue").Ref<{
|
|
|
6874
6694
|
value?: string;
|
|
6875
6695
|
}> | undefined;
|
|
6876
6696
|
};
|
|
6877
|
-
delete: (serverUid:
|
|
6697
|
+
delete: (serverUid: import("@scalar/oas-utils/entities/spec").Server["uid"], collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void;
|
|
6878
6698
|
set: (item: {
|
|
6879
|
-
uid: string
|
|
6699
|
+
uid: string & import("zod").BRAND<"server">;
|
|
6880
6700
|
url: string;
|
|
6881
6701
|
description?: string | undefined;
|
|
6882
6702
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -6884,8 +6704,8 @@ declare const client: import("vue").Ref<{
|
|
|
6884
6704
|
value?: string;
|
|
6885
6705
|
}> | undefined;
|
|
6886
6706
|
}) => void;
|
|
6887
|
-
edit: <P extends "description" | "uid" | "url" | "variables" | `variables.${string}`>(uid: string, path: P, value: P extends "description" | "uid" | "url" | "variables" ? {
|
|
6888
|
-
uid: string
|
|
6707
|
+
edit: <P extends "description" | "uid" | "url" | "variables" | `variables.${string}`>(uid: (string & import("zod").BRAND<"server">) | null | undefined, path: P, value: P extends "description" | "uid" | "url" | "variables" ? {
|
|
6708
|
+
uid: string & import("zod").BRAND<"server">;
|
|
6889
6709
|
url: string;
|
|
6890
6710
|
description?: string | undefined;
|
|
6891
6711
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -6893,7 +6713,7 @@ declare const client: import("vue").Ref<{
|
|
|
6893
6713
|
value?: string;
|
|
6894
6714
|
}> | undefined;
|
|
6895
6715
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "uid" | "url" | "variables" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
6896
|
-
uid: string
|
|
6716
|
+
uid: string & import("zod").BRAND<"server">;
|
|
6897
6717
|
url: string;
|
|
6898
6718
|
description?: string | undefined;
|
|
6899
6719
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -6901,7 +6721,7 @@ declare const client: import("vue").Ref<{
|
|
|
6901
6721
|
value?: string;
|
|
6902
6722
|
}> | undefined;
|
|
6903
6723
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
6904
|
-
uid: string
|
|
6724
|
+
uid: string & import("zod").BRAND<"server">;
|
|
6905
6725
|
url: string;
|
|
6906
6726
|
description?: string | undefined;
|
|
6907
6727
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -6909,8 +6729,8 @@ declare const client: import("vue").Ref<{
|
|
|
6909
6729
|
value?: string;
|
|
6910
6730
|
}> | undefined;
|
|
6911
6731
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
6912
|
-
untrackedEdit: <P extends "description" | "uid" | "url" | "variables" | `variables.${string}`>(uid: string
|
|
6913
|
-
uid: string
|
|
6732
|
+
untrackedEdit: <P extends "description" | "uid" | "url" | "variables" | `variables.${string}`>(uid: string & import("zod").BRAND<"server">, path: P, value: P extends "description" | "uid" | "url" | "variables" ? {
|
|
6733
|
+
uid: string & import("zod").BRAND<"server">;
|
|
6914
6734
|
url: string;
|
|
6915
6735
|
description?: string | undefined;
|
|
6916
6736
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -6918,7 +6738,7 @@ declare const client: import("vue").Ref<{
|
|
|
6918
6738
|
value?: string;
|
|
6919
6739
|
}> | undefined;
|
|
6920
6740
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "uid" | "url" | "variables" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
6921
|
-
uid: string
|
|
6741
|
+
uid: string & import("zod").BRAND<"server">;
|
|
6922
6742
|
url: string;
|
|
6923
6743
|
description?: string | undefined;
|
|
6924
6744
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -6926,7 +6746,7 @@ declare const client: import("vue").Ref<{
|
|
|
6926
6746
|
value?: string;
|
|
6927
6747
|
}> | undefined;
|
|
6928
6748
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
6929
|
-
uid: string
|
|
6749
|
+
uid: string & import("zod").BRAND<"server">;
|
|
6930
6750
|
url: string;
|
|
6931
6751
|
description?: string | undefined;
|
|
6932
6752
|
variables?: Record<string, Omit<import("@scalar/openapi-types").OpenAPIV3_1.ServerVariableObject, "enum"> & {
|
|
@@ -6934,16 +6754,16 @@ declare const client: import("vue").Ref<{
|
|
|
6934
6754
|
value?: string;
|
|
6935
6755
|
}> | undefined;
|
|
6936
6756
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
6937
|
-
undo: (uid: string) => void;
|
|
6938
|
-
redo: (uid: string) => void;
|
|
6757
|
+
undo: (uid: string & import("zod").BRAND<"server">) => void;
|
|
6758
|
+
redo: (uid: string & import("zod").BRAND<"server">) => void;
|
|
6939
6759
|
reset: () => void;
|
|
6940
6760
|
};
|
|
6941
6761
|
tagMutators: {
|
|
6942
6762
|
rawAdd: (item: {
|
|
6943
6763
|
type: "tag";
|
|
6944
|
-
uid: string
|
|
6764
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
6945
6765
|
name: string;
|
|
6946
|
-
children: string[];
|
|
6766
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
6947
6767
|
description?: string | undefined;
|
|
6948
6768
|
externalDocs?: {
|
|
6949
6769
|
url: string;
|
|
@@ -6955,11 +6775,11 @@ declare const client: import("vue").Ref<{
|
|
|
6955
6775
|
"x-internal"?: boolean | undefined;
|
|
6956
6776
|
"x-scalar-ignore"?: boolean | undefined;
|
|
6957
6777
|
}) => void;
|
|
6958
|
-
add: (payload: import("@scalar/oas-utils/entities/spec").TagPayload, collectionUid:
|
|
6778
|
+
add: (payload: import("@scalar/oas-utils/entities/spec").TagPayload, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void | {
|
|
6959
6779
|
type: "tag";
|
|
6960
|
-
uid: string
|
|
6780
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
6961
6781
|
name: string;
|
|
6962
|
-
children: string[];
|
|
6782
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
6963
6783
|
description?: string | undefined;
|
|
6964
6784
|
externalDocs?: {
|
|
6965
6785
|
url: string;
|
|
@@ -6971,12 +6791,12 @@ declare const client: import("vue").Ref<{
|
|
|
6971
6791
|
"x-internal"?: boolean | undefined;
|
|
6972
6792
|
"x-scalar-ignore"?: boolean | undefined;
|
|
6973
6793
|
};
|
|
6974
|
-
delete: (tag: import("@scalar/oas-utils/entities/spec").Tag, collectionUid:
|
|
6794
|
+
delete: (tag: import("@scalar/oas-utils/entities/spec").Tag, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void;
|
|
6975
6795
|
set: (item: {
|
|
6976
6796
|
type: "tag";
|
|
6977
|
-
uid: string
|
|
6797
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
6978
6798
|
name: string;
|
|
6979
|
-
children: string[];
|
|
6799
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
6980
6800
|
description?: string | undefined;
|
|
6981
6801
|
externalDocs?: {
|
|
6982
6802
|
url: string;
|
|
@@ -6988,11 +6808,11 @@ declare const client: import("vue").Ref<{
|
|
|
6988
6808
|
"x-internal"?: boolean | undefined;
|
|
6989
6809
|
"x-scalar-ignore"?: boolean | undefined;
|
|
6990
6810
|
}) => void;
|
|
6991
|
-
edit: <P extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "externalDocs.description" | "externalDocs.url" | `children.${number}` | "x-scalar-children" | `x-scalar-children.${number}` | `x-scalar-children.${number}.tagName`>(uid: string, path: P, value: P extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "x-scalar-children" ? {
|
|
6811
|
+
edit: <P extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "externalDocs.description" | "externalDocs.url" | `children.${number}` | "x-scalar-children" | `x-scalar-children.${number}` | `x-scalar-children.${number}.tagName`>(uid: (string & import("zod").BRAND<"tag">) | null | undefined, path: P, value: P extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "x-scalar-children" ? {
|
|
6992
6812
|
type: "tag";
|
|
6993
|
-
uid: string
|
|
6813
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
6994
6814
|
name: string;
|
|
6995
|
-
children: string[];
|
|
6815
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
6996
6816
|
description?: string | undefined;
|
|
6997
6817
|
externalDocs?: {
|
|
6998
6818
|
url: string;
|
|
@@ -7005,9 +6825,9 @@ declare const client: import("vue").Ref<{
|
|
|
7005
6825
|
"x-scalar-ignore"?: boolean | undefined;
|
|
7006
6826
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "x-scalar-children" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
7007
6827
|
type: "tag";
|
|
7008
|
-
uid: string
|
|
6828
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
7009
6829
|
name: string;
|
|
7010
|
-
children: string[];
|
|
6830
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
7011
6831
|
description?: string | undefined;
|
|
7012
6832
|
externalDocs?: {
|
|
7013
6833
|
url: string;
|
|
@@ -7020,9 +6840,9 @@ declare const client: import("vue").Ref<{
|
|
|
7020
6840
|
"x-scalar-ignore"?: boolean | undefined;
|
|
7021
6841
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
7022
6842
|
type: "tag";
|
|
7023
|
-
uid: string
|
|
6843
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
7024
6844
|
name: string;
|
|
7025
|
-
children: string[];
|
|
6845
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
7026
6846
|
description?: string | undefined;
|
|
7027
6847
|
externalDocs?: {
|
|
7028
6848
|
url: string;
|
|
@@ -7034,11 +6854,11 @@ declare const client: import("vue").Ref<{
|
|
|
7034
6854
|
"x-internal"?: boolean | undefined;
|
|
7035
6855
|
"x-scalar-ignore"?: boolean | undefined;
|
|
7036
6856
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
7037
|
-
untrackedEdit: <P extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "externalDocs.description" | "externalDocs.url" | `children.${number}` | "x-scalar-children" | `x-scalar-children.${number}` | `x-scalar-children.${number}.tagName`>(uid: string
|
|
6857
|
+
untrackedEdit: <P extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "externalDocs.description" | "externalDocs.url" | `children.${number}` | "x-scalar-children" | `x-scalar-children.${number}` | `x-scalar-children.${number}.tagName`>(uid: string & import("zod").BRAND<"tag">, path: P, value: P extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "x-scalar-children" ? {
|
|
7038
6858
|
type: "tag";
|
|
7039
|
-
uid: string
|
|
6859
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
7040
6860
|
name: string;
|
|
7041
|
-
children: string[];
|
|
6861
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
7042
6862
|
description?: string | undefined;
|
|
7043
6863
|
externalDocs?: {
|
|
7044
6864
|
url: string;
|
|
@@ -7051,9 +6871,9 @@ declare const client: import("vue").Ref<{
|
|
|
7051
6871
|
"x-scalar-ignore"?: boolean | undefined;
|
|
7052
6872
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "externalDocs" | "x-internal" | "x-scalar-ignore" | "type" | "name" | "uid" | "children" | "x-scalar-children" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
7053
6873
|
type: "tag";
|
|
7054
|
-
uid: string
|
|
6874
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
7055
6875
|
name: string;
|
|
7056
|
-
children: string[];
|
|
6876
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
7057
6877
|
description?: string | undefined;
|
|
7058
6878
|
externalDocs?: {
|
|
7059
6879
|
url: string;
|
|
@@ -7066,9 +6886,9 @@ declare const client: import("vue").Ref<{
|
|
|
7066
6886
|
"x-scalar-ignore"?: boolean | undefined;
|
|
7067
6887
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
7068
6888
|
type: "tag";
|
|
7069
|
-
uid: string
|
|
6889
|
+
uid: string & import("zod").BRAND<"tag">;
|
|
7070
6890
|
name: string;
|
|
7071
|
-
children: string[];
|
|
6891
|
+
children: ((string & import("zod").BRAND<"tag">) | (string & import("zod").BRAND<"operation">))[];
|
|
7072
6892
|
description?: string | undefined;
|
|
7073
6893
|
externalDocs?: {
|
|
7074
6894
|
url: string;
|
|
@@ -7080,19 +6900,19 @@ declare const client: import("vue").Ref<{
|
|
|
7080
6900
|
"x-internal"?: boolean | undefined;
|
|
7081
6901
|
"x-scalar-ignore"?: boolean | undefined;
|
|
7082
6902
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
7083
|
-
undo: (uid: string) => void;
|
|
7084
|
-
redo: (uid: string) => void;
|
|
6903
|
+
undo: (uid: string & import("zod").BRAND<"tag">) => void;
|
|
6904
|
+
redo: (uid: string & import("zod").BRAND<"tag">) => void;
|
|
7085
6905
|
reset: () => void;
|
|
7086
6906
|
};
|
|
7087
6907
|
workspaceMutators: {
|
|
7088
6908
|
rawAdd: (item: {
|
|
7089
|
-
uid: string
|
|
6909
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
7090
6910
|
name: string;
|
|
7091
6911
|
description: string;
|
|
7092
|
-
collections: string[];
|
|
6912
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
7093
6913
|
environments: Record<string, string>;
|
|
7094
6914
|
activeEnvironmentId: string;
|
|
7095
|
-
cookies: string[];
|
|
6915
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
7096
6916
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
7097
6917
|
selectedHttpClient: {
|
|
7098
6918
|
targetKey: string;
|
|
@@ -7108,13 +6928,13 @@ declare const client: import("vue").Ref<{
|
|
|
7108
6928
|
proxyUrl?: string | undefined;
|
|
7109
6929
|
}) => void;
|
|
7110
6930
|
add: (payload?: Partial<import("@scalar/oas-utils/entities").Workspace>) => {
|
|
7111
|
-
uid: string
|
|
6931
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
7112
6932
|
name: string;
|
|
7113
6933
|
description: string;
|
|
7114
|
-
collections: string[];
|
|
6934
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
7115
6935
|
environments: Record<string, string>;
|
|
7116
6936
|
activeEnvironmentId: string;
|
|
7117
|
-
cookies: string[];
|
|
6937
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
7118
6938
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
7119
6939
|
selectedHttpClient: {
|
|
7120
6940
|
targetKey: string;
|
|
@@ -7129,15 +6949,15 @@ declare const client: import("vue").Ref<{
|
|
|
7129
6949
|
} | undefined;
|
|
7130
6950
|
proxyUrl?: string | undefined;
|
|
7131
6951
|
};
|
|
7132
|
-
delete: (uid:
|
|
6952
|
+
delete: (uid: import("@scalar/oas-utils/entities").Workspace["uid"]) => void;
|
|
7133
6953
|
set: (item: {
|
|
7134
|
-
uid: string
|
|
6954
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
7135
6955
|
name: string;
|
|
7136
6956
|
description: string;
|
|
7137
|
-
collections: string[];
|
|
6957
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
7138
6958
|
environments: Record<string, string>;
|
|
7139
6959
|
activeEnvironmentId: string;
|
|
7140
|
-
cookies: string[];
|
|
6960
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
7141
6961
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
7142
6962
|
selectedHttpClient: {
|
|
7143
6963
|
targetKey: string;
|
|
@@ -7152,14 +6972,14 @@ declare const client: import("vue").Ref<{
|
|
|
7152
6972
|
} | undefined;
|
|
7153
6973
|
proxyUrl?: string | undefined;
|
|
7154
6974
|
}) => void;
|
|
7155
|
-
edit: <P extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" | `cookies.${number}` | `collections.${number}` | `environments.${string}` | "selectedHttpClient.targetKey" | "selectedHttpClient.clientKey" | "hotKeyConfig.modifiers" | "hotKeyConfig.hotKeys" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}` | "hotKeyConfig.hotKeys.].event">(uid: string, path: P, value: P extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" ? {
|
|
7156
|
-
uid: string
|
|
6975
|
+
edit: <P extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" | `cookies.${number}` | `collections.${number}` | `environments.${string}` | "selectedHttpClient.targetKey" | "selectedHttpClient.clientKey" | "hotKeyConfig.modifiers" | "hotKeyConfig.hotKeys" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}` | "hotKeyConfig.hotKeys.].event">(uid: (string & import("zod").BRAND<"workspace">) | null | undefined, path: P, value: P extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" ? {
|
|
6976
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
7157
6977
|
name: string;
|
|
7158
6978
|
description: string;
|
|
7159
|
-
collections: string[];
|
|
6979
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
7160
6980
|
environments: Record<string, string>;
|
|
7161
6981
|
activeEnvironmentId: string;
|
|
7162
|
-
cookies: string[];
|
|
6982
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
7163
6983
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
7164
6984
|
selectedHttpClient: {
|
|
7165
6985
|
targetKey: string;
|
|
@@ -7174,13 +6994,13 @@ declare const client: import("vue").Ref<{
|
|
|
7174
6994
|
} | undefined;
|
|
7175
6995
|
proxyUrl?: string | undefined;
|
|
7176
6996
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
7177
|
-
uid: string
|
|
6997
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
7178
6998
|
name: string;
|
|
7179
6999
|
description: string;
|
|
7180
|
-
collections: string[];
|
|
7000
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
7181
7001
|
environments: Record<string, string>;
|
|
7182
7002
|
activeEnvironmentId: string;
|
|
7183
|
-
cookies: string[];
|
|
7003
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
7184
7004
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
7185
7005
|
selectedHttpClient: {
|
|
7186
7006
|
targetKey: string;
|
|
@@ -7195,13 +7015,13 @@ declare const client: import("vue").Ref<{
|
|
|
7195
7015
|
} | undefined;
|
|
7196
7016
|
proxyUrl?: string | undefined;
|
|
7197
7017
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
7198
|
-
uid: string
|
|
7018
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
7199
7019
|
name: string;
|
|
7200
7020
|
description: string;
|
|
7201
|
-
collections: string[];
|
|
7021
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
7202
7022
|
environments: Record<string, string>;
|
|
7203
7023
|
activeEnvironmentId: string;
|
|
7204
|
-
cookies: string[];
|
|
7024
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
7205
7025
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
7206
7026
|
selectedHttpClient: {
|
|
7207
7027
|
targetKey: string;
|
|
@@ -7216,14 +7036,14 @@ declare const client: import("vue").Ref<{
|
|
|
7216
7036
|
} | undefined;
|
|
7217
7037
|
proxyUrl?: string | undefined;
|
|
7218
7038
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
7219
|
-
untrackedEdit: <P extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" | `cookies.${number}` | `collections.${number}` | `environments.${string}` | "selectedHttpClient.targetKey" | "selectedHttpClient.clientKey" | "hotKeyConfig.modifiers" | "hotKeyConfig.hotKeys" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}` | "hotKeyConfig.hotKeys.].event">(uid: string, path: P, value: P extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" ? {
|
|
7220
|
-
uid: string
|
|
7039
|
+
untrackedEdit: <P extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" | `cookies.${number}` | `collections.${number}` | `environments.${string}` | "selectedHttpClient.targetKey" | "selectedHttpClient.clientKey" | "hotKeyConfig.modifiers" | "hotKeyConfig.hotKeys" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}` | "hotKeyConfig.hotKeys.].event">(uid: string & import("zod").BRAND<"workspace">, path: P, value: P extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" ? {
|
|
7040
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
7221
7041
|
name: string;
|
|
7222
7042
|
description: string;
|
|
7223
|
-
collections: string[];
|
|
7043
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
7224
7044
|
environments: Record<string, string>;
|
|
7225
7045
|
activeEnvironmentId: string;
|
|
7226
|
-
cookies: string[];
|
|
7046
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
7227
7047
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
7228
7048
|
selectedHttpClient: {
|
|
7229
7049
|
targetKey: string;
|
|
@@ -7238,13 +7058,13 @@ declare const client: import("vue").Ref<{
|
|
|
7238
7058
|
} | undefined;
|
|
7239
7059
|
proxyUrl?: string | undefined;
|
|
7240
7060
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "cookies" | "description" | "name" | "uid" | "collections" | "environments" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
7241
|
-
uid: string
|
|
7061
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
7242
7062
|
name: string;
|
|
7243
7063
|
description: string;
|
|
7244
|
-
collections: string[];
|
|
7064
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
7245
7065
|
environments: Record<string, string>;
|
|
7246
7066
|
activeEnvironmentId: string;
|
|
7247
|
-
cookies: string[];
|
|
7067
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
7248
7068
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
7249
7069
|
selectedHttpClient: {
|
|
7250
7070
|
targetKey: string;
|
|
@@ -7259,13 +7079,13 @@ declare const client: import("vue").Ref<{
|
|
|
7259
7079
|
} | undefined;
|
|
7260
7080
|
proxyUrl?: string | undefined;
|
|
7261
7081
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
7262
|
-
uid: string
|
|
7082
|
+
uid: string & import("zod").BRAND<"workspace">;
|
|
7263
7083
|
name: string;
|
|
7264
7084
|
description: string;
|
|
7265
|
-
collections: string[];
|
|
7085
|
+
collections: (string & import("zod").BRAND<"collection">)[];
|
|
7266
7086
|
environments: Record<string, string>;
|
|
7267
7087
|
activeEnvironmentId: string;
|
|
7268
|
-
cookies: string[];
|
|
7088
|
+
cookies: (string & import("zod").BRAND<"cookie">)[];
|
|
7269
7089
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "none";
|
|
7270
7090
|
selectedHttpClient: {
|
|
7271
7091
|
targetKey: string;
|
|
@@ -7280,12 +7100,12 @@ declare const client: import("vue").Ref<{
|
|
|
7280
7100
|
} | undefined;
|
|
7281
7101
|
proxyUrl?: string | undefined;
|
|
7282
7102
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
7283
|
-
undo: (uid: string) => void;
|
|
7284
|
-
redo: (uid: string) => void;
|
|
7103
|
+
undo: (uid: string & import("zod").BRAND<"workspace">) => void;
|
|
7104
|
+
redo: (uid: string & import("zod").BRAND<"workspace">) => void;
|
|
7285
7105
|
reset: () => void;
|
|
7286
7106
|
};
|
|
7287
|
-
addCollectionEnvironment: (environmentName: string, environment: import("@scalar/oas-utils/entities/spec").XScalarEnvironment, collectionUid:
|
|
7288
|
-
removeCollectionEnvironment: (environmentName: string, collectionUid:
|
|
7107
|
+
addCollectionEnvironment: (environmentName: string, environment: import("@scalar/oas-utils/entities/spec").XScalarEnvironment, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void;
|
|
7108
|
+
removeCollectionEnvironment: (environmentName: string, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => void;
|
|
7289
7109
|
};
|
|
7290
7110
|
} | null>;
|
|
7291
7111
|
/**
|