authhero 0.38.0 → 0.40.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.
@@ -10,6 +10,7 @@ export type Variables = {
10
10
  username?: string;
11
11
  connection?: string;
12
12
  body?: any;
13
+ log?: string;
13
14
  user?: {
14
15
  sub: string;
15
16
  tenant_id: string;
@@ -4678,9 +4679,9 @@ export declare function init(config: AuthHeroConfig): {
4678
4679
  discovery_url?: string | undefined;
4679
4680
  } | undefined;
4680
4681
  response_mode?: AuthorizationResponseMode | undefined;
4682
+ response_type?: AuthorizationResponseType | undefined;
4681
4683
  id?: string | undefined;
4682
4684
  strategy?: string | undefined;
4683
- response_type?: AuthorizationResponseType | undefined;
4684
4685
  enabled_clients?: string[] | undefined;
4685
4686
  };
4686
4687
  };
@@ -4740,8 +4741,8 @@ export declare function init(config: AuthHeroConfig): {
4740
4741
  discovery_url?: string | undefined;
4741
4742
  } | undefined;
4742
4743
  response_mode?: AuthorizationResponseMode | undefined;
4743
- id?: string | undefined;
4744
4744
  response_type?: AuthorizationResponseType | undefined;
4745
+ id?: string | undefined;
4745
4746
  enabled_clients?: string[] | undefined;
4746
4747
  };
4747
4748
  };
@@ -6280,10 +6281,10 @@ export declare function init(config: AuthHeroConfig): {
6280
6281
  redirect_uri: string;
6281
6282
  nonce?: string | undefined;
6282
6283
  response_mode?: AuthorizationResponseMode | undefined;
6284
+ response_type?: AuthorizationResponseType | undefined;
6283
6285
  connection?: string | undefined;
6284
6286
  audience?: string | undefined;
6285
6287
  scope?: string | undefined;
6286
- response_type?: AuthorizationResponseType | undefined;
6287
6288
  auth0Client?: string | undefined;
6288
6289
  code_challenge_method?: CodeChallengeMethod | undefined;
6289
6290
  vendor_id?: string | undefined;
@@ -6307,10 +6308,10 @@ export declare function init(config: AuthHeroConfig): {
6307
6308
  redirect_uri: string;
6308
6309
  nonce?: string | undefined;
6309
6310
  response_mode?: AuthorizationResponseMode | undefined;
6311
+ response_type?: AuthorizationResponseType | undefined;
6310
6312
  connection?: string | undefined;
6311
6313
  audience?: string | undefined;
6312
6314
  scope?: string | undefined;
6313
- response_type?: AuthorizationResponseType | undefined;
6314
6315
  auth0Client?: string | undefined;
6315
6316
  code_challenge_method?: CodeChallengeMethod | undefined;
6316
6317
  vendor_id?: string | undefined;
@@ -6364,10 +6365,10 @@ export declare function init(config: AuthHeroConfig): {
6364
6365
  authParams: {
6365
6366
  nonce?: string | undefined;
6366
6367
  response_mode?: AuthorizationResponseMode | undefined;
6368
+ response_type?: AuthorizationResponseType | undefined;
6367
6369
  username?: string | undefined;
6368
6370
  audience?: string | undefined;
6369
6371
  scope?: string | undefined;
6370
- response_type?: AuthorizationResponseType | undefined;
6371
6372
  state?: string | undefined;
6372
6373
  redirect_uri?: string | undefined;
6373
6374
  code_challenge_method?: CodeChallengeMethod | undefined;
@@ -6392,9 +6393,9 @@ export declare function init(config: AuthHeroConfig): {
6392
6393
  query: {
6393
6394
  email: string;
6394
6395
  client_id: string;
6396
+ response_type: AuthorizationResponseType;
6395
6397
  connection: string;
6396
6398
  scope: string;
6397
- response_type: AuthorizationResponseType;
6398
6399
  state: string;
6399
6400
  redirect_uri: string;
6400
6401
  verification_code: string;