@scalar/api-client 2.5.15 → 2.5.16
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 +25 -0
- package/dist/components/CodeInput/CodeInput.vue.js +2 -2
- package/dist/components/CodeInput/CodeInput.vue2.js +1 -1
- package/dist/components/Form/Form.vue.js +1 -1
- package/dist/components/HttpMethod/HttpMethod.vue.d.ts +2 -2
- package/dist/components/Server/ServerVariablesSelect.vue.d.ts.map +1 -1
- package/dist/components/Server/ServerVariablesSelect.vue.js +3 -3
- package/dist/layouts/App/create-api-client-app.d.ts +42 -2
- package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
- package/dist/layouts/Modal/create-api-client-modal.d.ts +84 -4
- package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
- package/dist/layouts/Web/create-api-client-web.d.ts +42 -2
- package/dist/layouts/Web/create-api-client-web.d.ts.map +1 -1
- package/dist/libs/create-client.d.ts +42 -2
- package/dist/libs/create-client.d.ts.map +1 -1
- package/dist/libs/get-request-uid-by-path-method.d.ts.map +1 -1
- package/dist/libs/get-request-uid-by-path-method.js +15 -7
- 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 +42 -2
- package/dist/store/store.d.ts.map +1 -1
- package/dist/style.css +1 -1
- 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 +1 -1
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/dist/views/Request/libs/oauth2.d.ts.map +1 -1
- package/dist/views/Request/libs/oauth2.js +39 -39
- package/package.json +12 -12
|
@@ -349,6 +349,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
349
349
|
tokenUrl: string;
|
|
350
350
|
clientSecret: string;
|
|
351
351
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
352
|
+
"x-tokenName"?: string | undefined;
|
|
352
353
|
} | undefined;
|
|
353
354
|
implicit?: {
|
|
354
355
|
type: "implicit";
|
|
@@ -360,6 +361,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
360
361
|
authorizationUrl: string;
|
|
361
362
|
"x-scalar-redirect-uri": string;
|
|
362
363
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
364
|
+
"x-tokenName"?: string | undefined;
|
|
363
365
|
} | undefined;
|
|
364
366
|
clientCredentials?: {
|
|
365
367
|
type: "clientCredentials";
|
|
@@ -371,6 +373,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
371
373
|
tokenUrl: string;
|
|
372
374
|
clientSecret: string;
|
|
373
375
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
376
|
+
"x-tokenName"?: string | undefined;
|
|
374
377
|
} | undefined;
|
|
375
378
|
authorizationCode?: {
|
|
376
379
|
type: "authorizationCode";
|
|
@@ -385,6 +388,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
385
388
|
clientSecret: string;
|
|
386
389
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
387
390
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
391
|
+
"x-tokenName"?: string | undefined;
|
|
388
392
|
} | undefined;
|
|
389
393
|
};
|
|
390
394
|
description?: string | undefined;
|
|
@@ -2714,6 +2718,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
2714
2718
|
tokenUrl: string;
|
|
2715
2719
|
clientSecret: string;
|
|
2716
2720
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
2721
|
+
"x-tokenName"?: string | undefined;
|
|
2717
2722
|
} | undefined;
|
|
2718
2723
|
implicit?: {
|
|
2719
2724
|
type: "implicit";
|
|
@@ -2725,6 +2730,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
2725
2730
|
authorizationUrl: string;
|
|
2726
2731
|
"x-scalar-redirect-uri": string;
|
|
2727
2732
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
2733
|
+
"x-tokenName"?: string | undefined;
|
|
2728
2734
|
} | undefined;
|
|
2729
2735
|
clientCredentials?: {
|
|
2730
2736
|
type: "clientCredentials";
|
|
@@ -2736,6 +2742,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
2736
2742
|
tokenUrl: string;
|
|
2737
2743
|
clientSecret: string;
|
|
2738
2744
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
2745
|
+
"x-tokenName"?: string | undefined;
|
|
2739
2746
|
} | undefined;
|
|
2740
2747
|
authorizationCode?: {
|
|
2741
2748
|
type: "authorizationCode";
|
|
@@ -2750,6 +2757,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
2750
2757
|
clientSecret: string;
|
|
2751
2758
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
2752
2759
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
2760
|
+
"x-tokenName"?: string | undefined;
|
|
2753
2761
|
} | undefined;
|
|
2754
2762
|
};
|
|
2755
2763
|
description?: string | undefined;
|
|
@@ -2796,6 +2804,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
2796
2804
|
tokenUrl: string;
|
|
2797
2805
|
clientSecret: string;
|
|
2798
2806
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
2807
|
+
"x-tokenName"?: string | undefined;
|
|
2799
2808
|
} | undefined;
|
|
2800
2809
|
implicit?: {
|
|
2801
2810
|
type: "implicit";
|
|
@@ -2807,6 +2816,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
2807
2816
|
authorizationUrl: string;
|
|
2808
2817
|
"x-scalar-redirect-uri": string;
|
|
2809
2818
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
2819
|
+
"x-tokenName"?: string | undefined;
|
|
2810
2820
|
} | undefined;
|
|
2811
2821
|
clientCredentials?: {
|
|
2812
2822
|
type: "clientCredentials";
|
|
@@ -2818,6 +2828,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
2818
2828
|
tokenUrl: string;
|
|
2819
2829
|
clientSecret: string;
|
|
2820
2830
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
2831
|
+
"x-tokenName"?: string | undefined;
|
|
2821
2832
|
} | undefined;
|
|
2822
2833
|
authorizationCode?: {
|
|
2823
2834
|
type: "authorizationCode";
|
|
@@ -2832,6 +2843,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
2832
2843
|
clientSecret: string;
|
|
2833
2844
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
2834
2845
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
2846
|
+
"x-tokenName"?: string | undefined;
|
|
2835
2847
|
} | undefined;
|
|
2836
2848
|
};
|
|
2837
2849
|
description?: string | undefined;
|
|
@@ -2879,6 +2891,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
2879
2891
|
tokenUrl: string;
|
|
2880
2892
|
clientSecret: string;
|
|
2881
2893
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
2894
|
+
"x-tokenName"?: string | undefined;
|
|
2882
2895
|
} | undefined;
|
|
2883
2896
|
implicit?: {
|
|
2884
2897
|
type: "implicit";
|
|
@@ -2890,6 +2903,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
2890
2903
|
authorizationUrl: string;
|
|
2891
2904
|
"x-scalar-redirect-uri": string;
|
|
2892
2905
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
2906
|
+
"x-tokenName"?: string | undefined;
|
|
2893
2907
|
} | undefined;
|
|
2894
2908
|
clientCredentials?: {
|
|
2895
2909
|
type: "clientCredentials";
|
|
@@ -2901,6 +2915,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
2901
2915
|
tokenUrl: string;
|
|
2902
2916
|
clientSecret: string;
|
|
2903
2917
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
2918
|
+
"x-tokenName"?: string | undefined;
|
|
2904
2919
|
} | undefined;
|
|
2905
2920
|
authorizationCode?: {
|
|
2906
2921
|
type: "authorizationCode";
|
|
@@ -2915,12 +2930,13 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
2915
2930
|
clientSecret: string;
|
|
2916
2931
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
2917
2932
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
2933
|
+
"x-tokenName"?: string | undefined;
|
|
2918
2934
|
} | undefined;
|
|
2919
2935
|
};
|
|
2920
2936
|
description?: string | undefined;
|
|
2921
2937
|
'x-default-scopes'?: string | string[] | undefined;
|
|
2922
2938
|
}) => void;
|
|
2923
|
-
edit: <P extends "value" | "description" | "type" | "uid" | "name" | "in" | "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" | "uid" | "name" | "in" | "nameKey" ? {
|
|
2939
|
+
edit: <P extends "value" | "description" | "type" | "uid" | "name" | "in" | "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.x-tokenName" | `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.x-tokenName" | `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.x-tokenName" | `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.x-tokenName" | `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" | "uid" | "name" | "in" | "nameKey" ? {
|
|
2924
2940
|
type: "apiKey";
|
|
2925
2941
|
value: string;
|
|
2926
2942
|
name: string;
|
|
@@ -3009,6 +3025,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3009
3025
|
tokenUrl: string;
|
|
3010
3026
|
clientSecret: string;
|
|
3011
3027
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3028
|
+
"x-tokenName"?: string | undefined;
|
|
3012
3029
|
} | undefined;
|
|
3013
3030
|
implicit?: {
|
|
3014
3031
|
type: "implicit";
|
|
@@ -3020,6 +3037,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3020
3037
|
authorizationUrl: string;
|
|
3021
3038
|
"x-scalar-redirect-uri": string;
|
|
3022
3039
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3040
|
+
"x-tokenName"?: string | undefined;
|
|
3023
3041
|
} | undefined;
|
|
3024
3042
|
clientCredentials?: {
|
|
3025
3043
|
type: "clientCredentials";
|
|
@@ -3031,6 +3049,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3031
3049
|
tokenUrl: string;
|
|
3032
3050
|
clientSecret: string;
|
|
3033
3051
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3052
|
+
"x-tokenName"?: string | undefined;
|
|
3034
3053
|
} | undefined;
|
|
3035
3054
|
authorizationCode?: {
|
|
3036
3055
|
type: "authorizationCode";
|
|
@@ -3045,6 +3064,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3045
3064
|
clientSecret: string;
|
|
3046
3065
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
3047
3066
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3067
|
+
"x-tokenName"?: string | undefined;
|
|
3048
3068
|
} | undefined;
|
|
3049
3069
|
};
|
|
3050
3070
|
description?: string | undefined;
|
|
@@ -3066,6 +3086,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3066
3086
|
tokenUrl: string;
|
|
3067
3087
|
clientSecret: string;
|
|
3068
3088
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3089
|
+
"x-tokenName"?: string | undefined;
|
|
3069
3090
|
} | undefined;
|
|
3070
3091
|
implicit?: {
|
|
3071
3092
|
type: "implicit";
|
|
@@ -3077,6 +3098,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3077
3098
|
authorizationUrl: string;
|
|
3078
3099
|
"x-scalar-redirect-uri": string;
|
|
3079
3100
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3101
|
+
"x-tokenName"?: string | undefined;
|
|
3080
3102
|
} | undefined;
|
|
3081
3103
|
clientCredentials?: {
|
|
3082
3104
|
type: "clientCredentials";
|
|
@@ -3088,6 +3110,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3088
3110
|
tokenUrl: string;
|
|
3089
3111
|
clientSecret: string;
|
|
3090
3112
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3113
|
+
"x-tokenName"?: string | undefined;
|
|
3091
3114
|
} | undefined;
|
|
3092
3115
|
authorizationCode?: {
|
|
3093
3116
|
type: "authorizationCode";
|
|
@@ -3102,6 +3125,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3102
3125
|
clientSecret: string;
|
|
3103
3126
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
3104
3127
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3128
|
+
"x-tokenName"?: string | undefined;
|
|
3105
3129
|
} | undefined;
|
|
3106
3130
|
};
|
|
3107
3131
|
description?: string | undefined;
|
|
@@ -3123,6 +3147,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3123
3147
|
tokenUrl: string;
|
|
3124
3148
|
clientSecret: string;
|
|
3125
3149
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3150
|
+
"x-tokenName"?: string | undefined;
|
|
3126
3151
|
} | undefined;
|
|
3127
3152
|
implicit?: {
|
|
3128
3153
|
type: "implicit";
|
|
@@ -3134,6 +3159,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3134
3159
|
authorizationUrl: string;
|
|
3135
3160
|
"x-scalar-redirect-uri": string;
|
|
3136
3161
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3162
|
+
"x-tokenName"?: string | undefined;
|
|
3137
3163
|
} | undefined;
|
|
3138
3164
|
clientCredentials?: {
|
|
3139
3165
|
type: "clientCredentials";
|
|
@@ -3145,6 +3171,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3145
3171
|
tokenUrl: string;
|
|
3146
3172
|
clientSecret: string;
|
|
3147
3173
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3174
|
+
"x-tokenName"?: string | undefined;
|
|
3148
3175
|
} | undefined;
|
|
3149
3176
|
authorizationCode?: {
|
|
3150
3177
|
type: "authorizationCode";
|
|
@@ -3159,12 +3186,13 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3159
3186
|
clientSecret: string;
|
|
3160
3187
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
3161
3188
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3189
|
+
"x-tokenName"?: string | undefined;
|
|
3162
3190
|
} | undefined;
|
|
3163
3191
|
};
|
|
3164
3192
|
description?: string | undefined;
|
|
3165
3193
|
'x-default-scopes'?: string | string[] | undefined;
|
|
3166
3194
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
3167
|
-
untrackedEdit: <P extends "value" | "description" | "type" | "uid" | "name" | "in" | "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" | "uid" | "name" | "in" | "nameKey" ? {
|
|
3195
|
+
untrackedEdit: <P extends "value" | "description" | "type" | "uid" | "name" | "in" | "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.x-tokenName" | `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.x-tokenName" | `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.x-tokenName" | `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.x-tokenName" | `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" | "uid" | "name" | "in" | "nameKey" ? {
|
|
3168
3196
|
type: "apiKey";
|
|
3169
3197
|
value: string;
|
|
3170
3198
|
name: string;
|
|
@@ -3253,6 +3281,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3253
3281
|
tokenUrl: string;
|
|
3254
3282
|
clientSecret: string;
|
|
3255
3283
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3284
|
+
"x-tokenName"?: string | undefined;
|
|
3256
3285
|
} | undefined;
|
|
3257
3286
|
implicit?: {
|
|
3258
3287
|
type: "implicit";
|
|
@@ -3264,6 +3293,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3264
3293
|
authorizationUrl: string;
|
|
3265
3294
|
"x-scalar-redirect-uri": string;
|
|
3266
3295
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3296
|
+
"x-tokenName"?: string | undefined;
|
|
3267
3297
|
} | undefined;
|
|
3268
3298
|
clientCredentials?: {
|
|
3269
3299
|
type: "clientCredentials";
|
|
@@ -3275,6 +3305,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3275
3305
|
tokenUrl: string;
|
|
3276
3306
|
clientSecret: string;
|
|
3277
3307
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3308
|
+
"x-tokenName"?: string | undefined;
|
|
3278
3309
|
} | undefined;
|
|
3279
3310
|
authorizationCode?: {
|
|
3280
3311
|
type: "authorizationCode";
|
|
@@ -3289,6 +3320,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3289
3320
|
clientSecret: string;
|
|
3290
3321
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
3291
3322
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3323
|
+
"x-tokenName"?: string | undefined;
|
|
3292
3324
|
} | undefined;
|
|
3293
3325
|
};
|
|
3294
3326
|
description?: string | undefined;
|
|
@@ -3310,6 +3342,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3310
3342
|
tokenUrl: string;
|
|
3311
3343
|
clientSecret: string;
|
|
3312
3344
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3345
|
+
"x-tokenName"?: string | undefined;
|
|
3313
3346
|
} | undefined;
|
|
3314
3347
|
implicit?: {
|
|
3315
3348
|
type: "implicit";
|
|
@@ -3321,6 +3354,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3321
3354
|
authorizationUrl: string;
|
|
3322
3355
|
"x-scalar-redirect-uri": string;
|
|
3323
3356
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3357
|
+
"x-tokenName"?: string | undefined;
|
|
3324
3358
|
} | undefined;
|
|
3325
3359
|
clientCredentials?: {
|
|
3326
3360
|
type: "clientCredentials";
|
|
@@ -3332,6 +3366,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3332
3366
|
tokenUrl: string;
|
|
3333
3367
|
clientSecret: string;
|
|
3334
3368
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3369
|
+
"x-tokenName"?: string | undefined;
|
|
3335
3370
|
} | undefined;
|
|
3336
3371
|
authorizationCode?: {
|
|
3337
3372
|
type: "authorizationCode";
|
|
@@ -3346,6 +3381,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3346
3381
|
clientSecret: string;
|
|
3347
3382
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
3348
3383
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3384
|
+
"x-tokenName"?: string | undefined;
|
|
3349
3385
|
} | undefined;
|
|
3350
3386
|
};
|
|
3351
3387
|
description?: string | undefined;
|
|
@@ -3367,6 +3403,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3367
3403
|
tokenUrl: string;
|
|
3368
3404
|
clientSecret: string;
|
|
3369
3405
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3406
|
+
"x-tokenName"?: string | undefined;
|
|
3370
3407
|
} | undefined;
|
|
3371
3408
|
implicit?: {
|
|
3372
3409
|
type: "implicit";
|
|
@@ -3378,6 +3415,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3378
3415
|
authorizationUrl: string;
|
|
3379
3416
|
"x-scalar-redirect-uri": string;
|
|
3380
3417
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3418
|
+
"x-tokenName"?: string | undefined;
|
|
3381
3419
|
} | undefined;
|
|
3382
3420
|
clientCredentials?: {
|
|
3383
3421
|
type: "clientCredentials";
|
|
@@ -3389,6 +3427,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3389
3427
|
tokenUrl: string;
|
|
3390
3428
|
clientSecret: string;
|
|
3391
3429
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3430
|
+
"x-tokenName"?: string | undefined;
|
|
3392
3431
|
} | undefined;
|
|
3393
3432
|
authorizationCode?: {
|
|
3394
3433
|
type: "authorizationCode";
|
|
@@ -3403,6 +3442,7 @@ export declare const createApiClientModal: ({ el, configuration, mountOnInitiali
|
|
|
3403
3442
|
clientSecret: string;
|
|
3404
3443
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
3405
3444
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
3445
|
+
"x-tokenName"?: string | undefined;
|
|
3406
3446
|
} | undefined;
|
|
3407
3447
|
};
|
|
3408
3448
|
description?: string | undefined;
|
|
@@ -4214,6 +4254,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
4214
4254
|
tokenUrl: string;
|
|
4215
4255
|
clientSecret: string;
|
|
4216
4256
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
4257
|
+
"x-tokenName"?: string | undefined;
|
|
4217
4258
|
} | undefined;
|
|
4218
4259
|
implicit?: {
|
|
4219
4260
|
type: "implicit";
|
|
@@ -4225,6 +4266,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
4225
4266
|
authorizationUrl: string;
|
|
4226
4267
|
"x-scalar-redirect-uri": string;
|
|
4227
4268
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
4269
|
+
"x-tokenName"?: string | undefined;
|
|
4228
4270
|
} | undefined;
|
|
4229
4271
|
clientCredentials?: {
|
|
4230
4272
|
type: "clientCredentials";
|
|
@@ -4236,6 +4278,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
4236
4278
|
tokenUrl: string;
|
|
4237
4279
|
clientSecret: string;
|
|
4238
4280
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
4281
|
+
"x-tokenName"?: string | undefined;
|
|
4239
4282
|
} | undefined;
|
|
4240
4283
|
authorizationCode?: {
|
|
4241
4284
|
type: "authorizationCode";
|
|
@@ -4250,6 +4293,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
4250
4293
|
clientSecret: string;
|
|
4251
4294
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
4252
4295
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
4296
|
+
"x-tokenName"?: string | undefined;
|
|
4253
4297
|
} | undefined;
|
|
4254
4298
|
};
|
|
4255
4299
|
description?: string | undefined;
|
|
@@ -6579,6 +6623,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6579
6623
|
tokenUrl: string;
|
|
6580
6624
|
clientSecret: string;
|
|
6581
6625
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6626
|
+
"x-tokenName"?: string | undefined;
|
|
6582
6627
|
} | undefined;
|
|
6583
6628
|
implicit?: {
|
|
6584
6629
|
type: "implicit";
|
|
@@ -6590,6 +6635,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6590
6635
|
authorizationUrl: string;
|
|
6591
6636
|
"x-scalar-redirect-uri": string;
|
|
6592
6637
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6638
|
+
"x-tokenName"?: string | undefined;
|
|
6593
6639
|
} | undefined;
|
|
6594
6640
|
clientCredentials?: {
|
|
6595
6641
|
type: "clientCredentials";
|
|
@@ -6601,6 +6647,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6601
6647
|
tokenUrl: string;
|
|
6602
6648
|
clientSecret: string;
|
|
6603
6649
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6650
|
+
"x-tokenName"?: string | undefined;
|
|
6604
6651
|
} | undefined;
|
|
6605
6652
|
authorizationCode?: {
|
|
6606
6653
|
type: "authorizationCode";
|
|
@@ -6615,6 +6662,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6615
6662
|
clientSecret: string;
|
|
6616
6663
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
6617
6664
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6665
|
+
"x-tokenName"?: string | undefined;
|
|
6618
6666
|
} | undefined;
|
|
6619
6667
|
};
|
|
6620
6668
|
description?: string | undefined;
|
|
@@ -6661,6 +6709,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6661
6709
|
tokenUrl: string;
|
|
6662
6710
|
clientSecret: string;
|
|
6663
6711
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6712
|
+
"x-tokenName"?: string | undefined;
|
|
6664
6713
|
} | undefined;
|
|
6665
6714
|
implicit?: {
|
|
6666
6715
|
type: "implicit";
|
|
@@ -6672,6 +6721,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6672
6721
|
authorizationUrl: string;
|
|
6673
6722
|
"x-scalar-redirect-uri": string;
|
|
6674
6723
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6724
|
+
"x-tokenName"?: string | undefined;
|
|
6675
6725
|
} | undefined;
|
|
6676
6726
|
clientCredentials?: {
|
|
6677
6727
|
type: "clientCredentials";
|
|
@@ -6683,6 +6733,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6683
6733
|
tokenUrl: string;
|
|
6684
6734
|
clientSecret: string;
|
|
6685
6735
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6736
|
+
"x-tokenName"?: string | undefined;
|
|
6686
6737
|
} | undefined;
|
|
6687
6738
|
authorizationCode?: {
|
|
6688
6739
|
type: "authorizationCode";
|
|
@@ -6697,6 +6748,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6697
6748
|
clientSecret: string;
|
|
6698
6749
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
6699
6750
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6751
|
+
"x-tokenName"?: string | undefined;
|
|
6700
6752
|
} | undefined;
|
|
6701
6753
|
};
|
|
6702
6754
|
description?: string | undefined;
|
|
@@ -6744,6 +6796,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6744
6796
|
tokenUrl: string;
|
|
6745
6797
|
clientSecret: string;
|
|
6746
6798
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6799
|
+
"x-tokenName"?: string | undefined;
|
|
6747
6800
|
} | undefined;
|
|
6748
6801
|
implicit?: {
|
|
6749
6802
|
type: "implicit";
|
|
@@ -6755,6 +6808,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6755
6808
|
authorizationUrl: string;
|
|
6756
6809
|
"x-scalar-redirect-uri": string;
|
|
6757
6810
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6811
|
+
"x-tokenName"?: string | undefined;
|
|
6758
6812
|
} | undefined;
|
|
6759
6813
|
clientCredentials?: {
|
|
6760
6814
|
type: "clientCredentials";
|
|
@@ -6766,6 +6820,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6766
6820
|
tokenUrl: string;
|
|
6767
6821
|
clientSecret: string;
|
|
6768
6822
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6823
|
+
"x-tokenName"?: string | undefined;
|
|
6769
6824
|
} | undefined;
|
|
6770
6825
|
authorizationCode?: {
|
|
6771
6826
|
type: "authorizationCode";
|
|
@@ -6780,12 +6835,13 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6780
6835
|
clientSecret: string;
|
|
6781
6836
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
6782
6837
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6838
|
+
"x-tokenName"?: string | undefined;
|
|
6783
6839
|
} | undefined;
|
|
6784
6840
|
};
|
|
6785
6841
|
description?: string | undefined;
|
|
6786
6842
|
'x-default-scopes'?: string | string[] | undefined;
|
|
6787
6843
|
}) => void;
|
|
6788
|
-
edit: <P extends "value" | "description" | "type" | "uid" | "name" | "in" | "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" | "uid" | "name" | "in" | "nameKey" ? {
|
|
6844
|
+
edit: <P extends "value" | "description" | "type" | "uid" | "name" | "in" | "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.x-tokenName" | `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.x-tokenName" | `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.x-tokenName" | `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.x-tokenName" | `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" | "uid" | "name" | "in" | "nameKey" ? {
|
|
6789
6845
|
type: "apiKey";
|
|
6790
6846
|
value: string;
|
|
6791
6847
|
name: string;
|
|
@@ -6874,6 +6930,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6874
6930
|
tokenUrl: string;
|
|
6875
6931
|
clientSecret: string;
|
|
6876
6932
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6933
|
+
"x-tokenName"?: string | undefined;
|
|
6877
6934
|
} | undefined;
|
|
6878
6935
|
implicit?: {
|
|
6879
6936
|
type: "implicit";
|
|
@@ -6885,6 +6942,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6885
6942
|
authorizationUrl: string;
|
|
6886
6943
|
"x-scalar-redirect-uri": string;
|
|
6887
6944
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6945
|
+
"x-tokenName"?: string | undefined;
|
|
6888
6946
|
} | undefined;
|
|
6889
6947
|
clientCredentials?: {
|
|
6890
6948
|
type: "clientCredentials";
|
|
@@ -6896,6 +6954,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6896
6954
|
tokenUrl: string;
|
|
6897
6955
|
clientSecret: string;
|
|
6898
6956
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6957
|
+
"x-tokenName"?: string | undefined;
|
|
6899
6958
|
} | undefined;
|
|
6900
6959
|
authorizationCode?: {
|
|
6901
6960
|
type: "authorizationCode";
|
|
@@ -6910,6 +6969,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6910
6969
|
clientSecret: string;
|
|
6911
6970
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
6912
6971
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6972
|
+
"x-tokenName"?: string | undefined;
|
|
6913
6973
|
} | undefined;
|
|
6914
6974
|
};
|
|
6915
6975
|
description?: string | undefined;
|
|
@@ -6931,6 +6991,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6931
6991
|
tokenUrl: string;
|
|
6932
6992
|
clientSecret: string;
|
|
6933
6993
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
6994
|
+
"x-tokenName"?: string | undefined;
|
|
6934
6995
|
} | undefined;
|
|
6935
6996
|
implicit?: {
|
|
6936
6997
|
type: "implicit";
|
|
@@ -6942,6 +7003,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6942
7003
|
authorizationUrl: string;
|
|
6943
7004
|
"x-scalar-redirect-uri": string;
|
|
6944
7005
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7006
|
+
"x-tokenName"?: string | undefined;
|
|
6945
7007
|
} | undefined;
|
|
6946
7008
|
clientCredentials?: {
|
|
6947
7009
|
type: "clientCredentials";
|
|
@@ -6953,6 +7015,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6953
7015
|
tokenUrl: string;
|
|
6954
7016
|
clientSecret: string;
|
|
6955
7017
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7018
|
+
"x-tokenName"?: string | undefined;
|
|
6956
7019
|
} | undefined;
|
|
6957
7020
|
authorizationCode?: {
|
|
6958
7021
|
type: "authorizationCode";
|
|
@@ -6967,6 +7030,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6967
7030
|
clientSecret: string;
|
|
6968
7031
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
6969
7032
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7033
|
+
"x-tokenName"?: string | undefined;
|
|
6970
7034
|
} | undefined;
|
|
6971
7035
|
};
|
|
6972
7036
|
description?: string | undefined;
|
|
@@ -6988,6 +7052,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6988
7052
|
tokenUrl: string;
|
|
6989
7053
|
clientSecret: string;
|
|
6990
7054
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7055
|
+
"x-tokenName"?: string | undefined;
|
|
6991
7056
|
} | undefined;
|
|
6992
7057
|
implicit?: {
|
|
6993
7058
|
type: "implicit";
|
|
@@ -6999,6 +7064,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
6999
7064
|
authorizationUrl: string;
|
|
7000
7065
|
"x-scalar-redirect-uri": string;
|
|
7001
7066
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7067
|
+
"x-tokenName"?: string | undefined;
|
|
7002
7068
|
} | undefined;
|
|
7003
7069
|
clientCredentials?: {
|
|
7004
7070
|
type: "clientCredentials";
|
|
@@ -7010,6 +7076,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
7010
7076
|
tokenUrl: string;
|
|
7011
7077
|
clientSecret: string;
|
|
7012
7078
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7079
|
+
"x-tokenName"?: string | undefined;
|
|
7013
7080
|
} | undefined;
|
|
7014
7081
|
authorizationCode?: {
|
|
7015
7082
|
type: "authorizationCode";
|
|
@@ -7024,12 +7091,13 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
7024
7091
|
clientSecret: string;
|
|
7025
7092
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
7026
7093
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7094
|
+
"x-tokenName"?: string | undefined;
|
|
7027
7095
|
} | undefined;
|
|
7028
7096
|
};
|
|
7029
7097
|
description?: string | undefined;
|
|
7030
7098
|
'x-default-scopes'?: string | string[] | undefined;
|
|
7031
7099
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
7032
|
-
untrackedEdit: <P extends "value" | "description" | "type" | "uid" | "name" | "in" | "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" | "uid" | "name" | "in" | "nameKey" ? {
|
|
7100
|
+
untrackedEdit: <P extends "value" | "description" | "type" | "uid" | "name" | "in" | "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.x-tokenName" | `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.x-tokenName" | `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.x-tokenName" | `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.x-tokenName" | `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" | "uid" | "name" | "in" | "nameKey" ? {
|
|
7033
7101
|
type: "apiKey";
|
|
7034
7102
|
value: string;
|
|
7035
7103
|
name: string;
|
|
@@ -7118,6 +7186,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
7118
7186
|
tokenUrl: string;
|
|
7119
7187
|
clientSecret: string;
|
|
7120
7188
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7189
|
+
"x-tokenName"?: string | undefined;
|
|
7121
7190
|
} | undefined;
|
|
7122
7191
|
implicit?: {
|
|
7123
7192
|
type: "implicit";
|
|
@@ -7129,6 +7198,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
7129
7198
|
authorizationUrl: string;
|
|
7130
7199
|
"x-scalar-redirect-uri": string;
|
|
7131
7200
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7201
|
+
"x-tokenName"?: string | undefined;
|
|
7132
7202
|
} | undefined;
|
|
7133
7203
|
clientCredentials?: {
|
|
7134
7204
|
type: "clientCredentials";
|
|
@@ -7140,6 +7210,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
7140
7210
|
tokenUrl: string;
|
|
7141
7211
|
clientSecret: string;
|
|
7142
7212
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7213
|
+
"x-tokenName"?: string | undefined;
|
|
7143
7214
|
} | undefined;
|
|
7144
7215
|
authorizationCode?: {
|
|
7145
7216
|
type: "authorizationCode";
|
|
@@ -7154,6 +7225,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
7154
7225
|
clientSecret: string;
|
|
7155
7226
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
7156
7227
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7228
|
+
"x-tokenName"?: string | undefined;
|
|
7157
7229
|
} | undefined;
|
|
7158
7230
|
};
|
|
7159
7231
|
description?: string | undefined;
|
|
@@ -7175,6 +7247,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
7175
7247
|
tokenUrl: string;
|
|
7176
7248
|
clientSecret: string;
|
|
7177
7249
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7250
|
+
"x-tokenName"?: string | undefined;
|
|
7178
7251
|
} | undefined;
|
|
7179
7252
|
implicit?: {
|
|
7180
7253
|
type: "implicit";
|
|
@@ -7186,6 +7259,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
7186
7259
|
authorizationUrl: string;
|
|
7187
7260
|
"x-scalar-redirect-uri": string;
|
|
7188
7261
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7262
|
+
"x-tokenName"?: string | undefined;
|
|
7189
7263
|
} | undefined;
|
|
7190
7264
|
clientCredentials?: {
|
|
7191
7265
|
type: "clientCredentials";
|
|
@@ -7197,6 +7271,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
7197
7271
|
tokenUrl: string;
|
|
7198
7272
|
clientSecret: string;
|
|
7199
7273
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7274
|
+
"x-tokenName"?: string | undefined;
|
|
7200
7275
|
} | undefined;
|
|
7201
7276
|
authorizationCode?: {
|
|
7202
7277
|
type: "authorizationCode";
|
|
@@ -7211,6 +7286,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
7211
7286
|
clientSecret: string;
|
|
7212
7287
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
7213
7288
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7289
|
+
"x-tokenName"?: string | undefined;
|
|
7214
7290
|
} | undefined;
|
|
7215
7291
|
};
|
|
7216
7292
|
description?: string | undefined;
|
|
@@ -7232,6 +7308,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
7232
7308
|
tokenUrl: string;
|
|
7233
7309
|
clientSecret: string;
|
|
7234
7310
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7311
|
+
"x-tokenName"?: string | undefined;
|
|
7235
7312
|
} | undefined;
|
|
7236
7313
|
implicit?: {
|
|
7237
7314
|
type: "implicit";
|
|
@@ -7243,6 +7320,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
7243
7320
|
authorizationUrl: string;
|
|
7244
7321
|
"x-scalar-redirect-uri": string;
|
|
7245
7322
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7323
|
+
"x-tokenName"?: string | undefined;
|
|
7246
7324
|
} | undefined;
|
|
7247
7325
|
clientCredentials?: {
|
|
7248
7326
|
type: "clientCredentials";
|
|
@@ -7254,6 +7332,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
7254
7332
|
tokenUrl: string;
|
|
7255
7333
|
clientSecret: string;
|
|
7256
7334
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7335
|
+
"x-tokenName"?: string | undefined;
|
|
7257
7336
|
} | undefined;
|
|
7258
7337
|
authorizationCode?: {
|
|
7259
7338
|
type: "authorizationCode";
|
|
@@ -7268,6 +7347,7 @@ export declare const createApiClientModalSync: ({ el, configuration, mountOnInit
|
|
|
7268
7347
|
clientSecret: string;
|
|
7269
7348
|
"x-usePkce": "SHA-256" | "plain" | "no";
|
|
7270
7349
|
"x-scalar-security-query"?: Record<string, string> | undefined;
|
|
7350
|
+
"x-tokenName"?: string | undefined;
|
|
7271
7351
|
} | undefined;
|
|
7272
7352
|
};
|
|
7273
7353
|
description?: string | undefined;
|