@scalar/api-client 2.3.31 → 2.3.33
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 +44 -0
- package/dist/components/CodeInput/CodeInput.vue.d.ts.map +1 -1
- package/dist/components/CodeInput/CodeInput.vue.js +1 -1
- package/dist/components/CodeInput/CodeInput.vue2.js +63 -61
- package/dist/components/DataTable/DataTable.vue.js +1 -1
- package/dist/components/EnvironmentSelector/EnvironmentSelector.vue.d.ts.map +1 -1
- package/dist/components/EnvironmentSelector/EnvironmentSelector.vue.js +58 -48
- package/dist/components/Sidebar/SidebarListElement.vue.d.ts +2 -2
- package/dist/components/ViewLayout/ViewLayoutCollapse.vue.d.ts.map +1 -1
- package/dist/components/ViewLayout/ViewLayoutCollapse.vue.js +34 -32
- package/dist/components/ViewLayout/ViewLayoutSection.vue.d.ts.map +1 -1
- package/dist/components/ViewLayout/ViewLayoutSection.vue.js +6 -6
- package/dist/hooks/useClientConfig.d.ts +3 -0
- package/dist/hooks/useClientConfig.d.ts.map +1 -1
- package/dist/layouts/App/create-api-client-app.d.ts +64 -24
- package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
- package/dist/layouts/Modal/create-api-client-modal.d.ts +128 -48
- package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
- package/dist/layouts/Web/create-api-client-web.d.ts +64 -24
- package/dist/layouts/Web/create-api-client-web.d.ts.map +1 -1
- package/dist/libs/create-client.d.ts +64 -24
- package/dist/libs/create-client.d.ts.map +1 -1
- package/dist/libs/index.js +26 -25
- package/dist/libs/local-storage.d.ts +8 -0
- package/dist/libs/local-storage.d.ts.map +1 -1
- package/dist/libs/local-storage.js +28 -24
- package/dist/libs/send-request/create-request-operation.d.ts.map +1 -1
- package/dist/libs/send-request/create-request-operation.js +8 -8
- package/dist/libs/send-request/create-request-operation.test.d.ts +2 -2
- package/dist/libs/send-request/create-request-operation.test.d.ts.map +1 -1
- package/dist/libs/send-request/decode-buffer.js +4 -4
- package/dist/store/active-entities.d.ts +2 -2
- package/dist/store/active-entities.d.ts.map +1 -1
- package/dist/store/request-example.d.ts +22 -22
- package/dist/store/request-example.d.ts.map +1 -1
- package/dist/store/security-schemes.d.ts +42 -2
- package/dist/store/security-schemes.d.ts.map +1 -1
- package/dist/store/store.d.ts +64 -24
- package/dist/store/store.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/views/Collection/CollectionAuthentication.vue.d.ts.map +1 -1
- package/dist/views/Collection/CollectionAuthentication.vue.js +1 -1
- package/dist/views/Collection/CollectionAuthentication.vue2.js +32 -32
- package/dist/views/Collection/CollectionEnvironment.vue.d.ts.map +1 -1
- package/dist/views/Collection/CollectionEnvironment.vue.js +3 -2
- package/dist/views/Collection/CollectionEnvironment.vue2.js +233 -9
- package/dist/views/Collection/CollectionNavigation.vue.js +36 -36
- package/dist/views/Collection/CollectionServers.vue.d.ts.map +1 -1
- package/dist/views/Collection/CollectionServers.vue2.js +6 -6
- package/dist/views/Collection/components/EnvironmentForm.vue.d.ts +13 -0
- package/dist/views/Collection/components/EnvironmentForm.vue.d.ts.map +1 -0
- package/dist/views/Collection/components/EnvironmentForm.vue.js +7 -0
- package/dist/views/Collection/components/EnvironmentForm.vue2.js +274 -0
- package/dist/views/Components/CodeSnippet/CodeSnippet.vue.d.ts +2 -0
- package/dist/views/Components/CodeSnippet/CodeSnippet.vue.d.ts.map +1 -1
- package/dist/views/Components/CodeSnippet/CodeSnippet.vue.js +15 -13
- package/dist/views/Components/CodeSnippet/helpers/convert-to-har-request.d.ts.map +1 -1
- package/dist/views/Components/CodeSnippet/helpers/convert-to-har-request.js +35 -34
- package/dist/views/Components/CodeSnippet/helpers/get-har-request.d.ts +3 -1
- package/dist/views/Components/CodeSnippet/helpers/get-har-request.d.ts.map +1 -1
- package/dist/views/Components/CodeSnippet/helpers/get-har-request.js +74 -31
- package/dist/views/Components/CodeSnippet/helpers/get-snippet.d.ts +3 -1
- package/dist/views/Components/CodeSnippet/helpers/get-snippet.d.ts.map +1 -1
- package/dist/views/Components/CodeSnippet/helpers/get-snippet.js +8 -6
- package/dist/views/Environment/EnvironmentModal.vue.d.ts.map +1 -1
- package/dist/views/Environment/EnvironmentModal.vue.js +32 -28
- package/dist/views/Request/RequestSection/RequestAuth/OAuth2.vue.d.ts +1 -0
- package/dist/views/Request/RequestSection/RequestAuth/OAuth2.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestAuth/OAuth2.vue.js +67 -65
- package/dist/views/Request/RequestSection/RequestAuth/OAuthScopesInput.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestAuth/OAuthScopesInput.vue.js +94 -97
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue.d.ts +1 -0
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue.js +2 -2
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue2.js +116 -99
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuthDataTable.vue.d.ts +1 -0
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuthDataTable.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuthDataTable.vue.js +1 -1
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuthDataTable.vue2.js +27 -25
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuthTab.vue.d.ts +1 -0
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuthTab.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuthTab.vue.js +2 -2
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuthTab.vue2.js +114 -73
- package/dist/views/Request/RequestSection/RequestCodeExample.vue.d.ts +2 -0
- package/dist/views/Request/RequestSection/RequestCodeExample.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestCodeExample.vue.js +2 -2
- package/dist/views/Request/RequestSection/RequestCodeExample.vue2.js +54 -59
- package/dist/views/Request/RequestSection/RequestSection.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestSection.vue.js +3 -3
- package/dist/views/Request/RequestSection/RequestSection.vue2.js +27 -26
- package/dist/views/Request/RequestSection/helpers/update-scheme.d.ts +8 -0
- package/dist/views/Request/RequestSection/helpers/update-scheme.d.ts.map +1 -0
- package/dist/views/Request/RequestSection/helpers/update-scheme.js +17 -0
- package/dist/views/Request/RequestSection/helpers/update-scheme.test.d.ts +2 -0
- package/dist/views/Request/RequestSection/helpers/update-scheme.test.d.ts.map +1 -0
- package/dist/views/Request/RequestSidebar.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSidebar.vue.js +1 -1
- package/dist/views/Request/RequestSidebar.vue2.js +87 -84
- package/dist/views/Request/ResponseSection/ResponseBody.vue.js +2 -2
- package/dist/views/Request/ResponseSection/ResponseBody.vue2.js +21 -21
- package/dist/views/Request/ResponseSection/ResponseBodyDownload.vue.d.ts.map +1 -1
- package/dist/views/Request/ResponseSection/ResponseBodyDownload.vue.js +11 -11
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/dist/views/Request/consts/index.js +7 -5
- package/dist/views/Request/consts/mediaTypes.d.ts +4 -0
- package/dist/views/Request/consts/mediaTypes.d.ts.map +1 -1
- package/dist/views/Request/consts/mediaTypes.js +22 -4
- package/dist/views/Request/consts/mediaTypes.test.d.ts +2 -0
- package/dist/views/Request/consts/mediaTypes.test.d.ts.map +1 -0
- package/dist/views/Request/libs/oauth2.d.ts.map +1 -1
- package/dist/views/Request/libs/oauth2.js +53 -47
- package/package.json +16 -16
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"request-example.d.ts","sourceRoot":"","sources":["../../src/store/request-example.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACzD,OAAO,EAAE,KAAK,OAAO,EAAE,KAAK,cAAc,EAA4B,MAAM,iCAAiC,CAAA;AAK7G,0DAA0D;AAC1D,wBAAgB,0BAA0B,CAAC,eAAe,EAAE,OAAO;;;;;;;
|
|
1
|
+
{"version":3,"file":"request-example.d.ts","sourceRoot":"","sources":["../../src/store/request-example.ts"],"names":[],"mappings":"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"}
|
|
@@ -42,6 +42,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
42
42
|
"x-scalar-client-id": string;
|
|
43
43
|
tokenUrl: string;
|
|
44
44
|
clientSecret: string;
|
|
45
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
45
46
|
} | undefined;
|
|
46
47
|
implicit?: {
|
|
47
48
|
type: "implicit";
|
|
@@ -52,6 +53,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
52
53
|
"x-scalar-client-id": string;
|
|
53
54
|
authorizationUrl: string;
|
|
54
55
|
"x-scalar-redirect-uri": string;
|
|
56
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
55
57
|
} | undefined;
|
|
56
58
|
clientCredentials?: {
|
|
57
59
|
type: "clientCredentials";
|
|
@@ -62,6 +64,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
62
64
|
"x-scalar-client-id": string;
|
|
63
65
|
tokenUrl: string;
|
|
64
66
|
clientSecret: string;
|
|
67
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
65
68
|
} | undefined;
|
|
66
69
|
authorizationCode?: {
|
|
67
70
|
type: "authorizationCode";
|
|
@@ -75,6 +78,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
75
78
|
tokenUrl: string;
|
|
76
79
|
clientSecret: string;
|
|
77
80
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
81
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
78
82
|
} | undefined;
|
|
79
83
|
};
|
|
80
84
|
description?: string | undefined;
|
|
@@ -121,6 +125,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
121
125
|
"x-scalar-client-id": string;
|
|
122
126
|
tokenUrl: string;
|
|
123
127
|
clientSecret: string;
|
|
128
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
124
129
|
} | undefined;
|
|
125
130
|
implicit?: {
|
|
126
131
|
type: "implicit";
|
|
@@ -131,6 +136,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
131
136
|
"x-scalar-client-id": string;
|
|
132
137
|
authorizationUrl: string;
|
|
133
138
|
"x-scalar-redirect-uri": string;
|
|
139
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
134
140
|
} | undefined;
|
|
135
141
|
clientCredentials?: {
|
|
136
142
|
type: "clientCredentials";
|
|
@@ -141,6 +147,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
141
147
|
"x-scalar-client-id": string;
|
|
142
148
|
tokenUrl: string;
|
|
143
149
|
clientSecret: string;
|
|
150
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
144
151
|
} | undefined;
|
|
145
152
|
authorizationCode?: {
|
|
146
153
|
type: "authorizationCode";
|
|
@@ -154,6 +161,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
154
161
|
tokenUrl: string;
|
|
155
162
|
clientSecret: string;
|
|
156
163
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
164
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
157
165
|
} | undefined;
|
|
158
166
|
};
|
|
159
167
|
description?: string | undefined;
|
|
@@ -200,6 +208,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
200
208
|
"x-scalar-client-id": string;
|
|
201
209
|
tokenUrl: string;
|
|
202
210
|
clientSecret: string;
|
|
211
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
203
212
|
} | undefined;
|
|
204
213
|
implicit?: {
|
|
205
214
|
type: "implicit";
|
|
@@ -210,6 +219,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
210
219
|
"x-scalar-client-id": string;
|
|
211
220
|
authorizationUrl: string;
|
|
212
221
|
"x-scalar-redirect-uri": string;
|
|
222
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
213
223
|
} | undefined;
|
|
214
224
|
clientCredentials?: {
|
|
215
225
|
type: "clientCredentials";
|
|
@@ -220,6 +230,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
220
230
|
"x-scalar-client-id": string;
|
|
221
231
|
tokenUrl: string;
|
|
222
232
|
clientSecret: string;
|
|
233
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
223
234
|
} | undefined;
|
|
224
235
|
authorizationCode?: {
|
|
225
236
|
type: "authorizationCode";
|
|
@@ -233,12 +244,13 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
233
244
|
tokenUrl: string;
|
|
234
245
|
clientSecret: string;
|
|
235
246
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
247
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
236
248
|
} | undefined;
|
|
237
249
|
};
|
|
238
250
|
description?: string | undefined;
|
|
239
251
|
'x-default-scopes'?: string | string[] | undefined;
|
|
240
252
|
}) => void;
|
|
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" ? {
|
|
253
|
+
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.x-scalar-security-query" | `flows.password.scopes.${string}` | `flows.password.selectedScopes.${number}` | `flows.password.x-scalar-security-query.${string}` | "flows.implicit.type" | "flows.implicit.token" | "flows.implicit.refreshUrl" | "flows.implicit.scopes" | "flows.implicit.selectedScopes" | "flows.implicit.x-scalar-client-id" | "flows.implicit.x-scalar-security-query" | `flows.implicit.scopes.${string}` | `flows.implicit.selectedScopes.${number}` | `flows.implicit.x-scalar-security-query.${string}` | "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.x-scalar-security-query" | `flows.clientCredentials.scopes.${string}` | `flows.clientCredentials.selectedScopes.${number}` | `flows.clientCredentials.x-scalar-security-query.${string}` | "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.x-scalar-security-query" | `flows.authorizationCode.scopes.${string}` | `flows.authorizationCode.selectedScopes.${number}` | `flows.authorizationCode.x-scalar-security-query.${string}` | "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" ? {
|
|
242
254
|
name: string;
|
|
243
255
|
value: string;
|
|
244
256
|
type: "apiKey";
|
|
@@ -326,6 +338,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
326
338
|
"x-scalar-client-id": string;
|
|
327
339
|
tokenUrl: string;
|
|
328
340
|
clientSecret: string;
|
|
341
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
329
342
|
} | undefined;
|
|
330
343
|
implicit?: {
|
|
331
344
|
type: "implicit";
|
|
@@ -336,6 +349,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
336
349
|
"x-scalar-client-id": string;
|
|
337
350
|
authorizationUrl: string;
|
|
338
351
|
"x-scalar-redirect-uri": string;
|
|
352
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
339
353
|
} | undefined;
|
|
340
354
|
clientCredentials?: {
|
|
341
355
|
type: "clientCredentials";
|
|
@@ -346,6 +360,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
346
360
|
"x-scalar-client-id": string;
|
|
347
361
|
tokenUrl: string;
|
|
348
362
|
clientSecret: string;
|
|
363
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
349
364
|
} | undefined;
|
|
350
365
|
authorizationCode?: {
|
|
351
366
|
type: "authorizationCode";
|
|
@@ -359,6 +374,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
359
374
|
tokenUrl: string;
|
|
360
375
|
clientSecret: string;
|
|
361
376
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
377
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
362
378
|
} | undefined;
|
|
363
379
|
};
|
|
364
380
|
description?: string | undefined;
|
|
@@ -379,6 +395,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
379
395
|
"x-scalar-client-id": string;
|
|
380
396
|
tokenUrl: string;
|
|
381
397
|
clientSecret: string;
|
|
398
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
382
399
|
} | undefined;
|
|
383
400
|
implicit?: {
|
|
384
401
|
type: "implicit";
|
|
@@ -389,6 +406,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
389
406
|
"x-scalar-client-id": string;
|
|
390
407
|
authorizationUrl: string;
|
|
391
408
|
"x-scalar-redirect-uri": string;
|
|
409
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
392
410
|
} | undefined;
|
|
393
411
|
clientCredentials?: {
|
|
394
412
|
type: "clientCredentials";
|
|
@@ -399,6 +417,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
399
417
|
"x-scalar-client-id": string;
|
|
400
418
|
tokenUrl: string;
|
|
401
419
|
clientSecret: string;
|
|
420
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
402
421
|
} | undefined;
|
|
403
422
|
authorizationCode?: {
|
|
404
423
|
type: "authorizationCode";
|
|
@@ -412,6 +431,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
412
431
|
tokenUrl: string;
|
|
413
432
|
clientSecret: string;
|
|
414
433
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
434
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
415
435
|
} | undefined;
|
|
416
436
|
};
|
|
417
437
|
description?: string | undefined;
|
|
@@ -432,6 +452,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
432
452
|
"x-scalar-client-id": string;
|
|
433
453
|
tokenUrl: string;
|
|
434
454
|
clientSecret: string;
|
|
455
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
435
456
|
} | undefined;
|
|
436
457
|
implicit?: {
|
|
437
458
|
type: "implicit";
|
|
@@ -442,6 +463,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
442
463
|
"x-scalar-client-id": string;
|
|
443
464
|
authorizationUrl: string;
|
|
444
465
|
"x-scalar-redirect-uri": string;
|
|
466
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
445
467
|
} | undefined;
|
|
446
468
|
clientCredentials?: {
|
|
447
469
|
type: "clientCredentials";
|
|
@@ -452,6 +474,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
452
474
|
"x-scalar-client-id": string;
|
|
453
475
|
tokenUrl: string;
|
|
454
476
|
clientSecret: string;
|
|
477
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
455
478
|
} | undefined;
|
|
456
479
|
authorizationCode?: {
|
|
457
480
|
type: "authorizationCode";
|
|
@@ -465,12 +488,13 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
465
488
|
tokenUrl: string;
|
|
466
489
|
clientSecret: string;
|
|
467
490
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
491
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
468
492
|
} | undefined;
|
|
469
493
|
};
|
|
470
494
|
description?: string | undefined;
|
|
471
495
|
'x-default-scopes'?: string | string[] | undefined;
|
|
472
496
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
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" ? {
|
|
497
|
+
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.x-scalar-security-query" | `flows.password.scopes.${string}` | `flows.password.selectedScopes.${number}` | `flows.password.x-scalar-security-query.${string}` | "flows.implicit.type" | "flows.implicit.token" | "flows.implicit.refreshUrl" | "flows.implicit.scopes" | "flows.implicit.selectedScopes" | "flows.implicit.x-scalar-client-id" | "flows.implicit.x-scalar-security-query" | `flows.implicit.scopes.${string}` | `flows.implicit.selectedScopes.${number}` | `flows.implicit.x-scalar-security-query.${string}` | "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.x-scalar-security-query" | `flows.clientCredentials.scopes.${string}` | `flows.clientCredentials.selectedScopes.${number}` | `flows.clientCredentials.x-scalar-security-query.${string}` | "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.x-scalar-security-query" | `flows.authorizationCode.scopes.${string}` | `flows.authorizationCode.selectedScopes.${number}` | `flows.authorizationCode.x-scalar-security-query.${string}` | "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" ? {
|
|
474
498
|
name: string;
|
|
475
499
|
value: string;
|
|
476
500
|
type: "apiKey";
|
|
@@ -558,6 +582,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
558
582
|
"x-scalar-client-id": string;
|
|
559
583
|
tokenUrl: string;
|
|
560
584
|
clientSecret: string;
|
|
585
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
561
586
|
} | undefined;
|
|
562
587
|
implicit?: {
|
|
563
588
|
type: "implicit";
|
|
@@ -568,6 +593,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
568
593
|
"x-scalar-client-id": string;
|
|
569
594
|
authorizationUrl: string;
|
|
570
595
|
"x-scalar-redirect-uri": string;
|
|
596
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
571
597
|
} | undefined;
|
|
572
598
|
clientCredentials?: {
|
|
573
599
|
type: "clientCredentials";
|
|
@@ -578,6 +604,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
578
604
|
"x-scalar-client-id": string;
|
|
579
605
|
tokenUrl: string;
|
|
580
606
|
clientSecret: string;
|
|
607
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
581
608
|
} | undefined;
|
|
582
609
|
authorizationCode?: {
|
|
583
610
|
type: "authorizationCode";
|
|
@@ -591,6 +618,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
591
618
|
tokenUrl: string;
|
|
592
619
|
clientSecret: string;
|
|
593
620
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
621
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
594
622
|
} | undefined;
|
|
595
623
|
};
|
|
596
624
|
description?: string | undefined;
|
|
@@ -611,6 +639,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
611
639
|
"x-scalar-client-id": string;
|
|
612
640
|
tokenUrl: string;
|
|
613
641
|
clientSecret: string;
|
|
642
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
614
643
|
} | undefined;
|
|
615
644
|
implicit?: {
|
|
616
645
|
type: "implicit";
|
|
@@ -621,6 +650,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
621
650
|
"x-scalar-client-id": string;
|
|
622
651
|
authorizationUrl: string;
|
|
623
652
|
"x-scalar-redirect-uri": string;
|
|
653
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
624
654
|
} | undefined;
|
|
625
655
|
clientCredentials?: {
|
|
626
656
|
type: "clientCredentials";
|
|
@@ -631,6 +661,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
631
661
|
"x-scalar-client-id": string;
|
|
632
662
|
tokenUrl: string;
|
|
633
663
|
clientSecret: string;
|
|
664
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
634
665
|
} | undefined;
|
|
635
666
|
authorizationCode?: {
|
|
636
667
|
type: "authorizationCode";
|
|
@@ -644,6 +675,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
644
675
|
tokenUrl: string;
|
|
645
676
|
clientSecret: string;
|
|
646
677
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
678
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
647
679
|
} | undefined;
|
|
648
680
|
};
|
|
649
681
|
description?: string | undefined;
|
|
@@ -664,6 +696,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
664
696
|
"x-scalar-client-id": string;
|
|
665
697
|
tokenUrl: string;
|
|
666
698
|
clientSecret: string;
|
|
699
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
667
700
|
} | undefined;
|
|
668
701
|
implicit?: {
|
|
669
702
|
type: "implicit";
|
|
@@ -674,6 +707,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
674
707
|
"x-scalar-client-id": string;
|
|
675
708
|
authorizationUrl: string;
|
|
676
709
|
"x-scalar-redirect-uri": string;
|
|
710
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
677
711
|
} | undefined;
|
|
678
712
|
clientCredentials?: {
|
|
679
713
|
type: "clientCredentials";
|
|
@@ -684,6 +718,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
684
718
|
"x-scalar-client-id": string;
|
|
685
719
|
tokenUrl: string;
|
|
686
720
|
clientSecret: string;
|
|
721
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
687
722
|
} | undefined;
|
|
688
723
|
authorizationCode?: {
|
|
689
724
|
type: "authorizationCode";
|
|
@@ -697,6 +732,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
|
|
|
697
732
|
tokenUrl: string;
|
|
698
733
|
clientSecret: string;
|
|
699
734
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
735
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
700
736
|
} | undefined;
|
|
701
737
|
};
|
|
702
738
|
description?: string | undefined;
|
|
@@ -749,6 +785,7 @@ export declare function extendedSecurityDataFactory({ securitySchemeMutators, co
|
|
|
749
785
|
"x-scalar-client-id": string;
|
|
750
786
|
tokenUrl: string;
|
|
751
787
|
clientSecret: string;
|
|
788
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
752
789
|
} | undefined;
|
|
753
790
|
implicit?: {
|
|
754
791
|
type: "implicit";
|
|
@@ -759,6 +796,7 @@ export declare function extendedSecurityDataFactory({ securitySchemeMutators, co
|
|
|
759
796
|
"x-scalar-client-id": string;
|
|
760
797
|
authorizationUrl: string;
|
|
761
798
|
"x-scalar-redirect-uri": string;
|
|
799
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
762
800
|
} | undefined;
|
|
763
801
|
clientCredentials?: {
|
|
764
802
|
type: "clientCredentials";
|
|
@@ -769,6 +807,7 @@ export declare function extendedSecurityDataFactory({ securitySchemeMutators, co
|
|
|
769
807
|
"x-scalar-client-id": string;
|
|
770
808
|
tokenUrl: string;
|
|
771
809
|
clientSecret: string;
|
|
810
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
772
811
|
} | undefined;
|
|
773
812
|
authorizationCode?: {
|
|
774
813
|
type: "authorizationCode";
|
|
@@ -782,6 +821,7 @@ export declare function extendedSecurityDataFactory({ securitySchemeMutators, co
|
|
|
782
821
|
tokenUrl: string;
|
|
783
822
|
clientSecret: string;
|
|
784
823
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
824
|
+
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
785
825
|
} | undefined;
|
|
786
826
|
};
|
|
787
827
|
description?: string | undefined;
|
|
@@ -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":"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"}
|