authhero 8.3.0 → 8.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/js/client.js +3 -3
- package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/{p-aa120307.entry.js → p-1fc7fcdb.entry.js} +1 -1
- package/dist/assets/u/widget/p-5f7b7943.entry.js +1 -0
- package/dist/authhero.cjs +105 -105
- package/dist/authhero.d.ts +248 -205
- package/dist/authhero.mjs +1493 -1427
- package/dist/client.js +3 -3
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/client/client-bundle.d.ts +1 -1
- package/dist/types/client/loading-link-handler.d.ts +14 -0
- package/dist/types/components/Button.d.ts +2 -1
- package/dist/types/emails/defaults/BlockedAccount.d.ts +1 -1
- package/dist/types/emails/defaults/ChangePassword.d.ts +1 -1
- package/dist/types/emails/defaults/EnrollmentEmail.d.ts +1 -1
- package/dist/types/emails/defaults/Layout.d.ts +1 -1
- package/dist/types/emails/defaults/MfaOobCode.d.ts +1 -1
- package/dist/types/emails/defaults/PasswordReset.d.ts +1 -1
- package/dist/types/emails/defaults/PrimaryButton.d.ts +1 -1
- package/dist/types/emails/defaults/ResetEmail.d.ts +1 -1
- package/dist/types/emails/defaults/ResetEmailByCode.d.ts +1 -1
- package/dist/types/emails/defaults/StolenCredentials.d.ts +1 -1
- package/dist/types/emails/defaults/UserInvitation.d.ts +1 -1
- package/dist/types/emails/defaults/VerifyEmail.d.ts +1 -1
- package/dist/types/emails/defaults/VerifyEmailByCode.d.ts +1 -1
- package/dist/types/emails/defaults/WelcomeEmail.d.ts +1 -1
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/hooks/post-user-login.d.ts +2 -0
- package/dist/types/index.d.ts +204 -204
- package/dist/types/middlewares/authentication.d.ts +17 -0
- package/dist/types/routes/auth-api/index.d.ts +10 -10
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +8 -8
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +50 -50
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +3 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/types/AuthHeroConfig.d.ts +26 -1
- package/dist/types/types/IdToken.d.ts +2 -2
- package/dist/types/utils/jwt.d.ts +9 -0
- package/package.json +2 -2
- package/dist/assets/u/widget/p-35c8b265.entry.js +0 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -870,14 +870,31 @@ declare const MANAGEMENT_API_AUDIENCE = "urn:authhero:management";
|
|
|
870
870
|
* token, so a per-tenant identifier (e.g.
|
|
871
871
|
* `https://${tenant_id}.token.example.com/v2/api/`) can be constructed at
|
|
872
872
|
* request time alongside any global legacy identifiers.
|
|
873
|
+
*
|
|
874
|
+
* `additionalIssuers` extends the set of accepted token issuers beyond the
|
|
875
|
+
* deployment's own `getIssuer(env, custom_domain)`. The resolver receives the
|
|
876
|
+
* token's `tenant_id` and returns the issuers accepted for that token, so a
|
|
877
|
+
* control-plane issuer can be accepted on forwarded admin requests whose
|
|
878
|
+
* per-tenant worker has a different `env.ISSUER`. The default issuer is always
|
|
879
|
+
* accepted; the resolver is purely additive and may return `[]` to refuse.
|
|
873
880
|
*/
|
|
874
881
|
type ManagementAudienceResolver = (params: {
|
|
875
882
|
tenant_id?: string;
|
|
876
883
|
}) => string[] | Promise<string[]>;
|
|
884
|
+
/**
|
|
885
|
+
* Resolver returning the issuers accepted **in addition to** the deployment's
|
|
886
|
+
* own issuer when verifying bearer JWTs. Receives the token's `tenant_id` so a
|
|
887
|
+
* per-tenant or control-plane issuer can be constructed at request time.
|
|
888
|
+
* Returning `[]` keeps the strict single-issuer behavior for that token.
|
|
889
|
+
*/
|
|
890
|
+
type IssuerResolver = (params: {
|
|
891
|
+
tenant_id?: string;
|
|
892
|
+
}) => string[] | Promise<string[]>;
|
|
877
893
|
interface AuthMiddlewareOptions {
|
|
878
894
|
requireManagementAudience?: boolean;
|
|
879
895
|
relaxManagementAudience?: boolean;
|
|
880
896
|
additionalManagementAudiences?: ManagementAudienceResolver;
|
|
897
|
+
additionalIssuers?: IssuerResolver;
|
|
881
898
|
}
|
|
882
899
|
declare function createAuthMiddleware(app: OpenAPIHono<{
|
|
883
900
|
Bindings: Bindings;
|
|
@@ -1377,6 +1394,31 @@ interface AuthHeroConfig {
|
|
|
1377
1394
|
* ```
|
|
1378
1395
|
*/
|
|
1379
1396
|
additionalManagementAudiences?: ManagementAudienceResolver;
|
|
1397
|
+
/**
|
|
1398
|
+
* Resolver returning the list of issuers accepted by the bearer-JWT issuer
|
|
1399
|
+
* check **in addition to** the deployment's own
|
|
1400
|
+
* `getIssuer(env, custom_domain)`. The token's `tenant_id` is passed in, so a
|
|
1401
|
+
* per-tenant or control-plane issuer can be constructed at request time.
|
|
1402
|
+
*
|
|
1403
|
+
* This is needed when control-plane-minted admin tokens are forwarded to a
|
|
1404
|
+
* per-tenant worker: the token's `iss` is the control-plane issuer while the
|
|
1405
|
+
* worker's `env.ISSUER` is per-tenant, so the strict single-issuer check
|
|
1406
|
+
* would otherwise reject it. The signature is still verified normally; this
|
|
1407
|
+
* only widens which `iss` values are accepted.
|
|
1408
|
+
*
|
|
1409
|
+
* authhero stays generic — it never derives or hardcodes any issuer. Scoping
|
|
1410
|
+
* (e.g. only accepting the control-plane issuer for control-plane tokens) is
|
|
1411
|
+
* the host app's job: the resolver receives `tenant_id` and can return `[]`
|
|
1412
|
+
* to refuse. The default issuer is always accepted; the resolver is purely
|
|
1413
|
+
* additive.
|
|
1414
|
+
*
|
|
1415
|
+
* @example
|
|
1416
|
+
* ```ts
|
|
1417
|
+
* additionalIssuers: ({ tenant_id }) =>
|
|
1418
|
+
* tenant_id ? ["https://token.example.com/"] : [];
|
|
1419
|
+
* ```
|
|
1420
|
+
*/
|
|
1421
|
+
additionalIssuers?: IssuerResolver;
|
|
1380
1422
|
}
|
|
1381
1423
|
|
|
1382
1424
|
type UserInfo = {
|
|
@@ -1527,8 +1569,9 @@ type Props$l = {
|
|
|
1527
1569
|
disabled?: boolean;
|
|
1528
1570
|
isLoading?: boolean;
|
|
1529
1571
|
id?: string;
|
|
1572
|
+
loadingLink?: boolean;
|
|
1530
1573
|
};
|
|
1531
|
-
declare const Button$1: ({ children, className, Component, variant, href, disabled, isLoading, id, }: PropsWithChildren<Props$l>) => hono_jsx_jsx_dev_runtime.JSX.Element;
|
|
1574
|
+
declare const Button$1: ({ children, className, Component, variant, href, disabled, isLoading, id, loadingLink, }: PropsWithChildren<Props$l>) => hono_jsx_jsx_dev_runtime.JSX.Element;
|
|
1532
1575
|
|
|
1533
1576
|
type Props$k = {
|
|
1534
1577
|
theme: Theme | null;
|
|
@@ -2824,7 +2867,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2824
2867
|
};
|
|
2825
2868
|
} & {
|
|
2826
2869
|
json: {
|
|
2827
|
-
type: "email" | "
|
|
2870
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2828
2871
|
phone_number?: string | undefined;
|
|
2829
2872
|
totp_secret?: string | undefined;
|
|
2830
2873
|
credential_id?: string | undefined;
|
|
@@ -2964,7 +3007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2964
3007
|
};
|
|
2965
3008
|
};
|
|
2966
3009
|
output: {
|
|
2967
|
-
name: "email" | "
|
|
3010
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2968
3011
|
enabled: boolean;
|
|
2969
3012
|
trial_expired?: boolean | undefined;
|
|
2970
3013
|
}[];
|
|
@@ -3119,7 +3162,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3119
3162
|
$get: {
|
|
3120
3163
|
input: {
|
|
3121
3164
|
param: {
|
|
3122
|
-
factor_name: "email" | "
|
|
3165
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3123
3166
|
};
|
|
3124
3167
|
} & {
|
|
3125
3168
|
header: {
|
|
@@ -3127,7 +3170,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3127
3170
|
};
|
|
3128
3171
|
};
|
|
3129
3172
|
output: {
|
|
3130
|
-
name: "email" | "
|
|
3173
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3131
3174
|
enabled: boolean;
|
|
3132
3175
|
trial_expired?: boolean | undefined;
|
|
3133
3176
|
};
|
|
@@ -3140,7 +3183,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3140
3183
|
$put: {
|
|
3141
3184
|
input: {
|
|
3142
3185
|
param: {
|
|
3143
|
-
factor_name: "email" | "
|
|
3186
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3144
3187
|
};
|
|
3145
3188
|
} & {
|
|
3146
3189
|
header: {
|
|
@@ -3152,7 +3195,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3152
3195
|
};
|
|
3153
3196
|
};
|
|
3154
3197
|
output: {
|
|
3155
|
-
name: "email" | "
|
|
3198
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3156
3199
|
enabled: boolean;
|
|
3157
3200
|
trial_expired?: boolean | undefined;
|
|
3158
3201
|
};
|
|
@@ -3897,12 +3940,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3897
3940
|
invitee: {
|
|
3898
3941
|
email?: string | undefined;
|
|
3899
3942
|
};
|
|
3900
|
-
id?: string | undefined;
|
|
3901
3943
|
app_metadata?: Record<string, any> | undefined;
|
|
3902
3944
|
user_metadata?: Record<string, any> | undefined;
|
|
3945
|
+
id?: string | undefined;
|
|
3903
3946
|
connection_id?: string | undefined;
|
|
3904
|
-
roles?: string[] | undefined;
|
|
3905
3947
|
ttl_sec?: number | undefined;
|
|
3948
|
+
roles?: string[] | undefined;
|
|
3906
3949
|
send_invitation_email?: boolean | undefined;
|
|
3907
3950
|
};
|
|
3908
3951
|
};
|
|
@@ -4085,8 +4128,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4085
4128
|
};
|
|
4086
4129
|
} & {
|
|
4087
4130
|
json: {
|
|
4088
|
-
show_as_button?: boolean | undefined;
|
|
4089
4131
|
assign_membership_on_login?: boolean | undefined;
|
|
4132
|
+
show_as_button?: boolean | undefined;
|
|
4090
4133
|
is_signup_enabled?: boolean | undefined;
|
|
4091
4134
|
};
|
|
4092
4135
|
};
|
|
@@ -5328,7 +5371,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5328
5371
|
hint?: string | undefined;
|
|
5329
5372
|
messages?: {
|
|
5330
5373
|
text: string;
|
|
5331
|
-
type: "
|
|
5374
|
+
type: "success" | "error" | "info" | "warning";
|
|
5332
5375
|
id?: number | undefined;
|
|
5333
5376
|
}[] | undefined;
|
|
5334
5377
|
required?: boolean | undefined;
|
|
@@ -5346,7 +5389,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5346
5389
|
hint?: string | undefined;
|
|
5347
5390
|
messages?: {
|
|
5348
5391
|
text: string;
|
|
5349
|
-
type: "
|
|
5392
|
+
type: "success" | "error" | "info" | "warning";
|
|
5350
5393
|
id?: number | undefined;
|
|
5351
5394
|
}[] | undefined;
|
|
5352
5395
|
required?: boolean | undefined;
|
|
@@ -5370,7 +5413,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5370
5413
|
hint?: string | undefined;
|
|
5371
5414
|
messages?: {
|
|
5372
5415
|
text: string;
|
|
5373
|
-
type: "
|
|
5416
|
+
type: "success" | "error" | "info" | "warning";
|
|
5374
5417
|
id?: number | undefined;
|
|
5375
5418
|
}[] | undefined;
|
|
5376
5419
|
required?: boolean | undefined;
|
|
@@ -5394,7 +5437,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5394
5437
|
hint?: string | undefined;
|
|
5395
5438
|
messages?: {
|
|
5396
5439
|
text: string;
|
|
5397
|
-
type: "
|
|
5440
|
+
type: "success" | "error" | "info" | "warning";
|
|
5398
5441
|
id?: number | undefined;
|
|
5399
5442
|
}[] | undefined;
|
|
5400
5443
|
required?: boolean | undefined;
|
|
@@ -5423,7 +5466,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5423
5466
|
hint?: string | undefined;
|
|
5424
5467
|
messages?: {
|
|
5425
5468
|
text: string;
|
|
5426
|
-
type: "
|
|
5469
|
+
type: "success" | "error" | "info" | "warning";
|
|
5427
5470
|
id?: number | undefined;
|
|
5428
5471
|
}[] | undefined;
|
|
5429
5472
|
required?: boolean | undefined;
|
|
@@ -5438,7 +5481,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5438
5481
|
hint?: string | undefined;
|
|
5439
5482
|
messages?: {
|
|
5440
5483
|
text: string;
|
|
5441
|
-
type: "
|
|
5484
|
+
type: "success" | "error" | "info" | "warning";
|
|
5442
5485
|
id?: number | undefined;
|
|
5443
5486
|
}[] | undefined;
|
|
5444
5487
|
required?: boolean | undefined;
|
|
@@ -5459,7 +5502,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5459
5502
|
hint?: string | undefined;
|
|
5460
5503
|
messages?: {
|
|
5461
5504
|
text: string;
|
|
5462
|
-
type: "
|
|
5505
|
+
type: "success" | "error" | "info" | "warning";
|
|
5463
5506
|
id?: number | undefined;
|
|
5464
5507
|
}[] | undefined;
|
|
5465
5508
|
required?: boolean | undefined;
|
|
@@ -5484,7 +5527,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5484
5527
|
hint?: string | undefined;
|
|
5485
5528
|
messages?: {
|
|
5486
5529
|
text: string;
|
|
5487
|
-
type: "
|
|
5530
|
+
type: "success" | "error" | "info" | "warning";
|
|
5488
5531
|
id?: number | undefined;
|
|
5489
5532
|
}[] | undefined;
|
|
5490
5533
|
required?: boolean | undefined;
|
|
@@ -5503,7 +5546,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5503
5546
|
hint?: string | undefined;
|
|
5504
5547
|
messages?: {
|
|
5505
5548
|
text: string;
|
|
5506
|
-
type: "
|
|
5549
|
+
type: "success" | "error" | "info" | "warning";
|
|
5507
5550
|
id?: number | undefined;
|
|
5508
5551
|
}[] | undefined;
|
|
5509
5552
|
required?: boolean | undefined;
|
|
@@ -5523,7 +5566,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5523
5566
|
hint?: string | undefined;
|
|
5524
5567
|
messages?: {
|
|
5525
5568
|
text: string;
|
|
5526
|
-
type: "
|
|
5569
|
+
type: "success" | "error" | "info" | "warning";
|
|
5527
5570
|
id?: number | undefined;
|
|
5528
5571
|
}[] | undefined;
|
|
5529
5572
|
required?: boolean | undefined;
|
|
@@ -5542,7 +5585,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5542
5585
|
hint?: string | undefined;
|
|
5543
5586
|
messages?: {
|
|
5544
5587
|
text: string;
|
|
5545
|
-
type: "
|
|
5588
|
+
type: "success" | "error" | "info" | "warning";
|
|
5546
5589
|
id?: number | undefined;
|
|
5547
5590
|
}[] | undefined;
|
|
5548
5591
|
required?: boolean | undefined;
|
|
@@ -5564,7 +5607,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5564
5607
|
hint?: string | undefined;
|
|
5565
5608
|
messages?: {
|
|
5566
5609
|
text: string;
|
|
5567
|
-
type: "
|
|
5610
|
+
type: "success" | "error" | "info" | "warning";
|
|
5568
5611
|
id?: number | undefined;
|
|
5569
5612
|
}[] | undefined;
|
|
5570
5613
|
required?: boolean | undefined;
|
|
@@ -5586,7 +5629,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5586
5629
|
hint?: string | undefined;
|
|
5587
5630
|
messages?: {
|
|
5588
5631
|
text: string;
|
|
5589
|
-
type: "
|
|
5632
|
+
type: "success" | "error" | "info" | "warning";
|
|
5590
5633
|
id?: number | undefined;
|
|
5591
5634
|
}[] | undefined;
|
|
5592
5635
|
required?: boolean | undefined;
|
|
@@ -5605,7 +5648,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5605
5648
|
hint?: string | undefined;
|
|
5606
5649
|
messages?: {
|
|
5607
5650
|
text: string;
|
|
5608
|
-
type: "
|
|
5651
|
+
type: "success" | "error" | "info" | "warning";
|
|
5609
5652
|
id?: number | undefined;
|
|
5610
5653
|
}[] | undefined;
|
|
5611
5654
|
required?: boolean | undefined;
|
|
@@ -5630,7 +5673,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5630
5673
|
hint?: string | undefined;
|
|
5631
5674
|
messages?: {
|
|
5632
5675
|
text: string;
|
|
5633
|
-
type: "
|
|
5676
|
+
type: "success" | "error" | "info" | "warning";
|
|
5634
5677
|
id?: number | undefined;
|
|
5635
5678
|
}[] | undefined;
|
|
5636
5679
|
required?: boolean | undefined;
|
|
@@ -5651,7 +5694,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5651
5694
|
hint?: string | undefined;
|
|
5652
5695
|
messages?: {
|
|
5653
5696
|
text: string;
|
|
5654
|
-
type: "
|
|
5697
|
+
type: "success" | "error" | "info" | "warning";
|
|
5655
5698
|
id?: number | undefined;
|
|
5656
5699
|
}[] | undefined;
|
|
5657
5700
|
required?: boolean | undefined;
|
|
@@ -5672,7 +5715,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5672
5715
|
hint?: string | undefined;
|
|
5673
5716
|
messages?: {
|
|
5674
5717
|
text: string;
|
|
5675
|
-
type: "
|
|
5718
|
+
type: "success" | "error" | "info" | "warning";
|
|
5676
5719
|
id?: number | undefined;
|
|
5677
5720
|
}[] | undefined;
|
|
5678
5721
|
required?: boolean | undefined;
|
|
@@ -5905,7 +5948,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5905
5948
|
hint?: string | undefined;
|
|
5906
5949
|
messages?: {
|
|
5907
5950
|
text: string;
|
|
5908
|
-
type: "
|
|
5951
|
+
type: "success" | "error" | "info" | "warning";
|
|
5909
5952
|
id?: number | undefined;
|
|
5910
5953
|
}[] | undefined;
|
|
5911
5954
|
required?: boolean | undefined;
|
|
@@ -5923,7 +5966,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5923
5966
|
hint?: string | undefined;
|
|
5924
5967
|
messages?: {
|
|
5925
5968
|
text: string;
|
|
5926
|
-
type: "
|
|
5969
|
+
type: "success" | "error" | "info" | "warning";
|
|
5927
5970
|
id?: number | undefined;
|
|
5928
5971
|
}[] | undefined;
|
|
5929
5972
|
required?: boolean | undefined;
|
|
@@ -5947,7 +5990,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5947
5990
|
hint?: string | undefined;
|
|
5948
5991
|
messages?: {
|
|
5949
5992
|
text: string;
|
|
5950
|
-
type: "
|
|
5993
|
+
type: "success" | "error" | "info" | "warning";
|
|
5951
5994
|
id?: number | undefined;
|
|
5952
5995
|
}[] | undefined;
|
|
5953
5996
|
required?: boolean | undefined;
|
|
@@ -5971,7 +6014,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5971
6014
|
hint?: string | undefined;
|
|
5972
6015
|
messages?: {
|
|
5973
6016
|
text: string;
|
|
5974
|
-
type: "
|
|
6017
|
+
type: "success" | "error" | "info" | "warning";
|
|
5975
6018
|
id?: number | undefined;
|
|
5976
6019
|
}[] | undefined;
|
|
5977
6020
|
required?: boolean | undefined;
|
|
@@ -6000,7 +6043,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6000
6043
|
hint?: string | undefined;
|
|
6001
6044
|
messages?: {
|
|
6002
6045
|
text: string;
|
|
6003
|
-
type: "
|
|
6046
|
+
type: "success" | "error" | "info" | "warning";
|
|
6004
6047
|
id?: number | undefined;
|
|
6005
6048
|
}[] | undefined;
|
|
6006
6049
|
required?: boolean | undefined;
|
|
@@ -6015,7 +6058,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6015
6058
|
hint?: string | undefined;
|
|
6016
6059
|
messages?: {
|
|
6017
6060
|
text: string;
|
|
6018
|
-
type: "
|
|
6061
|
+
type: "success" | "error" | "info" | "warning";
|
|
6019
6062
|
id?: number | undefined;
|
|
6020
6063
|
}[] | undefined;
|
|
6021
6064
|
required?: boolean | undefined;
|
|
@@ -6036,7 +6079,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6036
6079
|
hint?: string | undefined;
|
|
6037
6080
|
messages?: {
|
|
6038
6081
|
text: string;
|
|
6039
|
-
type: "
|
|
6082
|
+
type: "success" | "error" | "info" | "warning";
|
|
6040
6083
|
id?: number | undefined;
|
|
6041
6084
|
}[] | undefined;
|
|
6042
6085
|
required?: boolean | undefined;
|
|
@@ -6061,7 +6104,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6061
6104
|
hint?: string | undefined;
|
|
6062
6105
|
messages?: {
|
|
6063
6106
|
text: string;
|
|
6064
|
-
type: "
|
|
6107
|
+
type: "success" | "error" | "info" | "warning";
|
|
6065
6108
|
id?: number | undefined;
|
|
6066
6109
|
}[] | undefined;
|
|
6067
6110
|
required?: boolean | undefined;
|
|
@@ -6080,7 +6123,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6080
6123
|
hint?: string | undefined;
|
|
6081
6124
|
messages?: {
|
|
6082
6125
|
text: string;
|
|
6083
|
-
type: "
|
|
6126
|
+
type: "success" | "error" | "info" | "warning";
|
|
6084
6127
|
id?: number | undefined;
|
|
6085
6128
|
}[] | undefined;
|
|
6086
6129
|
required?: boolean | undefined;
|
|
@@ -6100,7 +6143,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6100
6143
|
hint?: string | undefined;
|
|
6101
6144
|
messages?: {
|
|
6102
6145
|
text: string;
|
|
6103
|
-
type: "
|
|
6146
|
+
type: "success" | "error" | "info" | "warning";
|
|
6104
6147
|
id?: number | undefined;
|
|
6105
6148
|
}[] | undefined;
|
|
6106
6149
|
required?: boolean | undefined;
|
|
@@ -6119,7 +6162,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6119
6162
|
hint?: string | undefined;
|
|
6120
6163
|
messages?: {
|
|
6121
6164
|
text: string;
|
|
6122
|
-
type: "
|
|
6165
|
+
type: "success" | "error" | "info" | "warning";
|
|
6123
6166
|
id?: number | undefined;
|
|
6124
6167
|
}[] | undefined;
|
|
6125
6168
|
required?: boolean | undefined;
|
|
@@ -6141,7 +6184,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6141
6184
|
hint?: string | undefined;
|
|
6142
6185
|
messages?: {
|
|
6143
6186
|
text: string;
|
|
6144
|
-
type: "
|
|
6187
|
+
type: "success" | "error" | "info" | "warning";
|
|
6145
6188
|
id?: number | undefined;
|
|
6146
6189
|
}[] | undefined;
|
|
6147
6190
|
required?: boolean | undefined;
|
|
@@ -6163,7 +6206,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6163
6206
|
hint?: string | undefined;
|
|
6164
6207
|
messages?: {
|
|
6165
6208
|
text: string;
|
|
6166
|
-
type: "
|
|
6209
|
+
type: "success" | "error" | "info" | "warning";
|
|
6167
6210
|
id?: number | undefined;
|
|
6168
6211
|
}[] | undefined;
|
|
6169
6212
|
required?: boolean | undefined;
|
|
@@ -6182,7 +6225,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6182
6225
|
hint?: string | undefined;
|
|
6183
6226
|
messages?: {
|
|
6184
6227
|
text: string;
|
|
6185
|
-
type: "
|
|
6228
|
+
type: "success" | "error" | "info" | "warning";
|
|
6186
6229
|
id?: number | undefined;
|
|
6187
6230
|
}[] | undefined;
|
|
6188
6231
|
required?: boolean | undefined;
|
|
@@ -6207,7 +6250,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6207
6250
|
hint?: string | undefined;
|
|
6208
6251
|
messages?: {
|
|
6209
6252
|
text: string;
|
|
6210
|
-
type: "
|
|
6253
|
+
type: "success" | "error" | "info" | "warning";
|
|
6211
6254
|
id?: number | undefined;
|
|
6212
6255
|
}[] | undefined;
|
|
6213
6256
|
required?: boolean | undefined;
|
|
@@ -6228,7 +6271,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6228
6271
|
hint?: string | undefined;
|
|
6229
6272
|
messages?: {
|
|
6230
6273
|
text: string;
|
|
6231
|
-
type: "
|
|
6274
|
+
type: "success" | "error" | "info" | "warning";
|
|
6232
6275
|
id?: number | undefined;
|
|
6233
6276
|
}[] | undefined;
|
|
6234
6277
|
required?: boolean | undefined;
|
|
@@ -6249,7 +6292,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6249
6292
|
hint?: string | undefined;
|
|
6250
6293
|
messages?: {
|
|
6251
6294
|
text: string;
|
|
6252
|
-
type: "
|
|
6295
|
+
type: "success" | "error" | "info" | "warning";
|
|
6253
6296
|
id?: number | undefined;
|
|
6254
6297
|
}[] | undefined;
|
|
6255
6298
|
required?: boolean | undefined;
|
|
@@ -6497,7 +6540,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6497
6540
|
hint?: string | undefined;
|
|
6498
6541
|
messages?: {
|
|
6499
6542
|
text: string;
|
|
6500
|
-
type: "
|
|
6543
|
+
type: "success" | "error" | "info" | "warning";
|
|
6501
6544
|
id?: number | undefined;
|
|
6502
6545
|
}[] | undefined;
|
|
6503
6546
|
required?: boolean | undefined;
|
|
@@ -6515,7 +6558,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6515
6558
|
hint?: string | undefined;
|
|
6516
6559
|
messages?: {
|
|
6517
6560
|
text: string;
|
|
6518
|
-
type: "
|
|
6561
|
+
type: "success" | "error" | "info" | "warning";
|
|
6519
6562
|
id?: number | undefined;
|
|
6520
6563
|
}[] | undefined;
|
|
6521
6564
|
required?: boolean | undefined;
|
|
@@ -6539,7 +6582,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6539
6582
|
hint?: string | undefined;
|
|
6540
6583
|
messages?: {
|
|
6541
6584
|
text: string;
|
|
6542
|
-
type: "
|
|
6585
|
+
type: "success" | "error" | "info" | "warning";
|
|
6543
6586
|
id?: number | undefined;
|
|
6544
6587
|
}[] | undefined;
|
|
6545
6588
|
required?: boolean | undefined;
|
|
@@ -6563,7 +6606,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6563
6606
|
hint?: string | undefined;
|
|
6564
6607
|
messages?: {
|
|
6565
6608
|
text: string;
|
|
6566
|
-
type: "
|
|
6609
|
+
type: "success" | "error" | "info" | "warning";
|
|
6567
6610
|
id?: number | undefined;
|
|
6568
6611
|
}[] | undefined;
|
|
6569
6612
|
required?: boolean | undefined;
|
|
@@ -6592,7 +6635,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6592
6635
|
hint?: string | undefined;
|
|
6593
6636
|
messages?: {
|
|
6594
6637
|
text: string;
|
|
6595
|
-
type: "
|
|
6638
|
+
type: "success" | "error" | "info" | "warning";
|
|
6596
6639
|
id?: number | undefined;
|
|
6597
6640
|
}[] | undefined;
|
|
6598
6641
|
required?: boolean | undefined;
|
|
@@ -6607,7 +6650,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6607
6650
|
hint?: string | undefined;
|
|
6608
6651
|
messages?: {
|
|
6609
6652
|
text: string;
|
|
6610
|
-
type: "
|
|
6653
|
+
type: "success" | "error" | "info" | "warning";
|
|
6611
6654
|
id?: number | undefined;
|
|
6612
6655
|
}[] | undefined;
|
|
6613
6656
|
required?: boolean | undefined;
|
|
@@ -6628,7 +6671,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6628
6671
|
hint?: string | undefined;
|
|
6629
6672
|
messages?: {
|
|
6630
6673
|
text: string;
|
|
6631
|
-
type: "
|
|
6674
|
+
type: "success" | "error" | "info" | "warning";
|
|
6632
6675
|
id?: number | undefined;
|
|
6633
6676
|
}[] | undefined;
|
|
6634
6677
|
required?: boolean | undefined;
|
|
@@ -6653,7 +6696,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6653
6696
|
hint?: string | undefined;
|
|
6654
6697
|
messages?: {
|
|
6655
6698
|
text: string;
|
|
6656
|
-
type: "
|
|
6699
|
+
type: "success" | "error" | "info" | "warning";
|
|
6657
6700
|
id?: number | undefined;
|
|
6658
6701
|
}[] | undefined;
|
|
6659
6702
|
required?: boolean | undefined;
|
|
@@ -6672,7 +6715,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6672
6715
|
hint?: string | undefined;
|
|
6673
6716
|
messages?: {
|
|
6674
6717
|
text: string;
|
|
6675
|
-
type: "
|
|
6718
|
+
type: "success" | "error" | "info" | "warning";
|
|
6676
6719
|
id?: number | undefined;
|
|
6677
6720
|
}[] | undefined;
|
|
6678
6721
|
required?: boolean | undefined;
|
|
@@ -6692,7 +6735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6692
6735
|
hint?: string | undefined;
|
|
6693
6736
|
messages?: {
|
|
6694
6737
|
text: string;
|
|
6695
|
-
type: "
|
|
6738
|
+
type: "success" | "error" | "info" | "warning";
|
|
6696
6739
|
id?: number | undefined;
|
|
6697
6740
|
}[] | undefined;
|
|
6698
6741
|
required?: boolean | undefined;
|
|
@@ -6711,7 +6754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6711
6754
|
hint?: string | undefined;
|
|
6712
6755
|
messages?: {
|
|
6713
6756
|
text: string;
|
|
6714
|
-
type: "
|
|
6757
|
+
type: "success" | "error" | "info" | "warning";
|
|
6715
6758
|
id?: number | undefined;
|
|
6716
6759
|
}[] | undefined;
|
|
6717
6760
|
required?: boolean | undefined;
|
|
@@ -6733,7 +6776,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6733
6776
|
hint?: string | undefined;
|
|
6734
6777
|
messages?: {
|
|
6735
6778
|
text: string;
|
|
6736
|
-
type: "
|
|
6779
|
+
type: "success" | "error" | "info" | "warning";
|
|
6737
6780
|
id?: number | undefined;
|
|
6738
6781
|
}[] | undefined;
|
|
6739
6782
|
required?: boolean | undefined;
|
|
@@ -6755,7 +6798,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6755
6798
|
hint?: string | undefined;
|
|
6756
6799
|
messages?: {
|
|
6757
6800
|
text: string;
|
|
6758
|
-
type: "
|
|
6801
|
+
type: "success" | "error" | "info" | "warning";
|
|
6759
6802
|
id?: number | undefined;
|
|
6760
6803
|
}[] | undefined;
|
|
6761
6804
|
required?: boolean | undefined;
|
|
@@ -6774,7 +6817,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6774
6817
|
hint?: string | undefined;
|
|
6775
6818
|
messages?: {
|
|
6776
6819
|
text: string;
|
|
6777
|
-
type: "
|
|
6820
|
+
type: "success" | "error" | "info" | "warning";
|
|
6778
6821
|
id?: number | undefined;
|
|
6779
6822
|
}[] | undefined;
|
|
6780
6823
|
required?: boolean | undefined;
|
|
@@ -6799,7 +6842,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6799
6842
|
hint?: string | undefined;
|
|
6800
6843
|
messages?: {
|
|
6801
6844
|
text: string;
|
|
6802
|
-
type: "
|
|
6845
|
+
type: "success" | "error" | "info" | "warning";
|
|
6803
6846
|
id?: number | undefined;
|
|
6804
6847
|
}[] | undefined;
|
|
6805
6848
|
required?: boolean | undefined;
|
|
@@ -6820,7 +6863,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6820
6863
|
hint?: string | undefined;
|
|
6821
6864
|
messages?: {
|
|
6822
6865
|
text: string;
|
|
6823
|
-
type: "
|
|
6866
|
+
type: "success" | "error" | "info" | "warning";
|
|
6824
6867
|
id?: number | undefined;
|
|
6825
6868
|
}[] | undefined;
|
|
6826
6869
|
required?: boolean | undefined;
|
|
@@ -6841,7 +6884,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6841
6884
|
hint?: string | undefined;
|
|
6842
6885
|
messages?: {
|
|
6843
6886
|
text: string;
|
|
6844
|
-
type: "
|
|
6887
|
+
type: "success" | "error" | "info" | "warning";
|
|
6845
6888
|
id?: number | undefined;
|
|
6846
6889
|
}[] | undefined;
|
|
6847
6890
|
required?: boolean | undefined;
|
|
@@ -7095,7 +7138,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7095
7138
|
hint?: string | undefined;
|
|
7096
7139
|
messages?: {
|
|
7097
7140
|
text: string;
|
|
7098
|
-
type: "
|
|
7141
|
+
type: "success" | "error" | "info" | "warning";
|
|
7099
7142
|
id?: number | undefined;
|
|
7100
7143
|
}[] | undefined;
|
|
7101
7144
|
required?: boolean | undefined;
|
|
@@ -7113,7 +7156,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7113
7156
|
hint?: string | undefined;
|
|
7114
7157
|
messages?: {
|
|
7115
7158
|
text: string;
|
|
7116
|
-
type: "
|
|
7159
|
+
type: "success" | "error" | "info" | "warning";
|
|
7117
7160
|
id?: number | undefined;
|
|
7118
7161
|
}[] | undefined;
|
|
7119
7162
|
required?: boolean | undefined;
|
|
@@ -7137,7 +7180,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7137
7180
|
hint?: string | undefined;
|
|
7138
7181
|
messages?: {
|
|
7139
7182
|
text: string;
|
|
7140
|
-
type: "
|
|
7183
|
+
type: "success" | "error" | "info" | "warning";
|
|
7141
7184
|
id?: number | undefined;
|
|
7142
7185
|
}[] | undefined;
|
|
7143
7186
|
required?: boolean | undefined;
|
|
@@ -7161,7 +7204,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7161
7204
|
hint?: string | undefined;
|
|
7162
7205
|
messages?: {
|
|
7163
7206
|
text: string;
|
|
7164
|
-
type: "
|
|
7207
|
+
type: "success" | "error" | "info" | "warning";
|
|
7165
7208
|
id?: number | undefined;
|
|
7166
7209
|
}[] | undefined;
|
|
7167
7210
|
required?: boolean | undefined;
|
|
@@ -7186,7 +7229,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7186
7229
|
hint?: string | undefined;
|
|
7187
7230
|
messages?: {
|
|
7188
7231
|
text: string;
|
|
7189
|
-
type: "
|
|
7232
|
+
type: "success" | "error" | "info" | "warning";
|
|
7190
7233
|
id?: number | undefined;
|
|
7191
7234
|
}[] | undefined;
|
|
7192
7235
|
required?: boolean | undefined;
|
|
@@ -7201,7 +7244,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7201
7244
|
hint?: string | undefined;
|
|
7202
7245
|
messages?: {
|
|
7203
7246
|
text: string;
|
|
7204
|
-
type: "
|
|
7247
|
+
type: "success" | "error" | "info" | "warning";
|
|
7205
7248
|
id?: number | undefined;
|
|
7206
7249
|
}[] | undefined;
|
|
7207
7250
|
required?: boolean | undefined;
|
|
@@ -7222,7 +7265,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7222
7265
|
hint?: string | undefined;
|
|
7223
7266
|
messages?: {
|
|
7224
7267
|
text: string;
|
|
7225
|
-
type: "
|
|
7268
|
+
type: "success" | "error" | "info" | "warning";
|
|
7226
7269
|
id?: number | undefined;
|
|
7227
7270
|
}[] | undefined;
|
|
7228
7271
|
required?: boolean | undefined;
|
|
@@ -7247,7 +7290,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7247
7290
|
hint?: string | undefined;
|
|
7248
7291
|
messages?: {
|
|
7249
7292
|
text: string;
|
|
7250
|
-
type: "
|
|
7293
|
+
type: "success" | "error" | "info" | "warning";
|
|
7251
7294
|
id?: number | undefined;
|
|
7252
7295
|
}[] | undefined;
|
|
7253
7296
|
required?: boolean | undefined;
|
|
@@ -7266,7 +7309,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7266
7309
|
hint?: string | undefined;
|
|
7267
7310
|
messages?: {
|
|
7268
7311
|
text: string;
|
|
7269
|
-
type: "
|
|
7312
|
+
type: "success" | "error" | "info" | "warning";
|
|
7270
7313
|
id?: number | undefined;
|
|
7271
7314
|
}[] | undefined;
|
|
7272
7315
|
required?: boolean | undefined;
|
|
@@ -7286,7 +7329,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7286
7329
|
hint?: string | undefined;
|
|
7287
7330
|
messages?: {
|
|
7288
7331
|
text: string;
|
|
7289
|
-
type: "
|
|
7332
|
+
type: "success" | "error" | "info" | "warning";
|
|
7290
7333
|
id?: number | undefined;
|
|
7291
7334
|
}[] | undefined;
|
|
7292
7335
|
required?: boolean | undefined;
|
|
@@ -7305,7 +7348,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7305
7348
|
hint?: string | undefined;
|
|
7306
7349
|
messages?: {
|
|
7307
7350
|
text: string;
|
|
7308
|
-
type: "
|
|
7351
|
+
type: "success" | "error" | "info" | "warning";
|
|
7309
7352
|
id?: number | undefined;
|
|
7310
7353
|
}[] | undefined;
|
|
7311
7354
|
required?: boolean | undefined;
|
|
@@ -7327,7 +7370,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7327
7370
|
hint?: string | undefined;
|
|
7328
7371
|
messages?: {
|
|
7329
7372
|
text: string;
|
|
7330
|
-
type: "
|
|
7373
|
+
type: "success" | "error" | "info" | "warning";
|
|
7331
7374
|
id?: number | undefined;
|
|
7332
7375
|
}[] | undefined;
|
|
7333
7376
|
required?: boolean | undefined;
|
|
@@ -7349,7 +7392,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7349
7392
|
hint?: string | undefined;
|
|
7350
7393
|
messages?: {
|
|
7351
7394
|
text: string;
|
|
7352
|
-
type: "
|
|
7395
|
+
type: "success" | "error" | "info" | "warning";
|
|
7353
7396
|
id?: number | undefined;
|
|
7354
7397
|
}[] | undefined;
|
|
7355
7398
|
required?: boolean | undefined;
|
|
@@ -7368,7 +7411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7368
7411
|
hint?: string | undefined;
|
|
7369
7412
|
messages?: {
|
|
7370
7413
|
text: string;
|
|
7371
|
-
type: "
|
|
7414
|
+
type: "success" | "error" | "info" | "warning";
|
|
7372
7415
|
id?: number | undefined;
|
|
7373
7416
|
}[] | undefined;
|
|
7374
7417
|
required?: boolean | undefined;
|
|
@@ -7393,7 +7436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7393
7436
|
hint?: string | undefined;
|
|
7394
7437
|
messages?: {
|
|
7395
7438
|
text: string;
|
|
7396
|
-
type: "
|
|
7439
|
+
type: "success" | "error" | "info" | "warning";
|
|
7397
7440
|
id?: number | undefined;
|
|
7398
7441
|
}[] | undefined;
|
|
7399
7442
|
required?: boolean | undefined;
|
|
@@ -7414,7 +7457,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7414
7457
|
hint?: string | undefined;
|
|
7415
7458
|
messages?: {
|
|
7416
7459
|
text: string;
|
|
7417
|
-
type: "
|
|
7460
|
+
type: "success" | "error" | "info" | "warning";
|
|
7418
7461
|
id?: number | undefined;
|
|
7419
7462
|
}[] | undefined;
|
|
7420
7463
|
required?: boolean | undefined;
|
|
@@ -7435,7 +7478,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7435
7478
|
hint?: string | undefined;
|
|
7436
7479
|
messages?: {
|
|
7437
7480
|
text: string;
|
|
7438
|
-
type: "
|
|
7481
|
+
type: "success" | "error" | "info" | "warning";
|
|
7439
7482
|
id?: number | undefined;
|
|
7440
7483
|
}[] | undefined;
|
|
7441
7484
|
required?: boolean | undefined;
|
|
@@ -7666,7 +7709,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7666
7709
|
hint?: string | undefined;
|
|
7667
7710
|
messages?: {
|
|
7668
7711
|
text: string;
|
|
7669
|
-
type: "
|
|
7712
|
+
type: "success" | "error" | "info" | "warning";
|
|
7670
7713
|
id?: number | undefined;
|
|
7671
7714
|
}[] | undefined;
|
|
7672
7715
|
required?: boolean | undefined;
|
|
@@ -7684,7 +7727,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7684
7727
|
hint?: string | undefined;
|
|
7685
7728
|
messages?: {
|
|
7686
7729
|
text: string;
|
|
7687
|
-
type: "
|
|
7730
|
+
type: "success" | "error" | "info" | "warning";
|
|
7688
7731
|
id?: number | undefined;
|
|
7689
7732
|
}[] | undefined;
|
|
7690
7733
|
required?: boolean | undefined;
|
|
@@ -7708,7 +7751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7708
7751
|
hint?: string | undefined;
|
|
7709
7752
|
messages?: {
|
|
7710
7753
|
text: string;
|
|
7711
|
-
type: "
|
|
7754
|
+
type: "success" | "error" | "info" | "warning";
|
|
7712
7755
|
id?: number | undefined;
|
|
7713
7756
|
}[] | undefined;
|
|
7714
7757
|
required?: boolean | undefined;
|
|
@@ -7732,7 +7775,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7732
7775
|
hint?: string | undefined;
|
|
7733
7776
|
messages?: {
|
|
7734
7777
|
text: string;
|
|
7735
|
-
type: "
|
|
7778
|
+
type: "success" | "error" | "info" | "warning";
|
|
7736
7779
|
id?: number | undefined;
|
|
7737
7780
|
}[] | undefined;
|
|
7738
7781
|
required?: boolean | undefined;
|
|
@@ -7761,7 +7804,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7761
7804
|
hint?: string | undefined;
|
|
7762
7805
|
messages?: {
|
|
7763
7806
|
text: string;
|
|
7764
|
-
type: "
|
|
7807
|
+
type: "success" | "error" | "info" | "warning";
|
|
7765
7808
|
id?: number | undefined;
|
|
7766
7809
|
}[] | undefined;
|
|
7767
7810
|
required?: boolean | undefined;
|
|
@@ -7776,7 +7819,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7776
7819
|
hint?: string | undefined;
|
|
7777
7820
|
messages?: {
|
|
7778
7821
|
text: string;
|
|
7779
|
-
type: "
|
|
7822
|
+
type: "success" | "error" | "info" | "warning";
|
|
7780
7823
|
id?: number | undefined;
|
|
7781
7824
|
}[] | undefined;
|
|
7782
7825
|
required?: boolean | undefined;
|
|
@@ -7797,7 +7840,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7797
7840
|
hint?: string | undefined;
|
|
7798
7841
|
messages?: {
|
|
7799
7842
|
text: string;
|
|
7800
|
-
type: "
|
|
7843
|
+
type: "success" | "error" | "info" | "warning";
|
|
7801
7844
|
id?: number | undefined;
|
|
7802
7845
|
}[] | undefined;
|
|
7803
7846
|
required?: boolean | undefined;
|
|
@@ -7822,7 +7865,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7822
7865
|
hint?: string | undefined;
|
|
7823
7866
|
messages?: {
|
|
7824
7867
|
text: string;
|
|
7825
|
-
type: "
|
|
7868
|
+
type: "success" | "error" | "info" | "warning";
|
|
7826
7869
|
id?: number | undefined;
|
|
7827
7870
|
}[] | undefined;
|
|
7828
7871
|
required?: boolean | undefined;
|
|
@@ -7841,7 +7884,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7841
7884
|
hint?: string | undefined;
|
|
7842
7885
|
messages?: {
|
|
7843
7886
|
text: string;
|
|
7844
|
-
type: "
|
|
7887
|
+
type: "success" | "error" | "info" | "warning";
|
|
7845
7888
|
id?: number | undefined;
|
|
7846
7889
|
}[] | undefined;
|
|
7847
7890
|
required?: boolean | undefined;
|
|
@@ -7861,7 +7904,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7861
7904
|
hint?: string | undefined;
|
|
7862
7905
|
messages?: {
|
|
7863
7906
|
text: string;
|
|
7864
|
-
type: "
|
|
7907
|
+
type: "success" | "error" | "info" | "warning";
|
|
7865
7908
|
id?: number | undefined;
|
|
7866
7909
|
}[] | undefined;
|
|
7867
7910
|
required?: boolean | undefined;
|
|
@@ -7880,7 +7923,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7880
7923
|
hint?: string | undefined;
|
|
7881
7924
|
messages?: {
|
|
7882
7925
|
text: string;
|
|
7883
|
-
type: "
|
|
7926
|
+
type: "success" | "error" | "info" | "warning";
|
|
7884
7927
|
id?: number | undefined;
|
|
7885
7928
|
}[] | undefined;
|
|
7886
7929
|
required?: boolean | undefined;
|
|
@@ -7902,7 +7945,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7902
7945
|
hint?: string | undefined;
|
|
7903
7946
|
messages?: {
|
|
7904
7947
|
text: string;
|
|
7905
|
-
type: "
|
|
7948
|
+
type: "success" | "error" | "info" | "warning";
|
|
7906
7949
|
id?: number | undefined;
|
|
7907
7950
|
}[] | undefined;
|
|
7908
7951
|
required?: boolean | undefined;
|
|
@@ -7924,7 +7967,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7924
7967
|
hint?: string | undefined;
|
|
7925
7968
|
messages?: {
|
|
7926
7969
|
text: string;
|
|
7927
|
-
type: "
|
|
7970
|
+
type: "success" | "error" | "info" | "warning";
|
|
7928
7971
|
id?: number | undefined;
|
|
7929
7972
|
}[] | undefined;
|
|
7930
7973
|
required?: boolean | undefined;
|
|
@@ -7943,7 +7986,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7943
7986
|
hint?: string | undefined;
|
|
7944
7987
|
messages?: {
|
|
7945
7988
|
text: string;
|
|
7946
|
-
type: "
|
|
7989
|
+
type: "success" | "error" | "info" | "warning";
|
|
7947
7990
|
id?: number | undefined;
|
|
7948
7991
|
}[] | undefined;
|
|
7949
7992
|
required?: boolean | undefined;
|
|
@@ -7968,7 +8011,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7968
8011
|
hint?: string | undefined;
|
|
7969
8012
|
messages?: {
|
|
7970
8013
|
text: string;
|
|
7971
|
-
type: "
|
|
8014
|
+
type: "success" | "error" | "info" | "warning";
|
|
7972
8015
|
id?: number | undefined;
|
|
7973
8016
|
}[] | undefined;
|
|
7974
8017
|
required?: boolean | undefined;
|
|
@@ -7989,7 +8032,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7989
8032
|
hint?: string | undefined;
|
|
7990
8033
|
messages?: {
|
|
7991
8034
|
text: string;
|
|
7992
|
-
type: "
|
|
8035
|
+
type: "success" | "error" | "info" | "warning";
|
|
7993
8036
|
id?: number | undefined;
|
|
7994
8037
|
}[] | undefined;
|
|
7995
8038
|
required?: boolean | undefined;
|
|
@@ -8010,7 +8053,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8010
8053
|
hint?: string | undefined;
|
|
8011
8054
|
messages?: {
|
|
8012
8055
|
text: string;
|
|
8013
|
-
type: "
|
|
8056
|
+
type: "success" | "error" | "info" | "warning";
|
|
8014
8057
|
id?: number | undefined;
|
|
8015
8058
|
}[] | undefined;
|
|
8016
8059
|
required?: boolean | undefined;
|
|
@@ -8243,7 +8286,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8243
8286
|
hint?: string | undefined;
|
|
8244
8287
|
messages?: {
|
|
8245
8288
|
text: string;
|
|
8246
|
-
type: "
|
|
8289
|
+
type: "success" | "error" | "info" | "warning";
|
|
8247
8290
|
id?: number | undefined;
|
|
8248
8291
|
}[] | undefined;
|
|
8249
8292
|
required?: boolean | undefined;
|
|
@@ -8261,7 +8304,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8261
8304
|
hint?: string | undefined;
|
|
8262
8305
|
messages?: {
|
|
8263
8306
|
text: string;
|
|
8264
|
-
type: "
|
|
8307
|
+
type: "success" | "error" | "info" | "warning";
|
|
8265
8308
|
id?: number | undefined;
|
|
8266
8309
|
}[] | undefined;
|
|
8267
8310
|
required?: boolean | undefined;
|
|
@@ -8285,7 +8328,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8285
8328
|
hint?: string | undefined;
|
|
8286
8329
|
messages?: {
|
|
8287
8330
|
text: string;
|
|
8288
|
-
type: "
|
|
8331
|
+
type: "success" | "error" | "info" | "warning";
|
|
8289
8332
|
id?: number | undefined;
|
|
8290
8333
|
}[] | undefined;
|
|
8291
8334
|
required?: boolean | undefined;
|
|
@@ -8309,7 +8352,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8309
8352
|
hint?: string | undefined;
|
|
8310
8353
|
messages?: {
|
|
8311
8354
|
text: string;
|
|
8312
|
-
type: "
|
|
8355
|
+
type: "success" | "error" | "info" | "warning";
|
|
8313
8356
|
id?: number | undefined;
|
|
8314
8357
|
}[] | undefined;
|
|
8315
8358
|
required?: boolean | undefined;
|
|
@@ -8334,7 +8377,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8334
8377
|
hint?: string | undefined;
|
|
8335
8378
|
messages?: {
|
|
8336
8379
|
text: string;
|
|
8337
|
-
type: "
|
|
8380
|
+
type: "success" | "error" | "info" | "warning";
|
|
8338
8381
|
id?: number | undefined;
|
|
8339
8382
|
}[] | undefined;
|
|
8340
8383
|
required?: boolean | undefined;
|
|
@@ -8349,7 +8392,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8349
8392
|
hint?: string | undefined;
|
|
8350
8393
|
messages?: {
|
|
8351
8394
|
text: string;
|
|
8352
|
-
type: "
|
|
8395
|
+
type: "success" | "error" | "info" | "warning";
|
|
8353
8396
|
id?: number | undefined;
|
|
8354
8397
|
}[] | undefined;
|
|
8355
8398
|
required?: boolean | undefined;
|
|
@@ -8370,7 +8413,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8370
8413
|
hint?: string | undefined;
|
|
8371
8414
|
messages?: {
|
|
8372
8415
|
text: string;
|
|
8373
|
-
type: "
|
|
8416
|
+
type: "success" | "error" | "info" | "warning";
|
|
8374
8417
|
id?: number | undefined;
|
|
8375
8418
|
}[] | undefined;
|
|
8376
8419
|
required?: boolean | undefined;
|
|
@@ -8395,7 +8438,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8395
8438
|
hint?: string | undefined;
|
|
8396
8439
|
messages?: {
|
|
8397
8440
|
text: string;
|
|
8398
|
-
type: "
|
|
8441
|
+
type: "success" | "error" | "info" | "warning";
|
|
8399
8442
|
id?: number | undefined;
|
|
8400
8443
|
}[] | undefined;
|
|
8401
8444
|
required?: boolean | undefined;
|
|
@@ -8414,7 +8457,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8414
8457
|
hint?: string | undefined;
|
|
8415
8458
|
messages?: {
|
|
8416
8459
|
text: string;
|
|
8417
|
-
type: "
|
|
8460
|
+
type: "success" | "error" | "info" | "warning";
|
|
8418
8461
|
id?: number | undefined;
|
|
8419
8462
|
}[] | undefined;
|
|
8420
8463
|
required?: boolean | undefined;
|
|
@@ -8434,7 +8477,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8434
8477
|
hint?: string | undefined;
|
|
8435
8478
|
messages?: {
|
|
8436
8479
|
text: string;
|
|
8437
|
-
type: "
|
|
8480
|
+
type: "success" | "error" | "info" | "warning";
|
|
8438
8481
|
id?: number | undefined;
|
|
8439
8482
|
}[] | undefined;
|
|
8440
8483
|
required?: boolean | undefined;
|
|
@@ -8453,7 +8496,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8453
8496
|
hint?: string | undefined;
|
|
8454
8497
|
messages?: {
|
|
8455
8498
|
text: string;
|
|
8456
|
-
type: "
|
|
8499
|
+
type: "success" | "error" | "info" | "warning";
|
|
8457
8500
|
id?: number | undefined;
|
|
8458
8501
|
}[] | undefined;
|
|
8459
8502
|
required?: boolean | undefined;
|
|
@@ -8475,7 +8518,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8475
8518
|
hint?: string | undefined;
|
|
8476
8519
|
messages?: {
|
|
8477
8520
|
text: string;
|
|
8478
|
-
type: "
|
|
8521
|
+
type: "success" | "error" | "info" | "warning";
|
|
8479
8522
|
id?: number | undefined;
|
|
8480
8523
|
}[] | undefined;
|
|
8481
8524
|
required?: boolean | undefined;
|
|
@@ -8497,7 +8540,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8497
8540
|
hint?: string | undefined;
|
|
8498
8541
|
messages?: {
|
|
8499
8542
|
text: string;
|
|
8500
|
-
type: "
|
|
8543
|
+
type: "success" | "error" | "info" | "warning";
|
|
8501
8544
|
id?: number | undefined;
|
|
8502
8545
|
}[] | undefined;
|
|
8503
8546
|
required?: boolean | undefined;
|
|
@@ -8516,7 +8559,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8516
8559
|
hint?: string | undefined;
|
|
8517
8560
|
messages?: {
|
|
8518
8561
|
text: string;
|
|
8519
|
-
type: "
|
|
8562
|
+
type: "success" | "error" | "info" | "warning";
|
|
8520
8563
|
id?: number | undefined;
|
|
8521
8564
|
}[] | undefined;
|
|
8522
8565
|
required?: boolean | undefined;
|
|
@@ -8541,7 +8584,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8541
8584
|
hint?: string | undefined;
|
|
8542
8585
|
messages?: {
|
|
8543
8586
|
text: string;
|
|
8544
|
-
type: "
|
|
8587
|
+
type: "success" | "error" | "info" | "warning";
|
|
8545
8588
|
id?: number | undefined;
|
|
8546
8589
|
}[] | undefined;
|
|
8547
8590
|
required?: boolean | undefined;
|
|
@@ -8562,7 +8605,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8562
8605
|
hint?: string | undefined;
|
|
8563
8606
|
messages?: {
|
|
8564
8607
|
text: string;
|
|
8565
|
-
type: "
|
|
8608
|
+
type: "success" | "error" | "info" | "warning";
|
|
8566
8609
|
id?: number | undefined;
|
|
8567
8610
|
}[] | undefined;
|
|
8568
8611
|
required?: boolean | undefined;
|
|
@@ -8583,7 +8626,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8583
8626
|
hint?: string | undefined;
|
|
8584
8627
|
messages?: {
|
|
8585
8628
|
text: string;
|
|
8586
|
-
type: "
|
|
8629
|
+
type: "success" | "error" | "info" | "warning";
|
|
8587
8630
|
id?: number | undefined;
|
|
8588
8631
|
}[] | undefined;
|
|
8589
8632
|
required?: boolean | undefined;
|
|
@@ -8814,7 +8857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8814
8857
|
hint?: string | undefined;
|
|
8815
8858
|
messages?: {
|
|
8816
8859
|
text: string;
|
|
8817
|
-
type: "
|
|
8860
|
+
type: "success" | "error" | "info" | "warning";
|
|
8818
8861
|
id?: number | undefined;
|
|
8819
8862
|
}[] | undefined;
|
|
8820
8863
|
required?: boolean | undefined;
|
|
@@ -8832,7 +8875,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8832
8875
|
hint?: string | undefined;
|
|
8833
8876
|
messages?: {
|
|
8834
8877
|
text: string;
|
|
8835
|
-
type: "
|
|
8878
|
+
type: "success" | "error" | "info" | "warning";
|
|
8836
8879
|
id?: number | undefined;
|
|
8837
8880
|
}[] | undefined;
|
|
8838
8881
|
required?: boolean | undefined;
|
|
@@ -8856,7 +8899,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8856
8899
|
hint?: string | undefined;
|
|
8857
8900
|
messages?: {
|
|
8858
8901
|
text: string;
|
|
8859
|
-
type: "
|
|
8902
|
+
type: "success" | "error" | "info" | "warning";
|
|
8860
8903
|
id?: number | undefined;
|
|
8861
8904
|
}[] | undefined;
|
|
8862
8905
|
required?: boolean | undefined;
|
|
@@ -8880,7 +8923,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8880
8923
|
hint?: string | undefined;
|
|
8881
8924
|
messages?: {
|
|
8882
8925
|
text: string;
|
|
8883
|
-
type: "
|
|
8926
|
+
type: "success" | "error" | "info" | "warning";
|
|
8884
8927
|
id?: number | undefined;
|
|
8885
8928
|
}[] | undefined;
|
|
8886
8929
|
required?: boolean | undefined;
|
|
@@ -8909,7 +8952,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8909
8952
|
hint?: string | undefined;
|
|
8910
8953
|
messages?: {
|
|
8911
8954
|
text: string;
|
|
8912
|
-
type: "
|
|
8955
|
+
type: "success" | "error" | "info" | "warning";
|
|
8913
8956
|
id?: number | undefined;
|
|
8914
8957
|
}[] | undefined;
|
|
8915
8958
|
required?: boolean | undefined;
|
|
@@ -8924,7 +8967,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8924
8967
|
hint?: string | undefined;
|
|
8925
8968
|
messages?: {
|
|
8926
8969
|
text: string;
|
|
8927
|
-
type: "
|
|
8970
|
+
type: "success" | "error" | "info" | "warning";
|
|
8928
8971
|
id?: number | undefined;
|
|
8929
8972
|
}[] | undefined;
|
|
8930
8973
|
required?: boolean | undefined;
|
|
@@ -8945,7 +8988,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8945
8988
|
hint?: string | undefined;
|
|
8946
8989
|
messages?: {
|
|
8947
8990
|
text: string;
|
|
8948
|
-
type: "
|
|
8991
|
+
type: "success" | "error" | "info" | "warning";
|
|
8949
8992
|
id?: number | undefined;
|
|
8950
8993
|
}[] | undefined;
|
|
8951
8994
|
required?: boolean | undefined;
|
|
@@ -8970,7 +9013,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8970
9013
|
hint?: string | undefined;
|
|
8971
9014
|
messages?: {
|
|
8972
9015
|
text: string;
|
|
8973
|
-
type: "
|
|
9016
|
+
type: "success" | "error" | "info" | "warning";
|
|
8974
9017
|
id?: number | undefined;
|
|
8975
9018
|
}[] | undefined;
|
|
8976
9019
|
required?: boolean | undefined;
|
|
@@ -8989,7 +9032,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8989
9032
|
hint?: string | undefined;
|
|
8990
9033
|
messages?: {
|
|
8991
9034
|
text: string;
|
|
8992
|
-
type: "
|
|
9035
|
+
type: "success" | "error" | "info" | "warning";
|
|
8993
9036
|
id?: number | undefined;
|
|
8994
9037
|
}[] | undefined;
|
|
8995
9038
|
required?: boolean | undefined;
|
|
@@ -9009,7 +9052,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9009
9052
|
hint?: string | undefined;
|
|
9010
9053
|
messages?: {
|
|
9011
9054
|
text: string;
|
|
9012
|
-
type: "
|
|
9055
|
+
type: "success" | "error" | "info" | "warning";
|
|
9013
9056
|
id?: number | undefined;
|
|
9014
9057
|
}[] | undefined;
|
|
9015
9058
|
required?: boolean | undefined;
|
|
@@ -9028,7 +9071,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9028
9071
|
hint?: string | undefined;
|
|
9029
9072
|
messages?: {
|
|
9030
9073
|
text: string;
|
|
9031
|
-
type: "
|
|
9074
|
+
type: "success" | "error" | "info" | "warning";
|
|
9032
9075
|
id?: number | undefined;
|
|
9033
9076
|
}[] | undefined;
|
|
9034
9077
|
required?: boolean | undefined;
|
|
@@ -9050,7 +9093,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9050
9093
|
hint?: string | undefined;
|
|
9051
9094
|
messages?: {
|
|
9052
9095
|
text: string;
|
|
9053
|
-
type: "
|
|
9096
|
+
type: "success" | "error" | "info" | "warning";
|
|
9054
9097
|
id?: number | undefined;
|
|
9055
9098
|
}[] | undefined;
|
|
9056
9099
|
required?: boolean | undefined;
|
|
@@ -9072,7 +9115,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9072
9115
|
hint?: string | undefined;
|
|
9073
9116
|
messages?: {
|
|
9074
9117
|
text: string;
|
|
9075
|
-
type: "
|
|
9118
|
+
type: "success" | "error" | "info" | "warning";
|
|
9076
9119
|
id?: number | undefined;
|
|
9077
9120
|
}[] | undefined;
|
|
9078
9121
|
required?: boolean | undefined;
|
|
@@ -9091,7 +9134,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9091
9134
|
hint?: string | undefined;
|
|
9092
9135
|
messages?: {
|
|
9093
9136
|
text: string;
|
|
9094
|
-
type: "
|
|
9137
|
+
type: "success" | "error" | "info" | "warning";
|
|
9095
9138
|
id?: number | undefined;
|
|
9096
9139
|
}[] | undefined;
|
|
9097
9140
|
required?: boolean | undefined;
|
|
@@ -9116,7 +9159,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9116
9159
|
hint?: string | undefined;
|
|
9117
9160
|
messages?: {
|
|
9118
9161
|
text: string;
|
|
9119
|
-
type: "
|
|
9162
|
+
type: "success" | "error" | "info" | "warning";
|
|
9120
9163
|
id?: number | undefined;
|
|
9121
9164
|
}[] | undefined;
|
|
9122
9165
|
required?: boolean | undefined;
|
|
@@ -9137,7 +9180,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9137
9180
|
hint?: string | undefined;
|
|
9138
9181
|
messages?: {
|
|
9139
9182
|
text: string;
|
|
9140
|
-
type: "
|
|
9183
|
+
type: "success" | "error" | "info" | "warning";
|
|
9141
9184
|
id?: number | undefined;
|
|
9142
9185
|
}[] | undefined;
|
|
9143
9186
|
required?: boolean | undefined;
|
|
@@ -9158,7 +9201,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9158
9201
|
hint?: string | undefined;
|
|
9159
9202
|
messages?: {
|
|
9160
9203
|
text: string;
|
|
9161
|
-
type: "
|
|
9204
|
+
type: "success" | "error" | "info" | "warning";
|
|
9162
9205
|
id?: number | undefined;
|
|
9163
9206
|
}[] | undefined;
|
|
9164
9207
|
required?: boolean | undefined;
|
|
@@ -9388,7 +9431,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9388
9431
|
};
|
|
9389
9432
|
};
|
|
9390
9433
|
output: {
|
|
9391
|
-
prompt: "
|
|
9434
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "invitation" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9392
9435
|
language: string;
|
|
9393
9436
|
}[];
|
|
9394
9437
|
outputFormat: "json";
|
|
@@ -9426,7 +9469,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9426
9469
|
$get: {
|
|
9427
9470
|
input: {
|
|
9428
9471
|
param: {
|
|
9429
|
-
prompt: "
|
|
9472
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "invitation" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9430
9473
|
language: string;
|
|
9431
9474
|
};
|
|
9432
9475
|
} & {
|
|
@@ -9448,7 +9491,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9448
9491
|
$put: {
|
|
9449
9492
|
input: {
|
|
9450
9493
|
param: {
|
|
9451
|
-
prompt: "
|
|
9494
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "invitation" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9452
9495
|
language: string;
|
|
9453
9496
|
};
|
|
9454
9497
|
} & {
|
|
@@ -9472,7 +9515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9472
9515
|
$delete: {
|
|
9473
9516
|
input: {
|
|
9474
9517
|
param: {
|
|
9475
|
-
prompt: "
|
|
9518
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "invitation" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9476
9519
|
language: string;
|
|
9477
9520
|
};
|
|
9478
9521
|
} & {
|
|
@@ -9574,7 +9617,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9574
9617
|
} | undefined;
|
|
9575
9618
|
unique?: boolean | undefined;
|
|
9576
9619
|
profile_required?: boolean | undefined;
|
|
9577
|
-
verification_method?: "
|
|
9620
|
+
verification_method?: "code" | "link" | undefined;
|
|
9578
9621
|
} | undefined;
|
|
9579
9622
|
username?: {
|
|
9580
9623
|
identifier?: {
|
|
@@ -9708,7 +9751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9708
9751
|
} | undefined;
|
|
9709
9752
|
unique?: boolean | undefined;
|
|
9710
9753
|
profile_required?: boolean | undefined;
|
|
9711
|
-
verification_method?: "
|
|
9754
|
+
verification_method?: "code" | "link" | undefined;
|
|
9712
9755
|
} | undefined;
|
|
9713
9756
|
username?: {
|
|
9714
9757
|
identifier?: {
|
|
@@ -9857,7 +9900,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9857
9900
|
} | undefined;
|
|
9858
9901
|
unique?: boolean | undefined;
|
|
9859
9902
|
profile_required?: boolean | undefined;
|
|
9860
|
-
verification_method?: "
|
|
9903
|
+
verification_method?: "code" | "link" | undefined;
|
|
9861
9904
|
} | undefined;
|
|
9862
9905
|
username?: {
|
|
9863
9906
|
identifier?: {
|
|
@@ -10036,7 +10079,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10036
10079
|
} | undefined;
|
|
10037
10080
|
unique?: boolean | undefined;
|
|
10038
10081
|
profile_required?: boolean | undefined;
|
|
10039
|
-
verification_method?: "
|
|
10082
|
+
verification_method?: "code" | "link" | undefined;
|
|
10040
10083
|
} | undefined;
|
|
10041
10084
|
username?: {
|
|
10042
10085
|
identifier?: {
|
|
@@ -10194,7 +10237,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10194
10237
|
} | undefined;
|
|
10195
10238
|
unique?: boolean | undefined;
|
|
10196
10239
|
profile_required?: boolean | undefined;
|
|
10197
|
-
verification_method?: "
|
|
10240
|
+
verification_method?: "code" | "link" | undefined;
|
|
10198
10241
|
} | undefined;
|
|
10199
10242
|
username?: {
|
|
10200
10243
|
identifier?: {
|
|
@@ -10334,7 +10377,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10334
10377
|
};
|
|
10335
10378
|
} | {
|
|
10336
10379
|
mode: "inline";
|
|
10337
|
-
status: "
|
|
10380
|
+
status: "success" | "error";
|
|
10338
10381
|
connection_id: string;
|
|
10339
10382
|
connection_name: string;
|
|
10340
10383
|
strategy: string;
|
|
@@ -10370,7 +10413,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10370
10413
|
tenant_id: string;
|
|
10371
10414
|
created_at: string;
|
|
10372
10415
|
updated_at: string;
|
|
10373
|
-
deploymentStatus: "
|
|
10416
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
10374
10417
|
secrets?: {
|
|
10375
10418
|
[x: string]: string;
|
|
10376
10419
|
} | undefined;
|
|
@@ -10460,7 +10503,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10460
10503
|
tenant_id: string;
|
|
10461
10504
|
created_at: string;
|
|
10462
10505
|
updated_at: string;
|
|
10463
|
-
deploymentStatus: "
|
|
10506
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
10464
10507
|
secrets?: {
|
|
10465
10508
|
[x: string]: string;
|
|
10466
10509
|
} | undefined;
|
|
@@ -10973,7 +11016,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10973
11016
|
log_type: string;
|
|
10974
11017
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10975
11018
|
actor: {
|
|
10976
|
-
type: "
|
|
11019
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
10977
11020
|
id?: string | undefined;
|
|
10978
11021
|
email?: string | undefined;
|
|
10979
11022
|
org_id?: string | undefined;
|
|
@@ -11621,7 +11664,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11621
11664
|
};
|
|
11622
11665
|
};
|
|
11623
11666
|
output: {
|
|
11624
|
-
type: "
|
|
11667
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11625
11668
|
date: string;
|
|
11626
11669
|
isMobile: boolean;
|
|
11627
11670
|
log_id: string;
|
|
@@ -11660,7 +11703,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11660
11703
|
limit: number;
|
|
11661
11704
|
length: number;
|
|
11662
11705
|
logs: {
|
|
11663
|
-
type: "
|
|
11706
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11664
11707
|
date: string;
|
|
11665
11708
|
isMobile: boolean;
|
|
11666
11709
|
log_id: string;
|
|
@@ -11714,7 +11757,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11714
11757
|
};
|
|
11715
11758
|
};
|
|
11716
11759
|
output: {
|
|
11717
|
-
type: "
|
|
11760
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11718
11761
|
date: string;
|
|
11719
11762
|
isMobile: boolean;
|
|
11720
11763
|
log_id: string;
|
|
@@ -11869,7 +11912,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11869
11912
|
audience?: string | undefined;
|
|
11870
11913
|
client_id?: string | undefined;
|
|
11871
11914
|
allow_any_organization?: string | undefined;
|
|
11872
|
-
subject_type?: "
|
|
11915
|
+
subject_type?: "user" | "client" | undefined;
|
|
11873
11916
|
};
|
|
11874
11917
|
} & {
|
|
11875
11918
|
header: {
|
|
@@ -11884,7 +11927,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11884
11927
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11885
11928
|
allow_any_organization?: boolean | undefined;
|
|
11886
11929
|
is_system?: boolean | undefined;
|
|
11887
|
-
subject_type?: "
|
|
11930
|
+
subject_type?: "user" | "client" | undefined;
|
|
11888
11931
|
authorization_details_types?: string[] | undefined;
|
|
11889
11932
|
created_at?: string | undefined;
|
|
11890
11933
|
updated_at?: string | undefined;
|
|
@@ -11900,7 +11943,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11900
11943
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11901
11944
|
allow_any_organization?: boolean | undefined;
|
|
11902
11945
|
is_system?: boolean | undefined;
|
|
11903
|
-
subject_type?: "
|
|
11946
|
+
subject_type?: "user" | "client" | undefined;
|
|
11904
11947
|
authorization_details_types?: string[] | undefined;
|
|
11905
11948
|
created_at?: string | undefined;
|
|
11906
11949
|
updated_at?: string | undefined;
|
|
@@ -11931,7 +11974,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11931
11974
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11932
11975
|
allow_any_organization?: boolean | undefined;
|
|
11933
11976
|
is_system?: boolean | undefined;
|
|
11934
|
-
subject_type?: "
|
|
11977
|
+
subject_type?: "user" | "client" | undefined;
|
|
11935
11978
|
authorization_details_types?: string[] | undefined;
|
|
11936
11979
|
created_at?: string | undefined;
|
|
11937
11980
|
updated_at?: string | undefined;
|
|
@@ -11976,7 +12019,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11976
12019
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11977
12020
|
allow_any_organization?: boolean | undefined;
|
|
11978
12021
|
is_system?: boolean | undefined;
|
|
11979
|
-
subject_type?: "
|
|
12022
|
+
subject_type?: "user" | "client" | undefined;
|
|
11980
12023
|
authorization_details_types?: string[] | undefined;
|
|
11981
12024
|
};
|
|
11982
12025
|
};
|
|
@@ -11988,7 +12031,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11988
12031
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11989
12032
|
allow_any_organization?: boolean | undefined;
|
|
11990
12033
|
is_system?: boolean | undefined;
|
|
11991
|
-
subject_type?: "
|
|
12034
|
+
subject_type?: "user" | "client" | undefined;
|
|
11992
12035
|
authorization_details_types?: string[] | undefined;
|
|
11993
12036
|
created_at?: string | undefined;
|
|
11994
12037
|
updated_at?: string | undefined;
|
|
@@ -12012,7 +12055,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12012
12055
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12013
12056
|
allow_any_organization?: boolean | undefined;
|
|
12014
12057
|
is_system?: boolean | undefined;
|
|
12015
|
-
subject_type?: "
|
|
12058
|
+
subject_type?: "user" | "client" | undefined;
|
|
12016
12059
|
authorization_details_types?: string[] | undefined;
|
|
12017
12060
|
};
|
|
12018
12061
|
};
|
|
@@ -12024,7 +12067,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12024
12067
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12025
12068
|
allow_any_organization?: boolean | undefined;
|
|
12026
12069
|
is_system?: boolean | undefined;
|
|
12027
|
-
subject_type?: "
|
|
12070
|
+
subject_type?: "user" | "client" | undefined;
|
|
12028
12071
|
authorization_details_types?: string[] | undefined;
|
|
12029
12072
|
created_at?: string | undefined;
|
|
12030
12073
|
updated_at?: string | undefined;
|
|
@@ -12800,7 +12843,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12800
12843
|
} | undefined;
|
|
12801
12844
|
unique?: boolean | undefined;
|
|
12802
12845
|
profile_required?: boolean | undefined;
|
|
12803
|
-
verification_method?: "
|
|
12846
|
+
verification_method?: "code" | "link" | undefined;
|
|
12804
12847
|
} | undefined;
|
|
12805
12848
|
username?: {
|
|
12806
12849
|
identifier?: {
|
|
@@ -12954,7 +12997,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12954
12997
|
} | undefined;
|
|
12955
12998
|
unique?: boolean | undefined;
|
|
12956
12999
|
profile_required?: boolean | undefined;
|
|
12957
|
-
verification_method?: "
|
|
13000
|
+
verification_method?: "code" | "link" | undefined;
|
|
12958
13001
|
} | undefined;
|
|
12959
13002
|
username?: {
|
|
12960
13003
|
identifier?: {
|
|
@@ -13932,7 +13975,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13932
13975
|
};
|
|
13933
13976
|
};
|
|
13934
13977
|
output: {
|
|
13935
|
-
type: "
|
|
13978
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13936
13979
|
date: string;
|
|
13937
13980
|
isMobile: boolean;
|
|
13938
13981
|
log_id: string;
|
|
@@ -13971,7 +14014,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13971
14014
|
limit: number;
|
|
13972
14015
|
length: number;
|
|
13973
14016
|
logs: {
|
|
13974
|
-
type: "
|
|
14017
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13975
14018
|
date: string;
|
|
13976
14019
|
isMobile: boolean;
|
|
13977
14020
|
log_id: string;
|
|
@@ -14811,7 +14854,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14811
14854
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14812
14855
|
custom_domain_id: string;
|
|
14813
14856
|
primary: boolean;
|
|
14814
|
-
status: "
|
|
14857
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14815
14858
|
verification_method?: "txt" | undefined;
|
|
14816
14859
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14817
14860
|
domain_metadata?: {
|
|
@@ -14852,7 +14895,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14852
14895
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14853
14896
|
custom_domain_id: string;
|
|
14854
14897
|
primary: boolean;
|
|
14855
|
-
status: "
|
|
14898
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14856
14899
|
verification_method?: "txt" | undefined;
|
|
14857
14900
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14858
14901
|
domain_metadata?: {
|
|
@@ -14916,7 +14959,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14916
14959
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14917
14960
|
custom_domain_id: string;
|
|
14918
14961
|
primary: boolean;
|
|
14919
|
-
status: "
|
|
14962
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14920
14963
|
verification_method?: "txt" | undefined;
|
|
14921
14964
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14922
14965
|
domain_metadata?: {
|
|
@@ -14963,7 +15006,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14963
15006
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14964
15007
|
custom_domain_id: string;
|
|
14965
15008
|
primary: boolean;
|
|
14966
|
-
status: "
|
|
15009
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14967
15010
|
verification_method?: "txt" | undefined;
|
|
14968
15011
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14969
15012
|
domain_metadata?: {
|
|
@@ -15009,7 +15052,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15009
15052
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15010
15053
|
custom_domain_id: string;
|
|
15011
15054
|
primary: boolean;
|
|
15012
|
-
status: "
|
|
15055
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15013
15056
|
verification_method?: "txt" | undefined;
|
|
15014
15057
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15015
15058
|
domain_metadata?: {
|
|
@@ -15050,7 +15093,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15050
15093
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15051
15094
|
custom_domain_id: string;
|
|
15052
15095
|
primary: boolean;
|
|
15053
|
-
status: "
|
|
15096
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15054
15097
|
verification_method?: "txt" | undefined;
|
|
15055
15098
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15056
15099
|
domain_metadata?: {
|
|
@@ -15535,7 +15578,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15535
15578
|
json: {
|
|
15536
15579
|
bindings: {
|
|
15537
15580
|
ref: {
|
|
15538
|
-
type?: "
|
|
15581
|
+
type?: "action_name" | "action_id" | undefined;
|
|
15539
15582
|
value?: string | undefined;
|
|
15540
15583
|
id?: string | undefined;
|
|
15541
15584
|
name?: string | undefined;
|
|
@@ -15610,7 +15653,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15610
15653
|
output: {
|
|
15611
15654
|
id: string;
|
|
15612
15655
|
trigger_id: string;
|
|
15613
|
-
status: "
|
|
15656
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
15614
15657
|
results: {
|
|
15615
15658
|
action_name: string;
|
|
15616
15659
|
error: {
|
|
@@ -15657,7 +15700,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15657
15700
|
logs: {
|
|
15658
15701
|
action_name: string;
|
|
15659
15702
|
lines: {
|
|
15660
|
-
level: "
|
|
15703
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
15661
15704
|
message: string;
|
|
15662
15705
|
}[];
|
|
15663
15706
|
}[];
|
|
@@ -16324,7 +16367,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16324
16367
|
args: hono_utils_types.JSONValue[];
|
|
16325
16368
|
}[];
|
|
16326
16369
|
logs: {
|
|
16327
|
-
level: "
|
|
16370
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
16328
16371
|
message: string;
|
|
16329
16372
|
}[];
|
|
16330
16373
|
error?: string | undefined;
|
|
@@ -16372,7 +16415,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16372
16415
|
message: string;
|
|
16373
16416
|
};
|
|
16374
16417
|
outputFormat: "json";
|
|
16375
|
-
status:
|
|
16418
|
+
status: 400;
|
|
16376
16419
|
} | {
|
|
16377
16420
|
input: {
|
|
16378
16421
|
query: {
|
|
@@ -16390,7 +16433,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16390
16433
|
message: string;
|
|
16391
16434
|
};
|
|
16392
16435
|
outputFormat: "json";
|
|
16393
|
-
status:
|
|
16436
|
+
status: 500;
|
|
16394
16437
|
};
|
|
16395
16438
|
};
|
|
16396
16439
|
} & {
|
|
@@ -16428,7 +16471,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16428
16471
|
message: string;
|
|
16429
16472
|
};
|
|
16430
16473
|
outputFormat: "json";
|
|
16431
|
-
status:
|
|
16474
|
+
status: 400;
|
|
16432
16475
|
} | {
|
|
16433
16476
|
input: {
|
|
16434
16477
|
form: {
|
|
@@ -16446,7 +16489,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16446
16489
|
message: string;
|
|
16447
16490
|
};
|
|
16448
16491
|
outputFormat: "json";
|
|
16449
|
-
status:
|
|
16492
|
+
status: 500;
|
|
16450
16493
|
};
|
|
16451
16494
|
};
|
|
16452
16495
|
}, "/login/callback"> & hono_types.MergeSchemaPath<{
|
|
@@ -16484,7 +16527,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16484
16527
|
message: string;
|
|
16485
16528
|
};
|
|
16486
16529
|
outputFormat: "json";
|
|
16487
|
-
status:
|
|
16530
|
+
status: 400;
|
|
16488
16531
|
} | {
|
|
16489
16532
|
input: {
|
|
16490
16533
|
query: {
|
|
@@ -16502,7 +16545,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16502
16545
|
message: string;
|
|
16503
16546
|
};
|
|
16504
16547
|
outputFormat: "json";
|
|
16505
|
-
status:
|
|
16548
|
+
status: 500;
|
|
16506
16549
|
};
|
|
16507
16550
|
};
|
|
16508
16551
|
} & {
|
|
@@ -16540,7 +16583,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16540
16583
|
message: string;
|
|
16541
16584
|
};
|
|
16542
16585
|
outputFormat: "json";
|
|
16543
|
-
status:
|
|
16586
|
+
status: 400;
|
|
16544
16587
|
} | {
|
|
16545
16588
|
input: {
|
|
16546
16589
|
form: {
|
|
@@ -16558,7 +16601,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16558
16601
|
message: string;
|
|
16559
16602
|
};
|
|
16560
16603
|
outputFormat: "json";
|
|
16561
|
-
status:
|
|
16604
|
+
status: 500;
|
|
16562
16605
|
};
|
|
16563
16606
|
};
|
|
16564
16607
|
}, "/callback"> & hono_types.MergeSchemaPath<{
|
|
@@ -17055,19 +17098,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17055
17098
|
connection: "email";
|
|
17056
17099
|
client_id: string;
|
|
17057
17100
|
email: string;
|
|
17058
|
-
send: "
|
|
17101
|
+
send: "code" | "link";
|
|
17059
17102
|
authParams: {
|
|
17060
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17061
|
-
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17062
|
-
scope?: string | undefined;
|
|
17063
17103
|
username?: string | undefined;
|
|
17064
|
-
audience?: string | undefined;
|
|
17065
17104
|
state?: string | undefined;
|
|
17066
|
-
prompt?: string | undefined;
|
|
17067
17105
|
act_as?: string | undefined;
|
|
17106
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17107
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17068
17108
|
redirect_uri?: string | undefined;
|
|
17109
|
+
audience?: string | undefined;
|
|
17069
17110
|
organization?: string | undefined;
|
|
17070
17111
|
nonce?: string | undefined;
|
|
17112
|
+
scope?: string | undefined;
|
|
17113
|
+
prompt?: string | undefined;
|
|
17071
17114
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17072
17115
|
code_challenge?: string | undefined;
|
|
17073
17116
|
ui_locales?: string | undefined;
|
|
@@ -17091,19 +17134,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17091
17134
|
client_id: string;
|
|
17092
17135
|
connection: "sms";
|
|
17093
17136
|
phone_number: string;
|
|
17094
|
-
send: "
|
|
17137
|
+
send: "code" | "link";
|
|
17095
17138
|
authParams: {
|
|
17096
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17097
|
-
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17098
|
-
scope?: string | undefined;
|
|
17099
17139
|
username?: string | undefined;
|
|
17100
|
-
audience?: string | undefined;
|
|
17101
17140
|
state?: string | undefined;
|
|
17102
|
-
prompt?: string | undefined;
|
|
17103
17141
|
act_as?: string | undefined;
|
|
17142
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17143
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17104
17144
|
redirect_uri?: string | undefined;
|
|
17145
|
+
audience?: string | undefined;
|
|
17105
17146
|
organization?: string | undefined;
|
|
17106
17147
|
nonce?: string | undefined;
|
|
17148
|
+
scope?: string | undefined;
|
|
17149
|
+
prompt?: string | undefined;
|
|
17107
17150
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17108
17151
|
code_challenge?: string | undefined;
|
|
17109
17152
|
ui_locales?: string | undefined;
|
|
@@ -17170,7 +17213,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17170
17213
|
error_description?: string | undefined;
|
|
17171
17214
|
};
|
|
17172
17215
|
outputFormat: "json";
|
|
17173
|
-
status:
|
|
17216
|
+
status: 400;
|
|
17174
17217
|
} | {
|
|
17175
17218
|
input: {
|
|
17176
17219
|
query: {
|
|
@@ -17191,7 +17234,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17191
17234
|
error_description?: string | undefined;
|
|
17192
17235
|
};
|
|
17193
17236
|
outputFormat: "json";
|
|
17194
|
-
status:
|
|
17237
|
+
status: 500;
|
|
17195
17238
|
};
|
|
17196
17239
|
};
|
|
17197
17240
|
}, "/passwordless"> & hono_types.MergeSchemaPath<{
|
|
@@ -17237,14 +17280,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17237
17280
|
input: {
|
|
17238
17281
|
form: {
|
|
17239
17282
|
token: string;
|
|
17240
|
-
token_type_hint?: "
|
|
17283
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17241
17284
|
client_id?: string | undefined;
|
|
17242
17285
|
client_secret?: string | undefined;
|
|
17243
17286
|
};
|
|
17244
17287
|
} & {
|
|
17245
17288
|
json: {
|
|
17246
17289
|
token: string;
|
|
17247
|
-
token_type_hint?: "
|
|
17290
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17248
17291
|
client_id?: string | undefined;
|
|
17249
17292
|
client_secret?: string | undefined;
|
|
17250
17293
|
};
|
|
@@ -17256,14 +17299,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17256
17299
|
input: {
|
|
17257
17300
|
form: {
|
|
17258
17301
|
token: string;
|
|
17259
|
-
token_type_hint?: "
|
|
17302
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17260
17303
|
client_id?: string | undefined;
|
|
17261
17304
|
client_secret?: string | undefined;
|
|
17262
17305
|
};
|
|
17263
17306
|
} & {
|
|
17264
17307
|
json: {
|
|
17265
17308
|
token: string;
|
|
17266
|
-
token_type_hint?: "
|
|
17309
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17267
17310
|
client_id?: string | undefined;
|
|
17268
17311
|
client_secret?: string | undefined;
|
|
17269
17312
|
};
|
|
@@ -17278,14 +17321,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17278
17321
|
input: {
|
|
17279
17322
|
form: {
|
|
17280
17323
|
token: string;
|
|
17281
|
-
token_type_hint?: "
|
|
17324
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17282
17325
|
client_id?: string | undefined;
|
|
17283
17326
|
client_secret?: string | undefined;
|
|
17284
17327
|
};
|
|
17285
17328
|
} & {
|
|
17286
17329
|
json: {
|
|
17287
17330
|
token: string;
|
|
17288
|
-
token_type_hint?: "
|
|
17331
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17289
17332
|
client_id?: string | undefined;
|
|
17290
17333
|
client_secret?: string | undefined;
|
|
17291
17334
|
};
|
|
@@ -18145,7 +18188,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18145
18188
|
};
|
|
18146
18189
|
output: {};
|
|
18147
18190
|
outputFormat: string;
|
|
18148
|
-
status:
|
|
18191
|
+
status: 302;
|
|
18149
18192
|
} | {
|
|
18150
18193
|
input: {
|
|
18151
18194
|
query: {
|
|
@@ -18154,7 +18197,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18154
18197
|
};
|
|
18155
18198
|
output: {};
|
|
18156
18199
|
outputFormat: string;
|
|
18157
|
-
status:
|
|
18200
|
+
status: 400;
|
|
18158
18201
|
} | {
|
|
18159
18202
|
input: {
|
|
18160
18203
|
query: {
|
|
@@ -18163,7 +18206,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18163
18206
|
};
|
|
18164
18207
|
output: {};
|
|
18165
18208
|
outputFormat: string;
|
|
18166
|
-
status:
|
|
18209
|
+
status: 500;
|
|
18167
18210
|
};
|
|
18168
18211
|
};
|
|
18169
18212
|
}, "/continue"> & hono_types.MergeSchemaPath<{
|
|
@@ -19012,7 +19055,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19012
19055
|
$get: {
|
|
19013
19056
|
input: {
|
|
19014
19057
|
param: {
|
|
19015
|
-
screen: "signup" | "
|
|
19058
|
+
screen: "login" | "signup" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "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";
|
|
19016
19059
|
};
|
|
19017
19060
|
} & {
|
|
19018
19061
|
query: {
|
|
@@ -19028,7 +19071,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19028
19071
|
} | {
|
|
19029
19072
|
input: {
|
|
19030
19073
|
param: {
|
|
19031
|
-
screen: "signup" | "
|
|
19074
|
+
screen: "login" | "signup" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "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";
|
|
19032
19075
|
};
|
|
19033
19076
|
} & {
|
|
19034
19077
|
query: {
|
|
@@ -19044,7 +19087,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19044
19087
|
} | {
|
|
19045
19088
|
input: {
|
|
19046
19089
|
param: {
|
|
19047
|
-
screen: "signup" | "
|
|
19090
|
+
screen: "login" | "signup" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "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";
|
|
19048
19091
|
};
|
|
19049
19092
|
} & {
|
|
19050
19093
|
query: {
|
|
@@ -19064,7 +19107,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19064
19107
|
$post: {
|
|
19065
19108
|
input: {
|
|
19066
19109
|
param: {
|
|
19067
|
-
screen: "
|
|
19110
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "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";
|
|
19068
19111
|
};
|
|
19069
19112
|
} & {
|
|
19070
19113
|
query: {
|
|
@@ -19082,7 +19125,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19082
19125
|
} | {
|
|
19083
19126
|
input: {
|
|
19084
19127
|
param: {
|
|
19085
|
-
screen: "
|
|
19128
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "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";
|
|
19086
19129
|
};
|
|
19087
19130
|
} & {
|
|
19088
19131
|
query: {
|
|
@@ -19100,7 +19143,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19100
19143
|
} | {
|
|
19101
19144
|
input: {
|
|
19102
19145
|
param: {
|
|
19103
|
-
screen: "
|
|
19146
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "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";
|
|
19104
19147
|
};
|
|
19105
19148
|
} & {
|
|
19106
19149
|
query: {
|
|
@@ -19199,4 +19242,4 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19199
19242
|
};
|
|
19200
19243
|
|
|
19201
19244
|
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
|
|
19202
|
-
export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, KeyRing, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
|
|
19245
|
+
export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
|