authhero 9.11.1 → 9.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/{p-f94037cd.entry.js → p-74f95441.entry.js} +1 -1
- package/dist/authhero.cjs +292 -160
- package/dist/authhero.d.ts +235 -232
- package/dist/authhero.mjs +81493 -89256
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +2 -2
- package/dist/types/emails/render.d.ts +2 -0
- package/dist/types/helpers/action-executions-cleanup.d.ts +6 -3
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/helpers/logging.d.ts +11 -3
- package/dist/types/helpers/reserved-claims.d.ts +2 -2
- package/dist/types/helpers/run-retention.d.ts +1 -1
- package/dist/types/helpers/saml.d.ts +1 -1
- package/dist/types/helpers/scopes-permissions.d.ts +16 -0
- package/dist/types/helpers/users-import/map.d.ts +14 -0
- package/dist/types/hooks/codehooks.d.ts +28 -1
- package/dist/types/index.d.ts +228 -228
- package/dist/types/routes/auth-api/index.d.ts +15 -15
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- 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/branding.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +8 -8
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +206 -206
- package/dist/types/routes/management-api/keys.d.ts +8 -8
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +4 -4
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-operations.d.ts +1 -1
- package/dist/types/routes/management-api/tenants.d.ts +12 -12
- package/dist/types/routes/management-api/users.d.ts +14 -14
- package/dist/types/routes/universal-login/common.d.ts +6 -6
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- 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/routes/universal-login/u2-widget-page.d.ts +13 -42
- package/dist/types/routes/universal-login/universal-login-template.d.ts +1 -1
- package/dist/types/utils/jwks.d.ts +2 -2
- package/package.json +7 -7
package/dist/authhero.d.ts
CHANGED
|
@@ -2885,12 +2885,15 @@ declare function cleanupCodes(codes: CodesAdapter, params?: CodesCleanupParams):
|
|
|
2885
2885
|
|
|
2886
2886
|
interface ActionExecutionsCleanupParams {
|
|
2887
2887
|
/**
|
|
2888
|
-
* Days of execution history to keep. Defaults to
|
|
2888
|
+
* Days of execution history to keep. Defaults to 10, matching Auth0
|
|
2889
|
+
* ("Executions will only be stored for 10 days after their creation").
|
|
2889
2890
|
*
|
|
2890
2891
|
* Unlike `codes`, these rows have no expiry — they are diagnostic history,
|
|
2891
2892
|
* referenced from logs when debugging an action. The window is a genuine
|
|
2892
2893
|
* retention policy: long enough to investigate a report that arrives late,
|
|
2893
|
-
* short enough that the table stops growing without bound.
|
|
2894
|
+
* short enough that the table stops growing without bound. Rows can carry
|
|
2895
|
+
* whatever a tenant's action wrote to `console`, so a shorter window is also
|
|
2896
|
+
* the safer one.
|
|
2894
2897
|
*/
|
|
2895
2898
|
retentionDays?: number;
|
|
2896
2899
|
}
|
|
@@ -2910,7 +2913,7 @@ interface ActionExecutionsCleanupParams {
|
|
|
2910
2913
|
* // Cloudflare Workers scheduled handler
|
|
2911
2914
|
* async scheduled(_event, env) {
|
|
2912
2915
|
* await cleanupActionExecutions(dataAdapter.actionExecutions, {
|
|
2913
|
-
* retentionDays:
|
|
2916
|
+
* retentionDays: 10,
|
|
2914
2917
|
* });
|
|
2915
2918
|
* }
|
|
2916
2919
|
* ```
|
|
@@ -3276,7 +3279,7 @@ interface RunRetentionConfig {
|
|
|
3276
3279
|
codesRetentionDays?: number;
|
|
3277
3280
|
/** Days to keep processed/dead-lettered outbox events. Default 7. */
|
|
3278
3281
|
outboxRetentionDays?: number;
|
|
3279
|
-
/** Days of action execution history to keep. Default
|
|
3282
|
+
/** Days of action execution history to keep. Default 10, matching Auth0. */
|
|
3280
3283
|
actionExecutionsRetentionDays?: number;
|
|
3281
3284
|
/**
|
|
3282
3285
|
* Hours to keep finished bulk user-import jobs and their staged rows.
|
|
@@ -4769,7 +4772,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4769
4772
|
};
|
|
4770
4773
|
} & {
|
|
4771
4774
|
json: {
|
|
4772
|
-
type: "email" | "
|
|
4775
|
+
type: "email" | "totp" | "phone" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform";
|
|
4773
4776
|
phone_number?: string | undefined;
|
|
4774
4777
|
totp_secret?: string | undefined;
|
|
4775
4778
|
credential_id?: string | undefined;
|
|
@@ -5869,19 +5872,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5869
5872
|
} & {
|
|
5870
5873
|
json: {
|
|
5871
5874
|
client_id: string;
|
|
5872
|
-
inviter: {
|
|
5873
|
-
name?: string | undefined;
|
|
5874
|
-
};
|
|
5875
5875
|
invitee: {
|
|
5876
5876
|
email?: string | undefined;
|
|
5877
5877
|
};
|
|
5878
|
+
inviter: {
|
|
5879
|
+
name?: string | undefined;
|
|
5880
|
+
};
|
|
5878
5881
|
id?: string | undefined;
|
|
5879
5882
|
app_metadata?: Record<string, any> | undefined;
|
|
5880
5883
|
user_metadata?: Record<string, any> | undefined;
|
|
5881
5884
|
connection_id?: string | undefined;
|
|
5882
5885
|
roles?: string[] | undefined;
|
|
5883
|
-
ttl_sec?: number | undefined;
|
|
5884
5886
|
send_invitation_email?: boolean | undefined;
|
|
5887
|
+
ttl_sec?: number | undefined;
|
|
5885
5888
|
};
|
|
5886
5889
|
};
|
|
5887
5890
|
output: {
|
|
@@ -6636,9 +6639,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6636
6639
|
};
|
|
6637
6640
|
} & {
|
|
6638
6641
|
query: {
|
|
6639
|
-
from?: string | undefined;
|
|
6640
6642
|
page?: string | undefined;
|
|
6641
6643
|
include_totals?: string | undefined;
|
|
6644
|
+
from?: string | undefined;
|
|
6642
6645
|
per_page?: string | undefined;
|
|
6643
6646
|
take?: string | undefined;
|
|
6644
6647
|
};
|
|
@@ -7361,7 +7364,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7361
7364
|
hint?: string | undefined;
|
|
7362
7365
|
messages?: {
|
|
7363
7366
|
text: string;
|
|
7364
|
-
type: "
|
|
7367
|
+
type: "success" | "error" | "info" | "warning";
|
|
7365
7368
|
id?: number | undefined;
|
|
7366
7369
|
}[] | undefined;
|
|
7367
7370
|
required?: boolean | undefined;
|
|
@@ -7379,7 +7382,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7379
7382
|
hint?: string | undefined;
|
|
7380
7383
|
messages?: {
|
|
7381
7384
|
text: string;
|
|
7382
|
-
type: "
|
|
7385
|
+
type: "success" | "error" | "info" | "warning";
|
|
7383
7386
|
id?: number | undefined;
|
|
7384
7387
|
}[] | undefined;
|
|
7385
7388
|
required?: boolean | undefined;
|
|
@@ -7403,7 +7406,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7403
7406
|
hint?: string | undefined;
|
|
7404
7407
|
messages?: {
|
|
7405
7408
|
text: string;
|
|
7406
|
-
type: "
|
|
7409
|
+
type: "success" | "error" | "info" | "warning";
|
|
7407
7410
|
id?: number | undefined;
|
|
7408
7411
|
}[] | undefined;
|
|
7409
7412
|
required?: boolean | undefined;
|
|
@@ -7427,7 +7430,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7427
7430
|
hint?: string | undefined;
|
|
7428
7431
|
messages?: {
|
|
7429
7432
|
text: string;
|
|
7430
|
-
type: "
|
|
7433
|
+
type: "success" | "error" | "info" | "warning";
|
|
7431
7434
|
id?: number | undefined;
|
|
7432
7435
|
}[] | undefined;
|
|
7433
7436
|
required?: boolean | undefined;
|
|
@@ -7451,7 +7454,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7451
7454
|
hint?: string | undefined;
|
|
7452
7455
|
messages?: {
|
|
7453
7456
|
text: string;
|
|
7454
|
-
type: "
|
|
7457
|
+
type: "success" | "error" | "info" | "warning";
|
|
7455
7458
|
id?: number | undefined;
|
|
7456
7459
|
}[] | undefined;
|
|
7457
7460
|
required?: boolean | undefined;
|
|
@@ -7480,7 +7483,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7480
7483
|
hint?: string | undefined;
|
|
7481
7484
|
messages?: {
|
|
7482
7485
|
text: string;
|
|
7483
|
-
type: "
|
|
7486
|
+
type: "success" | "error" | "info" | "warning";
|
|
7484
7487
|
id?: number | undefined;
|
|
7485
7488
|
}[] | undefined;
|
|
7486
7489
|
required?: boolean | undefined;
|
|
@@ -7495,7 +7498,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7495
7498
|
hint?: string | undefined;
|
|
7496
7499
|
messages?: {
|
|
7497
7500
|
text: string;
|
|
7498
|
-
type: "
|
|
7501
|
+
type: "success" | "error" | "info" | "warning";
|
|
7499
7502
|
id?: number | undefined;
|
|
7500
7503
|
}[] | undefined;
|
|
7501
7504
|
required?: boolean | undefined;
|
|
@@ -7516,7 +7519,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7516
7519
|
hint?: string | undefined;
|
|
7517
7520
|
messages?: {
|
|
7518
7521
|
text: string;
|
|
7519
|
-
type: "
|
|
7522
|
+
type: "success" | "error" | "info" | "warning";
|
|
7520
7523
|
id?: number | undefined;
|
|
7521
7524
|
}[] | undefined;
|
|
7522
7525
|
required?: boolean | undefined;
|
|
@@ -7541,7 +7544,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7541
7544
|
hint?: string | undefined;
|
|
7542
7545
|
messages?: {
|
|
7543
7546
|
text: string;
|
|
7544
|
-
type: "
|
|
7547
|
+
type: "success" | "error" | "info" | "warning";
|
|
7545
7548
|
id?: number | undefined;
|
|
7546
7549
|
}[] | undefined;
|
|
7547
7550
|
required?: boolean | undefined;
|
|
@@ -7562,7 +7565,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7562
7565
|
hint?: string | undefined;
|
|
7563
7566
|
messages?: {
|
|
7564
7567
|
text: string;
|
|
7565
|
-
type: "
|
|
7568
|
+
type: "success" | "error" | "info" | "warning";
|
|
7566
7569
|
id?: number | undefined;
|
|
7567
7570
|
}[] | undefined;
|
|
7568
7571
|
required?: boolean | undefined;
|
|
@@ -7582,7 +7585,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7582
7585
|
hint?: string | undefined;
|
|
7583
7586
|
messages?: {
|
|
7584
7587
|
text: string;
|
|
7585
|
-
type: "
|
|
7588
|
+
type: "success" | "error" | "info" | "warning";
|
|
7586
7589
|
id?: number | undefined;
|
|
7587
7590
|
}[] | undefined;
|
|
7588
7591
|
required?: boolean | undefined;
|
|
@@ -7601,7 +7604,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7601
7604
|
hint?: string | undefined;
|
|
7602
7605
|
messages?: {
|
|
7603
7606
|
text: string;
|
|
7604
|
-
type: "
|
|
7607
|
+
type: "success" | "error" | "info" | "warning";
|
|
7605
7608
|
id?: number | undefined;
|
|
7606
7609
|
}[] | undefined;
|
|
7607
7610
|
required?: boolean | undefined;
|
|
@@ -7623,7 +7626,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7623
7626
|
hint?: string | undefined;
|
|
7624
7627
|
messages?: {
|
|
7625
7628
|
text: string;
|
|
7626
|
-
type: "
|
|
7629
|
+
type: "success" | "error" | "info" | "warning";
|
|
7627
7630
|
id?: number | undefined;
|
|
7628
7631
|
}[] | undefined;
|
|
7629
7632
|
required?: boolean | undefined;
|
|
@@ -7645,7 +7648,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7645
7648
|
hint?: string | undefined;
|
|
7646
7649
|
messages?: {
|
|
7647
7650
|
text: string;
|
|
7648
|
-
type: "
|
|
7651
|
+
type: "success" | "error" | "info" | "warning";
|
|
7649
7652
|
id?: number | undefined;
|
|
7650
7653
|
}[] | undefined;
|
|
7651
7654
|
required?: boolean | undefined;
|
|
@@ -7664,7 +7667,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7664
7667
|
hint?: string | undefined;
|
|
7665
7668
|
messages?: {
|
|
7666
7669
|
text: string;
|
|
7667
|
-
type: "
|
|
7670
|
+
type: "success" | "error" | "info" | "warning";
|
|
7668
7671
|
id?: number | undefined;
|
|
7669
7672
|
}[] | undefined;
|
|
7670
7673
|
required?: boolean | undefined;
|
|
@@ -7691,7 +7694,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7691
7694
|
hint?: string | undefined;
|
|
7692
7695
|
messages?: {
|
|
7693
7696
|
text: string;
|
|
7694
|
-
type: "
|
|
7697
|
+
type: "success" | "error" | "info" | "warning";
|
|
7695
7698
|
id?: number | undefined;
|
|
7696
7699
|
}[] | undefined;
|
|
7697
7700
|
required?: boolean | undefined;
|
|
@@ -7712,7 +7715,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7712
7715
|
hint?: string | undefined;
|
|
7713
7716
|
messages?: {
|
|
7714
7717
|
text: string;
|
|
7715
|
-
type: "
|
|
7718
|
+
type: "success" | "error" | "info" | "warning";
|
|
7716
7719
|
id?: number | undefined;
|
|
7717
7720
|
}[] | undefined;
|
|
7718
7721
|
required?: boolean | undefined;
|
|
@@ -7735,7 +7738,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7735
7738
|
hint?: string | undefined;
|
|
7736
7739
|
messages?: {
|
|
7737
7740
|
text: string;
|
|
7738
|
-
type: "
|
|
7741
|
+
type: "success" | "error" | "info" | "warning";
|
|
7739
7742
|
id?: number | undefined;
|
|
7740
7743
|
}[] | undefined;
|
|
7741
7744
|
required?: boolean | undefined;
|
|
@@ -7968,7 +7971,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7968
7971
|
hint?: string | undefined;
|
|
7969
7972
|
messages?: {
|
|
7970
7973
|
text: string;
|
|
7971
|
-
type: "
|
|
7974
|
+
type: "success" | "error" | "info" | "warning";
|
|
7972
7975
|
id?: number | undefined;
|
|
7973
7976
|
}[] | undefined;
|
|
7974
7977
|
required?: boolean | undefined;
|
|
@@ -7986,7 +7989,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7986
7989
|
hint?: string | undefined;
|
|
7987
7990
|
messages?: {
|
|
7988
7991
|
text: string;
|
|
7989
|
-
type: "
|
|
7992
|
+
type: "success" | "error" | "info" | "warning";
|
|
7990
7993
|
id?: number | undefined;
|
|
7991
7994
|
}[] | undefined;
|
|
7992
7995
|
required?: boolean | undefined;
|
|
@@ -8010,7 +8013,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8010
8013
|
hint?: string | undefined;
|
|
8011
8014
|
messages?: {
|
|
8012
8015
|
text: string;
|
|
8013
|
-
type: "
|
|
8016
|
+
type: "success" | "error" | "info" | "warning";
|
|
8014
8017
|
id?: number | undefined;
|
|
8015
8018
|
}[] | undefined;
|
|
8016
8019
|
required?: boolean | undefined;
|
|
@@ -8034,7 +8037,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8034
8037
|
hint?: string | undefined;
|
|
8035
8038
|
messages?: {
|
|
8036
8039
|
text: string;
|
|
8037
|
-
type: "
|
|
8040
|
+
type: "success" | "error" | "info" | "warning";
|
|
8038
8041
|
id?: number | undefined;
|
|
8039
8042
|
}[] | undefined;
|
|
8040
8043
|
required?: boolean | undefined;
|
|
@@ -8058,7 +8061,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8058
8061
|
hint?: string | undefined;
|
|
8059
8062
|
messages?: {
|
|
8060
8063
|
text: string;
|
|
8061
|
-
type: "
|
|
8064
|
+
type: "success" | "error" | "info" | "warning";
|
|
8062
8065
|
id?: number | undefined;
|
|
8063
8066
|
}[] | undefined;
|
|
8064
8067
|
required?: boolean | undefined;
|
|
@@ -8087,7 +8090,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8087
8090
|
hint?: string | undefined;
|
|
8088
8091
|
messages?: {
|
|
8089
8092
|
text: string;
|
|
8090
|
-
type: "
|
|
8093
|
+
type: "success" | "error" | "info" | "warning";
|
|
8091
8094
|
id?: number | undefined;
|
|
8092
8095
|
}[] | undefined;
|
|
8093
8096
|
required?: boolean | undefined;
|
|
@@ -8102,7 +8105,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8102
8105
|
hint?: string | undefined;
|
|
8103
8106
|
messages?: {
|
|
8104
8107
|
text: string;
|
|
8105
|
-
type: "
|
|
8108
|
+
type: "success" | "error" | "info" | "warning";
|
|
8106
8109
|
id?: number | undefined;
|
|
8107
8110
|
}[] | undefined;
|
|
8108
8111
|
required?: boolean | undefined;
|
|
@@ -8123,7 +8126,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8123
8126
|
hint?: string | undefined;
|
|
8124
8127
|
messages?: {
|
|
8125
8128
|
text: string;
|
|
8126
|
-
type: "
|
|
8129
|
+
type: "success" | "error" | "info" | "warning";
|
|
8127
8130
|
id?: number | undefined;
|
|
8128
8131
|
}[] | undefined;
|
|
8129
8132
|
required?: boolean | undefined;
|
|
@@ -8148,7 +8151,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8148
8151
|
hint?: string | undefined;
|
|
8149
8152
|
messages?: {
|
|
8150
8153
|
text: string;
|
|
8151
|
-
type: "
|
|
8154
|
+
type: "success" | "error" | "info" | "warning";
|
|
8152
8155
|
id?: number | undefined;
|
|
8153
8156
|
}[] | undefined;
|
|
8154
8157
|
required?: boolean | undefined;
|
|
@@ -8169,7 +8172,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8169
8172
|
hint?: string | undefined;
|
|
8170
8173
|
messages?: {
|
|
8171
8174
|
text: string;
|
|
8172
|
-
type: "
|
|
8175
|
+
type: "success" | "error" | "info" | "warning";
|
|
8173
8176
|
id?: number | undefined;
|
|
8174
8177
|
}[] | undefined;
|
|
8175
8178
|
required?: boolean | undefined;
|
|
@@ -8189,7 +8192,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8189
8192
|
hint?: string | undefined;
|
|
8190
8193
|
messages?: {
|
|
8191
8194
|
text: string;
|
|
8192
|
-
type: "
|
|
8195
|
+
type: "success" | "error" | "info" | "warning";
|
|
8193
8196
|
id?: number | undefined;
|
|
8194
8197
|
}[] | undefined;
|
|
8195
8198
|
required?: boolean | undefined;
|
|
@@ -8208,7 +8211,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8208
8211
|
hint?: string | undefined;
|
|
8209
8212
|
messages?: {
|
|
8210
8213
|
text: string;
|
|
8211
|
-
type: "
|
|
8214
|
+
type: "success" | "error" | "info" | "warning";
|
|
8212
8215
|
id?: number | undefined;
|
|
8213
8216
|
}[] | undefined;
|
|
8214
8217
|
required?: boolean | undefined;
|
|
@@ -8230,7 +8233,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8230
8233
|
hint?: string | undefined;
|
|
8231
8234
|
messages?: {
|
|
8232
8235
|
text: string;
|
|
8233
|
-
type: "
|
|
8236
|
+
type: "success" | "error" | "info" | "warning";
|
|
8234
8237
|
id?: number | undefined;
|
|
8235
8238
|
}[] | undefined;
|
|
8236
8239
|
required?: boolean | undefined;
|
|
@@ -8252,7 +8255,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8252
8255
|
hint?: string | undefined;
|
|
8253
8256
|
messages?: {
|
|
8254
8257
|
text: string;
|
|
8255
|
-
type: "
|
|
8258
|
+
type: "success" | "error" | "info" | "warning";
|
|
8256
8259
|
id?: number | undefined;
|
|
8257
8260
|
}[] | undefined;
|
|
8258
8261
|
required?: boolean | undefined;
|
|
@@ -8271,7 +8274,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8271
8274
|
hint?: string | undefined;
|
|
8272
8275
|
messages?: {
|
|
8273
8276
|
text: string;
|
|
8274
|
-
type: "
|
|
8277
|
+
type: "success" | "error" | "info" | "warning";
|
|
8275
8278
|
id?: number | undefined;
|
|
8276
8279
|
}[] | undefined;
|
|
8277
8280
|
required?: boolean | undefined;
|
|
@@ -8298,7 +8301,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8298
8301
|
hint?: string | undefined;
|
|
8299
8302
|
messages?: {
|
|
8300
8303
|
text: string;
|
|
8301
|
-
type: "
|
|
8304
|
+
type: "success" | "error" | "info" | "warning";
|
|
8302
8305
|
id?: number | undefined;
|
|
8303
8306
|
}[] | undefined;
|
|
8304
8307
|
required?: boolean | undefined;
|
|
@@ -8319,7 +8322,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8319
8322
|
hint?: string | undefined;
|
|
8320
8323
|
messages?: {
|
|
8321
8324
|
text: string;
|
|
8322
|
-
type: "
|
|
8325
|
+
type: "success" | "error" | "info" | "warning";
|
|
8323
8326
|
id?: number | undefined;
|
|
8324
8327
|
}[] | undefined;
|
|
8325
8328
|
required?: boolean | undefined;
|
|
@@ -8342,7 +8345,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8342
8345
|
hint?: string | undefined;
|
|
8343
8346
|
messages?: {
|
|
8344
8347
|
text: string;
|
|
8345
|
-
type: "
|
|
8348
|
+
type: "success" | "error" | "info" | "warning";
|
|
8346
8349
|
id?: number | undefined;
|
|
8347
8350
|
}[] | undefined;
|
|
8348
8351
|
required?: boolean | undefined;
|
|
@@ -8591,7 +8594,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8591
8594
|
hint?: string | undefined;
|
|
8592
8595
|
messages?: {
|
|
8593
8596
|
text: string;
|
|
8594
|
-
type: "
|
|
8597
|
+
type: "success" | "error" | "info" | "warning";
|
|
8595
8598
|
id?: number | undefined;
|
|
8596
8599
|
}[] | undefined;
|
|
8597
8600
|
required?: boolean | undefined;
|
|
@@ -8609,7 +8612,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8609
8612
|
hint?: string | undefined;
|
|
8610
8613
|
messages?: {
|
|
8611
8614
|
text: string;
|
|
8612
|
-
type: "
|
|
8615
|
+
type: "success" | "error" | "info" | "warning";
|
|
8613
8616
|
id?: number | undefined;
|
|
8614
8617
|
}[] | undefined;
|
|
8615
8618
|
required?: boolean | undefined;
|
|
@@ -8633,7 +8636,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8633
8636
|
hint?: string | undefined;
|
|
8634
8637
|
messages?: {
|
|
8635
8638
|
text: string;
|
|
8636
|
-
type: "
|
|
8639
|
+
type: "success" | "error" | "info" | "warning";
|
|
8637
8640
|
id?: number | undefined;
|
|
8638
8641
|
}[] | undefined;
|
|
8639
8642
|
required?: boolean | undefined;
|
|
@@ -8657,7 +8660,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8657
8660
|
hint?: string | undefined;
|
|
8658
8661
|
messages?: {
|
|
8659
8662
|
text: string;
|
|
8660
|
-
type: "
|
|
8663
|
+
type: "success" | "error" | "info" | "warning";
|
|
8661
8664
|
id?: number | undefined;
|
|
8662
8665
|
}[] | undefined;
|
|
8663
8666
|
required?: boolean | undefined;
|
|
@@ -8681,7 +8684,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8681
8684
|
hint?: string | undefined;
|
|
8682
8685
|
messages?: {
|
|
8683
8686
|
text: string;
|
|
8684
|
-
type: "
|
|
8687
|
+
type: "success" | "error" | "info" | "warning";
|
|
8685
8688
|
id?: number | undefined;
|
|
8686
8689
|
}[] | undefined;
|
|
8687
8690
|
required?: boolean | undefined;
|
|
@@ -8710,7 +8713,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8710
8713
|
hint?: string | undefined;
|
|
8711
8714
|
messages?: {
|
|
8712
8715
|
text: string;
|
|
8713
|
-
type: "
|
|
8716
|
+
type: "success" | "error" | "info" | "warning";
|
|
8714
8717
|
id?: number | undefined;
|
|
8715
8718
|
}[] | undefined;
|
|
8716
8719
|
required?: boolean | undefined;
|
|
@@ -8725,7 +8728,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8725
8728
|
hint?: string | undefined;
|
|
8726
8729
|
messages?: {
|
|
8727
8730
|
text: string;
|
|
8728
|
-
type: "
|
|
8731
|
+
type: "success" | "error" | "info" | "warning";
|
|
8729
8732
|
id?: number | undefined;
|
|
8730
8733
|
}[] | undefined;
|
|
8731
8734
|
required?: boolean | undefined;
|
|
@@ -8746,7 +8749,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8746
8749
|
hint?: string | undefined;
|
|
8747
8750
|
messages?: {
|
|
8748
8751
|
text: string;
|
|
8749
|
-
type: "
|
|
8752
|
+
type: "success" | "error" | "info" | "warning";
|
|
8750
8753
|
id?: number | undefined;
|
|
8751
8754
|
}[] | undefined;
|
|
8752
8755
|
required?: boolean | undefined;
|
|
@@ -8771,7 +8774,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8771
8774
|
hint?: string | undefined;
|
|
8772
8775
|
messages?: {
|
|
8773
8776
|
text: string;
|
|
8774
|
-
type: "
|
|
8777
|
+
type: "success" | "error" | "info" | "warning";
|
|
8775
8778
|
id?: number | undefined;
|
|
8776
8779
|
}[] | undefined;
|
|
8777
8780
|
required?: boolean | undefined;
|
|
@@ -8792,7 +8795,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8792
8795
|
hint?: string | undefined;
|
|
8793
8796
|
messages?: {
|
|
8794
8797
|
text: string;
|
|
8795
|
-
type: "
|
|
8798
|
+
type: "success" | "error" | "info" | "warning";
|
|
8796
8799
|
id?: number | undefined;
|
|
8797
8800
|
}[] | undefined;
|
|
8798
8801
|
required?: boolean | undefined;
|
|
@@ -8812,7 +8815,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8812
8815
|
hint?: string | undefined;
|
|
8813
8816
|
messages?: {
|
|
8814
8817
|
text: string;
|
|
8815
|
-
type: "
|
|
8818
|
+
type: "success" | "error" | "info" | "warning";
|
|
8816
8819
|
id?: number | undefined;
|
|
8817
8820
|
}[] | undefined;
|
|
8818
8821
|
required?: boolean | undefined;
|
|
@@ -8831,7 +8834,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8831
8834
|
hint?: string | undefined;
|
|
8832
8835
|
messages?: {
|
|
8833
8836
|
text: string;
|
|
8834
|
-
type: "
|
|
8837
|
+
type: "success" | "error" | "info" | "warning";
|
|
8835
8838
|
id?: number | undefined;
|
|
8836
8839
|
}[] | undefined;
|
|
8837
8840
|
required?: boolean | undefined;
|
|
@@ -8853,7 +8856,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8853
8856
|
hint?: string | undefined;
|
|
8854
8857
|
messages?: {
|
|
8855
8858
|
text: string;
|
|
8856
|
-
type: "
|
|
8859
|
+
type: "success" | "error" | "info" | "warning";
|
|
8857
8860
|
id?: number | undefined;
|
|
8858
8861
|
}[] | undefined;
|
|
8859
8862
|
required?: boolean | undefined;
|
|
@@ -8875,7 +8878,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8875
8878
|
hint?: string | undefined;
|
|
8876
8879
|
messages?: {
|
|
8877
8880
|
text: string;
|
|
8878
|
-
type: "
|
|
8881
|
+
type: "success" | "error" | "info" | "warning";
|
|
8879
8882
|
id?: number | undefined;
|
|
8880
8883
|
}[] | undefined;
|
|
8881
8884
|
required?: boolean | undefined;
|
|
@@ -8894,7 +8897,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8894
8897
|
hint?: string | undefined;
|
|
8895
8898
|
messages?: {
|
|
8896
8899
|
text: string;
|
|
8897
|
-
type: "
|
|
8900
|
+
type: "success" | "error" | "info" | "warning";
|
|
8898
8901
|
id?: number | undefined;
|
|
8899
8902
|
}[] | undefined;
|
|
8900
8903
|
required?: boolean | undefined;
|
|
@@ -8921,7 +8924,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8921
8924
|
hint?: string | undefined;
|
|
8922
8925
|
messages?: {
|
|
8923
8926
|
text: string;
|
|
8924
|
-
type: "
|
|
8927
|
+
type: "success" | "error" | "info" | "warning";
|
|
8925
8928
|
id?: number | undefined;
|
|
8926
8929
|
}[] | undefined;
|
|
8927
8930
|
required?: boolean | undefined;
|
|
@@ -8942,7 +8945,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8942
8945
|
hint?: string | undefined;
|
|
8943
8946
|
messages?: {
|
|
8944
8947
|
text: string;
|
|
8945
|
-
type: "
|
|
8948
|
+
type: "success" | "error" | "info" | "warning";
|
|
8946
8949
|
id?: number | undefined;
|
|
8947
8950
|
}[] | undefined;
|
|
8948
8951
|
required?: boolean | undefined;
|
|
@@ -8965,7 +8968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8965
8968
|
hint?: string | undefined;
|
|
8966
8969
|
messages?: {
|
|
8967
8970
|
text: string;
|
|
8968
|
-
type: "
|
|
8971
|
+
type: "success" | "error" | "info" | "warning";
|
|
8969
8972
|
id?: number | undefined;
|
|
8970
8973
|
}[] | undefined;
|
|
8971
8974
|
required?: boolean | undefined;
|
|
@@ -9219,7 +9222,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9219
9222
|
hint?: string | undefined;
|
|
9220
9223
|
messages?: {
|
|
9221
9224
|
text: string;
|
|
9222
|
-
type: "
|
|
9225
|
+
type: "success" | "error" | "info" | "warning";
|
|
9223
9226
|
id?: number | undefined;
|
|
9224
9227
|
}[] | undefined;
|
|
9225
9228
|
required?: boolean | undefined;
|
|
@@ -9237,7 +9240,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9237
9240
|
hint?: string | undefined;
|
|
9238
9241
|
messages?: {
|
|
9239
9242
|
text: string;
|
|
9240
|
-
type: "
|
|
9243
|
+
type: "success" | "error" | "info" | "warning";
|
|
9241
9244
|
id?: number | undefined;
|
|
9242
9245
|
}[] | undefined;
|
|
9243
9246
|
required?: boolean | undefined;
|
|
@@ -9261,7 +9264,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9261
9264
|
hint?: string | undefined;
|
|
9262
9265
|
messages?: {
|
|
9263
9266
|
text: string;
|
|
9264
|
-
type: "
|
|
9267
|
+
type: "success" | "error" | "info" | "warning";
|
|
9265
9268
|
id?: number | undefined;
|
|
9266
9269
|
}[] | undefined;
|
|
9267
9270
|
required?: boolean | undefined;
|
|
@@ -9285,7 +9288,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9285
9288
|
hint?: string | undefined;
|
|
9286
9289
|
messages?: {
|
|
9287
9290
|
text: string;
|
|
9288
|
-
type: "
|
|
9291
|
+
type: "success" | "error" | "info" | "warning";
|
|
9289
9292
|
id?: number | undefined;
|
|
9290
9293
|
}[] | undefined;
|
|
9291
9294
|
required?: boolean | undefined;
|
|
@@ -9309,7 +9312,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9309
9312
|
hint?: string | undefined;
|
|
9310
9313
|
messages?: {
|
|
9311
9314
|
text: string;
|
|
9312
|
-
type: "
|
|
9315
|
+
type: "success" | "error" | "info" | "warning";
|
|
9313
9316
|
id?: number | undefined;
|
|
9314
9317
|
}[] | undefined;
|
|
9315
9318
|
required?: boolean | undefined;
|
|
@@ -9334,7 +9337,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9334
9337
|
hint?: string | undefined;
|
|
9335
9338
|
messages?: {
|
|
9336
9339
|
text: string;
|
|
9337
|
-
type: "
|
|
9340
|
+
type: "success" | "error" | "info" | "warning";
|
|
9338
9341
|
id?: number | undefined;
|
|
9339
9342
|
}[] | undefined;
|
|
9340
9343
|
required?: boolean | undefined;
|
|
@@ -9349,7 +9352,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9349
9352
|
hint?: string | undefined;
|
|
9350
9353
|
messages?: {
|
|
9351
9354
|
text: string;
|
|
9352
|
-
type: "
|
|
9355
|
+
type: "success" | "error" | "info" | "warning";
|
|
9353
9356
|
id?: number | undefined;
|
|
9354
9357
|
}[] | undefined;
|
|
9355
9358
|
required?: boolean | undefined;
|
|
@@ -9370,7 +9373,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9370
9373
|
hint?: string | undefined;
|
|
9371
9374
|
messages?: {
|
|
9372
9375
|
text: string;
|
|
9373
|
-
type: "
|
|
9376
|
+
type: "success" | "error" | "info" | "warning";
|
|
9374
9377
|
id?: number | undefined;
|
|
9375
9378
|
}[] | undefined;
|
|
9376
9379
|
required?: boolean | undefined;
|
|
@@ -9395,7 +9398,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9395
9398
|
hint?: string | undefined;
|
|
9396
9399
|
messages?: {
|
|
9397
9400
|
text: string;
|
|
9398
|
-
type: "
|
|
9401
|
+
type: "success" | "error" | "info" | "warning";
|
|
9399
9402
|
id?: number | undefined;
|
|
9400
9403
|
}[] | undefined;
|
|
9401
9404
|
required?: boolean | undefined;
|
|
@@ -9416,7 +9419,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9416
9419
|
hint?: string | undefined;
|
|
9417
9420
|
messages?: {
|
|
9418
9421
|
text: string;
|
|
9419
|
-
type: "
|
|
9422
|
+
type: "success" | "error" | "info" | "warning";
|
|
9420
9423
|
id?: number | undefined;
|
|
9421
9424
|
}[] | undefined;
|
|
9422
9425
|
required?: boolean | undefined;
|
|
@@ -9436,7 +9439,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9436
9439
|
hint?: string | undefined;
|
|
9437
9440
|
messages?: {
|
|
9438
9441
|
text: string;
|
|
9439
|
-
type: "
|
|
9442
|
+
type: "success" | "error" | "info" | "warning";
|
|
9440
9443
|
id?: number | undefined;
|
|
9441
9444
|
}[] | undefined;
|
|
9442
9445
|
required?: boolean | undefined;
|
|
@@ -9455,7 +9458,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9455
9458
|
hint?: string | undefined;
|
|
9456
9459
|
messages?: {
|
|
9457
9460
|
text: string;
|
|
9458
|
-
type: "
|
|
9461
|
+
type: "success" | "error" | "info" | "warning";
|
|
9459
9462
|
id?: number | undefined;
|
|
9460
9463
|
}[] | undefined;
|
|
9461
9464
|
required?: boolean | undefined;
|
|
@@ -9477,7 +9480,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9477
9480
|
hint?: string | undefined;
|
|
9478
9481
|
messages?: {
|
|
9479
9482
|
text: string;
|
|
9480
|
-
type: "
|
|
9483
|
+
type: "success" | "error" | "info" | "warning";
|
|
9481
9484
|
id?: number | undefined;
|
|
9482
9485
|
}[] | undefined;
|
|
9483
9486
|
required?: boolean | undefined;
|
|
@@ -9499,7 +9502,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9499
9502
|
hint?: string | undefined;
|
|
9500
9503
|
messages?: {
|
|
9501
9504
|
text: string;
|
|
9502
|
-
type: "
|
|
9505
|
+
type: "success" | "error" | "info" | "warning";
|
|
9503
9506
|
id?: number | undefined;
|
|
9504
9507
|
}[] | undefined;
|
|
9505
9508
|
required?: boolean | undefined;
|
|
@@ -9518,7 +9521,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9518
9521
|
hint?: string | undefined;
|
|
9519
9522
|
messages?: {
|
|
9520
9523
|
text: string;
|
|
9521
|
-
type: "
|
|
9524
|
+
type: "success" | "error" | "info" | "warning";
|
|
9522
9525
|
id?: number | undefined;
|
|
9523
9526
|
}[] | undefined;
|
|
9524
9527
|
required?: boolean | undefined;
|
|
@@ -9545,7 +9548,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9545
9548
|
hint?: string | undefined;
|
|
9546
9549
|
messages?: {
|
|
9547
9550
|
text: string;
|
|
9548
|
-
type: "
|
|
9551
|
+
type: "success" | "error" | "info" | "warning";
|
|
9549
9552
|
id?: number | undefined;
|
|
9550
9553
|
}[] | undefined;
|
|
9551
9554
|
required?: boolean | undefined;
|
|
@@ -9566,7 +9569,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9566
9569
|
hint?: string | undefined;
|
|
9567
9570
|
messages?: {
|
|
9568
9571
|
text: string;
|
|
9569
|
-
type: "
|
|
9572
|
+
type: "success" | "error" | "info" | "warning";
|
|
9570
9573
|
id?: number | undefined;
|
|
9571
9574
|
}[] | undefined;
|
|
9572
9575
|
required?: boolean | undefined;
|
|
@@ -9589,7 +9592,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9589
9592
|
hint?: string | undefined;
|
|
9590
9593
|
messages?: {
|
|
9591
9594
|
text: string;
|
|
9592
|
-
type: "
|
|
9595
|
+
type: "success" | "error" | "info" | "warning";
|
|
9593
9596
|
id?: number | undefined;
|
|
9594
9597
|
}[] | undefined;
|
|
9595
9598
|
required?: boolean | undefined;
|
|
@@ -9820,7 +9823,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9820
9823
|
hint?: string | undefined;
|
|
9821
9824
|
messages?: {
|
|
9822
9825
|
text: string;
|
|
9823
|
-
type: "
|
|
9826
|
+
type: "success" | "error" | "info" | "warning";
|
|
9824
9827
|
id?: number | undefined;
|
|
9825
9828
|
}[] | undefined;
|
|
9826
9829
|
required?: boolean | undefined;
|
|
@@ -9838,7 +9841,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9838
9841
|
hint?: string | undefined;
|
|
9839
9842
|
messages?: {
|
|
9840
9843
|
text: string;
|
|
9841
|
-
type: "
|
|
9844
|
+
type: "success" | "error" | "info" | "warning";
|
|
9842
9845
|
id?: number | undefined;
|
|
9843
9846
|
}[] | undefined;
|
|
9844
9847
|
required?: boolean | undefined;
|
|
@@ -9862,7 +9865,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9862
9865
|
hint?: string | undefined;
|
|
9863
9866
|
messages?: {
|
|
9864
9867
|
text: string;
|
|
9865
|
-
type: "
|
|
9868
|
+
type: "success" | "error" | "info" | "warning";
|
|
9866
9869
|
id?: number | undefined;
|
|
9867
9870
|
}[] | undefined;
|
|
9868
9871
|
required?: boolean | undefined;
|
|
@@ -9886,7 +9889,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9886
9889
|
hint?: string | undefined;
|
|
9887
9890
|
messages?: {
|
|
9888
9891
|
text: string;
|
|
9889
|
-
type: "
|
|
9892
|
+
type: "success" | "error" | "info" | "warning";
|
|
9890
9893
|
id?: number | undefined;
|
|
9891
9894
|
}[] | undefined;
|
|
9892
9895
|
required?: boolean | undefined;
|
|
@@ -9910,7 +9913,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9910
9913
|
hint?: string | undefined;
|
|
9911
9914
|
messages?: {
|
|
9912
9915
|
text: string;
|
|
9913
|
-
type: "
|
|
9916
|
+
type: "success" | "error" | "info" | "warning";
|
|
9914
9917
|
id?: number | undefined;
|
|
9915
9918
|
}[] | undefined;
|
|
9916
9919
|
required?: boolean | undefined;
|
|
@@ -9939,7 +9942,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9939
9942
|
hint?: string | undefined;
|
|
9940
9943
|
messages?: {
|
|
9941
9944
|
text: string;
|
|
9942
|
-
type: "
|
|
9945
|
+
type: "success" | "error" | "info" | "warning";
|
|
9943
9946
|
id?: number | undefined;
|
|
9944
9947
|
}[] | undefined;
|
|
9945
9948
|
required?: boolean | undefined;
|
|
@@ -9954,7 +9957,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9954
9957
|
hint?: string | undefined;
|
|
9955
9958
|
messages?: {
|
|
9956
9959
|
text: string;
|
|
9957
|
-
type: "
|
|
9960
|
+
type: "success" | "error" | "info" | "warning";
|
|
9958
9961
|
id?: number | undefined;
|
|
9959
9962
|
}[] | undefined;
|
|
9960
9963
|
required?: boolean | undefined;
|
|
@@ -9975,7 +9978,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9975
9978
|
hint?: string | undefined;
|
|
9976
9979
|
messages?: {
|
|
9977
9980
|
text: string;
|
|
9978
|
-
type: "
|
|
9981
|
+
type: "success" | "error" | "info" | "warning";
|
|
9979
9982
|
id?: number | undefined;
|
|
9980
9983
|
}[] | undefined;
|
|
9981
9984
|
required?: boolean | undefined;
|
|
@@ -10000,7 +10003,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10000
10003
|
hint?: string | undefined;
|
|
10001
10004
|
messages?: {
|
|
10002
10005
|
text: string;
|
|
10003
|
-
type: "
|
|
10006
|
+
type: "success" | "error" | "info" | "warning";
|
|
10004
10007
|
id?: number | undefined;
|
|
10005
10008
|
}[] | undefined;
|
|
10006
10009
|
required?: boolean | undefined;
|
|
@@ -10021,7 +10024,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10021
10024
|
hint?: string | undefined;
|
|
10022
10025
|
messages?: {
|
|
10023
10026
|
text: string;
|
|
10024
|
-
type: "
|
|
10027
|
+
type: "success" | "error" | "info" | "warning";
|
|
10025
10028
|
id?: number | undefined;
|
|
10026
10029
|
}[] | undefined;
|
|
10027
10030
|
required?: boolean | undefined;
|
|
@@ -10041,7 +10044,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10041
10044
|
hint?: string | undefined;
|
|
10042
10045
|
messages?: {
|
|
10043
10046
|
text: string;
|
|
10044
|
-
type: "
|
|
10047
|
+
type: "success" | "error" | "info" | "warning";
|
|
10045
10048
|
id?: number | undefined;
|
|
10046
10049
|
}[] | undefined;
|
|
10047
10050
|
required?: boolean | undefined;
|
|
@@ -10060,7 +10063,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10060
10063
|
hint?: string | undefined;
|
|
10061
10064
|
messages?: {
|
|
10062
10065
|
text: string;
|
|
10063
|
-
type: "
|
|
10066
|
+
type: "success" | "error" | "info" | "warning";
|
|
10064
10067
|
id?: number | undefined;
|
|
10065
10068
|
}[] | undefined;
|
|
10066
10069
|
required?: boolean | undefined;
|
|
@@ -10082,7 +10085,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10082
10085
|
hint?: string | undefined;
|
|
10083
10086
|
messages?: {
|
|
10084
10087
|
text: string;
|
|
10085
|
-
type: "
|
|
10088
|
+
type: "success" | "error" | "info" | "warning";
|
|
10086
10089
|
id?: number | undefined;
|
|
10087
10090
|
}[] | undefined;
|
|
10088
10091
|
required?: boolean | undefined;
|
|
@@ -10104,7 +10107,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10104
10107
|
hint?: string | undefined;
|
|
10105
10108
|
messages?: {
|
|
10106
10109
|
text: string;
|
|
10107
|
-
type: "
|
|
10110
|
+
type: "success" | "error" | "info" | "warning";
|
|
10108
10111
|
id?: number | undefined;
|
|
10109
10112
|
}[] | undefined;
|
|
10110
10113
|
required?: boolean | undefined;
|
|
@@ -10123,7 +10126,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10123
10126
|
hint?: string | undefined;
|
|
10124
10127
|
messages?: {
|
|
10125
10128
|
text: string;
|
|
10126
|
-
type: "
|
|
10129
|
+
type: "success" | "error" | "info" | "warning";
|
|
10127
10130
|
id?: number | undefined;
|
|
10128
10131
|
}[] | undefined;
|
|
10129
10132
|
required?: boolean | undefined;
|
|
@@ -10150,7 +10153,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10150
10153
|
hint?: string | undefined;
|
|
10151
10154
|
messages?: {
|
|
10152
10155
|
text: string;
|
|
10153
|
-
type: "
|
|
10156
|
+
type: "success" | "error" | "info" | "warning";
|
|
10154
10157
|
id?: number | undefined;
|
|
10155
10158
|
}[] | undefined;
|
|
10156
10159
|
required?: boolean | undefined;
|
|
@@ -10171,7 +10174,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10171
10174
|
hint?: string | undefined;
|
|
10172
10175
|
messages?: {
|
|
10173
10176
|
text: string;
|
|
10174
|
-
type: "
|
|
10177
|
+
type: "success" | "error" | "info" | "warning";
|
|
10175
10178
|
id?: number | undefined;
|
|
10176
10179
|
}[] | undefined;
|
|
10177
10180
|
required?: boolean | undefined;
|
|
@@ -10194,7 +10197,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10194
10197
|
hint?: string | undefined;
|
|
10195
10198
|
messages?: {
|
|
10196
10199
|
text: string;
|
|
10197
|
-
type: "
|
|
10200
|
+
type: "success" | "error" | "info" | "warning";
|
|
10198
10201
|
id?: number | undefined;
|
|
10199
10202
|
}[] | undefined;
|
|
10200
10203
|
required?: boolean | undefined;
|
|
@@ -10427,7 +10430,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10427
10430
|
hint?: string | undefined;
|
|
10428
10431
|
messages?: {
|
|
10429
10432
|
text: string;
|
|
10430
|
-
type: "
|
|
10433
|
+
type: "success" | "error" | "info" | "warning";
|
|
10431
10434
|
id?: number | undefined;
|
|
10432
10435
|
}[] | undefined;
|
|
10433
10436
|
required?: boolean | undefined;
|
|
@@ -10445,7 +10448,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10445
10448
|
hint?: string | undefined;
|
|
10446
10449
|
messages?: {
|
|
10447
10450
|
text: string;
|
|
10448
|
-
type: "
|
|
10451
|
+
type: "success" | "error" | "info" | "warning";
|
|
10449
10452
|
id?: number | undefined;
|
|
10450
10453
|
}[] | undefined;
|
|
10451
10454
|
required?: boolean | undefined;
|
|
@@ -10469,7 +10472,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10469
10472
|
hint?: string | undefined;
|
|
10470
10473
|
messages?: {
|
|
10471
10474
|
text: string;
|
|
10472
|
-
type: "
|
|
10475
|
+
type: "success" | "error" | "info" | "warning";
|
|
10473
10476
|
id?: number | undefined;
|
|
10474
10477
|
}[] | undefined;
|
|
10475
10478
|
required?: boolean | undefined;
|
|
@@ -10493,7 +10496,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10493
10496
|
hint?: string | undefined;
|
|
10494
10497
|
messages?: {
|
|
10495
10498
|
text: string;
|
|
10496
|
-
type: "
|
|
10499
|
+
type: "success" | "error" | "info" | "warning";
|
|
10497
10500
|
id?: number | undefined;
|
|
10498
10501
|
}[] | undefined;
|
|
10499
10502
|
required?: boolean | undefined;
|
|
@@ -10517,7 +10520,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10517
10520
|
hint?: string | undefined;
|
|
10518
10521
|
messages?: {
|
|
10519
10522
|
text: string;
|
|
10520
|
-
type: "
|
|
10523
|
+
type: "success" | "error" | "info" | "warning";
|
|
10521
10524
|
id?: number | undefined;
|
|
10522
10525
|
}[] | undefined;
|
|
10523
10526
|
required?: boolean | undefined;
|
|
@@ -10542,7 +10545,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10542
10545
|
hint?: string | undefined;
|
|
10543
10546
|
messages?: {
|
|
10544
10547
|
text: string;
|
|
10545
|
-
type: "
|
|
10548
|
+
type: "success" | "error" | "info" | "warning";
|
|
10546
10549
|
id?: number | undefined;
|
|
10547
10550
|
}[] | undefined;
|
|
10548
10551
|
required?: boolean | undefined;
|
|
@@ -10557,7 +10560,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10557
10560
|
hint?: string | undefined;
|
|
10558
10561
|
messages?: {
|
|
10559
10562
|
text: string;
|
|
10560
|
-
type: "
|
|
10563
|
+
type: "success" | "error" | "info" | "warning";
|
|
10561
10564
|
id?: number | undefined;
|
|
10562
10565
|
}[] | undefined;
|
|
10563
10566
|
required?: boolean | undefined;
|
|
@@ -10578,7 +10581,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10578
10581
|
hint?: string | undefined;
|
|
10579
10582
|
messages?: {
|
|
10580
10583
|
text: string;
|
|
10581
|
-
type: "
|
|
10584
|
+
type: "success" | "error" | "info" | "warning";
|
|
10582
10585
|
id?: number | undefined;
|
|
10583
10586
|
}[] | undefined;
|
|
10584
10587
|
required?: boolean | undefined;
|
|
@@ -10603,7 +10606,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10603
10606
|
hint?: string | undefined;
|
|
10604
10607
|
messages?: {
|
|
10605
10608
|
text: string;
|
|
10606
|
-
type: "
|
|
10609
|
+
type: "success" | "error" | "info" | "warning";
|
|
10607
10610
|
id?: number | undefined;
|
|
10608
10611
|
}[] | undefined;
|
|
10609
10612
|
required?: boolean | undefined;
|
|
@@ -10624,7 +10627,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10624
10627
|
hint?: string | undefined;
|
|
10625
10628
|
messages?: {
|
|
10626
10629
|
text: string;
|
|
10627
|
-
type: "
|
|
10630
|
+
type: "success" | "error" | "info" | "warning";
|
|
10628
10631
|
id?: number | undefined;
|
|
10629
10632
|
}[] | undefined;
|
|
10630
10633
|
required?: boolean | undefined;
|
|
@@ -10644,7 +10647,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10644
10647
|
hint?: string | undefined;
|
|
10645
10648
|
messages?: {
|
|
10646
10649
|
text: string;
|
|
10647
|
-
type: "
|
|
10650
|
+
type: "success" | "error" | "info" | "warning";
|
|
10648
10651
|
id?: number | undefined;
|
|
10649
10652
|
}[] | undefined;
|
|
10650
10653
|
required?: boolean | undefined;
|
|
@@ -10663,7 +10666,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10663
10666
|
hint?: string | undefined;
|
|
10664
10667
|
messages?: {
|
|
10665
10668
|
text: string;
|
|
10666
|
-
type: "
|
|
10669
|
+
type: "success" | "error" | "info" | "warning";
|
|
10667
10670
|
id?: number | undefined;
|
|
10668
10671
|
}[] | undefined;
|
|
10669
10672
|
required?: boolean | undefined;
|
|
@@ -10685,7 +10688,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10685
10688
|
hint?: string | undefined;
|
|
10686
10689
|
messages?: {
|
|
10687
10690
|
text: string;
|
|
10688
|
-
type: "
|
|
10691
|
+
type: "success" | "error" | "info" | "warning";
|
|
10689
10692
|
id?: number | undefined;
|
|
10690
10693
|
}[] | undefined;
|
|
10691
10694
|
required?: boolean | undefined;
|
|
@@ -10707,7 +10710,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10707
10710
|
hint?: string | undefined;
|
|
10708
10711
|
messages?: {
|
|
10709
10712
|
text: string;
|
|
10710
|
-
type: "
|
|
10713
|
+
type: "success" | "error" | "info" | "warning";
|
|
10711
10714
|
id?: number | undefined;
|
|
10712
10715
|
}[] | undefined;
|
|
10713
10716
|
required?: boolean | undefined;
|
|
@@ -10726,7 +10729,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10726
10729
|
hint?: string | undefined;
|
|
10727
10730
|
messages?: {
|
|
10728
10731
|
text: string;
|
|
10729
|
-
type: "
|
|
10732
|
+
type: "success" | "error" | "info" | "warning";
|
|
10730
10733
|
id?: number | undefined;
|
|
10731
10734
|
}[] | undefined;
|
|
10732
10735
|
required?: boolean | undefined;
|
|
@@ -10753,7 +10756,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10753
10756
|
hint?: string | undefined;
|
|
10754
10757
|
messages?: {
|
|
10755
10758
|
text: string;
|
|
10756
|
-
type: "
|
|
10759
|
+
type: "success" | "error" | "info" | "warning";
|
|
10757
10760
|
id?: number | undefined;
|
|
10758
10761
|
}[] | undefined;
|
|
10759
10762
|
required?: boolean | undefined;
|
|
@@ -10774,7 +10777,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10774
10777
|
hint?: string | undefined;
|
|
10775
10778
|
messages?: {
|
|
10776
10779
|
text: string;
|
|
10777
|
-
type: "
|
|
10780
|
+
type: "success" | "error" | "info" | "warning";
|
|
10778
10781
|
id?: number | undefined;
|
|
10779
10782
|
}[] | undefined;
|
|
10780
10783
|
required?: boolean | undefined;
|
|
@@ -10797,7 +10800,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10797
10800
|
hint?: string | undefined;
|
|
10798
10801
|
messages?: {
|
|
10799
10802
|
text: string;
|
|
10800
|
-
type: "
|
|
10803
|
+
type: "success" | "error" | "info" | "warning";
|
|
10801
10804
|
id?: number | undefined;
|
|
10802
10805
|
}[] | undefined;
|
|
10803
10806
|
required?: boolean | undefined;
|
|
@@ -11028,7 +11031,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11028
11031
|
hint?: string | undefined;
|
|
11029
11032
|
messages?: {
|
|
11030
11033
|
text: string;
|
|
11031
|
-
type: "
|
|
11034
|
+
type: "success" | "error" | "info" | "warning";
|
|
11032
11035
|
id?: number | undefined;
|
|
11033
11036
|
}[] | undefined;
|
|
11034
11037
|
required?: boolean | undefined;
|
|
@@ -11046,7 +11049,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11046
11049
|
hint?: string | undefined;
|
|
11047
11050
|
messages?: {
|
|
11048
11051
|
text: string;
|
|
11049
|
-
type: "
|
|
11052
|
+
type: "success" | "error" | "info" | "warning";
|
|
11050
11053
|
id?: number | undefined;
|
|
11051
11054
|
}[] | undefined;
|
|
11052
11055
|
required?: boolean | undefined;
|
|
@@ -11070,7 +11073,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11070
11073
|
hint?: string | undefined;
|
|
11071
11074
|
messages?: {
|
|
11072
11075
|
text: string;
|
|
11073
|
-
type: "
|
|
11076
|
+
type: "success" | "error" | "info" | "warning";
|
|
11074
11077
|
id?: number | undefined;
|
|
11075
11078
|
}[] | undefined;
|
|
11076
11079
|
required?: boolean | undefined;
|
|
@@ -11094,7 +11097,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11094
11097
|
hint?: string | undefined;
|
|
11095
11098
|
messages?: {
|
|
11096
11099
|
text: string;
|
|
11097
|
-
type: "
|
|
11100
|
+
type: "success" | "error" | "info" | "warning";
|
|
11098
11101
|
id?: number | undefined;
|
|
11099
11102
|
}[] | undefined;
|
|
11100
11103
|
required?: boolean | undefined;
|
|
@@ -11118,7 +11121,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11118
11121
|
hint?: string | undefined;
|
|
11119
11122
|
messages?: {
|
|
11120
11123
|
text: string;
|
|
11121
|
-
type: "
|
|
11124
|
+
type: "success" | "error" | "info" | "warning";
|
|
11122
11125
|
id?: number | undefined;
|
|
11123
11126
|
}[] | undefined;
|
|
11124
11127
|
required?: boolean | undefined;
|
|
@@ -11147,7 +11150,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11147
11150
|
hint?: string | undefined;
|
|
11148
11151
|
messages?: {
|
|
11149
11152
|
text: string;
|
|
11150
|
-
type: "
|
|
11153
|
+
type: "success" | "error" | "info" | "warning";
|
|
11151
11154
|
id?: number | undefined;
|
|
11152
11155
|
}[] | undefined;
|
|
11153
11156
|
required?: boolean | undefined;
|
|
@@ -11162,7 +11165,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11162
11165
|
hint?: string | undefined;
|
|
11163
11166
|
messages?: {
|
|
11164
11167
|
text: string;
|
|
11165
|
-
type: "
|
|
11168
|
+
type: "success" | "error" | "info" | "warning";
|
|
11166
11169
|
id?: number | undefined;
|
|
11167
11170
|
}[] | undefined;
|
|
11168
11171
|
required?: boolean | undefined;
|
|
@@ -11183,7 +11186,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11183
11186
|
hint?: string | undefined;
|
|
11184
11187
|
messages?: {
|
|
11185
11188
|
text: string;
|
|
11186
|
-
type: "
|
|
11189
|
+
type: "success" | "error" | "info" | "warning";
|
|
11187
11190
|
id?: number | undefined;
|
|
11188
11191
|
}[] | undefined;
|
|
11189
11192
|
required?: boolean | undefined;
|
|
@@ -11208,7 +11211,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11208
11211
|
hint?: string | undefined;
|
|
11209
11212
|
messages?: {
|
|
11210
11213
|
text: string;
|
|
11211
|
-
type: "
|
|
11214
|
+
type: "success" | "error" | "info" | "warning";
|
|
11212
11215
|
id?: number | undefined;
|
|
11213
11216
|
}[] | undefined;
|
|
11214
11217
|
required?: boolean | undefined;
|
|
@@ -11229,7 +11232,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11229
11232
|
hint?: string | undefined;
|
|
11230
11233
|
messages?: {
|
|
11231
11234
|
text: string;
|
|
11232
|
-
type: "
|
|
11235
|
+
type: "success" | "error" | "info" | "warning";
|
|
11233
11236
|
id?: number | undefined;
|
|
11234
11237
|
}[] | undefined;
|
|
11235
11238
|
required?: boolean | undefined;
|
|
@@ -11249,7 +11252,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11249
11252
|
hint?: string | undefined;
|
|
11250
11253
|
messages?: {
|
|
11251
11254
|
text: string;
|
|
11252
|
-
type: "
|
|
11255
|
+
type: "success" | "error" | "info" | "warning";
|
|
11253
11256
|
id?: number | undefined;
|
|
11254
11257
|
}[] | undefined;
|
|
11255
11258
|
required?: boolean | undefined;
|
|
@@ -11268,7 +11271,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11268
11271
|
hint?: string | undefined;
|
|
11269
11272
|
messages?: {
|
|
11270
11273
|
text: string;
|
|
11271
|
-
type: "
|
|
11274
|
+
type: "success" | "error" | "info" | "warning";
|
|
11272
11275
|
id?: number | undefined;
|
|
11273
11276
|
}[] | undefined;
|
|
11274
11277
|
required?: boolean | undefined;
|
|
@@ -11290,7 +11293,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11290
11293
|
hint?: string | undefined;
|
|
11291
11294
|
messages?: {
|
|
11292
11295
|
text: string;
|
|
11293
|
-
type: "
|
|
11296
|
+
type: "success" | "error" | "info" | "warning";
|
|
11294
11297
|
id?: number | undefined;
|
|
11295
11298
|
}[] | undefined;
|
|
11296
11299
|
required?: boolean | undefined;
|
|
@@ -11312,7 +11315,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11312
11315
|
hint?: string | undefined;
|
|
11313
11316
|
messages?: {
|
|
11314
11317
|
text: string;
|
|
11315
|
-
type: "
|
|
11318
|
+
type: "success" | "error" | "info" | "warning";
|
|
11316
11319
|
id?: number | undefined;
|
|
11317
11320
|
}[] | undefined;
|
|
11318
11321
|
required?: boolean | undefined;
|
|
@@ -11331,7 +11334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11331
11334
|
hint?: string | undefined;
|
|
11332
11335
|
messages?: {
|
|
11333
11336
|
text: string;
|
|
11334
|
-
type: "
|
|
11337
|
+
type: "success" | "error" | "info" | "warning";
|
|
11335
11338
|
id?: number | undefined;
|
|
11336
11339
|
}[] | undefined;
|
|
11337
11340
|
required?: boolean | undefined;
|
|
@@ -11358,7 +11361,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11358
11361
|
hint?: string | undefined;
|
|
11359
11362
|
messages?: {
|
|
11360
11363
|
text: string;
|
|
11361
|
-
type: "
|
|
11364
|
+
type: "success" | "error" | "info" | "warning";
|
|
11362
11365
|
id?: number | undefined;
|
|
11363
11366
|
}[] | undefined;
|
|
11364
11367
|
required?: boolean | undefined;
|
|
@@ -11379,7 +11382,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11379
11382
|
hint?: string | undefined;
|
|
11380
11383
|
messages?: {
|
|
11381
11384
|
text: string;
|
|
11382
|
-
type: "
|
|
11385
|
+
type: "success" | "error" | "info" | "warning";
|
|
11383
11386
|
id?: number | undefined;
|
|
11384
11387
|
}[] | undefined;
|
|
11385
11388
|
required?: boolean | undefined;
|
|
@@ -11402,7 +11405,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11402
11405
|
hint?: string | undefined;
|
|
11403
11406
|
messages?: {
|
|
11404
11407
|
text: string;
|
|
11405
|
-
type: "
|
|
11408
|
+
type: "success" | "error" | "info" | "warning";
|
|
11406
11409
|
id?: number | undefined;
|
|
11407
11410
|
}[] | undefined;
|
|
11408
11411
|
required?: boolean | undefined;
|
|
@@ -11708,7 +11711,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11708
11711
|
};
|
|
11709
11712
|
};
|
|
11710
11713
|
output: {
|
|
11711
|
-
prompt: "
|
|
11714
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
11712
11715
|
language: string;
|
|
11713
11716
|
}[];
|
|
11714
11717
|
outputFormat: "json";
|
|
@@ -11746,7 +11749,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11746
11749
|
$get: {
|
|
11747
11750
|
input: {
|
|
11748
11751
|
param: {
|
|
11749
|
-
prompt: "
|
|
11752
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
11750
11753
|
language: string;
|
|
11751
11754
|
};
|
|
11752
11755
|
} & {
|
|
@@ -11768,7 +11771,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11768
11771
|
$put: {
|
|
11769
11772
|
input: {
|
|
11770
11773
|
param: {
|
|
11771
|
-
prompt: "
|
|
11774
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
11772
11775
|
language: string;
|
|
11773
11776
|
};
|
|
11774
11777
|
} & {
|
|
@@ -11792,7 +11795,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11792
11795
|
$delete: {
|
|
11793
11796
|
input: {
|
|
11794
11797
|
param: {
|
|
11795
|
-
prompt: "
|
|
11798
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
11796
11799
|
language: string;
|
|
11797
11800
|
};
|
|
11798
11801
|
} & {
|
|
@@ -12675,7 +12678,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12675
12678
|
};
|
|
12676
12679
|
} | {
|
|
12677
12680
|
mode: "inline";
|
|
12678
|
-
status: "
|
|
12681
|
+
status: "success" | "error";
|
|
12679
12682
|
connection_id: string;
|
|
12680
12683
|
connection_name: string;
|
|
12681
12684
|
strategy: string;
|
|
@@ -13404,7 +13407,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13404
13407
|
log_type: string;
|
|
13405
13408
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
13406
13409
|
actor: {
|
|
13407
|
-
type: "
|
|
13410
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
13408
13411
|
id?: string | undefined;
|
|
13409
13412
|
email?: string | undefined;
|
|
13410
13413
|
org_id?: string | undefined;
|
|
@@ -14075,7 +14078,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14075
14078
|
};
|
|
14076
14079
|
};
|
|
14077
14080
|
output: {
|
|
14078
|
-
type: "
|
|
14081
|
+
type: "fn" | "sapi" | "i" | "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" | "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" | "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" | "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" | "w" | "wn" | "wum";
|
|
14079
14082
|
date: string;
|
|
14080
14083
|
isMobile: boolean;
|
|
14081
14084
|
log_id: string;
|
|
@@ -14114,7 +14117,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14114
14117
|
limit: number;
|
|
14115
14118
|
length: number;
|
|
14116
14119
|
logs: {
|
|
14117
|
-
type: "
|
|
14120
|
+
type: "fn" | "sapi" | "i" | "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" | "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" | "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" | "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" | "w" | "wn" | "wum";
|
|
14118
14121
|
date: string;
|
|
14119
14122
|
isMobile: boolean;
|
|
14120
14123
|
log_id: string;
|
|
@@ -14153,7 +14156,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14153
14156
|
next?: string | undefined;
|
|
14154
14157
|
} | {
|
|
14155
14158
|
logs: {
|
|
14156
|
-
type: "
|
|
14159
|
+
type: "fn" | "sapi" | "i" | "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" | "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" | "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" | "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" | "w" | "wn" | "wum";
|
|
14157
14160
|
date: string;
|
|
14158
14161
|
isMobile: boolean;
|
|
14159
14162
|
log_id: string;
|
|
@@ -14207,7 +14210,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14207
14210
|
};
|
|
14208
14211
|
};
|
|
14209
14212
|
output: {
|
|
14210
|
-
type: "
|
|
14213
|
+
type: "fn" | "sapi" | "i" | "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" | "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" | "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" | "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" | "w" | "wn" | "wum";
|
|
14211
14214
|
date: string;
|
|
14212
14215
|
isMobile: boolean;
|
|
14213
14216
|
log_id: string;
|
|
@@ -14363,7 +14366,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14363
14366
|
audience?: string | undefined;
|
|
14364
14367
|
client_id?: string | undefined;
|
|
14365
14368
|
allow_any_organization?: string | undefined;
|
|
14366
|
-
subject_type?: "
|
|
14369
|
+
subject_type?: "user" | "client" | undefined;
|
|
14367
14370
|
};
|
|
14368
14371
|
} & {
|
|
14369
14372
|
header: {
|
|
@@ -14378,7 +14381,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14378
14381
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14379
14382
|
allow_any_organization?: boolean | undefined;
|
|
14380
14383
|
is_system?: boolean | undefined;
|
|
14381
|
-
subject_type?: "
|
|
14384
|
+
subject_type?: "user" | "client" | undefined;
|
|
14382
14385
|
authorization_details_types?: string[] | undefined;
|
|
14383
14386
|
created_at?: string | undefined;
|
|
14384
14387
|
updated_at?: string | undefined;
|
|
@@ -14394,7 +14397,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14394
14397
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14395
14398
|
allow_any_organization?: boolean | undefined;
|
|
14396
14399
|
is_system?: boolean | undefined;
|
|
14397
|
-
subject_type?: "
|
|
14400
|
+
subject_type?: "user" | "client" | undefined;
|
|
14398
14401
|
authorization_details_types?: string[] | undefined;
|
|
14399
14402
|
created_at?: string | undefined;
|
|
14400
14403
|
updated_at?: string | undefined;
|
|
@@ -14410,7 +14413,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14410
14413
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14411
14414
|
allow_any_organization?: boolean | undefined;
|
|
14412
14415
|
is_system?: boolean | undefined;
|
|
14413
|
-
subject_type?: "
|
|
14416
|
+
subject_type?: "user" | "client" | undefined;
|
|
14414
14417
|
authorization_details_types?: string[] | undefined;
|
|
14415
14418
|
created_at?: string | undefined;
|
|
14416
14419
|
updated_at?: string | undefined;
|
|
@@ -14441,7 +14444,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14441
14444
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14442
14445
|
allow_any_organization?: boolean | undefined;
|
|
14443
14446
|
is_system?: boolean | undefined;
|
|
14444
|
-
subject_type?: "
|
|
14447
|
+
subject_type?: "user" | "client" | undefined;
|
|
14445
14448
|
authorization_details_types?: string[] | undefined;
|
|
14446
14449
|
created_at?: string | undefined;
|
|
14447
14450
|
updated_at?: string | undefined;
|
|
@@ -14486,7 +14489,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14486
14489
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14487
14490
|
allow_any_organization?: boolean | undefined;
|
|
14488
14491
|
is_system?: boolean | undefined;
|
|
14489
|
-
subject_type?: "
|
|
14492
|
+
subject_type?: "user" | "client" | undefined;
|
|
14490
14493
|
authorization_details_types?: string[] | undefined;
|
|
14491
14494
|
};
|
|
14492
14495
|
};
|
|
@@ -14498,7 +14501,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14498
14501
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14499
14502
|
allow_any_organization?: boolean | undefined;
|
|
14500
14503
|
is_system?: boolean | undefined;
|
|
14501
|
-
subject_type?: "
|
|
14504
|
+
subject_type?: "user" | "client" | undefined;
|
|
14502
14505
|
authorization_details_types?: string[] | undefined;
|
|
14503
14506
|
created_at?: string | undefined;
|
|
14504
14507
|
updated_at?: string | undefined;
|
|
@@ -14522,7 +14525,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14522
14525
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14523
14526
|
allow_any_organization?: boolean | undefined;
|
|
14524
14527
|
is_system?: boolean | undefined;
|
|
14525
|
-
subject_type?: "
|
|
14528
|
+
subject_type?: "user" | "client" | undefined;
|
|
14526
14529
|
authorization_details_types?: string[] | undefined;
|
|
14527
14530
|
};
|
|
14528
14531
|
};
|
|
@@ -14534,7 +14537,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14534
14537
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14535
14538
|
allow_any_organization?: boolean | undefined;
|
|
14536
14539
|
is_system?: boolean | undefined;
|
|
14537
|
-
subject_type?: "
|
|
14540
|
+
subject_type?: "user" | "client" | undefined;
|
|
14538
14541
|
authorization_details_types?: string[] | undefined;
|
|
14539
14542
|
created_at?: string | undefined;
|
|
14540
14543
|
updated_at?: string | undefined;
|
|
@@ -14618,7 +14621,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14618
14621
|
addons?: {
|
|
14619
14622
|
[x: string]: any;
|
|
14620
14623
|
} | undefined;
|
|
14621
|
-
token_endpoint_auth_method?: "
|
|
14624
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
14622
14625
|
client_metadata?: {
|
|
14623
14626
|
[x: string]: string;
|
|
14624
14627
|
} | undefined;
|
|
@@ -14720,7 +14723,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14720
14723
|
addons?: {
|
|
14721
14724
|
[x: string]: any;
|
|
14722
14725
|
} | undefined;
|
|
14723
|
-
token_endpoint_auth_method?: "
|
|
14726
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
14724
14727
|
client_metadata?: {
|
|
14725
14728
|
[x: string]: string;
|
|
14726
14729
|
} | undefined;
|
|
@@ -14822,7 +14825,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14822
14825
|
addons?: {
|
|
14823
14826
|
[x: string]: any;
|
|
14824
14827
|
} | undefined;
|
|
14825
|
-
token_endpoint_auth_method?: "
|
|
14828
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
14826
14829
|
client_metadata?: {
|
|
14827
14830
|
[x: string]: string;
|
|
14828
14831
|
} | undefined;
|
|
@@ -14939,7 +14942,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14939
14942
|
addons?: {
|
|
14940
14943
|
[x: string]: any;
|
|
14941
14944
|
} | undefined;
|
|
14942
|
-
token_endpoint_auth_method?: "
|
|
14945
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
14943
14946
|
client_metadata?: {
|
|
14944
14947
|
[x: string]: string;
|
|
14945
14948
|
} | undefined;
|
|
@@ -15057,7 +15060,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15057
15060
|
custom_login_page_preview?: string | undefined;
|
|
15058
15061
|
form_template?: string | undefined;
|
|
15059
15062
|
addons?: Record<string, any> | undefined;
|
|
15060
|
-
token_endpoint_auth_method?: "
|
|
15063
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
15061
15064
|
client_metadata?: Record<string, string> | undefined;
|
|
15062
15065
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
15063
15066
|
mobile?: Record<string, any> | undefined;
|
|
@@ -15143,7 +15146,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15143
15146
|
addons?: {
|
|
15144
15147
|
[x: string]: any;
|
|
15145
15148
|
} | undefined;
|
|
15146
|
-
token_endpoint_auth_method?: "
|
|
15149
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
15147
15150
|
client_metadata?: {
|
|
15148
15151
|
[x: string]: string;
|
|
15149
15152
|
} | undefined;
|
|
@@ -15240,7 +15243,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15240
15243
|
custom_login_page_preview?: string | undefined;
|
|
15241
15244
|
form_template?: string | undefined;
|
|
15242
15245
|
addons?: Record<string, any> | undefined;
|
|
15243
|
-
token_endpoint_auth_method?: "
|
|
15246
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
15244
15247
|
client_metadata?: Record<string, string> | undefined;
|
|
15245
15248
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
15246
15249
|
mobile?: Record<string, any> | undefined;
|
|
@@ -15326,7 +15329,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15326
15329
|
addons?: {
|
|
15327
15330
|
[x: string]: any;
|
|
15328
15331
|
} | undefined;
|
|
15329
|
-
token_endpoint_auth_method?: "
|
|
15332
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
15330
15333
|
client_metadata?: {
|
|
15331
15334
|
[x: string]: string;
|
|
15332
15335
|
} | undefined;
|
|
@@ -15786,13 +15789,13 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15786
15789
|
};
|
|
15787
15790
|
};
|
|
15788
15791
|
output: {
|
|
15792
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15789
15793
|
kid: string;
|
|
15790
15794
|
cert: string;
|
|
15791
15795
|
fingerprint: string;
|
|
15792
15796
|
thumbprint: string;
|
|
15793
|
-
type: "jwt_signing" | "saml_encryption";
|
|
15794
|
-
tenant_id?: string | undefined;
|
|
15795
15797
|
connection?: string | undefined;
|
|
15798
|
+
tenant_id?: string | undefined;
|
|
15796
15799
|
current?: boolean | undefined;
|
|
15797
15800
|
next?: boolean | undefined;
|
|
15798
15801
|
previous?: boolean | undefined;
|
|
@@ -15825,13 +15828,13 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15825
15828
|
};
|
|
15826
15829
|
};
|
|
15827
15830
|
output: {
|
|
15831
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15828
15832
|
kid: string;
|
|
15829
15833
|
cert: string;
|
|
15830
15834
|
fingerprint: string;
|
|
15831
15835
|
thumbprint: string;
|
|
15832
|
-
type: "jwt_signing" | "saml_encryption";
|
|
15833
|
-
tenant_id?: string | undefined;
|
|
15834
15836
|
connection?: string | undefined;
|
|
15837
|
+
tenant_id?: string | undefined;
|
|
15835
15838
|
current?: boolean | undefined;
|
|
15836
15839
|
next?: boolean | undefined;
|
|
15837
15840
|
previous?: boolean | undefined;
|
|
@@ -15863,13 +15866,13 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15863
15866
|
};
|
|
15864
15867
|
};
|
|
15865
15868
|
output: {
|
|
15869
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15866
15870
|
kid: string;
|
|
15867
15871
|
cert: string;
|
|
15868
15872
|
fingerprint: string;
|
|
15869
15873
|
thumbprint: string;
|
|
15870
|
-
type: "jwt_signing" | "saml_encryption";
|
|
15871
|
-
tenant_id?: string | undefined;
|
|
15872
15874
|
connection?: string | undefined;
|
|
15875
|
+
tenant_id?: string | undefined;
|
|
15873
15876
|
current?: boolean | undefined;
|
|
15874
15877
|
next?: boolean | undefined;
|
|
15875
15878
|
previous?: boolean | undefined;
|
|
@@ -15903,13 +15906,13 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15903
15906
|
};
|
|
15904
15907
|
};
|
|
15905
15908
|
output: {
|
|
15909
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15906
15910
|
kid: string;
|
|
15907
15911
|
cert: string;
|
|
15908
15912
|
fingerprint: string;
|
|
15909
15913
|
thumbprint: string;
|
|
15910
|
-
type: "jwt_signing" | "saml_encryption";
|
|
15911
|
-
tenant_id?: string | undefined;
|
|
15912
15914
|
connection?: string | undefined;
|
|
15915
|
+
tenant_id?: string | undefined;
|
|
15913
15916
|
current?: boolean | undefined;
|
|
15914
15917
|
next?: boolean | undefined;
|
|
15915
15918
|
previous?: boolean | undefined;
|
|
@@ -16761,10 +16764,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16761
16764
|
};
|
|
16762
16765
|
};
|
|
16763
16766
|
output: {
|
|
16764
|
-
created_at: string;
|
|
16765
16767
|
id: string;
|
|
16766
|
-
client_id: string;
|
|
16767
16768
|
user_id: string;
|
|
16769
|
+
created_at: string;
|
|
16770
|
+
client_id: string;
|
|
16768
16771
|
rotating: boolean;
|
|
16769
16772
|
device: {
|
|
16770
16773
|
initial_user_agent: string;
|
|
@@ -16779,8 +16782,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16779
16782
|
audience: string;
|
|
16780
16783
|
scopes: string;
|
|
16781
16784
|
}[];
|
|
16782
|
-
organization?: string | undefined;
|
|
16783
|
-
revoked_at?: string | undefined;
|
|
16784
16785
|
expires_at?: string | undefined;
|
|
16785
16786
|
session_id?: string | undefined;
|
|
16786
16787
|
auth_connection?: string | undefined;
|
|
@@ -16788,6 +16789,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16788
16789
|
strategy: string;
|
|
16789
16790
|
strategy_type: string;
|
|
16790
16791
|
} | undefined;
|
|
16792
|
+
organization?: string | undefined;
|
|
16793
|
+
revoked_at?: string | undefined;
|
|
16791
16794
|
idle_expires_at?: string | undefined;
|
|
16792
16795
|
last_exchanged_at?: string | undefined;
|
|
16793
16796
|
}[] | {
|
|
@@ -16795,10 +16798,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16795
16798
|
limit: number;
|
|
16796
16799
|
length: number;
|
|
16797
16800
|
tokens: {
|
|
16798
|
-
created_at: string;
|
|
16799
16801
|
id: string;
|
|
16800
|
-
client_id: string;
|
|
16801
16802
|
user_id: string;
|
|
16803
|
+
created_at: string;
|
|
16804
|
+
client_id: string;
|
|
16802
16805
|
rotating: boolean;
|
|
16803
16806
|
device: {
|
|
16804
16807
|
initial_user_agent: string;
|
|
@@ -16813,8 +16816,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16813
16816
|
audience: string;
|
|
16814
16817
|
scopes: string;
|
|
16815
16818
|
}[];
|
|
16816
|
-
organization?: string | undefined;
|
|
16817
|
-
revoked_at?: string | undefined;
|
|
16818
16819
|
expires_at?: string | undefined;
|
|
16819
16820
|
session_id?: string | undefined;
|
|
16820
16821
|
auth_connection?: string | undefined;
|
|
@@ -16822,6 +16823,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16822
16823
|
strategy: string;
|
|
16823
16824
|
strategy_type: string;
|
|
16824
16825
|
} | undefined;
|
|
16826
|
+
organization?: string | undefined;
|
|
16827
|
+
revoked_at?: string | undefined;
|
|
16825
16828
|
idle_expires_at?: string | undefined;
|
|
16826
16829
|
last_exchanged_at?: string | undefined;
|
|
16827
16830
|
}[];
|
|
@@ -16829,10 +16832,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16829
16832
|
next?: string | undefined;
|
|
16830
16833
|
} | {
|
|
16831
16834
|
tokens: {
|
|
16832
|
-
created_at: string;
|
|
16833
16835
|
id: string;
|
|
16834
|
-
client_id: string;
|
|
16835
16836
|
user_id: string;
|
|
16837
|
+
created_at: string;
|
|
16838
|
+
client_id: string;
|
|
16836
16839
|
rotating: boolean;
|
|
16837
16840
|
device: {
|
|
16838
16841
|
initial_user_agent: string;
|
|
@@ -16847,8 +16850,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16847
16850
|
audience: string;
|
|
16848
16851
|
scopes: string;
|
|
16849
16852
|
}[];
|
|
16850
|
-
organization?: string | undefined;
|
|
16851
|
-
revoked_at?: string | undefined;
|
|
16852
16853
|
expires_at?: string | undefined;
|
|
16853
16854
|
session_id?: string | undefined;
|
|
16854
16855
|
auth_connection?: string | undefined;
|
|
@@ -16856,6 +16857,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16856
16857
|
strategy: string;
|
|
16857
16858
|
strategy_type: string;
|
|
16858
16859
|
} | undefined;
|
|
16860
|
+
organization?: string | undefined;
|
|
16861
|
+
revoked_at?: string | undefined;
|
|
16859
16862
|
idle_expires_at?: string | undefined;
|
|
16860
16863
|
last_exchanged_at?: string | undefined;
|
|
16861
16864
|
}[];
|
|
@@ -16907,7 +16910,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16907
16910
|
};
|
|
16908
16911
|
};
|
|
16909
16912
|
output: {
|
|
16910
|
-
type: "
|
|
16913
|
+
type: "fn" | "sapi" | "i" | "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" | "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" | "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" | "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" | "w" | "wn" | "wum";
|
|
16911
16914
|
date: string;
|
|
16912
16915
|
isMobile: boolean;
|
|
16913
16916
|
log_id: string;
|
|
@@ -16946,7 +16949,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16946
16949
|
limit: number;
|
|
16947
16950
|
length: number;
|
|
16948
16951
|
logs: {
|
|
16949
|
-
type: "
|
|
16952
|
+
type: "fn" | "sapi" | "i" | "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" | "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" | "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" | "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" | "w" | "wn" | "wum";
|
|
16950
16953
|
date: string;
|
|
16951
16954
|
isMobile: boolean;
|
|
16952
16955
|
log_id: string;
|
|
@@ -17265,7 +17268,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17265
17268
|
};
|
|
17266
17269
|
} & {
|
|
17267
17270
|
json: {
|
|
17268
|
-
template: "
|
|
17271
|
+
template: "verify_email" | "change_password" | "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";
|
|
17269
17272
|
body: string;
|
|
17270
17273
|
from: string;
|
|
17271
17274
|
subject: string;
|
|
@@ -17286,7 +17289,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17286
17289
|
};
|
|
17287
17290
|
} & {
|
|
17288
17291
|
json: {
|
|
17289
|
-
template: "
|
|
17292
|
+
template: "verify_email" | "change_password" | "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";
|
|
17290
17293
|
body: string;
|
|
17291
17294
|
from: string;
|
|
17292
17295
|
subject: string;
|
|
@@ -17298,7 +17301,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17298
17301
|
};
|
|
17299
17302
|
};
|
|
17300
17303
|
output: {
|
|
17301
|
-
template: "
|
|
17304
|
+
template: "verify_email" | "change_password" | "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";
|
|
17302
17305
|
body: string;
|
|
17303
17306
|
from: string;
|
|
17304
17307
|
subject: string;
|
|
@@ -17321,7 +17324,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17321
17324
|
};
|
|
17322
17325
|
};
|
|
17323
17326
|
output: {
|
|
17324
|
-
name: "
|
|
17327
|
+
name: "verify_email" | "change_password" | "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";
|
|
17325
17328
|
body: string;
|
|
17326
17329
|
subject: string;
|
|
17327
17330
|
}[];
|
|
@@ -17334,7 +17337,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17334
17337
|
$get: {
|
|
17335
17338
|
input: {
|
|
17336
17339
|
param: {
|
|
17337
|
-
templateName: "
|
|
17340
|
+
templateName: "verify_email" | "change_password" | "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";
|
|
17338
17341
|
};
|
|
17339
17342
|
} & {
|
|
17340
17343
|
header: {
|
|
@@ -17347,7 +17350,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17347
17350
|
} | {
|
|
17348
17351
|
input: {
|
|
17349
17352
|
param: {
|
|
17350
|
-
templateName: "
|
|
17353
|
+
templateName: "verify_email" | "change_password" | "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";
|
|
17351
17354
|
};
|
|
17352
17355
|
} & {
|
|
17353
17356
|
header: {
|
|
@@ -17355,7 +17358,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17355
17358
|
};
|
|
17356
17359
|
};
|
|
17357
17360
|
output: {
|
|
17358
|
-
template: "
|
|
17361
|
+
template: "verify_email" | "change_password" | "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";
|
|
17359
17362
|
body: string;
|
|
17360
17363
|
from: string;
|
|
17361
17364
|
subject: string;
|
|
@@ -17374,7 +17377,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17374
17377
|
$put: {
|
|
17375
17378
|
input: {
|
|
17376
17379
|
param: {
|
|
17377
|
-
templateName: "
|
|
17380
|
+
templateName: "verify_email" | "change_password" | "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";
|
|
17378
17381
|
};
|
|
17379
17382
|
} & {
|
|
17380
17383
|
header: {
|
|
@@ -17382,7 +17385,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17382
17385
|
};
|
|
17383
17386
|
} & {
|
|
17384
17387
|
json: {
|
|
17385
|
-
template: "
|
|
17388
|
+
template: "verify_email" | "change_password" | "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";
|
|
17386
17389
|
body: string;
|
|
17387
17390
|
subject: string;
|
|
17388
17391
|
syntax?: "liquid" | undefined;
|
|
@@ -17394,7 +17397,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17394
17397
|
};
|
|
17395
17398
|
};
|
|
17396
17399
|
output: {
|
|
17397
|
-
template: "
|
|
17400
|
+
template: "verify_email" | "change_password" | "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";
|
|
17398
17401
|
body: string;
|
|
17399
17402
|
from: string;
|
|
17400
17403
|
subject: string;
|
|
@@ -17413,7 +17416,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17413
17416
|
$patch: {
|
|
17414
17417
|
input: {
|
|
17415
17418
|
param: {
|
|
17416
|
-
templateName: "
|
|
17419
|
+
templateName: "verify_email" | "change_password" | "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";
|
|
17417
17420
|
};
|
|
17418
17421
|
} & {
|
|
17419
17422
|
header: {
|
|
@@ -17421,7 +17424,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17421
17424
|
};
|
|
17422
17425
|
} & {
|
|
17423
17426
|
json: {
|
|
17424
|
-
template?: "
|
|
17427
|
+
template?: "verify_email" | "change_password" | "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;
|
|
17425
17428
|
body?: string | undefined;
|
|
17426
17429
|
from?: string | undefined;
|
|
17427
17430
|
subject?: string | undefined;
|
|
@@ -17438,7 +17441,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17438
17441
|
} | {
|
|
17439
17442
|
input: {
|
|
17440
17443
|
param: {
|
|
17441
|
-
templateName: "
|
|
17444
|
+
templateName: "verify_email" | "change_password" | "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";
|
|
17442
17445
|
};
|
|
17443
17446
|
} & {
|
|
17444
17447
|
header: {
|
|
@@ -17446,7 +17449,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17446
17449
|
};
|
|
17447
17450
|
} & {
|
|
17448
17451
|
json: {
|
|
17449
|
-
template?: "
|
|
17452
|
+
template?: "verify_email" | "change_password" | "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;
|
|
17450
17453
|
body?: string | undefined;
|
|
17451
17454
|
from?: string | undefined;
|
|
17452
17455
|
subject?: string | undefined;
|
|
@@ -17458,7 +17461,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17458
17461
|
};
|
|
17459
17462
|
};
|
|
17460
17463
|
output: {
|
|
17461
|
-
template: "
|
|
17464
|
+
template: "verify_email" | "change_password" | "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";
|
|
17462
17465
|
body: string;
|
|
17463
17466
|
from: string;
|
|
17464
17467
|
subject: string;
|
|
@@ -17477,7 +17480,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17477
17480
|
$delete: {
|
|
17478
17481
|
input: {
|
|
17479
17482
|
param: {
|
|
17480
|
-
templateName: "
|
|
17483
|
+
templateName: "verify_email" | "change_password" | "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";
|
|
17481
17484
|
};
|
|
17482
17485
|
} & {
|
|
17483
17486
|
header: {
|
|
@@ -17490,7 +17493,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17490
17493
|
} | {
|
|
17491
17494
|
input: {
|
|
17492
17495
|
param: {
|
|
17493
|
-
templateName: "
|
|
17496
|
+
templateName: "verify_email" | "change_password" | "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";
|
|
17494
17497
|
};
|
|
17495
17498
|
} & {
|
|
17496
17499
|
header: {
|
|
@@ -17507,7 +17510,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17507
17510
|
$post: {
|
|
17508
17511
|
input: {
|
|
17509
17512
|
param: {
|
|
17510
|
-
templateName: "
|
|
17513
|
+
templateName: "verify_email" | "change_password" | "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";
|
|
17511
17514
|
};
|
|
17512
17515
|
} & {
|
|
17513
17516
|
header: {
|
|
@@ -17790,7 +17793,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17790
17793
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17791
17794
|
custom_domain_id: string;
|
|
17792
17795
|
primary: boolean;
|
|
17793
|
-
status: "
|
|
17796
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
17794
17797
|
verification_method?: "txt" | undefined;
|
|
17795
17798
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17796
17799
|
domain_metadata?: {
|
|
@@ -17831,7 +17834,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17831
17834
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17832
17835
|
custom_domain_id: string;
|
|
17833
17836
|
primary: boolean;
|
|
17834
|
-
status: "
|
|
17837
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
17835
17838
|
verification_method?: "txt" | undefined;
|
|
17836
17839
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17837
17840
|
domain_metadata?: {
|
|
@@ -17895,7 +17898,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17895
17898
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17896
17899
|
custom_domain_id: string;
|
|
17897
17900
|
primary: boolean;
|
|
17898
|
-
status: "
|
|
17901
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
17899
17902
|
verification_method?: "txt" | undefined;
|
|
17900
17903
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17901
17904
|
domain_metadata?: {
|
|
@@ -17942,7 +17945,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17942
17945
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17943
17946
|
custom_domain_id: string;
|
|
17944
17947
|
primary: boolean;
|
|
17945
|
-
status: "
|
|
17948
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
17946
17949
|
verification_method?: "txt" | undefined;
|
|
17947
17950
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17948
17951
|
domain_metadata?: {
|
|
@@ -17988,7 +17991,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17988
17991
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17989
17992
|
custom_domain_id: string;
|
|
17990
17993
|
primary: boolean;
|
|
17991
|
-
status: "
|
|
17994
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
17992
17995
|
verification_method?: "txt" | undefined;
|
|
17993
17996
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17994
17997
|
domain_metadata?: {
|
|
@@ -18029,7 +18032,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18029
18032
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
18030
18033
|
custom_domain_id: string;
|
|
18031
18034
|
primary: boolean;
|
|
18032
|
-
status: "
|
|
18035
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
18033
18036
|
verification_method?: "txt" | undefined;
|
|
18034
18037
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
18035
18038
|
domain_metadata?: {
|
|
@@ -18459,7 +18462,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18459
18462
|
} & {
|
|
18460
18463
|
json: {
|
|
18461
18464
|
body?: string | undefined;
|
|
18462
|
-
screen?: "
|
|
18465
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
18463
18466
|
branding?: {
|
|
18464
18467
|
colors?: {
|
|
18465
18468
|
primary: string;
|
|
@@ -19721,7 +19724,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19721
19724
|
scope?: string | undefined;
|
|
19722
19725
|
grant_types?: string[] | undefined;
|
|
19723
19726
|
response_types?: string[] | undefined;
|
|
19724
|
-
token_endpoint_auth_method?: "
|
|
19727
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
19725
19728
|
jwks_uri?: string | undefined;
|
|
19726
19729
|
jwks?: Record<string, unknown> | undefined;
|
|
19727
19730
|
software_id?: string | undefined;
|
|
@@ -19810,7 +19813,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19810
19813
|
scope?: string | undefined;
|
|
19811
19814
|
grant_types?: string[] | undefined;
|
|
19812
19815
|
response_types?: string[] | undefined;
|
|
19813
|
-
token_endpoint_auth_method?: "
|
|
19816
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
19814
19817
|
jwks_uri?: string | undefined;
|
|
19815
19818
|
jwks?: Record<string, unknown> | undefined;
|
|
19816
19819
|
software_id?: string | undefined;
|
|
@@ -20156,19 +20159,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20156
20159
|
email: string;
|
|
20157
20160
|
send: "code" | "link";
|
|
20158
20161
|
authParams: {
|
|
20162
|
+
username?: string | undefined;
|
|
20163
|
+
state?: string | undefined;
|
|
20164
|
+
audience?: string | undefined;
|
|
20159
20165
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
20160
20166
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
20161
20167
|
scope?: string | undefined;
|
|
20162
|
-
username?: string | undefined;
|
|
20163
|
-
audience?: string | undefined;
|
|
20164
|
-
nonce?: string | undefined;
|
|
20165
20168
|
organization?: string | undefined;
|
|
20166
20169
|
redirect_uri?: string | undefined;
|
|
20167
|
-
state?: string | undefined;
|
|
20168
|
-
act_as?: string | undefined;
|
|
20169
|
-
prompt?: string | undefined;
|
|
20170
20170
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
20171
20171
|
code_challenge?: string | undefined;
|
|
20172
|
+
nonce?: string | undefined;
|
|
20173
|
+
act_as?: string | undefined;
|
|
20174
|
+
prompt?: string | undefined;
|
|
20172
20175
|
ui_locales?: string | undefined;
|
|
20173
20176
|
max_age?: number | undefined;
|
|
20174
20177
|
acr_values?: string | undefined;
|
|
@@ -20192,19 +20195,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20192
20195
|
phone_number: string;
|
|
20193
20196
|
send: "code" | "link";
|
|
20194
20197
|
authParams: {
|
|
20198
|
+
username?: string | undefined;
|
|
20199
|
+
state?: string | undefined;
|
|
20200
|
+
audience?: string | undefined;
|
|
20195
20201
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
20196
20202
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
20197
20203
|
scope?: string | undefined;
|
|
20198
|
-
username?: string | undefined;
|
|
20199
|
-
audience?: string | undefined;
|
|
20200
|
-
nonce?: string | undefined;
|
|
20201
20204
|
organization?: string | undefined;
|
|
20202
20205
|
redirect_uri?: string | undefined;
|
|
20203
|
-
state?: string | undefined;
|
|
20204
|
-
act_as?: string | undefined;
|
|
20205
|
-
prompt?: string | undefined;
|
|
20206
20206
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
20207
20207
|
code_challenge?: string | undefined;
|
|
20208
|
+
nonce?: string | undefined;
|
|
20209
|
+
act_as?: string | undefined;
|
|
20210
|
+
prompt?: string | undefined;
|
|
20208
20211
|
ui_locales?: string | undefined;
|
|
20209
20212
|
max_age?: number | undefined;
|
|
20210
20213
|
acr_values?: string | undefined;
|
|
@@ -20940,7 +20943,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20940
20943
|
output: {
|
|
20941
20944
|
keys: {
|
|
20942
20945
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
20943
|
-
kty: "
|
|
20946
|
+
kty: "EC" | "RSA" | "oct";
|
|
20944
20947
|
kid?: string | undefined;
|
|
20945
20948
|
use?: "sig" | "enc" | undefined;
|
|
20946
20949
|
n?: string | undefined;
|
|
@@ -21756,7 +21759,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21756
21759
|
} & {
|
|
21757
21760
|
form: {
|
|
21758
21761
|
username: string;
|
|
21759
|
-
login_selection?: "
|
|
21762
|
+
login_selection?: "password" | "code" | undefined;
|
|
21760
21763
|
};
|
|
21761
21764
|
};
|
|
21762
21765
|
output: {};
|
|
@@ -21770,7 +21773,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21770
21773
|
} & {
|
|
21771
21774
|
form: {
|
|
21772
21775
|
username: string;
|
|
21773
|
-
login_selection?: "
|
|
21776
|
+
login_selection?: "password" | "code" | undefined;
|
|
21774
21777
|
};
|
|
21775
21778
|
};
|
|
21776
21779
|
output: {};
|
|
@@ -22135,7 +22138,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
22135
22138
|
$get: {
|
|
22136
22139
|
input: {
|
|
22137
22140
|
param: {
|
|
22138
|
-
screen: "
|
|
22141
|
+
screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "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";
|
|
22139
22142
|
};
|
|
22140
22143
|
} & {
|
|
22141
22144
|
query: {
|
|
@@ -22151,7 +22154,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
22151
22154
|
} | {
|
|
22152
22155
|
input: {
|
|
22153
22156
|
param: {
|
|
22154
|
-
screen: "
|
|
22157
|
+
screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "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";
|
|
22155
22158
|
};
|
|
22156
22159
|
} & {
|
|
22157
22160
|
query: {
|
|
@@ -22167,7 +22170,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
22167
22170
|
} | {
|
|
22168
22171
|
input: {
|
|
22169
22172
|
param: {
|
|
22170
|
-
screen: "
|
|
22173
|
+
screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "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";
|
|
22171
22174
|
};
|
|
22172
22175
|
} & {
|
|
22173
22176
|
query: {
|
|
@@ -22187,7 +22190,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
22187
22190
|
$post: {
|
|
22188
22191
|
input: {
|
|
22189
22192
|
param: {
|
|
22190
|
-
screen: "impersonate" | "
|
|
22193
|
+
screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "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";
|
|
22191
22194
|
};
|
|
22192
22195
|
} & {
|
|
22193
22196
|
query: {
|
|
@@ -22205,7 +22208,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
22205
22208
|
} | {
|
|
22206
22209
|
input: {
|
|
22207
22210
|
param: {
|
|
22208
|
-
screen: "impersonate" | "
|
|
22211
|
+
screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "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";
|
|
22209
22212
|
};
|
|
22210
22213
|
} & {
|
|
22211
22214
|
query: {
|