authhero 9.11.0 → 9.11.1
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 +3 -3
- package/dist/authhero.d.ts +269 -247
- package/dist/authhero.mjs +6 -5
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/helpers/reserved-claims.d.ts +19 -3
- package/dist/types/index.d.ts +247 -247
- package/dist/types/routes/auth-api/index.d.ts +9 -9
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +218 -218
- package/dist/types/routes/management-api/keys.d.ts +12 -12
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/tenant-operations.d.ts +1 -1
- package/dist/types/routes/management-api/users.d.ts +12 -12
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/types/AuthHeroConfig.d.ts +21 -0
- package/dist/types/types/Bindings.d.ts +1 -0
- package/dist/types/utils/jwks.d.ts +2 -2
- package/package.json +1 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -1916,6 +1916,27 @@ interface AuthHeroConfig {
|
|
|
1916
1916
|
* Defaults to Auth0's limit of 2; further submissions get a 429.
|
|
1917
1917
|
*/
|
|
1918
1918
|
usersImportMaxConcurrentJobs?: number;
|
|
1919
|
+
/**
|
|
1920
|
+
* Let hooks write the `azp` claim, which the authorization server otherwise
|
|
1921
|
+
* owns. Defaults to `false`, and should stay that way in a new deployment.
|
|
1922
|
+
*
|
|
1923
|
+
* `azp` is reserved because `middlewares/authentication.ts` reads it as the
|
|
1924
|
+
* calling client's id, so a hook-supplied value lands in the request context
|
|
1925
|
+
* where a registered client id is expected.
|
|
1926
|
+
*
|
|
1927
|
+
* The flag exists because reserving the name is not a no-op for a deployment
|
|
1928
|
+
* that was already using it: the mint never emits `azp` itself, so a hook
|
|
1929
|
+
* was the only thing writing it, and reserving it deletes the claim from
|
|
1930
|
+
* every token rather than restoring a server-computed value. Turning this on
|
|
1931
|
+
* keeps those tokens intact while the services reading `azp` are moved onto
|
|
1932
|
+
* a claim the hook owns.
|
|
1933
|
+
*
|
|
1934
|
+
* **Transitional.** Enable it only where the hooks writing `azp` are
|
|
1935
|
+
* first-party code, and turn it off once the migration is done.
|
|
1936
|
+
*
|
|
1937
|
+
* @default false
|
|
1938
|
+
*/
|
|
1939
|
+
unsafeAllowAzpCustomClaim?: boolean;
|
|
1919
1940
|
/**
|
|
1920
1941
|
* Optional powered-by logo to display at the bottom left of the login widget.
|
|
1921
1942
|
* This is only configurable in code, not stored in the database.
|
|
@@ -2185,6 +2206,7 @@ type Bindings = {
|
|
|
2185
2206
|
tenantOperationExecutor?: TenantOperationExecutorBinding;
|
|
2186
2207
|
usersImportMaxBytes?: number;
|
|
2187
2208
|
usersImportMaxConcurrentJobs?: number;
|
|
2209
|
+
unsafeAllowAzpCustomClaim?: boolean;
|
|
2188
2210
|
outbox?: OutboxConfig;
|
|
2189
2211
|
userLinkingMode?: UserLinkingModeOption;
|
|
2190
2212
|
usernamePasswordProvider?: UsernamePasswordProviderResolver;
|
|
@@ -4747,7 +4769,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4747
4769
|
};
|
|
4748
4770
|
} & {
|
|
4749
4771
|
json: {
|
|
4750
|
-
type: "email" | "
|
|
4772
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
4751
4773
|
phone_number?: string | undefined;
|
|
4752
4774
|
totp_secret?: string | undefined;
|
|
4753
4775
|
credential_id?: string | undefined;
|
|
@@ -4887,7 +4909,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4887
4909
|
};
|
|
4888
4910
|
};
|
|
4889
4911
|
output: {
|
|
4890
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
4912
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4891
4913
|
enabled: boolean;
|
|
4892
4914
|
trial_expired?: boolean | undefined;
|
|
4893
4915
|
}[];
|
|
@@ -5042,7 +5064,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5042
5064
|
$get: {
|
|
5043
5065
|
input: {
|
|
5044
5066
|
param: {
|
|
5045
|
-
factor_name: "email" | "sms" | "otp" | "duo" | "
|
|
5067
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
5046
5068
|
};
|
|
5047
5069
|
} & {
|
|
5048
5070
|
header: {
|
|
@@ -5050,7 +5072,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5050
5072
|
};
|
|
5051
5073
|
};
|
|
5052
5074
|
output: {
|
|
5053
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
5075
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
5054
5076
|
enabled: boolean;
|
|
5055
5077
|
trial_expired?: boolean | undefined;
|
|
5056
5078
|
};
|
|
@@ -5063,7 +5085,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5063
5085
|
$put: {
|
|
5064
5086
|
input: {
|
|
5065
5087
|
param: {
|
|
5066
|
-
factor_name: "email" | "sms" | "otp" | "duo" | "
|
|
5088
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
5067
5089
|
};
|
|
5068
5090
|
} & {
|
|
5069
5091
|
header: {
|
|
@@ -5075,7 +5097,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5075
5097
|
};
|
|
5076
5098
|
};
|
|
5077
5099
|
output: {
|
|
5078
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
5100
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
5079
5101
|
enabled: boolean;
|
|
5080
5102
|
trial_expired?: boolean | undefined;
|
|
5081
5103
|
};
|
|
@@ -6614,9 +6636,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6614
6636
|
};
|
|
6615
6637
|
} & {
|
|
6616
6638
|
query: {
|
|
6639
|
+
from?: string | undefined;
|
|
6617
6640
|
page?: string | undefined;
|
|
6618
6641
|
include_totals?: string | undefined;
|
|
6619
|
-
from?: string | undefined;
|
|
6620
6642
|
per_page?: string | undefined;
|
|
6621
6643
|
take?: string | undefined;
|
|
6622
6644
|
};
|
|
@@ -7339,7 +7361,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7339
7361
|
hint?: string | undefined;
|
|
7340
7362
|
messages?: {
|
|
7341
7363
|
text: string;
|
|
7342
|
-
type: "
|
|
7364
|
+
type: "error" | "success" | "info" | "warning";
|
|
7343
7365
|
id?: number | undefined;
|
|
7344
7366
|
}[] | undefined;
|
|
7345
7367
|
required?: boolean | undefined;
|
|
@@ -7357,7 +7379,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7357
7379
|
hint?: string | undefined;
|
|
7358
7380
|
messages?: {
|
|
7359
7381
|
text: string;
|
|
7360
|
-
type: "
|
|
7382
|
+
type: "error" | "success" | "info" | "warning";
|
|
7361
7383
|
id?: number | undefined;
|
|
7362
7384
|
}[] | undefined;
|
|
7363
7385
|
required?: boolean | undefined;
|
|
@@ -7381,7 +7403,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7381
7403
|
hint?: string | undefined;
|
|
7382
7404
|
messages?: {
|
|
7383
7405
|
text: string;
|
|
7384
|
-
type: "
|
|
7406
|
+
type: "error" | "success" | "info" | "warning";
|
|
7385
7407
|
id?: number | undefined;
|
|
7386
7408
|
}[] | undefined;
|
|
7387
7409
|
required?: boolean | undefined;
|
|
@@ -7405,7 +7427,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7405
7427
|
hint?: string | undefined;
|
|
7406
7428
|
messages?: {
|
|
7407
7429
|
text: string;
|
|
7408
|
-
type: "
|
|
7430
|
+
type: "error" | "success" | "info" | "warning";
|
|
7409
7431
|
id?: number | undefined;
|
|
7410
7432
|
}[] | undefined;
|
|
7411
7433
|
required?: boolean | undefined;
|
|
@@ -7429,7 +7451,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7429
7451
|
hint?: string | undefined;
|
|
7430
7452
|
messages?: {
|
|
7431
7453
|
text: string;
|
|
7432
|
-
type: "
|
|
7454
|
+
type: "error" | "success" | "info" | "warning";
|
|
7433
7455
|
id?: number | undefined;
|
|
7434
7456
|
}[] | undefined;
|
|
7435
7457
|
required?: boolean | undefined;
|
|
@@ -7458,7 +7480,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7458
7480
|
hint?: string | undefined;
|
|
7459
7481
|
messages?: {
|
|
7460
7482
|
text: string;
|
|
7461
|
-
type: "
|
|
7483
|
+
type: "error" | "success" | "info" | "warning";
|
|
7462
7484
|
id?: number | undefined;
|
|
7463
7485
|
}[] | undefined;
|
|
7464
7486
|
required?: boolean | undefined;
|
|
@@ -7473,7 +7495,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7473
7495
|
hint?: string | undefined;
|
|
7474
7496
|
messages?: {
|
|
7475
7497
|
text: string;
|
|
7476
|
-
type: "
|
|
7498
|
+
type: "error" | "success" | "info" | "warning";
|
|
7477
7499
|
id?: number | undefined;
|
|
7478
7500
|
}[] | undefined;
|
|
7479
7501
|
required?: boolean | undefined;
|
|
@@ -7494,7 +7516,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7494
7516
|
hint?: string | undefined;
|
|
7495
7517
|
messages?: {
|
|
7496
7518
|
text: string;
|
|
7497
|
-
type: "
|
|
7519
|
+
type: "error" | "success" | "info" | "warning";
|
|
7498
7520
|
id?: number | undefined;
|
|
7499
7521
|
}[] | undefined;
|
|
7500
7522
|
required?: boolean | undefined;
|
|
@@ -7519,7 +7541,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7519
7541
|
hint?: string | undefined;
|
|
7520
7542
|
messages?: {
|
|
7521
7543
|
text: string;
|
|
7522
|
-
type: "
|
|
7544
|
+
type: "error" | "success" | "info" | "warning";
|
|
7523
7545
|
id?: number | undefined;
|
|
7524
7546
|
}[] | undefined;
|
|
7525
7547
|
required?: boolean | undefined;
|
|
@@ -7540,7 +7562,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7540
7562
|
hint?: string | undefined;
|
|
7541
7563
|
messages?: {
|
|
7542
7564
|
text: string;
|
|
7543
|
-
type: "
|
|
7565
|
+
type: "error" | "success" | "info" | "warning";
|
|
7544
7566
|
id?: number | undefined;
|
|
7545
7567
|
}[] | undefined;
|
|
7546
7568
|
required?: boolean | undefined;
|
|
@@ -7560,7 +7582,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7560
7582
|
hint?: string | undefined;
|
|
7561
7583
|
messages?: {
|
|
7562
7584
|
text: string;
|
|
7563
|
-
type: "
|
|
7585
|
+
type: "error" | "success" | "info" | "warning";
|
|
7564
7586
|
id?: number | undefined;
|
|
7565
7587
|
}[] | undefined;
|
|
7566
7588
|
required?: boolean | undefined;
|
|
@@ -7579,7 +7601,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7579
7601
|
hint?: string | undefined;
|
|
7580
7602
|
messages?: {
|
|
7581
7603
|
text: string;
|
|
7582
|
-
type: "
|
|
7604
|
+
type: "error" | "success" | "info" | "warning";
|
|
7583
7605
|
id?: number | undefined;
|
|
7584
7606
|
}[] | undefined;
|
|
7585
7607
|
required?: boolean | undefined;
|
|
@@ -7601,7 +7623,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7601
7623
|
hint?: string | undefined;
|
|
7602
7624
|
messages?: {
|
|
7603
7625
|
text: string;
|
|
7604
|
-
type: "
|
|
7626
|
+
type: "error" | "success" | "info" | "warning";
|
|
7605
7627
|
id?: number | undefined;
|
|
7606
7628
|
}[] | undefined;
|
|
7607
7629
|
required?: boolean | undefined;
|
|
@@ -7623,7 +7645,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7623
7645
|
hint?: string | undefined;
|
|
7624
7646
|
messages?: {
|
|
7625
7647
|
text: string;
|
|
7626
|
-
type: "
|
|
7648
|
+
type: "error" | "success" | "info" | "warning";
|
|
7627
7649
|
id?: number | undefined;
|
|
7628
7650
|
}[] | undefined;
|
|
7629
7651
|
required?: boolean | undefined;
|
|
@@ -7642,7 +7664,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7642
7664
|
hint?: string | undefined;
|
|
7643
7665
|
messages?: {
|
|
7644
7666
|
text: string;
|
|
7645
|
-
type: "
|
|
7667
|
+
type: "error" | "success" | "info" | "warning";
|
|
7646
7668
|
id?: number | undefined;
|
|
7647
7669
|
}[] | undefined;
|
|
7648
7670
|
required?: boolean | undefined;
|
|
@@ -7669,7 +7691,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7669
7691
|
hint?: string | undefined;
|
|
7670
7692
|
messages?: {
|
|
7671
7693
|
text: string;
|
|
7672
|
-
type: "
|
|
7694
|
+
type: "error" | "success" | "info" | "warning";
|
|
7673
7695
|
id?: number | undefined;
|
|
7674
7696
|
}[] | undefined;
|
|
7675
7697
|
required?: boolean | undefined;
|
|
@@ -7690,7 +7712,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7690
7712
|
hint?: string | undefined;
|
|
7691
7713
|
messages?: {
|
|
7692
7714
|
text: string;
|
|
7693
|
-
type: "
|
|
7715
|
+
type: "error" | "success" | "info" | "warning";
|
|
7694
7716
|
id?: number | undefined;
|
|
7695
7717
|
}[] | undefined;
|
|
7696
7718
|
required?: boolean | undefined;
|
|
@@ -7713,7 +7735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7713
7735
|
hint?: string | undefined;
|
|
7714
7736
|
messages?: {
|
|
7715
7737
|
text: string;
|
|
7716
|
-
type: "
|
|
7738
|
+
type: "error" | "success" | "info" | "warning";
|
|
7717
7739
|
id?: number | undefined;
|
|
7718
7740
|
}[] | undefined;
|
|
7719
7741
|
required?: boolean | undefined;
|
|
@@ -7946,7 +7968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7946
7968
|
hint?: string | undefined;
|
|
7947
7969
|
messages?: {
|
|
7948
7970
|
text: string;
|
|
7949
|
-
type: "
|
|
7971
|
+
type: "error" | "success" | "info" | "warning";
|
|
7950
7972
|
id?: number | undefined;
|
|
7951
7973
|
}[] | undefined;
|
|
7952
7974
|
required?: boolean | undefined;
|
|
@@ -7964,7 +7986,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7964
7986
|
hint?: string | undefined;
|
|
7965
7987
|
messages?: {
|
|
7966
7988
|
text: string;
|
|
7967
|
-
type: "
|
|
7989
|
+
type: "error" | "success" | "info" | "warning";
|
|
7968
7990
|
id?: number | undefined;
|
|
7969
7991
|
}[] | undefined;
|
|
7970
7992
|
required?: boolean | undefined;
|
|
@@ -7988,7 +8010,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7988
8010
|
hint?: string | undefined;
|
|
7989
8011
|
messages?: {
|
|
7990
8012
|
text: string;
|
|
7991
|
-
type: "
|
|
8013
|
+
type: "error" | "success" | "info" | "warning";
|
|
7992
8014
|
id?: number | undefined;
|
|
7993
8015
|
}[] | undefined;
|
|
7994
8016
|
required?: boolean | undefined;
|
|
@@ -8012,7 +8034,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8012
8034
|
hint?: string | undefined;
|
|
8013
8035
|
messages?: {
|
|
8014
8036
|
text: string;
|
|
8015
|
-
type: "
|
|
8037
|
+
type: "error" | "success" | "info" | "warning";
|
|
8016
8038
|
id?: number | undefined;
|
|
8017
8039
|
}[] | undefined;
|
|
8018
8040
|
required?: boolean | undefined;
|
|
@@ -8036,7 +8058,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8036
8058
|
hint?: string | undefined;
|
|
8037
8059
|
messages?: {
|
|
8038
8060
|
text: string;
|
|
8039
|
-
type: "
|
|
8061
|
+
type: "error" | "success" | "info" | "warning";
|
|
8040
8062
|
id?: number | undefined;
|
|
8041
8063
|
}[] | undefined;
|
|
8042
8064
|
required?: boolean | undefined;
|
|
@@ -8065,7 +8087,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8065
8087
|
hint?: string | undefined;
|
|
8066
8088
|
messages?: {
|
|
8067
8089
|
text: string;
|
|
8068
|
-
type: "
|
|
8090
|
+
type: "error" | "success" | "info" | "warning";
|
|
8069
8091
|
id?: number | undefined;
|
|
8070
8092
|
}[] | undefined;
|
|
8071
8093
|
required?: boolean | undefined;
|
|
@@ -8080,7 +8102,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8080
8102
|
hint?: string | undefined;
|
|
8081
8103
|
messages?: {
|
|
8082
8104
|
text: string;
|
|
8083
|
-
type: "
|
|
8105
|
+
type: "error" | "success" | "info" | "warning";
|
|
8084
8106
|
id?: number | undefined;
|
|
8085
8107
|
}[] | undefined;
|
|
8086
8108
|
required?: boolean | undefined;
|
|
@@ -8101,7 +8123,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8101
8123
|
hint?: string | undefined;
|
|
8102
8124
|
messages?: {
|
|
8103
8125
|
text: string;
|
|
8104
|
-
type: "
|
|
8126
|
+
type: "error" | "success" | "info" | "warning";
|
|
8105
8127
|
id?: number | undefined;
|
|
8106
8128
|
}[] | undefined;
|
|
8107
8129
|
required?: boolean | undefined;
|
|
@@ -8126,7 +8148,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8126
8148
|
hint?: string | undefined;
|
|
8127
8149
|
messages?: {
|
|
8128
8150
|
text: string;
|
|
8129
|
-
type: "
|
|
8151
|
+
type: "error" | "success" | "info" | "warning";
|
|
8130
8152
|
id?: number | undefined;
|
|
8131
8153
|
}[] | undefined;
|
|
8132
8154
|
required?: boolean | undefined;
|
|
@@ -8147,7 +8169,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8147
8169
|
hint?: string | undefined;
|
|
8148
8170
|
messages?: {
|
|
8149
8171
|
text: string;
|
|
8150
|
-
type: "
|
|
8172
|
+
type: "error" | "success" | "info" | "warning";
|
|
8151
8173
|
id?: number | undefined;
|
|
8152
8174
|
}[] | undefined;
|
|
8153
8175
|
required?: boolean | undefined;
|
|
@@ -8167,7 +8189,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8167
8189
|
hint?: string | undefined;
|
|
8168
8190
|
messages?: {
|
|
8169
8191
|
text: string;
|
|
8170
|
-
type: "
|
|
8192
|
+
type: "error" | "success" | "info" | "warning";
|
|
8171
8193
|
id?: number | undefined;
|
|
8172
8194
|
}[] | undefined;
|
|
8173
8195
|
required?: boolean | undefined;
|
|
@@ -8186,7 +8208,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8186
8208
|
hint?: string | undefined;
|
|
8187
8209
|
messages?: {
|
|
8188
8210
|
text: string;
|
|
8189
|
-
type: "
|
|
8211
|
+
type: "error" | "success" | "info" | "warning";
|
|
8190
8212
|
id?: number | undefined;
|
|
8191
8213
|
}[] | undefined;
|
|
8192
8214
|
required?: boolean | undefined;
|
|
@@ -8208,7 +8230,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8208
8230
|
hint?: string | undefined;
|
|
8209
8231
|
messages?: {
|
|
8210
8232
|
text: string;
|
|
8211
|
-
type: "
|
|
8233
|
+
type: "error" | "success" | "info" | "warning";
|
|
8212
8234
|
id?: number | undefined;
|
|
8213
8235
|
}[] | undefined;
|
|
8214
8236
|
required?: boolean | undefined;
|
|
@@ -8230,7 +8252,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8230
8252
|
hint?: string | undefined;
|
|
8231
8253
|
messages?: {
|
|
8232
8254
|
text: string;
|
|
8233
|
-
type: "
|
|
8255
|
+
type: "error" | "success" | "info" | "warning";
|
|
8234
8256
|
id?: number | undefined;
|
|
8235
8257
|
}[] | undefined;
|
|
8236
8258
|
required?: boolean | undefined;
|
|
@@ -8249,7 +8271,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8249
8271
|
hint?: string | undefined;
|
|
8250
8272
|
messages?: {
|
|
8251
8273
|
text: string;
|
|
8252
|
-
type: "
|
|
8274
|
+
type: "error" | "success" | "info" | "warning";
|
|
8253
8275
|
id?: number | undefined;
|
|
8254
8276
|
}[] | undefined;
|
|
8255
8277
|
required?: boolean | undefined;
|
|
@@ -8276,7 +8298,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8276
8298
|
hint?: string | undefined;
|
|
8277
8299
|
messages?: {
|
|
8278
8300
|
text: string;
|
|
8279
|
-
type: "
|
|
8301
|
+
type: "error" | "success" | "info" | "warning";
|
|
8280
8302
|
id?: number | undefined;
|
|
8281
8303
|
}[] | undefined;
|
|
8282
8304
|
required?: boolean | undefined;
|
|
@@ -8297,7 +8319,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8297
8319
|
hint?: string | undefined;
|
|
8298
8320
|
messages?: {
|
|
8299
8321
|
text: string;
|
|
8300
|
-
type: "
|
|
8322
|
+
type: "error" | "success" | "info" | "warning";
|
|
8301
8323
|
id?: number | undefined;
|
|
8302
8324
|
}[] | undefined;
|
|
8303
8325
|
required?: boolean | undefined;
|
|
@@ -8320,7 +8342,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8320
8342
|
hint?: string | undefined;
|
|
8321
8343
|
messages?: {
|
|
8322
8344
|
text: string;
|
|
8323
|
-
type: "
|
|
8345
|
+
type: "error" | "success" | "info" | "warning";
|
|
8324
8346
|
id?: number | undefined;
|
|
8325
8347
|
}[] | undefined;
|
|
8326
8348
|
required?: boolean | undefined;
|
|
@@ -8569,7 +8591,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8569
8591
|
hint?: string | undefined;
|
|
8570
8592
|
messages?: {
|
|
8571
8593
|
text: string;
|
|
8572
|
-
type: "
|
|
8594
|
+
type: "error" | "success" | "info" | "warning";
|
|
8573
8595
|
id?: number | undefined;
|
|
8574
8596
|
}[] | undefined;
|
|
8575
8597
|
required?: boolean | undefined;
|
|
@@ -8587,7 +8609,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8587
8609
|
hint?: string | undefined;
|
|
8588
8610
|
messages?: {
|
|
8589
8611
|
text: string;
|
|
8590
|
-
type: "
|
|
8612
|
+
type: "error" | "success" | "info" | "warning";
|
|
8591
8613
|
id?: number | undefined;
|
|
8592
8614
|
}[] | undefined;
|
|
8593
8615
|
required?: boolean | undefined;
|
|
@@ -8611,7 +8633,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8611
8633
|
hint?: string | undefined;
|
|
8612
8634
|
messages?: {
|
|
8613
8635
|
text: string;
|
|
8614
|
-
type: "
|
|
8636
|
+
type: "error" | "success" | "info" | "warning";
|
|
8615
8637
|
id?: number | undefined;
|
|
8616
8638
|
}[] | undefined;
|
|
8617
8639
|
required?: boolean | undefined;
|
|
@@ -8635,7 +8657,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8635
8657
|
hint?: string | undefined;
|
|
8636
8658
|
messages?: {
|
|
8637
8659
|
text: string;
|
|
8638
|
-
type: "
|
|
8660
|
+
type: "error" | "success" | "info" | "warning";
|
|
8639
8661
|
id?: number | undefined;
|
|
8640
8662
|
}[] | undefined;
|
|
8641
8663
|
required?: boolean | undefined;
|
|
@@ -8659,7 +8681,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8659
8681
|
hint?: string | undefined;
|
|
8660
8682
|
messages?: {
|
|
8661
8683
|
text: string;
|
|
8662
|
-
type: "
|
|
8684
|
+
type: "error" | "success" | "info" | "warning";
|
|
8663
8685
|
id?: number | undefined;
|
|
8664
8686
|
}[] | undefined;
|
|
8665
8687
|
required?: boolean | undefined;
|
|
@@ -8688,7 +8710,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8688
8710
|
hint?: string | undefined;
|
|
8689
8711
|
messages?: {
|
|
8690
8712
|
text: string;
|
|
8691
|
-
type: "
|
|
8713
|
+
type: "error" | "success" | "info" | "warning";
|
|
8692
8714
|
id?: number | undefined;
|
|
8693
8715
|
}[] | undefined;
|
|
8694
8716
|
required?: boolean | undefined;
|
|
@@ -8703,7 +8725,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8703
8725
|
hint?: string | undefined;
|
|
8704
8726
|
messages?: {
|
|
8705
8727
|
text: string;
|
|
8706
|
-
type: "
|
|
8728
|
+
type: "error" | "success" | "info" | "warning";
|
|
8707
8729
|
id?: number | undefined;
|
|
8708
8730
|
}[] | undefined;
|
|
8709
8731
|
required?: boolean | undefined;
|
|
@@ -8724,7 +8746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8724
8746
|
hint?: string | undefined;
|
|
8725
8747
|
messages?: {
|
|
8726
8748
|
text: string;
|
|
8727
|
-
type: "
|
|
8749
|
+
type: "error" | "success" | "info" | "warning";
|
|
8728
8750
|
id?: number | undefined;
|
|
8729
8751
|
}[] | undefined;
|
|
8730
8752
|
required?: boolean | undefined;
|
|
@@ -8749,7 +8771,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8749
8771
|
hint?: string | undefined;
|
|
8750
8772
|
messages?: {
|
|
8751
8773
|
text: string;
|
|
8752
|
-
type: "
|
|
8774
|
+
type: "error" | "success" | "info" | "warning";
|
|
8753
8775
|
id?: number | undefined;
|
|
8754
8776
|
}[] | undefined;
|
|
8755
8777
|
required?: boolean | undefined;
|
|
@@ -8770,7 +8792,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8770
8792
|
hint?: string | undefined;
|
|
8771
8793
|
messages?: {
|
|
8772
8794
|
text: string;
|
|
8773
|
-
type: "
|
|
8795
|
+
type: "error" | "success" | "info" | "warning";
|
|
8774
8796
|
id?: number | undefined;
|
|
8775
8797
|
}[] | undefined;
|
|
8776
8798
|
required?: boolean | undefined;
|
|
@@ -8790,7 +8812,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8790
8812
|
hint?: string | undefined;
|
|
8791
8813
|
messages?: {
|
|
8792
8814
|
text: string;
|
|
8793
|
-
type: "
|
|
8815
|
+
type: "error" | "success" | "info" | "warning";
|
|
8794
8816
|
id?: number | undefined;
|
|
8795
8817
|
}[] | undefined;
|
|
8796
8818
|
required?: boolean | undefined;
|
|
@@ -8809,7 +8831,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8809
8831
|
hint?: string | undefined;
|
|
8810
8832
|
messages?: {
|
|
8811
8833
|
text: string;
|
|
8812
|
-
type: "
|
|
8834
|
+
type: "error" | "success" | "info" | "warning";
|
|
8813
8835
|
id?: number | undefined;
|
|
8814
8836
|
}[] | undefined;
|
|
8815
8837
|
required?: boolean | undefined;
|
|
@@ -8831,7 +8853,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8831
8853
|
hint?: string | undefined;
|
|
8832
8854
|
messages?: {
|
|
8833
8855
|
text: string;
|
|
8834
|
-
type: "
|
|
8856
|
+
type: "error" | "success" | "info" | "warning";
|
|
8835
8857
|
id?: number | undefined;
|
|
8836
8858
|
}[] | undefined;
|
|
8837
8859
|
required?: boolean | undefined;
|
|
@@ -8853,7 +8875,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8853
8875
|
hint?: string | undefined;
|
|
8854
8876
|
messages?: {
|
|
8855
8877
|
text: string;
|
|
8856
|
-
type: "
|
|
8878
|
+
type: "error" | "success" | "info" | "warning";
|
|
8857
8879
|
id?: number | undefined;
|
|
8858
8880
|
}[] | undefined;
|
|
8859
8881
|
required?: boolean | undefined;
|
|
@@ -8872,7 +8894,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8872
8894
|
hint?: string | undefined;
|
|
8873
8895
|
messages?: {
|
|
8874
8896
|
text: string;
|
|
8875
|
-
type: "
|
|
8897
|
+
type: "error" | "success" | "info" | "warning";
|
|
8876
8898
|
id?: number | undefined;
|
|
8877
8899
|
}[] | undefined;
|
|
8878
8900
|
required?: boolean | undefined;
|
|
@@ -8899,7 +8921,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8899
8921
|
hint?: string | undefined;
|
|
8900
8922
|
messages?: {
|
|
8901
8923
|
text: string;
|
|
8902
|
-
type: "
|
|
8924
|
+
type: "error" | "success" | "info" | "warning";
|
|
8903
8925
|
id?: number | undefined;
|
|
8904
8926
|
}[] | undefined;
|
|
8905
8927
|
required?: boolean | undefined;
|
|
@@ -8920,7 +8942,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8920
8942
|
hint?: string | undefined;
|
|
8921
8943
|
messages?: {
|
|
8922
8944
|
text: string;
|
|
8923
|
-
type: "
|
|
8945
|
+
type: "error" | "success" | "info" | "warning";
|
|
8924
8946
|
id?: number | undefined;
|
|
8925
8947
|
}[] | undefined;
|
|
8926
8948
|
required?: boolean | undefined;
|
|
@@ -8943,7 +8965,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8943
8965
|
hint?: string | undefined;
|
|
8944
8966
|
messages?: {
|
|
8945
8967
|
text: string;
|
|
8946
|
-
type: "
|
|
8968
|
+
type: "error" | "success" | "info" | "warning";
|
|
8947
8969
|
id?: number | undefined;
|
|
8948
8970
|
}[] | undefined;
|
|
8949
8971
|
required?: boolean | undefined;
|
|
@@ -9197,7 +9219,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9197
9219
|
hint?: string | undefined;
|
|
9198
9220
|
messages?: {
|
|
9199
9221
|
text: string;
|
|
9200
|
-
type: "
|
|
9222
|
+
type: "error" | "success" | "info" | "warning";
|
|
9201
9223
|
id?: number | undefined;
|
|
9202
9224
|
}[] | undefined;
|
|
9203
9225
|
required?: boolean | undefined;
|
|
@@ -9215,7 +9237,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9215
9237
|
hint?: string | undefined;
|
|
9216
9238
|
messages?: {
|
|
9217
9239
|
text: string;
|
|
9218
|
-
type: "
|
|
9240
|
+
type: "error" | "success" | "info" | "warning";
|
|
9219
9241
|
id?: number | undefined;
|
|
9220
9242
|
}[] | undefined;
|
|
9221
9243
|
required?: boolean | undefined;
|
|
@@ -9239,7 +9261,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9239
9261
|
hint?: string | undefined;
|
|
9240
9262
|
messages?: {
|
|
9241
9263
|
text: string;
|
|
9242
|
-
type: "
|
|
9264
|
+
type: "error" | "success" | "info" | "warning";
|
|
9243
9265
|
id?: number | undefined;
|
|
9244
9266
|
}[] | undefined;
|
|
9245
9267
|
required?: boolean | undefined;
|
|
@@ -9263,7 +9285,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9263
9285
|
hint?: string | undefined;
|
|
9264
9286
|
messages?: {
|
|
9265
9287
|
text: string;
|
|
9266
|
-
type: "
|
|
9288
|
+
type: "error" | "success" | "info" | "warning";
|
|
9267
9289
|
id?: number | undefined;
|
|
9268
9290
|
}[] | undefined;
|
|
9269
9291
|
required?: boolean | undefined;
|
|
@@ -9287,7 +9309,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9287
9309
|
hint?: string | undefined;
|
|
9288
9310
|
messages?: {
|
|
9289
9311
|
text: string;
|
|
9290
|
-
type: "
|
|
9312
|
+
type: "error" | "success" | "info" | "warning";
|
|
9291
9313
|
id?: number | undefined;
|
|
9292
9314
|
}[] | undefined;
|
|
9293
9315
|
required?: boolean | undefined;
|
|
@@ -9312,7 +9334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9312
9334
|
hint?: string | undefined;
|
|
9313
9335
|
messages?: {
|
|
9314
9336
|
text: string;
|
|
9315
|
-
type: "
|
|
9337
|
+
type: "error" | "success" | "info" | "warning";
|
|
9316
9338
|
id?: number | undefined;
|
|
9317
9339
|
}[] | undefined;
|
|
9318
9340
|
required?: boolean | undefined;
|
|
@@ -9327,7 +9349,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9327
9349
|
hint?: string | undefined;
|
|
9328
9350
|
messages?: {
|
|
9329
9351
|
text: string;
|
|
9330
|
-
type: "
|
|
9352
|
+
type: "error" | "success" | "info" | "warning";
|
|
9331
9353
|
id?: number | undefined;
|
|
9332
9354
|
}[] | undefined;
|
|
9333
9355
|
required?: boolean | undefined;
|
|
@@ -9348,7 +9370,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9348
9370
|
hint?: string | undefined;
|
|
9349
9371
|
messages?: {
|
|
9350
9372
|
text: string;
|
|
9351
|
-
type: "
|
|
9373
|
+
type: "error" | "success" | "info" | "warning";
|
|
9352
9374
|
id?: number | undefined;
|
|
9353
9375
|
}[] | undefined;
|
|
9354
9376
|
required?: boolean | undefined;
|
|
@@ -9373,7 +9395,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9373
9395
|
hint?: string | undefined;
|
|
9374
9396
|
messages?: {
|
|
9375
9397
|
text: string;
|
|
9376
|
-
type: "
|
|
9398
|
+
type: "error" | "success" | "info" | "warning";
|
|
9377
9399
|
id?: number | undefined;
|
|
9378
9400
|
}[] | undefined;
|
|
9379
9401
|
required?: boolean | undefined;
|
|
@@ -9394,7 +9416,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9394
9416
|
hint?: string | undefined;
|
|
9395
9417
|
messages?: {
|
|
9396
9418
|
text: string;
|
|
9397
|
-
type: "
|
|
9419
|
+
type: "error" | "success" | "info" | "warning";
|
|
9398
9420
|
id?: number | undefined;
|
|
9399
9421
|
}[] | undefined;
|
|
9400
9422
|
required?: boolean | undefined;
|
|
@@ -9414,7 +9436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9414
9436
|
hint?: string | undefined;
|
|
9415
9437
|
messages?: {
|
|
9416
9438
|
text: string;
|
|
9417
|
-
type: "
|
|
9439
|
+
type: "error" | "success" | "info" | "warning";
|
|
9418
9440
|
id?: number | undefined;
|
|
9419
9441
|
}[] | undefined;
|
|
9420
9442
|
required?: boolean | undefined;
|
|
@@ -9433,7 +9455,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9433
9455
|
hint?: string | undefined;
|
|
9434
9456
|
messages?: {
|
|
9435
9457
|
text: string;
|
|
9436
|
-
type: "
|
|
9458
|
+
type: "error" | "success" | "info" | "warning";
|
|
9437
9459
|
id?: number | undefined;
|
|
9438
9460
|
}[] | undefined;
|
|
9439
9461
|
required?: boolean | undefined;
|
|
@@ -9455,7 +9477,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9455
9477
|
hint?: string | undefined;
|
|
9456
9478
|
messages?: {
|
|
9457
9479
|
text: string;
|
|
9458
|
-
type: "
|
|
9480
|
+
type: "error" | "success" | "info" | "warning";
|
|
9459
9481
|
id?: number | undefined;
|
|
9460
9482
|
}[] | undefined;
|
|
9461
9483
|
required?: boolean | undefined;
|
|
@@ -9477,7 +9499,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9477
9499
|
hint?: string | undefined;
|
|
9478
9500
|
messages?: {
|
|
9479
9501
|
text: string;
|
|
9480
|
-
type: "
|
|
9502
|
+
type: "error" | "success" | "info" | "warning";
|
|
9481
9503
|
id?: number | undefined;
|
|
9482
9504
|
}[] | undefined;
|
|
9483
9505
|
required?: boolean | undefined;
|
|
@@ -9496,7 +9518,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9496
9518
|
hint?: string | undefined;
|
|
9497
9519
|
messages?: {
|
|
9498
9520
|
text: string;
|
|
9499
|
-
type: "
|
|
9521
|
+
type: "error" | "success" | "info" | "warning";
|
|
9500
9522
|
id?: number | undefined;
|
|
9501
9523
|
}[] | undefined;
|
|
9502
9524
|
required?: boolean | undefined;
|
|
@@ -9523,7 +9545,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9523
9545
|
hint?: string | undefined;
|
|
9524
9546
|
messages?: {
|
|
9525
9547
|
text: string;
|
|
9526
|
-
type: "
|
|
9548
|
+
type: "error" | "success" | "info" | "warning";
|
|
9527
9549
|
id?: number | undefined;
|
|
9528
9550
|
}[] | undefined;
|
|
9529
9551
|
required?: boolean | undefined;
|
|
@@ -9544,7 +9566,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9544
9566
|
hint?: string | undefined;
|
|
9545
9567
|
messages?: {
|
|
9546
9568
|
text: string;
|
|
9547
|
-
type: "
|
|
9569
|
+
type: "error" | "success" | "info" | "warning";
|
|
9548
9570
|
id?: number | undefined;
|
|
9549
9571
|
}[] | undefined;
|
|
9550
9572
|
required?: boolean | undefined;
|
|
@@ -9567,7 +9589,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9567
9589
|
hint?: string | undefined;
|
|
9568
9590
|
messages?: {
|
|
9569
9591
|
text: string;
|
|
9570
|
-
type: "
|
|
9592
|
+
type: "error" | "success" | "info" | "warning";
|
|
9571
9593
|
id?: number | undefined;
|
|
9572
9594
|
}[] | undefined;
|
|
9573
9595
|
required?: boolean | undefined;
|
|
@@ -9798,7 +9820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9798
9820
|
hint?: string | undefined;
|
|
9799
9821
|
messages?: {
|
|
9800
9822
|
text: string;
|
|
9801
|
-
type: "
|
|
9823
|
+
type: "error" | "success" | "info" | "warning";
|
|
9802
9824
|
id?: number | undefined;
|
|
9803
9825
|
}[] | undefined;
|
|
9804
9826
|
required?: boolean | undefined;
|
|
@@ -9816,7 +9838,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9816
9838
|
hint?: string | undefined;
|
|
9817
9839
|
messages?: {
|
|
9818
9840
|
text: string;
|
|
9819
|
-
type: "
|
|
9841
|
+
type: "error" | "success" | "info" | "warning";
|
|
9820
9842
|
id?: number | undefined;
|
|
9821
9843
|
}[] | undefined;
|
|
9822
9844
|
required?: boolean | undefined;
|
|
@@ -9840,7 +9862,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9840
9862
|
hint?: string | undefined;
|
|
9841
9863
|
messages?: {
|
|
9842
9864
|
text: string;
|
|
9843
|
-
type: "
|
|
9865
|
+
type: "error" | "success" | "info" | "warning";
|
|
9844
9866
|
id?: number | undefined;
|
|
9845
9867
|
}[] | undefined;
|
|
9846
9868
|
required?: boolean | undefined;
|
|
@@ -9864,7 +9886,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9864
9886
|
hint?: string | undefined;
|
|
9865
9887
|
messages?: {
|
|
9866
9888
|
text: string;
|
|
9867
|
-
type: "
|
|
9889
|
+
type: "error" | "success" | "info" | "warning";
|
|
9868
9890
|
id?: number | undefined;
|
|
9869
9891
|
}[] | undefined;
|
|
9870
9892
|
required?: boolean | undefined;
|
|
@@ -9888,7 +9910,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9888
9910
|
hint?: string | undefined;
|
|
9889
9911
|
messages?: {
|
|
9890
9912
|
text: string;
|
|
9891
|
-
type: "
|
|
9913
|
+
type: "error" | "success" | "info" | "warning";
|
|
9892
9914
|
id?: number | undefined;
|
|
9893
9915
|
}[] | undefined;
|
|
9894
9916
|
required?: boolean | undefined;
|
|
@@ -9917,7 +9939,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9917
9939
|
hint?: string | undefined;
|
|
9918
9940
|
messages?: {
|
|
9919
9941
|
text: string;
|
|
9920
|
-
type: "
|
|
9942
|
+
type: "error" | "success" | "info" | "warning";
|
|
9921
9943
|
id?: number | undefined;
|
|
9922
9944
|
}[] | undefined;
|
|
9923
9945
|
required?: boolean | undefined;
|
|
@@ -9932,7 +9954,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9932
9954
|
hint?: string | undefined;
|
|
9933
9955
|
messages?: {
|
|
9934
9956
|
text: string;
|
|
9935
|
-
type: "
|
|
9957
|
+
type: "error" | "success" | "info" | "warning";
|
|
9936
9958
|
id?: number | undefined;
|
|
9937
9959
|
}[] | undefined;
|
|
9938
9960
|
required?: boolean | undefined;
|
|
@@ -9953,7 +9975,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9953
9975
|
hint?: string | undefined;
|
|
9954
9976
|
messages?: {
|
|
9955
9977
|
text: string;
|
|
9956
|
-
type: "
|
|
9978
|
+
type: "error" | "success" | "info" | "warning";
|
|
9957
9979
|
id?: number | undefined;
|
|
9958
9980
|
}[] | undefined;
|
|
9959
9981
|
required?: boolean | undefined;
|
|
@@ -9978,7 +10000,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9978
10000
|
hint?: string | undefined;
|
|
9979
10001
|
messages?: {
|
|
9980
10002
|
text: string;
|
|
9981
|
-
type: "
|
|
10003
|
+
type: "error" | "success" | "info" | "warning";
|
|
9982
10004
|
id?: number | undefined;
|
|
9983
10005
|
}[] | undefined;
|
|
9984
10006
|
required?: boolean | undefined;
|
|
@@ -9999,7 +10021,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9999
10021
|
hint?: string | undefined;
|
|
10000
10022
|
messages?: {
|
|
10001
10023
|
text: string;
|
|
10002
|
-
type: "
|
|
10024
|
+
type: "error" | "success" | "info" | "warning";
|
|
10003
10025
|
id?: number | undefined;
|
|
10004
10026
|
}[] | undefined;
|
|
10005
10027
|
required?: boolean | undefined;
|
|
@@ -10019,7 +10041,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10019
10041
|
hint?: string | undefined;
|
|
10020
10042
|
messages?: {
|
|
10021
10043
|
text: string;
|
|
10022
|
-
type: "
|
|
10044
|
+
type: "error" | "success" | "info" | "warning";
|
|
10023
10045
|
id?: number | undefined;
|
|
10024
10046
|
}[] | undefined;
|
|
10025
10047
|
required?: boolean | undefined;
|
|
@@ -10038,7 +10060,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10038
10060
|
hint?: string | undefined;
|
|
10039
10061
|
messages?: {
|
|
10040
10062
|
text: string;
|
|
10041
|
-
type: "
|
|
10063
|
+
type: "error" | "success" | "info" | "warning";
|
|
10042
10064
|
id?: number | undefined;
|
|
10043
10065
|
}[] | undefined;
|
|
10044
10066
|
required?: boolean | undefined;
|
|
@@ -10060,7 +10082,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10060
10082
|
hint?: string | undefined;
|
|
10061
10083
|
messages?: {
|
|
10062
10084
|
text: string;
|
|
10063
|
-
type: "
|
|
10085
|
+
type: "error" | "success" | "info" | "warning";
|
|
10064
10086
|
id?: number | undefined;
|
|
10065
10087
|
}[] | undefined;
|
|
10066
10088
|
required?: boolean | undefined;
|
|
@@ -10082,7 +10104,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10082
10104
|
hint?: string | undefined;
|
|
10083
10105
|
messages?: {
|
|
10084
10106
|
text: string;
|
|
10085
|
-
type: "
|
|
10107
|
+
type: "error" | "success" | "info" | "warning";
|
|
10086
10108
|
id?: number | undefined;
|
|
10087
10109
|
}[] | undefined;
|
|
10088
10110
|
required?: boolean | undefined;
|
|
@@ -10101,7 +10123,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10101
10123
|
hint?: string | undefined;
|
|
10102
10124
|
messages?: {
|
|
10103
10125
|
text: string;
|
|
10104
|
-
type: "
|
|
10126
|
+
type: "error" | "success" | "info" | "warning";
|
|
10105
10127
|
id?: number | undefined;
|
|
10106
10128
|
}[] | undefined;
|
|
10107
10129
|
required?: boolean | undefined;
|
|
@@ -10128,7 +10150,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10128
10150
|
hint?: string | undefined;
|
|
10129
10151
|
messages?: {
|
|
10130
10152
|
text: string;
|
|
10131
|
-
type: "
|
|
10153
|
+
type: "error" | "success" | "info" | "warning";
|
|
10132
10154
|
id?: number | undefined;
|
|
10133
10155
|
}[] | undefined;
|
|
10134
10156
|
required?: boolean | undefined;
|
|
@@ -10149,7 +10171,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10149
10171
|
hint?: string | undefined;
|
|
10150
10172
|
messages?: {
|
|
10151
10173
|
text: string;
|
|
10152
|
-
type: "
|
|
10174
|
+
type: "error" | "success" | "info" | "warning";
|
|
10153
10175
|
id?: number | undefined;
|
|
10154
10176
|
}[] | undefined;
|
|
10155
10177
|
required?: boolean | undefined;
|
|
@@ -10172,7 +10194,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10172
10194
|
hint?: string | undefined;
|
|
10173
10195
|
messages?: {
|
|
10174
10196
|
text: string;
|
|
10175
|
-
type: "
|
|
10197
|
+
type: "error" | "success" | "info" | "warning";
|
|
10176
10198
|
id?: number | undefined;
|
|
10177
10199
|
}[] | undefined;
|
|
10178
10200
|
required?: boolean | undefined;
|
|
@@ -10405,7 +10427,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10405
10427
|
hint?: string | undefined;
|
|
10406
10428
|
messages?: {
|
|
10407
10429
|
text: string;
|
|
10408
|
-
type: "
|
|
10430
|
+
type: "error" | "success" | "info" | "warning";
|
|
10409
10431
|
id?: number | undefined;
|
|
10410
10432
|
}[] | undefined;
|
|
10411
10433
|
required?: boolean | undefined;
|
|
@@ -10423,7 +10445,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10423
10445
|
hint?: string | undefined;
|
|
10424
10446
|
messages?: {
|
|
10425
10447
|
text: string;
|
|
10426
|
-
type: "
|
|
10448
|
+
type: "error" | "success" | "info" | "warning";
|
|
10427
10449
|
id?: number | undefined;
|
|
10428
10450
|
}[] | undefined;
|
|
10429
10451
|
required?: boolean | undefined;
|
|
@@ -10447,7 +10469,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10447
10469
|
hint?: string | undefined;
|
|
10448
10470
|
messages?: {
|
|
10449
10471
|
text: string;
|
|
10450
|
-
type: "
|
|
10472
|
+
type: "error" | "success" | "info" | "warning";
|
|
10451
10473
|
id?: number | undefined;
|
|
10452
10474
|
}[] | undefined;
|
|
10453
10475
|
required?: boolean | undefined;
|
|
@@ -10471,7 +10493,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10471
10493
|
hint?: string | undefined;
|
|
10472
10494
|
messages?: {
|
|
10473
10495
|
text: string;
|
|
10474
|
-
type: "
|
|
10496
|
+
type: "error" | "success" | "info" | "warning";
|
|
10475
10497
|
id?: number | undefined;
|
|
10476
10498
|
}[] | undefined;
|
|
10477
10499
|
required?: boolean | undefined;
|
|
@@ -10495,7 +10517,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10495
10517
|
hint?: string | undefined;
|
|
10496
10518
|
messages?: {
|
|
10497
10519
|
text: string;
|
|
10498
|
-
type: "
|
|
10520
|
+
type: "error" | "success" | "info" | "warning";
|
|
10499
10521
|
id?: number | undefined;
|
|
10500
10522
|
}[] | undefined;
|
|
10501
10523
|
required?: boolean | undefined;
|
|
@@ -10520,7 +10542,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10520
10542
|
hint?: string | undefined;
|
|
10521
10543
|
messages?: {
|
|
10522
10544
|
text: string;
|
|
10523
|
-
type: "
|
|
10545
|
+
type: "error" | "success" | "info" | "warning";
|
|
10524
10546
|
id?: number | undefined;
|
|
10525
10547
|
}[] | undefined;
|
|
10526
10548
|
required?: boolean | undefined;
|
|
@@ -10535,7 +10557,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10535
10557
|
hint?: string | undefined;
|
|
10536
10558
|
messages?: {
|
|
10537
10559
|
text: string;
|
|
10538
|
-
type: "
|
|
10560
|
+
type: "error" | "success" | "info" | "warning";
|
|
10539
10561
|
id?: number | undefined;
|
|
10540
10562
|
}[] | undefined;
|
|
10541
10563
|
required?: boolean | undefined;
|
|
@@ -10556,7 +10578,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10556
10578
|
hint?: string | undefined;
|
|
10557
10579
|
messages?: {
|
|
10558
10580
|
text: string;
|
|
10559
|
-
type: "
|
|
10581
|
+
type: "error" | "success" | "info" | "warning";
|
|
10560
10582
|
id?: number | undefined;
|
|
10561
10583
|
}[] | undefined;
|
|
10562
10584
|
required?: boolean | undefined;
|
|
@@ -10581,7 +10603,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10581
10603
|
hint?: string | undefined;
|
|
10582
10604
|
messages?: {
|
|
10583
10605
|
text: string;
|
|
10584
|
-
type: "
|
|
10606
|
+
type: "error" | "success" | "info" | "warning";
|
|
10585
10607
|
id?: number | undefined;
|
|
10586
10608
|
}[] | undefined;
|
|
10587
10609
|
required?: boolean | undefined;
|
|
@@ -10602,7 +10624,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10602
10624
|
hint?: string | undefined;
|
|
10603
10625
|
messages?: {
|
|
10604
10626
|
text: string;
|
|
10605
|
-
type: "
|
|
10627
|
+
type: "error" | "success" | "info" | "warning";
|
|
10606
10628
|
id?: number | undefined;
|
|
10607
10629
|
}[] | undefined;
|
|
10608
10630
|
required?: boolean | undefined;
|
|
@@ -10622,7 +10644,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10622
10644
|
hint?: string | undefined;
|
|
10623
10645
|
messages?: {
|
|
10624
10646
|
text: string;
|
|
10625
|
-
type: "
|
|
10647
|
+
type: "error" | "success" | "info" | "warning";
|
|
10626
10648
|
id?: number | undefined;
|
|
10627
10649
|
}[] | undefined;
|
|
10628
10650
|
required?: boolean | undefined;
|
|
@@ -10641,7 +10663,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10641
10663
|
hint?: string | undefined;
|
|
10642
10664
|
messages?: {
|
|
10643
10665
|
text: string;
|
|
10644
|
-
type: "
|
|
10666
|
+
type: "error" | "success" | "info" | "warning";
|
|
10645
10667
|
id?: number | undefined;
|
|
10646
10668
|
}[] | undefined;
|
|
10647
10669
|
required?: boolean | undefined;
|
|
@@ -10663,7 +10685,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10663
10685
|
hint?: string | undefined;
|
|
10664
10686
|
messages?: {
|
|
10665
10687
|
text: string;
|
|
10666
|
-
type: "
|
|
10688
|
+
type: "error" | "success" | "info" | "warning";
|
|
10667
10689
|
id?: number | undefined;
|
|
10668
10690
|
}[] | undefined;
|
|
10669
10691
|
required?: boolean | undefined;
|
|
@@ -10685,7 +10707,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10685
10707
|
hint?: string | undefined;
|
|
10686
10708
|
messages?: {
|
|
10687
10709
|
text: string;
|
|
10688
|
-
type: "
|
|
10710
|
+
type: "error" | "success" | "info" | "warning";
|
|
10689
10711
|
id?: number | undefined;
|
|
10690
10712
|
}[] | undefined;
|
|
10691
10713
|
required?: boolean | undefined;
|
|
@@ -10704,7 +10726,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10704
10726
|
hint?: string | undefined;
|
|
10705
10727
|
messages?: {
|
|
10706
10728
|
text: string;
|
|
10707
|
-
type: "
|
|
10729
|
+
type: "error" | "success" | "info" | "warning";
|
|
10708
10730
|
id?: number | undefined;
|
|
10709
10731
|
}[] | undefined;
|
|
10710
10732
|
required?: boolean | undefined;
|
|
@@ -10731,7 +10753,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10731
10753
|
hint?: string | undefined;
|
|
10732
10754
|
messages?: {
|
|
10733
10755
|
text: string;
|
|
10734
|
-
type: "
|
|
10756
|
+
type: "error" | "success" | "info" | "warning";
|
|
10735
10757
|
id?: number | undefined;
|
|
10736
10758
|
}[] | undefined;
|
|
10737
10759
|
required?: boolean | undefined;
|
|
@@ -10752,7 +10774,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10752
10774
|
hint?: string | undefined;
|
|
10753
10775
|
messages?: {
|
|
10754
10776
|
text: string;
|
|
10755
|
-
type: "
|
|
10777
|
+
type: "error" | "success" | "info" | "warning";
|
|
10756
10778
|
id?: number | undefined;
|
|
10757
10779
|
}[] | undefined;
|
|
10758
10780
|
required?: boolean | undefined;
|
|
@@ -10775,7 +10797,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10775
10797
|
hint?: string | undefined;
|
|
10776
10798
|
messages?: {
|
|
10777
10799
|
text: string;
|
|
10778
|
-
type: "
|
|
10800
|
+
type: "error" | "success" | "info" | "warning";
|
|
10779
10801
|
id?: number | undefined;
|
|
10780
10802
|
}[] | undefined;
|
|
10781
10803
|
required?: boolean | undefined;
|
|
@@ -11006,7 +11028,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11006
11028
|
hint?: string | undefined;
|
|
11007
11029
|
messages?: {
|
|
11008
11030
|
text: string;
|
|
11009
|
-
type: "
|
|
11031
|
+
type: "error" | "success" | "info" | "warning";
|
|
11010
11032
|
id?: number | undefined;
|
|
11011
11033
|
}[] | undefined;
|
|
11012
11034
|
required?: boolean | undefined;
|
|
@@ -11024,7 +11046,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11024
11046
|
hint?: string | undefined;
|
|
11025
11047
|
messages?: {
|
|
11026
11048
|
text: string;
|
|
11027
|
-
type: "
|
|
11049
|
+
type: "error" | "success" | "info" | "warning";
|
|
11028
11050
|
id?: number | undefined;
|
|
11029
11051
|
}[] | undefined;
|
|
11030
11052
|
required?: boolean | undefined;
|
|
@@ -11048,7 +11070,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11048
11070
|
hint?: string | undefined;
|
|
11049
11071
|
messages?: {
|
|
11050
11072
|
text: string;
|
|
11051
|
-
type: "
|
|
11073
|
+
type: "error" | "success" | "info" | "warning";
|
|
11052
11074
|
id?: number | undefined;
|
|
11053
11075
|
}[] | undefined;
|
|
11054
11076
|
required?: boolean | undefined;
|
|
@@ -11072,7 +11094,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11072
11094
|
hint?: string | undefined;
|
|
11073
11095
|
messages?: {
|
|
11074
11096
|
text: string;
|
|
11075
|
-
type: "
|
|
11097
|
+
type: "error" | "success" | "info" | "warning";
|
|
11076
11098
|
id?: number | undefined;
|
|
11077
11099
|
}[] | undefined;
|
|
11078
11100
|
required?: boolean | undefined;
|
|
@@ -11096,7 +11118,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11096
11118
|
hint?: string | undefined;
|
|
11097
11119
|
messages?: {
|
|
11098
11120
|
text: string;
|
|
11099
|
-
type: "
|
|
11121
|
+
type: "error" | "success" | "info" | "warning";
|
|
11100
11122
|
id?: number | undefined;
|
|
11101
11123
|
}[] | undefined;
|
|
11102
11124
|
required?: boolean | undefined;
|
|
@@ -11125,7 +11147,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11125
11147
|
hint?: string | undefined;
|
|
11126
11148
|
messages?: {
|
|
11127
11149
|
text: string;
|
|
11128
|
-
type: "
|
|
11150
|
+
type: "error" | "success" | "info" | "warning";
|
|
11129
11151
|
id?: number | undefined;
|
|
11130
11152
|
}[] | undefined;
|
|
11131
11153
|
required?: boolean | undefined;
|
|
@@ -11140,7 +11162,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11140
11162
|
hint?: string | undefined;
|
|
11141
11163
|
messages?: {
|
|
11142
11164
|
text: string;
|
|
11143
|
-
type: "
|
|
11165
|
+
type: "error" | "success" | "info" | "warning";
|
|
11144
11166
|
id?: number | undefined;
|
|
11145
11167
|
}[] | undefined;
|
|
11146
11168
|
required?: boolean | undefined;
|
|
@@ -11161,7 +11183,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11161
11183
|
hint?: string | undefined;
|
|
11162
11184
|
messages?: {
|
|
11163
11185
|
text: string;
|
|
11164
|
-
type: "
|
|
11186
|
+
type: "error" | "success" | "info" | "warning";
|
|
11165
11187
|
id?: number | undefined;
|
|
11166
11188
|
}[] | undefined;
|
|
11167
11189
|
required?: boolean | undefined;
|
|
@@ -11186,7 +11208,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11186
11208
|
hint?: string | undefined;
|
|
11187
11209
|
messages?: {
|
|
11188
11210
|
text: string;
|
|
11189
|
-
type: "
|
|
11211
|
+
type: "error" | "success" | "info" | "warning";
|
|
11190
11212
|
id?: number | undefined;
|
|
11191
11213
|
}[] | undefined;
|
|
11192
11214
|
required?: boolean | undefined;
|
|
@@ -11207,7 +11229,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11207
11229
|
hint?: string | undefined;
|
|
11208
11230
|
messages?: {
|
|
11209
11231
|
text: string;
|
|
11210
|
-
type: "
|
|
11232
|
+
type: "error" | "success" | "info" | "warning";
|
|
11211
11233
|
id?: number | undefined;
|
|
11212
11234
|
}[] | undefined;
|
|
11213
11235
|
required?: boolean | undefined;
|
|
@@ -11227,7 +11249,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11227
11249
|
hint?: string | undefined;
|
|
11228
11250
|
messages?: {
|
|
11229
11251
|
text: string;
|
|
11230
|
-
type: "
|
|
11252
|
+
type: "error" | "success" | "info" | "warning";
|
|
11231
11253
|
id?: number | undefined;
|
|
11232
11254
|
}[] | undefined;
|
|
11233
11255
|
required?: boolean | undefined;
|
|
@@ -11246,7 +11268,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11246
11268
|
hint?: string | undefined;
|
|
11247
11269
|
messages?: {
|
|
11248
11270
|
text: string;
|
|
11249
|
-
type: "
|
|
11271
|
+
type: "error" | "success" | "info" | "warning";
|
|
11250
11272
|
id?: number | undefined;
|
|
11251
11273
|
}[] | undefined;
|
|
11252
11274
|
required?: boolean | undefined;
|
|
@@ -11268,7 +11290,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11268
11290
|
hint?: string | undefined;
|
|
11269
11291
|
messages?: {
|
|
11270
11292
|
text: string;
|
|
11271
|
-
type: "
|
|
11293
|
+
type: "error" | "success" | "info" | "warning";
|
|
11272
11294
|
id?: number | undefined;
|
|
11273
11295
|
}[] | undefined;
|
|
11274
11296
|
required?: boolean | undefined;
|
|
@@ -11290,7 +11312,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11290
11312
|
hint?: string | undefined;
|
|
11291
11313
|
messages?: {
|
|
11292
11314
|
text: string;
|
|
11293
|
-
type: "
|
|
11315
|
+
type: "error" | "success" | "info" | "warning";
|
|
11294
11316
|
id?: number | undefined;
|
|
11295
11317
|
}[] | undefined;
|
|
11296
11318
|
required?: boolean | undefined;
|
|
@@ -11309,7 +11331,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11309
11331
|
hint?: string | undefined;
|
|
11310
11332
|
messages?: {
|
|
11311
11333
|
text: string;
|
|
11312
|
-
type: "
|
|
11334
|
+
type: "error" | "success" | "info" | "warning";
|
|
11313
11335
|
id?: number | undefined;
|
|
11314
11336
|
}[] | undefined;
|
|
11315
11337
|
required?: boolean | undefined;
|
|
@@ -11336,7 +11358,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11336
11358
|
hint?: string | undefined;
|
|
11337
11359
|
messages?: {
|
|
11338
11360
|
text: string;
|
|
11339
|
-
type: "
|
|
11361
|
+
type: "error" | "success" | "info" | "warning";
|
|
11340
11362
|
id?: number | undefined;
|
|
11341
11363
|
}[] | undefined;
|
|
11342
11364
|
required?: boolean | undefined;
|
|
@@ -11357,7 +11379,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11357
11379
|
hint?: string | undefined;
|
|
11358
11380
|
messages?: {
|
|
11359
11381
|
text: string;
|
|
11360
|
-
type: "
|
|
11382
|
+
type: "error" | "success" | "info" | "warning";
|
|
11361
11383
|
id?: number | undefined;
|
|
11362
11384
|
}[] | undefined;
|
|
11363
11385
|
required?: boolean | undefined;
|
|
@@ -11380,7 +11402,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11380
11402
|
hint?: string | undefined;
|
|
11381
11403
|
messages?: {
|
|
11382
11404
|
text: string;
|
|
11383
|
-
type: "
|
|
11405
|
+
type: "error" | "success" | "info" | "warning";
|
|
11384
11406
|
id?: number | undefined;
|
|
11385
11407
|
}[] | undefined;
|
|
11386
11408
|
required?: boolean | undefined;
|
|
@@ -11686,7 +11708,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11686
11708
|
};
|
|
11687
11709
|
};
|
|
11688
11710
|
output: {
|
|
11689
|
-
prompt: "
|
|
11711
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11690
11712
|
language: string;
|
|
11691
11713
|
}[];
|
|
11692
11714
|
outputFormat: "json";
|
|
@@ -11724,7 +11746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11724
11746
|
$get: {
|
|
11725
11747
|
input: {
|
|
11726
11748
|
param: {
|
|
11727
|
-
prompt: "
|
|
11749
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11728
11750
|
language: string;
|
|
11729
11751
|
};
|
|
11730
11752
|
} & {
|
|
@@ -11746,7 +11768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11746
11768
|
$put: {
|
|
11747
11769
|
input: {
|
|
11748
11770
|
param: {
|
|
11749
|
-
prompt: "
|
|
11771
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11750
11772
|
language: string;
|
|
11751
11773
|
};
|
|
11752
11774
|
} & {
|
|
@@ -11770,7 +11792,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11770
11792
|
$delete: {
|
|
11771
11793
|
input: {
|
|
11772
11794
|
param: {
|
|
11773
|
-
prompt: "
|
|
11795
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11774
11796
|
language: string;
|
|
11775
11797
|
};
|
|
11776
11798
|
} & {
|
|
@@ -12653,7 +12675,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12653
12675
|
};
|
|
12654
12676
|
} | {
|
|
12655
12677
|
mode: "inline";
|
|
12656
|
-
status: "
|
|
12678
|
+
status: "error" | "success";
|
|
12657
12679
|
connection_id: string;
|
|
12658
12680
|
connection_name: string;
|
|
12659
12681
|
strategy: string;
|
|
@@ -13380,9 +13402,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13380
13402
|
tenant_id: string;
|
|
13381
13403
|
event_type: string;
|
|
13382
13404
|
log_type: string;
|
|
13383
|
-
category: "
|
|
13405
|
+
category: "user_action" | "admin_action" | "system" | "api";
|
|
13384
13406
|
actor: {
|
|
13385
|
-
type: "
|
|
13407
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
13386
13408
|
id?: string | undefined;
|
|
13387
13409
|
email?: string | undefined;
|
|
13388
13410
|
org_id?: string | undefined;
|
|
@@ -13713,7 +13735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13713
13735
|
created_at: string;
|
|
13714
13736
|
updated_at: string;
|
|
13715
13737
|
name: string;
|
|
13716
|
-
provider: "auth0" | "
|
|
13738
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
13717
13739
|
connection: string;
|
|
13718
13740
|
enabled: boolean;
|
|
13719
13741
|
credentials: {
|
|
@@ -13745,7 +13767,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13745
13767
|
created_at: string;
|
|
13746
13768
|
updated_at: string;
|
|
13747
13769
|
name: string;
|
|
13748
|
-
provider: "auth0" | "
|
|
13770
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
13749
13771
|
connection: string;
|
|
13750
13772
|
enabled: boolean;
|
|
13751
13773
|
credentials: {
|
|
@@ -13771,7 +13793,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13771
13793
|
} & {
|
|
13772
13794
|
json: {
|
|
13773
13795
|
name: string;
|
|
13774
|
-
provider: "auth0" | "
|
|
13796
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
13775
13797
|
connection: string;
|
|
13776
13798
|
credentials: {
|
|
13777
13799
|
domain: string;
|
|
@@ -13788,7 +13810,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13788
13810
|
created_at: string;
|
|
13789
13811
|
updated_at: string;
|
|
13790
13812
|
name: string;
|
|
13791
|
-
provider: "auth0" | "
|
|
13813
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
13792
13814
|
connection: string;
|
|
13793
13815
|
enabled: boolean;
|
|
13794
13816
|
credentials: {
|
|
@@ -13819,7 +13841,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13819
13841
|
json: {
|
|
13820
13842
|
id?: string | undefined;
|
|
13821
13843
|
name?: string | undefined;
|
|
13822
|
-
provider?: "auth0" | "
|
|
13844
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
13823
13845
|
connection?: string | undefined;
|
|
13824
13846
|
enabled?: boolean | undefined;
|
|
13825
13847
|
credentials?: {
|
|
@@ -13835,7 +13857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13835
13857
|
created_at: string;
|
|
13836
13858
|
updated_at: string;
|
|
13837
13859
|
name: string;
|
|
13838
|
-
provider: "auth0" | "
|
|
13860
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
13839
13861
|
connection: string;
|
|
13840
13862
|
enabled: boolean;
|
|
13841
13863
|
credentials: {
|
|
@@ -14053,7 +14075,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14053
14075
|
};
|
|
14054
14076
|
};
|
|
14055
14077
|
output: {
|
|
14056
|
-
type: "
|
|
14078
|
+
type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
14057
14079
|
date: string;
|
|
14058
14080
|
isMobile: boolean;
|
|
14059
14081
|
log_id: string;
|
|
@@ -14092,7 +14114,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14092
14114
|
limit: number;
|
|
14093
14115
|
length: number;
|
|
14094
14116
|
logs: {
|
|
14095
|
-
type: "
|
|
14117
|
+
type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
14096
14118
|
date: string;
|
|
14097
14119
|
isMobile: boolean;
|
|
14098
14120
|
log_id: string;
|
|
@@ -14131,7 +14153,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14131
14153
|
next?: string | undefined;
|
|
14132
14154
|
} | {
|
|
14133
14155
|
logs: {
|
|
14134
|
-
type: "
|
|
14156
|
+
type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
14135
14157
|
date: string;
|
|
14136
14158
|
isMobile: boolean;
|
|
14137
14159
|
log_id: string;
|
|
@@ -14185,7 +14207,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14185
14207
|
};
|
|
14186
14208
|
};
|
|
14187
14209
|
output: {
|
|
14188
|
-
type: "
|
|
14210
|
+
type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
14189
14211
|
date: string;
|
|
14190
14212
|
isMobile: boolean;
|
|
14191
14213
|
log_id: string;
|
|
@@ -14341,7 +14363,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14341
14363
|
audience?: string | undefined;
|
|
14342
14364
|
client_id?: string | undefined;
|
|
14343
14365
|
allow_any_organization?: string | undefined;
|
|
14344
|
-
subject_type?: "
|
|
14366
|
+
subject_type?: "client" | "user" | undefined;
|
|
14345
14367
|
};
|
|
14346
14368
|
} & {
|
|
14347
14369
|
header: {
|
|
@@ -14356,7 +14378,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14356
14378
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14357
14379
|
allow_any_organization?: boolean | undefined;
|
|
14358
14380
|
is_system?: boolean | undefined;
|
|
14359
|
-
subject_type?: "
|
|
14381
|
+
subject_type?: "client" | "user" | undefined;
|
|
14360
14382
|
authorization_details_types?: string[] | undefined;
|
|
14361
14383
|
created_at?: string | undefined;
|
|
14362
14384
|
updated_at?: string | undefined;
|
|
@@ -14372,7 +14394,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14372
14394
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14373
14395
|
allow_any_organization?: boolean | undefined;
|
|
14374
14396
|
is_system?: boolean | undefined;
|
|
14375
|
-
subject_type?: "
|
|
14397
|
+
subject_type?: "client" | "user" | undefined;
|
|
14376
14398
|
authorization_details_types?: string[] | undefined;
|
|
14377
14399
|
created_at?: string | undefined;
|
|
14378
14400
|
updated_at?: string | undefined;
|
|
@@ -14388,7 +14410,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14388
14410
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14389
14411
|
allow_any_organization?: boolean | undefined;
|
|
14390
14412
|
is_system?: boolean | undefined;
|
|
14391
|
-
subject_type?: "
|
|
14413
|
+
subject_type?: "client" | "user" | undefined;
|
|
14392
14414
|
authorization_details_types?: string[] | undefined;
|
|
14393
14415
|
created_at?: string | undefined;
|
|
14394
14416
|
updated_at?: string | undefined;
|
|
@@ -14419,7 +14441,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14419
14441
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14420
14442
|
allow_any_organization?: boolean | undefined;
|
|
14421
14443
|
is_system?: boolean | undefined;
|
|
14422
|
-
subject_type?: "
|
|
14444
|
+
subject_type?: "client" | "user" | undefined;
|
|
14423
14445
|
authorization_details_types?: string[] | undefined;
|
|
14424
14446
|
created_at?: string | undefined;
|
|
14425
14447
|
updated_at?: string | undefined;
|
|
@@ -14464,7 +14486,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14464
14486
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14465
14487
|
allow_any_organization?: boolean | undefined;
|
|
14466
14488
|
is_system?: boolean | undefined;
|
|
14467
|
-
subject_type?: "
|
|
14489
|
+
subject_type?: "client" | "user" | undefined;
|
|
14468
14490
|
authorization_details_types?: string[] | undefined;
|
|
14469
14491
|
};
|
|
14470
14492
|
};
|
|
@@ -14476,7 +14498,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14476
14498
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14477
14499
|
allow_any_organization?: boolean | undefined;
|
|
14478
14500
|
is_system?: boolean | undefined;
|
|
14479
|
-
subject_type?: "
|
|
14501
|
+
subject_type?: "client" | "user" | undefined;
|
|
14480
14502
|
authorization_details_types?: string[] | undefined;
|
|
14481
14503
|
created_at?: string | undefined;
|
|
14482
14504
|
updated_at?: string | undefined;
|
|
@@ -14500,7 +14522,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14500
14522
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14501
14523
|
allow_any_organization?: boolean | undefined;
|
|
14502
14524
|
is_system?: boolean | undefined;
|
|
14503
|
-
subject_type?: "
|
|
14525
|
+
subject_type?: "client" | "user" | undefined;
|
|
14504
14526
|
authorization_details_types?: string[] | undefined;
|
|
14505
14527
|
};
|
|
14506
14528
|
};
|
|
@@ -14512,7 +14534,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14512
14534
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14513
14535
|
allow_any_organization?: boolean | undefined;
|
|
14514
14536
|
is_system?: boolean | undefined;
|
|
14515
|
-
subject_type?: "
|
|
14537
|
+
subject_type?: "client" | "user" | undefined;
|
|
14516
14538
|
authorization_details_types?: string[] | undefined;
|
|
14517
14539
|
created_at?: string | undefined;
|
|
14518
14540
|
updated_at?: string | undefined;
|
|
@@ -15764,20 +15786,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15764
15786
|
};
|
|
15765
15787
|
};
|
|
15766
15788
|
output: {
|
|
15767
|
-
type: "jwt_signing" | "saml_encryption";
|
|
15768
15789
|
kid: string;
|
|
15769
15790
|
cert: string;
|
|
15770
15791
|
fingerprint: string;
|
|
15771
15792
|
thumbprint: string;
|
|
15772
|
-
|
|
15793
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15773
15794
|
tenant_id?: string | undefined;
|
|
15774
|
-
|
|
15775
|
-
revoked_at?: string | undefined;
|
|
15795
|
+
connection?: string | undefined;
|
|
15776
15796
|
current?: boolean | undefined;
|
|
15797
|
+
next?: boolean | undefined;
|
|
15777
15798
|
previous?: boolean | undefined;
|
|
15778
15799
|
current_since?: string | undefined;
|
|
15779
15800
|
current_until?: string | undefined;
|
|
15780
15801
|
revoked?: boolean | undefined;
|
|
15802
|
+
revoked_at?: string | undefined;
|
|
15781
15803
|
expires_at?: string | undefined;
|
|
15782
15804
|
expired?: boolean | undefined;
|
|
15783
15805
|
inherited?: boolean | undefined;
|
|
@@ -15803,20 +15825,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15803
15825
|
};
|
|
15804
15826
|
};
|
|
15805
15827
|
output: {
|
|
15806
|
-
type: "jwt_signing" | "saml_encryption";
|
|
15807
15828
|
kid: string;
|
|
15808
15829
|
cert: string;
|
|
15809
15830
|
fingerprint: string;
|
|
15810
15831
|
thumbprint: string;
|
|
15811
|
-
|
|
15832
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15812
15833
|
tenant_id?: string | undefined;
|
|
15813
|
-
|
|
15814
|
-
revoked_at?: string | undefined;
|
|
15834
|
+
connection?: string | undefined;
|
|
15815
15835
|
current?: boolean | undefined;
|
|
15836
|
+
next?: boolean | undefined;
|
|
15816
15837
|
previous?: boolean | undefined;
|
|
15817
15838
|
current_since?: string | undefined;
|
|
15818
15839
|
current_until?: string | undefined;
|
|
15819
15840
|
revoked?: boolean | undefined;
|
|
15841
|
+
revoked_at?: string | undefined;
|
|
15820
15842
|
expires_at?: string | undefined;
|
|
15821
15843
|
expired?: boolean | undefined;
|
|
15822
15844
|
inherited?: boolean | undefined;
|
|
@@ -15841,20 +15863,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15841
15863
|
};
|
|
15842
15864
|
};
|
|
15843
15865
|
output: {
|
|
15844
|
-
type: "jwt_signing" | "saml_encryption";
|
|
15845
15866
|
kid: string;
|
|
15846
15867
|
cert: string;
|
|
15847
15868
|
fingerprint: string;
|
|
15848
15869
|
thumbprint: string;
|
|
15849
|
-
|
|
15870
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15850
15871
|
tenant_id?: string | undefined;
|
|
15851
|
-
|
|
15852
|
-
revoked_at?: string | undefined;
|
|
15872
|
+
connection?: string | undefined;
|
|
15853
15873
|
current?: boolean | undefined;
|
|
15874
|
+
next?: boolean | undefined;
|
|
15854
15875
|
previous?: boolean | undefined;
|
|
15855
15876
|
current_since?: string | undefined;
|
|
15856
15877
|
current_until?: string | undefined;
|
|
15857
15878
|
revoked?: boolean | undefined;
|
|
15879
|
+
revoked_at?: string | undefined;
|
|
15858
15880
|
expires_at?: string | undefined;
|
|
15859
15881
|
expired?: boolean | undefined;
|
|
15860
15882
|
inherited?: boolean | undefined;
|
|
@@ -15881,20 +15903,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15881
15903
|
};
|
|
15882
15904
|
};
|
|
15883
15905
|
output: {
|
|
15884
|
-
type: "jwt_signing" | "saml_encryption";
|
|
15885
15906
|
kid: string;
|
|
15886
15907
|
cert: string;
|
|
15887
15908
|
fingerprint: string;
|
|
15888
15909
|
thumbprint: string;
|
|
15889
|
-
|
|
15910
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15890
15911
|
tenant_id?: string | undefined;
|
|
15891
|
-
|
|
15892
|
-
revoked_at?: string | undefined;
|
|
15912
|
+
connection?: string | undefined;
|
|
15893
15913
|
current?: boolean | undefined;
|
|
15914
|
+
next?: boolean | undefined;
|
|
15894
15915
|
previous?: boolean | undefined;
|
|
15895
15916
|
current_since?: string | undefined;
|
|
15896
15917
|
current_until?: string | undefined;
|
|
15897
15918
|
revoked?: boolean | undefined;
|
|
15919
|
+
revoked_at?: string | undefined;
|
|
15898
15920
|
expires_at?: string | undefined;
|
|
15899
15921
|
expired?: boolean | undefined;
|
|
15900
15922
|
inherited?: boolean | undefined;
|
|
@@ -16739,10 +16761,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16739
16761
|
};
|
|
16740
16762
|
};
|
|
16741
16763
|
output: {
|
|
16742
|
-
id: string;
|
|
16743
|
-
user_id: string;
|
|
16744
16764
|
created_at: string;
|
|
16765
|
+
id: string;
|
|
16745
16766
|
client_id: string;
|
|
16767
|
+
user_id: string;
|
|
16746
16768
|
rotating: boolean;
|
|
16747
16769
|
device: {
|
|
16748
16770
|
initial_user_agent: string;
|
|
@@ -16757,23 +16779,26 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16757
16779
|
audience: string;
|
|
16758
16780
|
scopes: string;
|
|
16759
16781
|
}[];
|
|
16782
|
+
organization?: string | undefined;
|
|
16760
16783
|
revoked_at?: string | undefined;
|
|
16761
16784
|
expires_at?: string | undefined;
|
|
16762
|
-
idle_expires_at?: string | undefined;
|
|
16763
16785
|
session_id?: string | undefined;
|
|
16764
|
-
organization?: string | undefined;
|
|
16765
16786
|
auth_connection?: string | undefined;
|
|
16766
16787
|
auth_strategy?: {
|
|
16767
16788
|
strategy: string;
|
|
16768
16789
|
strategy_type: string;
|
|
16769
16790
|
} | undefined;
|
|
16791
|
+
idle_expires_at?: string | undefined;
|
|
16770
16792
|
last_exchanged_at?: string | undefined;
|
|
16771
16793
|
}[] | {
|
|
16794
|
+
start: number;
|
|
16795
|
+
limit: number;
|
|
16796
|
+
length: number;
|
|
16772
16797
|
tokens: {
|
|
16773
|
-
id: string;
|
|
16774
|
-
user_id: string;
|
|
16775
16798
|
created_at: string;
|
|
16799
|
+
id: string;
|
|
16776
16800
|
client_id: string;
|
|
16801
|
+
user_id: string;
|
|
16777
16802
|
rotating: boolean;
|
|
16778
16803
|
device: {
|
|
16779
16804
|
initial_user_agent: string;
|
|
@@ -16788,28 +16813,26 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16788
16813
|
audience: string;
|
|
16789
16814
|
scopes: string;
|
|
16790
16815
|
}[];
|
|
16816
|
+
organization?: string | undefined;
|
|
16791
16817
|
revoked_at?: string | undefined;
|
|
16792
16818
|
expires_at?: string | undefined;
|
|
16793
|
-
idle_expires_at?: string | undefined;
|
|
16794
16819
|
session_id?: string | undefined;
|
|
16795
|
-
organization?: string | undefined;
|
|
16796
16820
|
auth_connection?: string | undefined;
|
|
16797
16821
|
auth_strategy?: {
|
|
16798
16822
|
strategy: string;
|
|
16799
16823
|
strategy_type: string;
|
|
16800
16824
|
} | undefined;
|
|
16825
|
+
idle_expires_at?: string | undefined;
|
|
16801
16826
|
last_exchanged_at?: string | undefined;
|
|
16802
16827
|
}[];
|
|
16828
|
+
total?: number | undefined;
|
|
16803
16829
|
next?: string | undefined;
|
|
16804
16830
|
} | {
|
|
16805
|
-
start: number;
|
|
16806
|
-
limit: number;
|
|
16807
|
-
length: number;
|
|
16808
16831
|
tokens: {
|
|
16809
|
-
id: string;
|
|
16810
|
-
user_id: string;
|
|
16811
16832
|
created_at: string;
|
|
16833
|
+
id: string;
|
|
16812
16834
|
client_id: string;
|
|
16835
|
+
user_id: string;
|
|
16813
16836
|
rotating: boolean;
|
|
16814
16837
|
device: {
|
|
16815
16838
|
initial_user_agent: string;
|
|
@@ -16824,19 +16847,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16824
16847
|
audience: string;
|
|
16825
16848
|
scopes: string;
|
|
16826
16849
|
}[];
|
|
16850
|
+
organization?: string | undefined;
|
|
16827
16851
|
revoked_at?: string | undefined;
|
|
16828
16852
|
expires_at?: string | undefined;
|
|
16829
|
-
idle_expires_at?: string | undefined;
|
|
16830
16853
|
session_id?: string | undefined;
|
|
16831
|
-
organization?: string | undefined;
|
|
16832
16854
|
auth_connection?: string | undefined;
|
|
16833
16855
|
auth_strategy?: {
|
|
16834
16856
|
strategy: string;
|
|
16835
16857
|
strategy_type: string;
|
|
16836
16858
|
} | undefined;
|
|
16859
|
+
idle_expires_at?: string | undefined;
|
|
16837
16860
|
last_exchanged_at?: string | undefined;
|
|
16838
16861
|
}[];
|
|
16839
|
-
total?: number | undefined;
|
|
16840
16862
|
next?: string | undefined;
|
|
16841
16863
|
};
|
|
16842
16864
|
outputFormat: "json";
|
|
@@ -16885,7 +16907,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16885
16907
|
};
|
|
16886
16908
|
};
|
|
16887
16909
|
output: {
|
|
16888
|
-
type: "
|
|
16910
|
+
type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
16889
16911
|
date: string;
|
|
16890
16912
|
isMobile: boolean;
|
|
16891
16913
|
log_id: string;
|
|
@@ -16924,7 +16946,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16924
16946
|
limit: number;
|
|
16925
16947
|
length: number;
|
|
16926
16948
|
logs: {
|
|
16927
|
-
type: "
|
|
16949
|
+
type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
16928
16950
|
date: string;
|
|
16929
16951
|
isMobile: boolean;
|
|
16930
16952
|
log_id: string;
|
|
@@ -17243,7 +17265,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17243
17265
|
};
|
|
17244
17266
|
} & {
|
|
17245
17267
|
json: {
|
|
17246
|
-
template: "
|
|
17268
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17247
17269
|
body: string;
|
|
17248
17270
|
from: string;
|
|
17249
17271
|
subject: string;
|
|
@@ -17264,7 +17286,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17264
17286
|
};
|
|
17265
17287
|
} & {
|
|
17266
17288
|
json: {
|
|
17267
|
-
template: "
|
|
17289
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17268
17290
|
body: string;
|
|
17269
17291
|
from: string;
|
|
17270
17292
|
subject: string;
|
|
@@ -17276,7 +17298,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17276
17298
|
};
|
|
17277
17299
|
};
|
|
17278
17300
|
output: {
|
|
17279
|
-
template: "
|
|
17301
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17280
17302
|
body: string;
|
|
17281
17303
|
from: string;
|
|
17282
17304
|
subject: string;
|
|
@@ -17299,7 +17321,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17299
17321
|
};
|
|
17300
17322
|
};
|
|
17301
17323
|
output: {
|
|
17302
|
-
name: "
|
|
17324
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17303
17325
|
body: string;
|
|
17304
17326
|
subject: string;
|
|
17305
17327
|
}[];
|
|
@@ -17312,7 +17334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17312
17334
|
$get: {
|
|
17313
17335
|
input: {
|
|
17314
17336
|
param: {
|
|
17315
|
-
templateName: "
|
|
17337
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17316
17338
|
};
|
|
17317
17339
|
} & {
|
|
17318
17340
|
header: {
|
|
@@ -17325,7 +17347,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17325
17347
|
} | {
|
|
17326
17348
|
input: {
|
|
17327
17349
|
param: {
|
|
17328
|
-
templateName: "
|
|
17350
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17329
17351
|
};
|
|
17330
17352
|
} & {
|
|
17331
17353
|
header: {
|
|
@@ -17333,7 +17355,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17333
17355
|
};
|
|
17334
17356
|
};
|
|
17335
17357
|
output: {
|
|
17336
|
-
template: "
|
|
17358
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17337
17359
|
body: string;
|
|
17338
17360
|
from: string;
|
|
17339
17361
|
subject: string;
|
|
@@ -17352,7 +17374,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17352
17374
|
$put: {
|
|
17353
17375
|
input: {
|
|
17354
17376
|
param: {
|
|
17355
|
-
templateName: "
|
|
17377
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17356
17378
|
};
|
|
17357
17379
|
} & {
|
|
17358
17380
|
header: {
|
|
@@ -17360,7 +17382,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17360
17382
|
};
|
|
17361
17383
|
} & {
|
|
17362
17384
|
json: {
|
|
17363
|
-
template: "
|
|
17385
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17364
17386
|
body: string;
|
|
17365
17387
|
subject: string;
|
|
17366
17388
|
syntax?: "liquid" | undefined;
|
|
@@ -17372,7 +17394,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17372
17394
|
};
|
|
17373
17395
|
};
|
|
17374
17396
|
output: {
|
|
17375
|
-
template: "
|
|
17397
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17376
17398
|
body: string;
|
|
17377
17399
|
from: string;
|
|
17378
17400
|
subject: string;
|
|
@@ -17391,7 +17413,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17391
17413
|
$patch: {
|
|
17392
17414
|
input: {
|
|
17393
17415
|
param: {
|
|
17394
|
-
templateName: "
|
|
17416
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17395
17417
|
};
|
|
17396
17418
|
} & {
|
|
17397
17419
|
header: {
|
|
@@ -17399,7 +17421,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17399
17421
|
};
|
|
17400
17422
|
} & {
|
|
17401
17423
|
json: {
|
|
17402
|
-
template?: "
|
|
17424
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
17403
17425
|
body?: string | undefined;
|
|
17404
17426
|
from?: string | undefined;
|
|
17405
17427
|
subject?: string | undefined;
|
|
@@ -17416,7 +17438,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17416
17438
|
} | {
|
|
17417
17439
|
input: {
|
|
17418
17440
|
param: {
|
|
17419
|
-
templateName: "
|
|
17441
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17420
17442
|
};
|
|
17421
17443
|
} & {
|
|
17422
17444
|
header: {
|
|
@@ -17424,7 +17446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17424
17446
|
};
|
|
17425
17447
|
} & {
|
|
17426
17448
|
json: {
|
|
17427
|
-
template?: "
|
|
17449
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
17428
17450
|
body?: string | undefined;
|
|
17429
17451
|
from?: string | undefined;
|
|
17430
17452
|
subject?: string | undefined;
|
|
@@ -17436,7 +17458,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17436
17458
|
};
|
|
17437
17459
|
};
|
|
17438
17460
|
output: {
|
|
17439
|
-
template: "
|
|
17461
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17440
17462
|
body: string;
|
|
17441
17463
|
from: string;
|
|
17442
17464
|
subject: string;
|
|
@@ -17455,7 +17477,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17455
17477
|
$delete: {
|
|
17456
17478
|
input: {
|
|
17457
17479
|
param: {
|
|
17458
|
-
templateName: "
|
|
17480
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17459
17481
|
};
|
|
17460
17482
|
} & {
|
|
17461
17483
|
header: {
|
|
@@ -17468,7 +17490,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17468
17490
|
} | {
|
|
17469
17491
|
input: {
|
|
17470
17492
|
param: {
|
|
17471
|
-
templateName: "
|
|
17493
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17472
17494
|
};
|
|
17473
17495
|
} & {
|
|
17474
17496
|
header: {
|
|
@@ -17485,7 +17507,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17485
17507
|
$post: {
|
|
17486
17508
|
input: {
|
|
17487
17509
|
param: {
|
|
17488
|
-
templateName: "
|
|
17510
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17489
17511
|
};
|
|
17490
17512
|
} & {
|
|
17491
17513
|
header: {
|
|
@@ -17768,7 +17790,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17768
17790
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17769
17791
|
custom_domain_id: string;
|
|
17770
17792
|
primary: boolean;
|
|
17771
|
-
status: "
|
|
17793
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17772
17794
|
verification_method?: "txt" | undefined;
|
|
17773
17795
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17774
17796
|
domain_metadata?: {
|
|
@@ -17809,7 +17831,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17809
17831
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17810
17832
|
custom_domain_id: string;
|
|
17811
17833
|
primary: boolean;
|
|
17812
|
-
status: "
|
|
17834
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17813
17835
|
verification_method?: "txt" | undefined;
|
|
17814
17836
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17815
17837
|
domain_metadata?: {
|
|
@@ -17873,7 +17895,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17873
17895
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17874
17896
|
custom_domain_id: string;
|
|
17875
17897
|
primary: boolean;
|
|
17876
|
-
status: "
|
|
17898
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17877
17899
|
verification_method?: "txt" | undefined;
|
|
17878
17900
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17879
17901
|
domain_metadata?: {
|
|
@@ -17920,7 +17942,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17920
17942
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17921
17943
|
custom_domain_id: string;
|
|
17922
17944
|
primary: boolean;
|
|
17923
|
-
status: "
|
|
17945
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17924
17946
|
verification_method?: "txt" | undefined;
|
|
17925
17947
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17926
17948
|
domain_metadata?: {
|
|
@@ -17966,7 +17988,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17966
17988
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17967
17989
|
custom_domain_id: string;
|
|
17968
17990
|
primary: boolean;
|
|
17969
|
-
status: "
|
|
17991
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17970
17992
|
verification_method?: "txt" | undefined;
|
|
17971
17993
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17972
17994
|
domain_metadata?: {
|
|
@@ -18007,7 +18029,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18007
18029
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
18008
18030
|
custom_domain_id: string;
|
|
18009
18031
|
primary: boolean;
|
|
18010
|
-
status: "
|
|
18032
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
18011
18033
|
verification_method?: "txt" | undefined;
|
|
18012
18034
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
18013
18035
|
domain_metadata?: {
|
|
@@ -18437,7 +18459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18437
18459
|
} & {
|
|
18438
18460
|
json: {
|
|
18439
18461
|
body?: string | undefined;
|
|
18440
|
-
screen?: "
|
|
18462
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
18441
18463
|
branding?: {
|
|
18442
18464
|
colors?: {
|
|
18443
18465
|
primary: string;
|
|
@@ -19449,7 +19471,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19449
19471
|
message: string;
|
|
19450
19472
|
};
|
|
19451
19473
|
outputFormat: "json";
|
|
19452
|
-
status:
|
|
19474
|
+
status: 400;
|
|
19453
19475
|
} | {
|
|
19454
19476
|
input: {
|
|
19455
19477
|
query: {
|
|
@@ -19467,7 +19489,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19467
19489
|
message: string;
|
|
19468
19490
|
};
|
|
19469
19491
|
outputFormat: "json";
|
|
19470
|
-
status:
|
|
19492
|
+
status: 500;
|
|
19471
19493
|
};
|
|
19472
19494
|
};
|
|
19473
19495
|
} & {
|
|
@@ -19505,7 +19527,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19505
19527
|
message: string;
|
|
19506
19528
|
};
|
|
19507
19529
|
outputFormat: "json";
|
|
19508
|
-
status:
|
|
19530
|
+
status: 400;
|
|
19509
19531
|
} | {
|
|
19510
19532
|
input: {
|
|
19511
19533
|
form: {
|
|
@@ -19523,7 +19545,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19523
19545
|
message: string;
|
|
19524
19546
|
};
|
|
19525
19547
|
outputFormat: "json";
|
|
19526
|
-
status:
|
|
19548
|
+
status: 500;
|
|
19527
19549
|
};
|
|
19528
19550
|
};
|
|
19529
19551
|
}, "/login/callback"> & hono_types.MergeSchemaPath<{
|
|
@@ -19561,7 +19583,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19561
19583
|
message: string;
|
|
19562
19584
|
};
|
|
19563
19585
|
outputFormat: "json";
|
|
19564
|
-
status:
|
|
19586
|
+
status: 400;
|
|
19565
19587
|
} | {
|
|
19566
19588
|
input: {
|
|
19567
19589
|
query: {
|
|
@@ -19579,7 +19601,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19579
19601
|
message: string;
|
|
19580
19602
|
};
|
|
19581
19603
|
outputFormat: "json";
|
|
19582
|
-
status:
|
|
19604
|
+
status: 500;
|
|
19583
19605
|
};
|
|
19584
19606
|
};
|
|
19585
19607
|
} & {
|
|
@@ -19617,7 +19639,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19617
19639
|
message: string;
|
|
19618
19640
|
};
|
|
19619
19641
|
outputFormat: "json";
|
|
19620
|
-
status:
|
|
19642
|
+
status: 400;
|
|
19621
19643
|
} | {
|
|
19622
19644
|
input: {
|
|
19623
19645
|
form: {
|
|
@@ -19635,7 +19657,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19635
19657
|
message: string;
|
|
19636
19658
|
};
|
|
19637
19659
|
outputFormat: "json";
|
|
19638
|
-
status:
|
|
19660
|
+
status: 500;
|
|
19639
19661
|
};
|
|
19640
19662
|
};
|
|
19641
19663
|
}, "/callback"> & hono_types.MergeSchemaPath<{
|
|
@@ -20134,17 +20156,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20134
20156
|
email: string;
|
|
20135
20157
|
send: "code" | "link";
|
|
20136
20158
|
authParams: {
|
|
20137
|
-
username?: string | undefined;
|
|
20138
20159
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
20139
20160
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
20140
20161
|
scope?: string | undefined;
|
|
20162
|
+
username?: string | undefined;
|
|
20141
20163
|
audience?: string | undefined;
|
|
20164
|
+
nonce?: string | undefined;
|
|
20142
20165
|
organization?: string | undefined;
|
|
20143
|
-
state?: string | undefined;
|
|
20144
20166
|
redirect_uri?: string | undefined;
|
|
20145
|
-
|
|
20167
|
+
state?: string | undefined;
|
|
20146
20168
|
act_as?: string | undefined;
|
|
20147
|
-
|
|
20169
|
+
prompt?: string | undefined;
|
|
20148
20170
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
20149
20171
|
code_challenge?: string | undefined;
|
|
20150
20172
|
ui_locales?: string | undefined;
|
|
@@ -20170,17 +20192,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20170
20192
|
phone_number: string;
|
|
20171
20193
|
send: "code" | "link";
|
|
20172
20194
|
authParams: {
|
|
20173
|
-
username?: string | undefined;
|
|
20174
20195
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
20175
20196
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
20176
20197
|
scope?: string | undefined;
|
|
20198
|
+
username?: string | undefined;
|
|
20177
20199
|
audience?: string | undefined;
|
|
20200
|
+
nonce?: string | undefined;
|
|
20178
20201
|
organization?: string | undefined;
|
|
20179
|
-
state?: string | undefined;
|
|
20180
20202
|
redirect_uri?: string | undefined;
|
|
20181
|
-
|
|
20203
|
+
state?: string | undefined;
|
|
20182
20204
|
act_as?: string | undefined;
|
|
20183
|
-
|
|
20205
|
+
prompt?: string | undefined;
|
|
20184
20206
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
20185
20207
|
code_challenge?: string | undefined;
|
|
20186
20208
|
ui_locales?: string | undefined;
|
|
@@ -20247,7 +20269,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20247
20269
|
error_description?: string | undefined;
|
|
20248
20270
|
};
|
|
20249
20271
|
outputFormat: "json";
|
|
20250
|
-
status:
|
|
20272
|
+
status: 400;
|
|
20251
20273
|
} | {
|
|
20252
20274
|
input: {
|
|
20253
20275
|
query: {
|
|
@@ -20268,7 +20290,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20268
20290
|
error_description?: string | undefined;
|
|
20269
20291
|
};
|
|
20270
20292
|
outputFormat: "json";
|
|
20271
|
-
status:
|
|
20293
|
+
status: 500;
|
|
20272
20294
|
};
|
|
20273
20295
|
};
|
|
20274
20296
|
}, "/passwordless"> & hono_types.MergeSchemaPath<{
|
|
@@ -20918,7 +20940,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20918
20940
|
output: {
|
|
20919
20941
|
keys: {
|
|
20920
20942
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
20921
|
-
kty: "
|
|
20943
|
+
kty: "RSA" | "EC" | "oct";
|
|
20922
20944
|
kid?: string | undefined;
|
|
20923
20945
|
use?: "sig" | "enc" | undefined;
|
|
20924
20946
|
n?: string | undefined;
|
|
@@ -21246,7 +21268,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21246
21268
|
};
|
|
21247
21269
|
output: {};
|
|
21248
21270
|
outputFormat: string;
|
|
21249
|
-
status:
|
|
21271
|
+
status: 302;
|
|
21250
21272
|
} | {
|
|
21251
21273
|
input: {
|
|
21252
21274
|
query: {
|
|
@@ -21255,7 +21277,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21255
21277
|
};
|
|
21256
21278
|
output: {};
|
|
21257
21279
|
outputFormat: string;
|
|
21258
|
-
status:
|
|
21280
|
+
status: 400;
|
|
21259
21281
|
} | {
|
|
21260
21282
|
input: {
|
|
21261
21283
|
query: {
|
|
@@ -21264,7 +21286,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21264
21286
|
};
|
|
21265
21287
|
output: {};
|
|
21266
21288
|
outputFormat: string;
|
|
21267
|
-
status:
|
|
21289
|
+
status: 500;
|
|
21268
21290
|
};
|
|
21269
21291
|
};
|
|
21270
21292
|
}, "/continue"> & hono_types.MergeSchemaPath<{
|
|
@@ -21734,7 +21756,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21734
21756
|
} & {
|
|
21735
21757
|
form: {
|
|
21736
21758
|
username: string;
|
|
21737
|
-
login_selection?: "
|
|
21759
|
+
login_selection?: "code" | "password" | undefined;
|
|
21738
21760
|
};
|
|
21739
21761
|
};
|
|
21740
21762
|
output: {};
|
|
@@ -21748,7 +21770,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21748
21770
|
} & {
|
|
21749
21771
|
form: {
|
|
21750
21772
|
username: string;
|
|
21751
|
-
login_selection?: "
|
|
21773
|
+
login_selection?: "code" | "password" | undefined;
|
|
21752
21774
|
};
|
|
21753
21775
|
};
|
|
21754
21776
|
output: {};
|
|
@@ -22113,7 +22135,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
22113
22135
|
$get: {
|
|
22114
22136
|
input: {
|
|
22115
22137
|
param: {
|
|
22116
|
-
screen: "signup" | "login" | "
|
|
22138
|
+
screen: "impersonate" | "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
22117
22139
|
};
|
|
22118
22140
|
} & {
|
|
22119
22141
|
query: {
|
|
@@ -22129,7 +22151,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
22129
22151
|
} | {
|
|
22130
22152
|
input: {
|
|
22131
22153
|
param: {
|
|
22132
|
-
screen: "signup" | "login" | "
|
|
22154
|
+
screen: "impersonate" | "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
22133
22155
|
};
|
|
22134
22156
|
} & {
|
|
22135
22157
|
query: {
|
|
@@ -22145,7 +22167,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
22145
22167
|
} | {
|
|
22146
22168
|
input: {
|
|
22147
22169
|
param: {
|
|
22148
|
-
screen: "signup" | "login" | "
|
|
22170
|
+
screen: "impersonate" | "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
22149
22171
|
};
|
|
22150
22172
|
} & {
|
|
22151
22173
|
query: {
|
|
@@ -22165,7 +22187,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
22165
22187
|
$post: {
|
|
22166
22188
|
input: {
|
|
22167
22189
|
param: {
|
|
22168
|
-
screen: "
|
|
22190
|
+
screen: "impersonate" | "signup" | "login" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
22169
22191
|
};
|
|
22170
22192
|
} & {
|
|
22171
22193
|
query: {
|
|
@@ -22183,7 +22205,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
22183
22205
|
} | {
|
|
22184
22206
|
input: {
|
|
22185
22207
|
param: {
|
|
22186
|
-
screen: "
|
|
22208
|
+
screen: "impersonate" | "signup" | "login" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
22187
22209
|
};
|
|
22188
22210
|
} & {
|
|
22189
22211
|
query: {
|