@scalar/api-client 2.3.10 → 2.3.11
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 +27 -0
- package/dist/layouts/App/create-api-client-app.d.ts +18 -160
- package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
- package/dist/layouts/Modal/create-api-client-modal.d.ts +36 -320
- package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
- package/dist/layouts/Web/create-api-client-web.d.ts +18 -160
- package/dist/layouts/Web/create-api-client-web.d.ts.map +1 -1
- package/dist/libs/create-client.d.ts +18 -160
- package/dist/libs/create-client.d.ts.map +1 -1
- package/dist/libs/send-request/create-request-operation.d.ts +1 -0
- package/dist/libs/send-request/create-request-operation.d.ts.map +1 -1
- package/dist/store/import-spec.d.ts +2 -154
- package/dist/store/import-spec.d.ts.map +1 -1
- package/dist/store/security-schemes.d.ts +16 -6
- package/dist/store/security-schemes.d.ts.map +1 -1
- package/dist/store/store.d.ts +18 -160
- package/dist/store/store.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/views/Request/Request.vue.d.ts +2 -0
- package/dist/views/Request/Request.vue.d.ts.map +1 -1
- package/dist/views/Request/Request.vue.js +2 -2
- package/dist/views/Request/Request.vue2.js +35 -33
- package/dist/views/Request/RequestRoot.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestRoot.vue.js +1 -1
- package/dist/views/Request/RequestRoot.vue2.js +63 -62
- package/dist/views/Request/ResponseSection/RequestHeaders.vue.d.ts +11 -0
- package/dist/views/Request/ResponseSection/RequestHeaders.vue.d.ts.map +1 -0
- package/dist/views/Request/ResponseSection/RequestHeaders.vue.js +81 -0
- package/dist/views/Request/ResponseSection/RequestHeaders.vue2.js +4 -0
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/dist/views/Request/ResponseSection/ResponseHeaders.vue.js +3 -3
- package/dist/views/Request/ResponseSection/ResponseSection.vue.d.ts +2 -0
- package/dist/views/Request/ResponseSection/ResponseSection.vue.d.ts.map +1 -1
- package/dist/views/Request/ResponseSection/ResponseSection.vue.js +3 -3
- package/dist/views/Request/ResponseSection/ResponseSection.vue2.js +73 -60
- package/dist/views/Request/consts/mediaTypes.d.ts.map +1 -1
- package/dist/views/Request/consts/mediaTypes.js +1 -0
- package/package.json +13 -13
|
@@ -78,6 +78,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
78
78
|
} | undefined;
|
|
79
79
|
};
|
|
80
80
|
description?: string | undefined;
|
|
81
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
81
82
|
}>;
|
|
82
83
|
securitySchemeMutators: {
|
|
83
84
|
add: (item: {
|
|
@@ -156,6 +157,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
156
157
|
} | undefined;
|
|
157
158
|
};
|
|
158
159
|
description?: string | undefined;
|
|
160
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
159
161
|
}) => void;
|
|
160
162
|
delete: (uid: (string & import("zod").BRAND<"securityScheme">) | null | undefined) => void;
|
|
161
163
|
set: (item: {
|
|
@@ -234,8 +236,9 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
234
236
|
} | undefined;
|
|
235
237
|
};
|
|
236
238
|
description?: string | undefined;
|
|
239
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
237
240
|
}) => void;
|
|
238
|
-
edit: <P extends "value" | "description" | "type" | "name" | "in" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "flows" | "password" | "username" | "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 "value" | "description" | "type" | "name" | "in" | "uid" | "nameKey" ? {
|
|
241
|
+
edit: <P extends "value" | "description" | "type" | "name" | "in" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "x-default-scopes" | "flows" | "password" | "username" | "token" | `x-default-scopes.${number}` | "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 "value" | "description" | "type" | "name" | "in" | "uid" | "nameKey" ? {
|
|
239
242
|
type: "apiKey";
|
|
240
243
|
value: string;
|
|
241
244
|
uid: string & import("zod").BRAND<"securityScheme">;
|
|
@@ -307,7 +310,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
307
310
|
nameKey: string;
|
|
308
311
|
openIdConnectUrl: string;
|
|
309
312
|
description?: string | undefined;
|
|
310
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "flows" ? {
|
|
313
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "x-default-scopes" | "flows" ? {
|
|
311
314
|
type: "oauth2";
|
|
312
315
|
uid: string & import("zod").BRAND<"securityScheme">;
|
|
313
316
|
nameKey: string;
|
|
@@ -359,7 +362,8 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
359
362
|
} | undefined;
|
|
360
363
|
};
|
|
361
364
|
description?: string | undefined;
|
|
362
|
-
|
|
365
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
366
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "type" | "uid" | "nameKey" | "x-default-scopes" | "flows" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
363
367
|
type: "oauth2";
|
|
364
368
|
uid: string & import("zod").BRAND<"securityScheme">;
|
|
365
369
|
nameKey: string;
|
|
@@ -411,6 +415,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
411
415
|
} | undefined;
|
|
412
416
|
};
|
|
413
417
|
description?: string | undefined;
|
|
418
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
414
419
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
415
420
|
type: "oauth2";
|
|
416
421
|
uid: string & import("zod").BRAND<"securityScheme">;
|
|
@@ -463,8 +468,9 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
463
468
|
} | undefined;
|
|
464
469
|
};
|
|
465
470
|
description?: string | undefined;
|
|
471
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
466
472
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
467
|
-
untrackedEdit: <P extends "value" | "description" | "type" | "name" | "in" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "flows" | "password" | "username" | "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 "value" | "description" | "type" | "name" | "in" | "uid" | "nameKey" ? {
|
|
473
|
+
untrackedEdit: <P extends "value" | "description" | "type" | "name" | "in" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "x-default-scopes" | "flows" | "password" | "username" | "token" | `x-default-scopes.${number}` | "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 "value" | "description" | "type" | "name" | "in" | "uid" | "nameKey" ? {
|
|
468
474
|
type: "apiKey";
|
|
469
475
|
value: string;
|
|
470
476
|
uid: string & import("zod").BRAND<"securityScheme">;
|
|
@@ -536,7 +542,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
536
542
|
nameKey: string;
|
|
537
543
|
openIdConnectUrl: string;
|
|
538
544
|
description?: string | undefined;
|
|
539
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "flows" ? {
|
|
545
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "x-default-scopes" | "flows" ? {
|
|
540
546
|
type: "oauth2";
|
|
541
547
|
uid: string & import("zod").BRAND<"securityScheme">;
|
|
542
548
|
nameKey: string;
|
|
@@ -588,7 +594,8 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
588
594
|
} | undefined;
|
|
589
595
|
};
|
|
590
596
|
description?: string | undefined;
|
|
591
|
-
|
|
597
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
598
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "type" | "uid" | "nameKey" | "x-default-scopes" | "flows" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
592
599
|
type: "oauth2";
|
|
593
600
|
uid: string & import("zod").BRAND<"securityScheme">;
|
|
594
601
|
nameKey: string;
|
|
@@ -640,6 +647,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
640
647
|
} | undefined;
|
|
641
648
|
};
|
|
642
649
|
description?: string | undefined;
|
|
650
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
643
651
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
644
652
|
type: "oauth2";
|
|
645
653
|
uid: string & import("zod").BRAND<"securityScheme">;
|
|
@@ -692,6 +700,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
692
700
|
} | undefined;
|
|
693
701
|
};
|
|
694
702
|
description?: string | undefined;
|
|
703
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
695
704
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
696
705
|
undo: (uid: string & import("zod").BRAND<"securityScheme">) => void;
|
|
697
706
|
redo: (uid: string & import("zod").BRAND<"securityScheme">) => void;
|
|
@@ -776,6 +785,7 @@ export declare function extendedSecurityDataFactory({ securitySchemeMutators, co
|
|
|
776
785
|
} | undefined;
|
|
777
786
|
};
|
|
778
787
|
description?: string | undefined;
|
|
788
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
779
789
|
};
|
|
780
790
|
deleteSecurityScheme: (schemeUid: SecurityScheme["uid"]) => void;
|
|
781
791
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"security-schemes.d.ts","sourceRoot":"","sources":["../../src/store/security-schemes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACzD,OAAO,EACL,KAAK,UAAU,EACf,KAAK,cAAc,EACnB,KAAK,qBAAqB,EAE3B,MAAM,iCAAiC,CAAA;AAKxC,mDAAmD;AACnD,wBAAgB,0BAA0B,CAAC,eAAe,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"security-schemes.d.ts","sourceRoot":"","sources":["../../src/store/security-schemes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACzD,OAAO,EACL,KAAK,UAAU,EACf,KAAK,cAAc,EACnB,KAAK,qBAAqB,EAE3B,MAAM,iCAAiC,CAAA;AAKxC,mDAAmD;AACnD,wBAAgB,0BAA0B,CAAC,eAAe,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAuFsvzD,CAAC;;;;;;;;;;;;oBAA4X,CAAC;;;;;;;;;;6BAA4V,CAAC;;;;;;;;;;6BAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAA9iC,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAA9iC,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAA9iC,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;wBAA9iC,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;wBAA9iC,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAA9iC,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;wBAA9iC,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;wBAA9iC,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;EA3Et21D;AAED,sDAAsD;AACtD,wBAAgB,2BAA2B,CAAC,EAC1C,sBAAsB,EACtB,kBAAkB,EAClB,WAAW,EACX,QAAQ,EACR,eAAe,GAChB,EAAE,YAAY;iCAGF,qBAAqB,iBAEf,UAAU,CAAC,KAAK,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBA6DqxzD,CAAC;;;;;;;;;;;;oBAA4X,CAAC;;;;;;;;;;6BAA4V,CAAC;;;;;;;;;;6BAAkV,CAAC;;;;;;;;;;;;;;;;;sCA5C5z1D,cAAc,CAAC,KAAK,CAAC;EA2C/D"}
|
package/dist/store/store.d.ts
CHANGED
|
@@ -359,6 +359,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
359
359
|
} | undefined;
|
|
360
360
|
};
|
|
361
361
|
description?: string | undefined;
|
|
362
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
362
363
|
}>;
|
|
363
364
|
modalState: {
|
|
364
365
|
open: boolean;
|
|
@@ -431,83 +432,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
431
432
|
examples: import("@scalar/oas-utils/entities/spec").RequestExample[];
|
|
432
433
|
servers: import("@scalar/oas-utils/entities/spec").Server[];
|
|
433
434
|
tags: import("@scalar/oas-utils/entities/spec").Tag[];
|
|
434
|
-
securitySchemes:
|
|
435
|
-
uid: string & import("zod").BRAND<"securityScheme">;
|
|
436
|
-
name: string;
|
|
437
|
-
value: string;
|
|
438
|
-
type: "apiKey";
|
|
439
|
-
in: "cookie" | "query" | "header";
|
|
440
|
-
nameKey: string;
|
|
441
|
-
description?: string | undefined;
|
|
442
|
-
} | {
|
|
443
|
-
uid: string & import("zod").BRAND<"securityScheme">;
|
|
444
|
-
type: "http";
|
|
445
|
-
password: string;
|
|
446
|
-
nameKey: string;
|
|
447
|
-
scheme: "basic" | "bearer";
|
|
448
|
-
bearerFormat: string;
|
|
449
|
-
username: string;
|
|
450
|
-
token: string;
|
|
451
|
-
description?: string | undefined;
|
|
452
|
-
} | {
|
|
453
|
-
uid: string & import("zod").BRAND<"securityScheme">;
|
|
454
|
-
type: "openIdConnect";
|
|
455
|
-
nameKey: string;
|
|
456
|
-
openIdConnectUrl: string;
|
|
457
|
-
description?: string | undefined;
|
|
458
|
-
} | {
|
|
459
|
-
uid: string & import("zod").BRAND<"securityScheme">;
|
|
460
|
-
type: "oauth2";
|
|
461
|
-
nameKey: string;
|
|
462
|
-
flows: {
|
|
463
|
-
password?: {
|
|
464
|
-
type: "password";
|
|
465
|
-
password: string;
|
|
466
|
-
username: string;
|
|
467
|
-
token: string;
|
|
468
|
-
refreshUrl: string;
|
|
469
|
-
scopes: Record<string, string>;
|
|
470
|
-
selectedScopes: string[];
|
|
471
|
-
"x-scalar-client-id": string;
|
|
472
|
-
tokenUrl: string;
|
|
473
|
-
clientSecret: string;
|
|
474
|
-
} | undefined;
|
|
475
|
-
implicit?: {
|
|
476
|
-
type: "implicit";
|
|
477
|
-
token: string;
|
|
478
|
-
refreshUrl: string;
|
|
479
|
-
scopes: Record<string, string>;
|
|
480
|
-
selectedScopes: string[];
|
|
481
|
-
"x-scalar-client-id": string;
|
|
482
|
-
authorizationUrl: string;
|
|
483
|
-
"x-scalar-redirect-uri": string;
|
|
484
|
-
} | undefined;
|
|
485
|
-
clientCredentials?: {
|
|
486
|
-
type: "clientCredentials";
|
|
487
|
-
token: string;
|
|
488
|
-
refreshUrl: string;
|
|
489
|
-
scopes: Record<string, string>;
|
|
490
|
-
selectedScopes: string[];
|
|
491
|
-
"x-scalar-client-id": string;
|
|
492
|
-
tokenUrl: string;
|
|
493
|
-
clientSecret: string;
|
|
494
|
-
} | undefined;
|
|
495
|
-
authorizationCode?: {
|
|
496
|
-
type: "authorizationCode";
|
|
497
|
-
token: string;
|
|
498
|
-
refreshUrl: string;
|
|
499
|
-
scopes: Record<string, string>;
|
|
500
|
-
selectedScopes: string[];
|
|
501
|
-
"x-scalar-client-id": string;
|
|
502
|
-
authorizationUrl: string;
|
|
503
|
-
"x-scalar-redirect-uri": string;
|
|
504
|
-
tokenUrl: string;
|
|
505
|
-
clientSecret: string;
|
|
506
|
-
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
507
|
-
} | undefined;
|
|
508
|
-
};
|
|
509
|
-
description?: string | undefined;
|
|
510
|
-
})[];
|
|
435
|
+
securitySchemes: SecurityScheme[];
|
|
511
436
|
} | undefined>;
|
|
512
437
|
importSpecFromUrl: (url: string, workspaceUid: string, { proxyUrl, ...options }?: Omit<Pick<{
|
|
513
438
|
uid?: string | undefined;
|
|
@@ -601,83 +526,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
601
526
|
examples: import("@scalar/oas-utils/entities/spec").RequestExample[];
|
|
602
527
|
servers: import("@scalar/oas-utils/entities/spec").Server[];
|
|
603
528
|
tags: import("@scalar/oas-utils/entities/spec").Tag[];
|
|
604
|
-
securitySchemes:
|
|
605
|
-
uid: string & import("zod").BRAND<"securityScheme">;
|
|
606
|
-
name: string;
|
|
607
|
-
value: string;
|
|
608
|
-
type: "apiKey";
|
|
609
|
-
in: "cookie" | "query" | "header";
|
|
610
|
-
nameKey: string;
|
|
611
|
-
description?: string | undefined;
|
|
612
|
-
} | {
|
|
613
|
-
uid: string & import("zod").BRAND<"securityScheme">;
|
|
614
|
-
type: "http";
|
|
615
|
-
password: string;
|
|
616
|
-
nameKey: string;
|
|
617
|
-
scheme: "basic" | "bearer";
|
|
618
|
-
bearerFormat: string;
|
|
619
|
-
username: string;
|
|
620
|
-
token: string;
|
|
621
|
-
description?: string | undefined;
|
|
622
|
-
} | {
|
|
623
|
-
uid: string & import("zod").BRAND<"securityScheme">;
|
|
624
|
-
type: "openIdConnect";
|
|
625
|
-
nameKey: string;
|
|
626
|
-
openIdConnectUrl: string;
|
|
627
|
-
description?: string | undefined;
|
|
628
|
-
} | {
|
|
629
|
-
uid: string & import("zod").BRAND<"securityScheme">;
|
|
630
|
-
type: "oauth2";
|
|
631
|
-
nameKey: string;
|
|
632
|
-
flows: {
|
|
633
|
-
password?: {
|
|
634
|
-
type: "password";
|
|
635
|
-
password: string;
|
|
636
|
-
username: string;
|
|
637
|
-
token: string;
|
|
638
|
-
refreshUrl: string;
|
|
639
|
-
scopes: Record<string, string>;
|
|
640
|
-
selectedScopes: string[];
|
|
641
|
-
"x-scalar-client-id": string;
|
|
642
|
-
tokenUrl: string;
|
|
643
|
-
clientSecret: string;
|
|
644
|
-
} | undefined;
|
|
645
|
-
implicit?: {
|
|
646
|
-
type: "implicit";
|
|
647
|
-
token: string;
|
|
648
|
-
refreshUrl: string;
|
|
649
|
-
scopes: Record<string, string>;
|
|
650
|
-
selectedScopes: string[];
|
|
651
|
-
"x-scalar-client-id": string;
|
|
652
|
-
authorizationUrl: string;
|
|
653
|
-
"x-scalar-redirect-uri": string;
|
|
654
|
-
} | undefined;
|
|
655
|
-
clientCredentials?: {
|
|
656
|
-
type: "clientCredentials";
|
|
657
|
-
token: string;
|
|
658
|
-
refreshUrl: string;
|
|
659
|
-
scopes: Record<string, string>;
|
|
660
|
-
selectedScopes: string[];
|
|
661
|
-
"x-scalar-client-id": string;
|
|
662
|
-
tokenUrl: string;
|
|
663
|
-
clientSecret: string;
|
|
664
|
-
} | undefined;
|
|
665
|
-
authorizationCode?: {
|
|
666
|
-
type: "authorizationCode";
|
|
667
|
-
token: string;
|
|
668
|
-
refreshUrl: string;
|
|
669
|
-
scopes: Record<string, string>;
|
|
670
|
-
selectedScopes: string[];
|
|
671
|
-
"x-scalar-client-id": string;
|
|
672
|
-
authorizationUrl: string;
|
|
673
|
-
"x-scalar-redirect-uri": string;
|
|
674
|
-
tokenUrl: string;
|
|
675
|
-
clientSecret: string;
|
|
676
|
-
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
677
|
-
} | undefined;
|
|
678
|
-
};
|
|
679
|
-
description?: string | undefined;
|
|
680
|
-
})[];
|
|
529
|
+
securitySchemes: SecurityScheme[];
|
|
681
530
|
} | undefined>>>>>;
|
|
682
531
|
cookieMutators: {
|
|
683
532
|
add: (item: {
|
|
@@ -2655,6 +2504,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
2655
2504
|
} | undefined;
|
|
2656
2505
|
};
|
|
2657
2506
|
description?: string | undefined;
|
|
2507
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
2658
2508
|
}) => void;
|
|
2659
2509
|
add: (payload: import("@scalar/types/entities").SecuritySchemePayload, collectionUid: import("@scalar/oas-utils/entities/spec").Collection["uid"]) => {
|
|
2660
2510
|
type: "apiKey";
|
|
@@ -2732,6 +2582,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
2732
2582
|
} | undefined;
|
|
2733
2583
|
};
|
|
2734
2584
|
description?: string | undefined;
|
|
2585
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
2735
2586
|
};
|
|
2736
2587
|
delete: (schemeUid: SecurityScheme["uid"]) => void;
|
|
2737
2588
|
set: (item: {
|
|
@@ -2810,8 +2661,9 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
2810
2661
|
} | undefined;
|
|
2811
2662
|
};
|
|
2812
2663
|
description?: string | undefined;
|
|
2664
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
2813
2665
|
}) => void;
|
|
2814
|
-
edit: <P extends "value" | "description" | "type" | "name" | "in" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "flows" | "password" | "username" | "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 "value" | "description" | "type" | "name" | "in" | "uid" | "nameKey" ? {
|
|
2666
|
+
edit: <P extends "value" | "description" | "type" | "name" | "in" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "x-default-scopes" | "flows" | "password" | "username" | "token" | `x-default-scopes.${number}` | "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 "value" | "description" | "type" | "name" | "in" | "uid" | "nameKey" ? {
|
|
2815
2667
|
type: "apiKey";
|
|
2816
2668
|
value: string;
|
|
2817
2669
|
uid: string & import("zod").BRAND<"securityScheme">;
|
|
@@ -2883,7 +2735,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
2883
2735
|
nameKey: string;
|
|
2884
2736
|
openIdConnectUrl: string;
|
|
2885
2737
|
description?: string | undefined;
|
|
2886
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "flows" ? {
|
|
2738
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "x-default-scopes" | "flows" ? {
|
|
2887
2739
|
type: "oauth2";
|
|
2888
2740
|
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2889
2741
|
nameKey: string;
|
|
@@ -2935,7 +2787,8 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
2935
2787
|
} | undefined;
|
|
2936
2788
|
};
|
|
2937
2789
|
description?: string | undefined;
|
|
2938
|
-
|
|
2790
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
2791
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "type" | "uid" | "nameKey" | "x-default-scopes" | "flows" ? R extends Path<{
|
|
2939
2792
|
type: "oauth2";
|
|
2940
2793
|
uid: string & import("zod").BRAND<"securityScheme">;
|
|
2941
2794
|
nameKey: string;
|
|
@@ -2987,6 +2840,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
2987
2840
|
} | undefined;
|
|
2988
2841
|
};
|
|
2989
2842
|
description?: string | undefined;
|
|
2843
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
2990
2844
|
}[K]> ? PathValue<{
|
|
2991
2845
|
type: "oauth2";
|
|
2992
2846
|
uid: string & import("zod").BRAND<"securityScheme">;
|
|
@@ -3039,8 +2893,9 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
3039
2893
|
} | undefined;
|
|
3040
2894
|
};
|
|
3041
2895
|
description?: string | undefined;
|
|
2896
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
3042
2897
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
3043
|
-
untrackedEdit: <P extends "value" | "description" | "type" | "name" | "in" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "flows" | "password" | "username" | "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 "value" | "description" | "type" | "name" | "in" | "uid" | "nameKey" ? {
|
|
2898
|
+
untrackedEdit: <P extends "value" | "description" | "type" | "name" | "in" | "uid" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "x-default-scopes" | "flows" | "password" | "username" | "token" | `x-default-scopes.${number}` | "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 "value" | "description" | "type" | "name" | "in" | "uid" | "nameKey" ? {
|
|
3044
2899
|
type: "apiKey";
|
|
3045
2900
|
value: string;
|
|
3046
2901
|
uid: string & import("zod").BRAND<"securityScheme">;
|
|
@@ -3112,7 +2967,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
3112
2967
|
nameKey: string;
|
|
3113
2968
|
openIdConnectUrl: string;
|
|
3114
2969
|
description?: string | undefined;
|
|
3115
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "flows" ? {
|
|
2970
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "description" | "type" | "uid" | "nameKey" | "x-default-scopes" | "flows" ? {
|
|
3116
2971
|
type: "oauth2";
|
|
3117
2972
|
uid: string & import("zod").BRAND<"securityScheme">;
|
|
3118
2973
|
nameKey: string;
|
|
@@ -3164,7 +3019,8 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
3164
3019
|
} | undefined;
|
|
3165
3020
|
};
|
|
3166
3021
|
description?: string | undefined;
|
|
3167
|
-
|
|
3022
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
3023
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "type" | "uid" | "nameKey" | "x-default-scopes" | "flows" ? R extends Path<{
|
|
3168
3024
|
type: "oauth2";
|
|
3169
3025
|
uid: string & import("zod").BRAND<"securityScheme">;
|
|
3170
3026
|
nameKey: string;
|
|
@@ -3216,6 +3072,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
3216
3072
|
} | undefined;
|
|
3217
3073
|
};
|
|
3218
3074
|
description?: string | undefined;
|
|
3075
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
3219
3076
|
}[K]> ? PathValue<{
|
|
3220
3077
|
type: "oauth2";
|
|
3221
3078
|
uid: string & import("zod").BRAND<"securityScheme">;
|
|
@@ -3268,6 +3125,7 @@ export declare const createWorkspaceStore: ({ useLocalStorage, showSidebar, prox
|
|
|
3268
3125
|
} | undefined;
|
|
3269
3126
|
};
|
|
3270
3127
|
description?: string | undefined;
|
|
3128
|
+
'x-default-scopes'?: string | string[] | undefined;
|
|
3271
3129
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
3272
3130
|
undo: (uid: string & import("zod").BRAND<"securityScheme">) => void;
|
|
3273
3131
|
redo: (uid: string & import("zod").BRAND<"securityScheme">) => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../../src/store/store.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../../src/store/store.ts"],"names":[],"mappings":"AAaA,OAAO,KAAK,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAA;AACnF,OAAO,KAAK,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAA;AAClE,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAA;AAC5E,OAAO,EAAE,KAAK,YAAY,EAAgC,MAAM,KAAK,CAAA;AAErE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,SAAS,IAAI,CAAC,cAAc,CAAC,EACxD,IAAI,EAAE,CAAC,EACP,KAAK,EAAE,WAAW,CAAC,SAAS,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC,KAC7C,IAAI,CAAA;AAET,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QACd,QAAQ,EAAE,MAAM,IAAI,CAAA;KACrB;CACF;AAED,MAAM,MAAM,2BAA2B,GAAG;IACxC;;;;OAIG;IACH,eAAe,EAAE,OAAO,CAAA;CACzB,GAAG,IAAI,CAAC,yBAAyB,EAAE,UAAU,GAAG,aAAa,GAAG,kBAAkB,GAAG,OAAO,GAAG,cAAc,CAAC,CAAA;AAE/G;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,uFAO9B,2BAA2B;;;;;;;;;;;;;;;;mBAuM+N,CAAC;;yBAAw5B,CAAC;;;;;;;;;;;;;uBAA65W,CAAC;mBAAqC,CAAC;0BAA4C,CAAC;mBAAqC,CAAC;oBAAoB,CAAC;mBAAqC,CAAC;qBAAuC,CAAC;;mBAA4D,CAAC;oBAAoB,CAAC;0BAAmD,CAAC;mBAAqC,CAAC;;;;;;;;;;;;;;;uBAA+jB,CAAC;;;;;;;;;2BAAuY,CAAC;;iBAA+C,CAAC;uBAAyC,CAAC;;;uBAAuG,CAAC;mBAAqC,CAAC;;;;;;;;;;;;;;uBAAlkV,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAAmu3B,CAAC;;;;;2BAA8I,CAAC;wBAA0C,CAAC;2BAAwD,CAAC;+BAAiD,CAAC;2BAA6C,CAAC;4BAA+B,CAAC;4BAA+C,CAAC;0BAA8C,CAAC;wBAA0C,CAAC;wBAA4C,CAAC;4BAA+B,CAAC;;;;kBAA+H,CAAC;eAA+B,CAAC;;;wBAA2I,CAAC;;;;;;;;uBAA2L,CAAC;oBAAsC,CAAC;uBAAoD,CAAC;2BAA6C,CAAC;uBAAyC,CAAC;wBAA2B,CAAC;wBAA2C,CAAC;sBAA0C,CAAC;oBAAsC,CAAC;oBAAwC,CAAC;wBAA2B,CAAC;;;;;;uBAA0J,CAAC;oBAAsC,CAAC;uBAAoD,CAAC;2BAA6C,CAAC;uBAAyC,CAAC;wBAA2B,CAAC;wBAA2C,CAAC;sBAA0C,CAAC;oBAAsC,CAAC;oBAAwC,CAAC;wBAA2B,CAAC;;;;;;uBAA4J,CAAC;oBAAsC,CAAC;uBAAoD,CAAC;2BAA6C,CAAC;uBAAyC,CAAC;wBAA2B,CAAC;wBAA2C,CAAC;sBAA0C,CAAC;oBAAsC,CAAC;oBAAwC,CAAC;wBAA2B,CAAC;;;;;;uBAA4J,CAAC;oBAAsC,CAAC;uBAAoD,CAAC;2BAA6C,CAAC;uBAAyC,CAAC;wBAA2B,CAAC;wBAA2C,CAAC;sBAA0C,CAAC;oBAAsC,CAAC;oBAAwC,CAAC;wBAA2B,CAAC;;;;;;;;;;;;;;;;;;;uBAA1jkB,CAAC;;;;;;;;;;;;;uBAA0c,CAAC;mBAAqC,CAAC;kBAAyB,CAAC;mBAA0B,CAAC;iBAAwB,CAAC;oBAA0H,CAAC;qBAAgD,CAAC;uBAA8B,CAAC;;;;;;;;;;;;iBA7DniiB,CAAC;uBAEC,CAAC;mBAEZ,CAAC;gBACD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAwDisoD,CAAC;;;;;;;;;;;;oBAA4X,CAAC;;;;;;;;;;6BAA4V,CAAC;;;;;;;;;;6BAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA5IttqD,MAAM;;;;;;;;;;uBA4Iy4c,CAAC;;;;;;;;;;;;;2BAAuiB,CAAC;uBAAyC,CAAC;;iBAA+C,CAAC;uBAAyC,CAAC;;;uBAAuG,CAAC;mBAAqC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAA3zB,CAAC;;;;;;;;;;;;;2BAAuiB,CAAC;uBAAyC,CAAC;;iBAA+C,CAAC;uBAAyC,CAAC;;;uBAAuG,CAAC;mBAAqC,CAAC;;;;;;;;;;;;;;;;;;;;;uBAA3zB,CAAC;;;;;;;;;;;;;2BAAuiB,CAAC;uBAAyC,CAAC;;iBAA+C,CAAC;uBAAyC,CAAC;;;uBAAuG,CAAC;mBAAqC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAAxrF,CAAC;uBAAqC,CAAC;8BAA4C,CAAC;uBAAqC,CAAC;wBAAoB,CAAC;uBAAqC,CAAC;yBAAuC,CAAC;;uBAA4D,CAAC;wBAAoB,CAAC;8BAAmD,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;;;2BAA+jB,CAAC;;;;;;;;;+BAAuY,CAAC;;qBAA+C,CAAC;2BAAyC,CAAC;;;2BAAuG,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;;2BAAzjD,CAAC;uBAAqC,CAAC;8BAA4C,CAAC;uBAAqC,CAAC;wBAAoB,CAAC;uBAAqC,CAAC;yBAAuC,CAAC;;uBAA4D,CAAC;wBAAoB,CAAC;8BAAmD,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;;;2BAA+jB,CAAC;;;;;;;;;+BAAuY,CAAC;;qBAA+C,CAAC;2BAAyC,CAAC;;;2BAAuG,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;;;;;2BAAzjD,CAAC;uBAAqC,CAAC;8BAA4C,CAAC;uBAAqC,CAAC;wBAAoB,CAAC;uBAAqC,CAAC;yBAAuC,CAAC;;uBAA4D,CAAC;wBAAoB,CAAC;8BAAmD,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;;;2BAA+jB,CAAC;;;;;;;;;+BAAuY,CAAC;;qBAA+C,CAAC;2BAAyC,CAAC;;;2BAAuG,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;;2BAAzjD,CAAC;uBAAqC,CAAC;8BAA4C,CAAC;uBAAqC,CAAC;wBAAoB,CAAC;uBAAqC,CAAC;yBAAuC,CAAC;;uBAA4D,CAAC;wBAAoB,CAAC;8BAAmD,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;;;2BAA+jB,CAAC;;;;;;;;;+BAAuY,CAAC;;qBAA+C,CAAC;2BAAyC,CAAC;;;2BAAuG,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;2BAAzjD,CAAC;uBAAqC,CAAC;8BAA4C,CAAC;uBAAqC,CAAC;wBAAoB,CAAC;uBAAqC,CAAC;yBAAuC,CAAC;;uBAA4D,CAAC;wBAAoB,CAAC;8BAAmD,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;;;2BAA+jB,CAAC;;;;;;;;;+BAAuY,CAAC;;qBAA+C,CAAC;2BAAyC,CAAC;;;2BAAuG,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;2BAAzjD,CAAC;uBAAqC,CAAC;8BAA4C,CAAC;uBAAqC,CAAC;wBAAoB,CAAC;uBAAqC,CAAC;yBAAuC,CAAC;;uBAA4D,CAAC;wBAAoB,CAAC;8BAAmD,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;;;2BAA+jB,CAAC;;;;;;;;;+BAAuY,CAAC;;qBAA+C,CAAC;2BAAyC,CAAC;;;2BAAuG,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;;2BAAzjD,CAAC;uBAAqC,CAAC;8BAA4C,CAAC;uBAAqC,CAAC;wBAAoB,CAAC;uBAAqC,CAAC;yBAAuC,CAAC;;uBAA4D,CAAC;wBAAoB,CAAC;8BAAmD,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;;;2BAA+jB,CAAC;;;;;;;;;+BAAuY,CAAC;;qBAA+C,CAAC;2BAAyC,CAAC;;;2BAAuG,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;2BAAzjD,CAAC;uBAAqC,CAAC;8BAA4C,CAAC;uBAAqC,CAAC;wBAAoB,CAAC;uBAAqC,CAAC;yBAAuC,CAAC;;uBAA4D,CAAC;wBAAoB,CAAC;8BAAmD,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;;;2BAA+jB,CAAC;;;;;;;;;+BAAuY,CAAC;;qBAA+C,CAAC;2BAAyC,CAAC;;;2BAAuG,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;2BAAzjD,CAAC;uBAAqC,CAAC;8BAA4C,CAAC;uBAAqC,CAAC;wBAAoB,CAAC;uBAAqC,CAAC;yBAAuC,CAAC;;uBAA4D,CAAC;wBAAoB,CAAC;8BAAmD,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;;;2BAA+jB,CAAC;;;;;;;;;+BAAuY,CAAC;;qBAA+C,CAAC;2BAAyC,CAAC;;;2BAAuG,CAAC;uBAAqC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAA4rE,CAAC;;;;;;;;;;;;;2BAA0c,CAAC;uBAAqC,CAAC;sBAAyB,CAAC;uBAA0B,CAAC;qBAAwB,CAAC;wBAA0H,CAAC;yBAAgD,CAAC;2BAA8B,CAAC;;;;;;;;;;;;;;;;;;;;2BAA3wB,CAAC;;;;;;;;;;;;;2BAA0c,CAAC;uBAAqC,CAAC;sBAAyB,CAAC;uBAA0B,CAAC;qBAAwB,CAAC;wBAA0H,CAAC;yBAAgD,CAAC;2BAA8B,CAAC;;;;;;;;;;;;;;;;;;;;;2BAA3wB,CAAC;;;;;;;;;;;;;2BAA0c,CAAC;uBAAqC,CAAC;sBAAyB,CAAC;uBAA0B,CAAC;qBAAwB,CAAC;wBAA0H,CAAC;yBAAgD,CAAC;2BAA8B,CAAC;;;;;;;;;;;;;;;;;;;;2BAA3wB,CAAC;;;;;;;;;;;;;2BAA0c,CAAC;uBAAqC,CAAC;sBAAyB,CAAC;uBAA0B,CAAC;qBAAwB,CAAC;wBAA0H,CAAC;yBAAgD,CAAC;2BAA8B,CAAC;;;;;;;;;;;;;;;;;;;2BAA3wB,CAAC;;;;;;;;;;;;;2BAA0c,CAAC;uBAAqC,CAAC;sBAAyB,CAAC;uBAA0B,CAAC;qBAAwB,CAAC;wBAA0H,CAAC;yBAAgD,CAAC;2BAA8B,CAAC;;;;;;;;;;;;;;;;;;;2BAA3wB,CAAC;;;;;;;;;;;;;2BAA0c,CAAC;uBAAqC,CAAC;sBAAyB,CAAC;uBAA0B,CAAC;qBAAwB,CAAC;wBAA0H,CAAC;yBAAgD,CAAC;2BAA8B,CAAC;;;;;;;;;;;;;;;;;;;;2BAA3wB,CAAC;;;;;;;;;;;;;2BAA0c,CAAC;uBAAqC,CAAC;sBAAyB,CAAC;uBAA0B,CAAC;qBAAwB,CAAC;wBAA0H,CAAC;yBAAgD,CAAC;2BAA8B,CAAC;;;;;;;;;;;;;;;;;;;2BAA3wB,CAAC;;;;;;;;;;;;;2BAA0c,CAAC;uBAAqC,CAAC;sBAAyB,CAAC;uBAA0B,CAAC;qBAAwB,CAAC;wBAA0H,CAAC;yBAAgD,CAAC;2BAA8B,CAAC;;;;;;;;;;;;;;;;;;;2BAA3wB,CAAC;;;;;;;;;;;;;2BAA0c,CAAC;uBAAqC,CAAC;sBAAyB,CAAC;uBAA0B,CAAC;qBAAwB,CAAC;wBAA0H,CAAC;yBAAgD,CAAC;2BAA8B,CAAC;;;;;;;;;;;;;;;;;;;wBAA2tc,CAAC;;;;;+BAA8I,CAAC;4BAA0C,CAAC;+BAAwD,CAAC;mCAAiD,CAAC;+BAA6C,CAAC;gCAA+B,CAAC;gCAA+C,CAAC;8BAA8C,CAAC;4BAA0C,CAAC;4BAA4C,CAAC;gCAA+B,CAAC;;;;sBAA+H,CAAC;mBAA+B,CAAC;;;4BAA2I,CAAC;;;;;;;;2BAA2L,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA0J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;;;;;;;wBAAplG,CAAC;;;;;+BAA8I,CAAC;4BAA0C,CAAC;+BAAwD,CAAC;mCAAiD,CAAC;+BAA6C,CAAC;gCAA+B,CAAC;gCAA+C,CAAC;8BAA8C,CAAC;4BAA0C,CAAC;4BAA4C,CAAC;gCAA+B,CAAC;;;;sBAA+H,CAAC;mBAA+B,CAAC;;;4BAA2I,CAAC;;;;;;;;2BAA2L,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA0J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;;;;;;;;wBAAplG,CAAC;;;;;+BAA8I,CAAC;4BAA0C,CAAC;+BAAwD,CAAC;mCAAiD,CAAC;+BAA6C,CAAC;gCAA+B,CAAC;gCAA+C,CAAC;8BAA8C,CAAC;4BAA0C,CAAC;4BAA4C,CAAC;gCAA+B,CAAC;;;;sBAA+H,CAAC;mBAA+B,CAAC;;;4BAA2I,CAAC;;;;;;;;2BAA2L,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA0J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;;;;;;;wBAAplG,CAAC;;;;;+BAA8I,CAAC;4BAA0C,CAAC;+BAAwD,CAAC;mCAAiD,CAAC;+BAA6C,CAAC;gCAA+B,CAAC;gCAA+C,CAAC;8BAA8C,CAAC;4BAA0C,CAAC;4BAA4C,CAAC;gCAA+B,CAAC;;;;sBAA+H,CAAC;mBAA+B,CAAC;;;4BAA2I,CAAC;;;;;;;;2BAA2L,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA0J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;;;;;;wBAAplG,CAAC;;;;;+BAA8I,CAAC;4BAA0C,CAAC;+BAAwD,CAAC;mCAAiD,CAAC;+BAA6C,CAAC;gCAA+B,CAAC;gCAA+C,CAAC;8BAA8C,CAAC;4BAA0C,CAAC;4BAA4C,CAAC;gCAA+B,CAAC;;;;sBAA+H,CAAC;mBAA+B,CAAC;;;4BAA2I,CAAC;;;;;;;;2BAA2L,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA0J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;;;;;;wBAAplG,CAAC;;;;;+BAA8I,CAAC;4BAA0C,CAAC;+BAAwD,CAAC;mCAAiD,CAAC;+BAA6C,CAAC;gCAA+B,CAAC;gCAA+C,CAAC;8BAA8C,CAAC;4BAA0C,CAAC;4BAA4C,CAAC;gCAA+B,CAAC;;;;sBAA+H,CAAC;mBAA+B,CAAC;;;4BAA2I,CAAC;;;;;;;;2BAA2L,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA0J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;;;;;;;wBAAplG,CAAC;;;;;+BAA8I,CAAC;4BAA0C,CAAC;+BAAwD,CAAC;mCAAiD,CAAC;+BAA6C,CAAC;gCAA+B,CAAC;gCAA+C,CAAC;8BAA8C,CAAC;4BAA0C,CAAC;4BAA4C,CAAC;gCAA+B,CAAC;;;;sBAA+H,CAAC;mBAA+B,CAAC;;;4BAA2I,CAAC;;;;;;;;2BAA2L,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA0J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;;;;;;wBAAplG,CAAC;;;;;+BAA8I,CAAC;4BAA0C,CAAC;+BAAwD,CAAC;mCAAiD,CAAC;+BAA6C,CAAC;gCAA+B,CAAC;gCAA+C,CAAC;8BAA8C,CAAC;4BAA0C,CAAC;4BAA4C,CAAC;gCAA+B,CAAC;;;;sBAA+H,CAAC;mBAA+B,CAAC;;;4BAA2I,CAAC;;;;;;;;2BAA2L,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA0J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;;;;;;wBAAplG,CAAC;;;;;+BAA8I,CAAC;4BAA0C,CAAC;+BAAwD,CAAC;mCAAiD,CAAC;+BAA6C,CAAC;gCAA+B,CAAC;gCAA+C,CAAC;8BAA8C,CAAC;4BAA0C,CAAC;4BAA4C,CAAC;gCAA+B,CAAC;;;;sBAA+H,CAAC;mBAA+B,CAAC;;;4BAA2I,CAAC;;;;;;;;2BAA2L,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA0J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;2BAA4J,CAAC;wBAAsC,CAAC;2BAAoD,CAAC;+BAA6C,CAAC;2BAAyC,CAAC;4BAA2B,CAAC;4BAA2C,CAAC;0BAA0C,CAAC;wBAAsC,CAAC;wBAAwC,CAAC;4BAA2B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAu2jB,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAA9iC,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAA9iC,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAA9iC,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;wBAA9iC,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;wBAA9iC,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAA9iC,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;wBAA9iC,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;wBAA9iC,CAAC;;;;;;;;;;;;wBAA4X,CAAC;;;;;;;;;;iCAA4V,CAAC;;;;;;;;;;iCAAkV,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;qBA7DvuqD,CAAC;2BAEC,CAAC;uBAEZ,CAAC;oBACD,CAAC;;;;;;;;qBALQ,CAAC;2BAEC,CAAC;uBAEZ,CAAC;oBACD,CAAC;;;;;;;;;qBALQ,CAAC;2BAEC,CAAC;uBAEZ,CAAC;oBACD,CAAC;;;;;;;;qBALQ,CAAC;2BAEC,CAAC;uBAEZ,CAAC;oBACD,CAAC;;;;;;;qBALQ,CAAC;2BAEC,CAAC;uBAEZ,CAAC;oBACD,CAAC;;;;;;;qBALQ,CAAC;2BAEC,CAAC;uBAEZ,CAAC;oBACD,CAAC;;;;;;;;qBALQ,CAAC;2BAEC,CAAC;uBAEZ,CAAC;oBACD,CAAC;;;;;;;qBALQ,CAAC;2BAEC,CAAC;uBAEZ,CAAC;oBACD,CAAC;;;;;;;qBALQ,CAAC;2BAEC,CAAC;uBAEZ,CAAC;oBACD,CAAC;;;;;;;;;;;;;;;;2BAwDkiH,CAAC;;;;;;;;;;;;;;;;2BAAD,CAAC;;;;;;;;;;;;;;;;;2BAAD,CAAC;;;;;;;;;;;;;;;;2BAAD,CAAC;;;;;;;;;;;;;;;2BAAD,CAAC;;;;;;;;;;;;;;;2BAAD,CAAC;;;;;;;;;;;;;;;;2BAAD,CAAC;;;;;;;;;;;;;;;2BAAD,CAAC;;;;;;;;;;;;;;;2BAAD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAA/yG,CAAC;;6BAAw5B,CAAC;;;;;;;;;;;;;;;;;;;;uBAA15B,CAAC;;6BAAw5B,CAAC;;;;;;;;;;;;;;;;;;;;;uBAA15B,CAAC;;6BAAw5B,CAAC;;;;;;;;;;;;;;;;;;;;uBAA15B,CAAC;;6BAAw5B,CAAC;;;;;;;;;;;;;;;;;;;uBAA15B,CAAC;;6BAAw5B,CAAC;;;;;;;;;;;;;;;;;;;uBAA15B,CAAC;;6BAAw5B,CAAC;;;;;;;;;;;;;;;;;;;;uBAA15B,CAAC;;6BAAw5B,CAAC;;;;;;;;;;;;;;;;;;;uBAA15B,CAAC;;6BAAw5B,CAAC;;;;;;;;;;;;;;;;;;;uBAA15B,CAAC;;6BAAw5B,CAAC;;;;;;;;;;;CAlBtpC,CAAA;AAED,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,oBAAoB,CAAC,CAAA;AACpE,eAAO,MAAM,gBAAgB,EAAe,YAAY,CAAC,cAAc,CAAC,CAAA;AAExE;;;;;GAKG;AACH,eAAO,MAAM,YAAY,QAAO,cAM/B,CAAA"}
|