authhero 0.36.2 → 0.38.0
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/dist/authhero.cjs +13 -13
- package/dist/authhero.d.ts +12 -7
- package/dist/authhero.mjs +4694 -4682
- package/package.json +2 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -4461,6 +4461,7 @@ export type Bindings = {
|
|
|
4461
4461
|
};
|
|
4462
4462
|
JWKS_CACHE_TIMEOUT_IN_SECONDS: number;
|
|
4463
4463
|
ORGANIZATION_NAME: string;
|
|
4464
|
+
API_URL: string;
|
|
4464
4465
|
};
|
|
4465
4466
|
export interface AuthHeroConfig {
|
|
4466
4467
|
dataAdapter: DataAdapters;
|
|
@@ -6275,16 +6276,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6275
6276
|
input: {
|
|
6276
6277
|
query: {
|
|
6277
6278
|
client_id: string;
|
|
6278
|
-
redirect_uri: string;
|
|
6279
6279
|
state: string;
|
|
6280
|
+
redirect_uri: string;
|
|
6280
6281
|
nonce?: string | undefined;
|
|
6281
6282
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
6282
6283
|
connection?: string | undefined;
|
|
6283
6284
|
audience?: string | undefined;
|
|
6284
6285
|
scope?: string | undefined;
|
|
6285
6286
|
response_type?: AuthorizationResponseType | undefined;
|
|
6286
|
-
code_challenge_method?: CodeChallengeMethod | undefined;
|
|
6287
6287
|
auth0Client?: string | undefined;
|
|
6288
|
+
code_challenge_method?: CodeChallengeMethod | undefined;
|
|
6288
6289
|
vendor_id?: string | undefined;
|
|
6289
6290
|
prompt?: string | undefined;
|
|
6290
6291
|
code_challenge?: string | undefined;
|
|
@@ -6302,16 +6303,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6302
6303
|
input: {
|
|
6303
6304
|
query: {
|
|
6304
6305
|
client_id: string;
|
|
6305
|
-
redirect_uri: string;
|
|
6306
6306
|
state: string;
|
|
6307
|
+
redirect_uri: string;
|
|
6307
6308
|
nonce?: string | undefined;
|
|
6308
6309
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
6309
6310
|
connection?: string | undefined;
|
|
6310
6311
|
audience?: string | undefined;
|
|
6311
6312
|
scope?: string | undefined;
|
|
6312
6313
|
response_type?: AuthorizationResponseType | undefined;
|
|
6313
|
-
code_challenge_method?: CodeChallengeMethod | undefined;
|
|
6314
6314
|
auth0Client?: string | undefined;
|
|
6315
|
+
code_challenge_method?: CodeChallengeMethod | undefined;
|
|
6315
6316
|
vendor_id?: string | undefined;
|
|
6316
6317
|
prompt?: string | undefined;
|
|
6317
6318
|
code_challenge?: string | undefined;
|
|
@@ -6367,11 +6368,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6367
6368
|
audience?: string | undefined;
|
|
6368
6369
|
scope?: string | undefined;
|
|
6369
6370
|
response_type?: AuthorizationResponseType | undefined;
|
|
6371
|
+
state?: string | undefined;
|
|
6370
6372
|
redirect_uri?: string | undefined;
|
|
6371
6373
|
code_challenge_method?: CodeChallengeMethod | undefined;
|
|
6372
6374
|
vendor_id?: string | undefined;
|
|
6373
6375
|
act_as?: string | undefined;
|
|
6374
|
-
state?: string | undefined;
|
|
6375
6376
|
prompt?: string | undefined;
|
|
6376
6377
|
code_challenge?: string | undefined;
|
|
6377
6378
|
ui_locales?: string | undefined;
|
|
@@ -6394,8 +6395,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6394
6395
|
connection: string;
|
|
6395
6396
|
scope: string;
|
|
6396
6397
|
response_type: AuthorizationResponseType;
|
|
6397
|
-
redirect_uri: string;
|
|
6398
6398
|
state: string;
|
|
6399
|
+
redirect_uri: string;
|
|
6399
6400
|
verification_code: string;
|
|
6400
6401
|
nonce?: string | undefined;
|
|
6401
6402
|
audience?: string | undefined;
|
|
@@ -6456,8 +6457,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6456
6457
|
} | {
|
|
6457
6458
|
code: string;
|
|
6458
6459
|
client_id: string;
|
|
6459
|
-
grant_type: "authorization_code";
|
|
6460
6460
|
redirect_uri: string;
|
|
6461
|
+
grant_type: "authorization_code";
|
|
6461
6462
|
code_verifier: string;
|
|
6462
6463
|
} | {
|
|
6463
6464
|
code: string;
|
|
@@ -6558,6 +6559,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6558
6559
|
};
|
|
6559
6560
|
};
|
|
6560
6561
|
}, "/v2/logout">, "/">;
|
|
6562
|
+
universalApp: OpenAPIHono<{
|
|
6563
|
+
Bindings: Bindings;
|
|
6564
|
+
Variables: Variables;
|
|
6565
|
+
}, {}, "/">;
|
|
6561
6566
|
createX509Certificate: typeof createX509Certificate;
|
|
6562
6567
|
};
|
|
6563
6568
|
|