authhero 8.4.0 → 8.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/{p-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 +240 -224
- package/dist/authhero.mjs +1509 -1472
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +1 -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 +2 -2
- package/dist/types/hooks/post-user-login.d.ts +2 -0
- package/dist/types/index.d.ts +223 -221
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/index.d.ts +23 -23
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +6 -6
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/flows.d.ts +7 -7
- 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 +192 -192
- 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 +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/themes.d.ts +3 -3
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +6 -6
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- 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/IdToken.d.ts +1 -1
- package/dist/types/utils/jwks.d.ts +2 -2
- package/package.json +3 -3
- package/dist/assets/u/widget/p-35c8b265.entry.js +0 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as hono_utils_http_status from 'hono/utils/http-status';
|
|
2
2
|
import * as hono_utils_types from 'hono/utils/types';
|
|
3
3
|
import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
|
|
4
|
-
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
4
|
+
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, KeysAdapter, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
5
5
|
export * from '@authhero/adapter-interfaces';
|
|
6
6
|
import * as hono_types from 'hono/types';
|
|
7
7
|
import { z, OpenAPIHono } from '@hono/zod-openapi';
|
|
@@ -2623,6 +2623,22 @@ type DeepPartial<T> = {
|
|
|
2623
2623
|
};
|
|
2624
2624
|
declare function deepMergePatch<T>(target: T, patch: DeepPartial<T>): T;
|
|
2625
2625
|
|
|
2626
|
+
declare function listControlPlaneKeys(keys: KeysAdapter, type?: string): Promise<SigningKey[]>;
|
|
2627
|
+
declare function resolveSigningKeyMode(option: SigningKeyModeOption | undefined, tenantId: string): Promise<SigningKeyMode>;
|
|
2628
|
+
interface ResolveSigningKeysOptions {
|
|
2629
|
+
/**
|
|
2630
|
+
* `"sign"` returns at most one key — the tenant's newest non-revoked key
|
|
2631
|
+
* if available, else the control-plane fallback. `"publish"` returns the
|
|
2632
|
+
* full set used for JWKS: control-plane only when mode is
|
|
2633
|
+
* `"control-plane"`, tenant ∪ control-plane when mode is `"tenant"` so
|
|
2634
|
+
* tokens signed by either bucket still verify during rotation.
|
|
2635
|
+
*/
|
|
2636
|
+
purpose: "sign" | "publish";
|
|
2637
|
+
/** Defaults to `"jwt_signing"`. Pass `"saml_encryption"` for SAML keys. */
|
|
2638
|
+
type?: string;
|
|
2639
|
+
}
|
|
2640
|
+
declare function resolveSigningKeys(keys: KeysAdapter, tenantId: string, modeOption: SigningKeyModeOption | undefined, opts: ResolveSigningKeysOptions): Promise<SigningKey[]>;
|
|
2641
|
+
|
|
2626
2642
|
declare const USERNAME_PASSWORD_PROVIDER = "auth2";
|
|
2627
2643
|
|
|
2628
2644
|
interface EnsureUsernameOptions {
|
|
@@ -2867,7 +2883,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2867
2883
|
};
|
|
2868
2884
|
} & {
|
|
2869
2885
|
json: {
|
|
2870
|
-
type: "
|
|
2886
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2871
2887
|
phone_number?: string | undefined;
|
|
2872
2888
|
totp_secret?: string | undefined;
|
|
2873
2889
|
credential_id?: string | undefined;
|
|
@@ -3007,7 +3023,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3007
3023
|
};
|
|
3008
3024
|
};
|
|
3009
3025
|
output: {
|
|
3010
|
-
name: "email" | "
|
|
3026
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3011
3027
|
enabled: boolean;
|
|
3012
3028
|
trial_expired?: boolean | undefined;
|
|
3013
3029
|
}[];
|
|
@@ -3162,7 +3178,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3162
3178
|
$get: {
|
|
3163
3179
|
input: {
|
|
3164
3180
|
param: {
|
|
3165
|
-
factor_name: "email" | "
|
|
3181
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3166
3182
|
};
|
|
3167
3183
|
} & {
|
|
3168
3184
|
header: {
|
|
@@ -3170,7 +3186,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3170
3186
|
};
|
|
3171
3187
|
};
|
|
3172
3188
|
output: {
|
|
3173
|
-
name: "email" | "
|
|
3189
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3174
3190
|
enabled: boolean;
|
|
3175
3191
|
trial_expired?: boolean | undefined;
|
|
3176
3192
|
};
|
|
@@ -3183,7 +3199,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3183
3199
|
$put: {
|
|
3184
3200
|
input: {
|
|
3185
3201
|
param: {
|
|
3186
|
-
factor_name: "email" | "
|
|
3202
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3187
3203
|
};
|
|
3188
3204
|
} & {
|
|
3189
3205
|
header: {
|
|
@@ -3195,7 +3211,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3195
3211
|
};
|
|
3196
3212
|
};
|
|
3197
3213
|
output: {
|
|
3198
|
-
name: "email" | "
|
|
3214
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3199
3215
|
enabled: boolean;
|
|
3200
3216
|
trial_expired?: boolean | undefined;
|
|
3201
3217
|
};
|
|
@@ -3941,11 +3957,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3941
3957
|
email?: string | undefined;
|
|
3942
3958
|
};
|
|
3943
3959
|
id?: string | undefined;
|
|
3960
|
+
connection_id?: string | undefined;
|
|
3944
3961
|
app_metadata?: Record<string, any> | undefined;
|
|
3945
3962
|
user_metadata?: Record<string, any> | undefined;
|
|
3946
|
-
connection_id?: string | undefined;
|
|
3947
|
-
roles?: string[] | undefined;
|
|
3948
3963
|
ttl_sec?: number | undefined;
|
|
3964
|
+
roles?: string[] | undefined;
|
|
3949
3965
|
send_invitation_email?: boolean | undefined;
|
|
3950
3966
|
};
|
|
3951
3967
|
};
|
|
@@ -4795,7 +4811,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4795
4811
|
type: "REDIRECT";
|
|
4796
4812
|
action: "REDIRECT_USER";
|
|
4797
4813
|
params: {
|
|
4798
|
-
target: "custom" | "
|
|
4814
|
+
target: "custom" | "account" | "change-email";
|
|
4799
4815
|
custom_url?: string | undefined;
|
|
4800
4816
|
};
|
|
4801
4817
|
alias?: string | undefined;
|
|
@@ -4848,7 +4864,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4848
4864
|
type: "REDIRECT";
|
|
4849
4865
|
action: "REDIRECT_USER";
|
|
4850
4866
|
params: {
|
|
4851
|
-
target: "custom" | "
|
|
4867
|
+
target: "custom" | "account" | "change-email";
|
|
4852
4868
|
custom_url?: string | undefined;
|
|
4853
4869
|
};
|
|
4854
4870
|
alias?: string | undefined;
|
|
@@ -4916,7 +4932,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4916
4932
|
type: "REDIRECT";
|
|
4917
4933
|
action: "REDIRECT_USER";
|
|
4918
4934
|
params: {
|
|
4919
|
-
target: "custom" | "
|
|
4935
|
+
target: "custom" | "account" | "change-email";
|
|
4920
4936
|
custom_url?: string | undefined;
|
|
4921
4937
|
};
|
|
4922
4938
|
alias?: string | undefined;
|
|
@@ -4997,7 +5013,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4997
5013
|
type: "REDIRECT";
|
|
4998
5014
|
action: "REDIRECT_USER";
|
|
4999
5015
|
params: {
|
|
5000
|
-
target: "custom" | "
|
|
5016
|
+
target: "custom" | "account" | "change-email";
|
|
5001
5017
|
custom_url?: string | undefined;
|
|
5002
5018
|
};
|
|
5003
5019
|
alias?: string | undefined;
|
|
@@ -5045,7 +5061,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5045
5061
|
type: "REDIRECT";
|
|
5046
5062
|
action: "REDIRECT_USER";
|
|
5047
5063
|
params: {
|
|
5048
|
-
target: "custom" | "
|
|
5064
|
+
target: "custom" | "account" | "change-email";
|
|
5049
5065
|
custom_url?: string | undefined;
|
|
5050
5066
|
};
|
|
5051
5067
|
alias?: string | undefined;
|
|
@@ -5105,7 +5121,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5105
5121
|
type: "REDIRECT";
|
|
5106
5122
|
action: "REDIRECT_USER";
|
|
5107
5123
|
params: {
|
|
5108
|
-
target: "custom" | "
|
|
5124
|
+
target: "custom" | "account" | "change-email";
|
|
5109
5125
|
custom_url?: string | undefined;
|
|
5110
5126
|
};
|
|
5111
5127
|
alias?: string | undefined;
|
|
@@ -5153,7 +5169,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5153
5169
|
type: "REDIRECT";
|
|
5154
5170
|
action: "REDIRECT_USER";
|
|
5155
5171
|
params: {
|
|
5156
|
-
target: "custom" | "
|
|
5172
|
+
target: "custom" | "account" | "change-email";
|
|
5157
5173
|
custom_url?: string | undefined;
|
|
5158
5174
|
};
|
|
5159
5175
|
alias?: string | undefined;
|
|
@@ -5371,7 +5387,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5371
5387
|
hint?: string | undefined;
|
|
5372
5388
|
messages?: {
|
|
5373
5389
|
text: string;
|
|
5374
|
-
type: "
|
|
5390
|
+
type: "success" | "error" | "info" | "warning";
|
|
5375
5391
|
id?: number | undefined;
|
|
5376
5392
|
}[] | undefined;
|
|
5377
5393
|
required?: boolean | undefined;
|
|
@@ -5389,7 +5405,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5389
5405
|
hint?: string | undefined;
|
|
5390
5406
|
messages?: {
|
|
5391
5407
|
text: string;
|
|
5392
|
-
type: "
|
|
5408
|
+
type: "success" | "error" | "info" | "warning";
|
|
5393
5409
|
id?: number | undefined;
|
|
5394
5410
|
}[] | undefined;
|
|
5395
5411
|
required?: boolean | undefined;
|
|
@@ -5413,7 +5429,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5413
5429
|
hint?: string | undefined;
|
|
5414
5430
|
messages?: {
|
|
5415
5431
|
text: string;
|
|
5416
|
-
type: "
|
|
5432
|
+
type: "success" | "error" | "info" | "warning";
|
|
5417
5433
|
id?: number | undefined;
|
|
5418
5434
|
}[] | undefined;
|
|
5419
5435
|
required?: boolean | undefined;
|
|
@@ -5437,7 +5453,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5437
5453
|
hint?: string | undefined;
|
|
5438
5454
|
messages?: {
|
|
5439
5455
|
text: string;
|
|
5440
|
-
type: "
|
|
5456
|
+
type: "success" | "error" | "info" | "warning";
|
|
5441
5457
|
id?: number | undefined;
|
|
5442
5458
|
}[] | undefined;
|
|
5443
5459
|
required?: boolean | undefined;
|
|
@@ -5466,7 +5482,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5466
5482
|
hint?: string | undefined;
|
|
5467
5483
|
messages?: {
|
|
5468
5484
|
text: string;
|
|
5469
|
-
type: "
|
|
5485
|
+
type: "success" | "error" | "info" | "warning";
|
|
5470
5486
|
id?: number | undefined;
|
|
5471
5487
|
}[] | undefined;
|
|
5472
5488
|
required?: boolean | undefined;
|
|
@@ -5481,7 +5497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5481
5497
|
hint?: string | undefined;
|
|
5482
5498
|
messages?: {
|
|
5483
5499
|
text: string;
|
|
5484
|
-
type: "
|
|
5500
|
+
type: "success" | "error" | "info" | "warning";
|
|
5485
5501
|
id?: number | undefined;
|
|
5486
5502
|
}[] | undefined;
|
|
5487
5503
|
required?: boolean | undefined;
|
|
@@ -5502,7 +5518,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5502
5518
|
hint?: string | undefined;
|
|
5503
5519
|
messages?: {
|
|
5504
5520
|
text: string;
|
|
5505
|
-
type: "
|
|
5521
|
+
type: "success" | "error" | "info" | "warning";
|
|
5506
5522
|
id?: number | undefined;
|
|
5507
5523
|
}[] | undefined;
|
|
5508
5524
|
required?: boolean | undefined;
|
|
@@ -5527,7 +5543,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5527
5543
|
hint?: string | undefined;
|
|
5528
5544
|
messages?: {
|
|
5529
5545
|
text: string;
|
|
5530
|
-
type: "
|
|
5546
|
+
type: "success" | "error" | "info" | "warning";
|
|
5531
5547
|
id?: number | undefined;
|
|
5532
5548
|
}[] | undefined;
|
|
5533
5549
|
required?: boolean | undefined;
|
|
@@ -5546,7 +5562,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5546
5562
|
hint?: string | undefined;
|
|
5547
5563
|
messages?: {
|
|
5548
5564
|
text: string;
|
|
5549
|
-
type: "
|
|
5565
|
+
type: "success" | "error" | "info" | "warning";
|
|
5550
5566
|
id?: number | undefined;
|
|
5551
5567
|
}[] | undefined;
|
|
5552
5568
|
required?: boolean | undefined;
|
|
@@ -5566,7 +5582,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5566
5582
|
hint?: string | undefined;
|
|
5567
5583
|
messages?: {
|
|
5568
5584
|
text: string;
|
|
5569
|
-
type: "
|
|
5585
|
+
type: "success" | "error" | "info" | "warning";
|
|
5570
5586
|
id?: number | undefined;
|
|
5571
5587
|
}[] | undefined;
|
|
5572
5588
|
required?: boolean | undefined;
|
|
@@ -5585,7 +5601,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5585
5601
|
hint?: string | undefined;
|
|
5586
5602
|
messages?: {
|
|
5587
5603
|
text: string;
|
|
5588
|
-
type: "
|
|
5604
|
+
type: "success" | "error" | "info" | "warning";
|
|
5589
5605
|
id?: number | undefined;
|
|
5590
5606
|
}[] | undefined;
|
|
5591
5607
|
required?: boolean | undefined;
|
|
@@ -5607,7 +5623,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5607
5623
|
hint?: string | undefined;
|
|
5608
5624
|
messages?: {
|
|
5609
5625
|
text: string;
|
|
5610
|
-
type: "
|
|
5626
|
+
type: "success" | "error" | "info" | "warning";
|
|
5611
5627
|
id?: number | undefined;
|
|
5612
5628
|
}[] | undefined;
|
|
5613
5629
|
required?: boolean | undefined;
|
|
@@ -5629,7 +5645,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5629
5645
|
hint?: string | undefined;
|
|
5630
5646
|
messages?: {
|
|
5631
5647
|
text: string;
|
|
5632
|
-
type: "
|
|
5648
|
+
type: "success" | "error" | "info" | "warning";
|
|
5633
5649
|
id?: number | undefined;
|
|
5634
5650
|
}[] | undefined;
|
|
5635
5651
|
required?: boolean | undefined;
|
|
@@ -5648,7 +5664,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5648
5664
|
hint?: string | undefined;
|
|
5649
5665
|
messages?: {
|
|
5650
5666
|
text: string;
|
|
5651
|
-
type: "
|
|
5667
|
+
type: "success" | "error" | "info" | "warning";
|
|
5652
5668
|
id?: number | undefined;
|
|
5653
5669
|
}[] | undefined;
|
|
5654
5670
|
required?: boolean | undefined;
|
|
@@ -5673,7 +5689,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5673
5689
|
hint?: string | undefined;
|
|
5674
5690
|
messages?: {
|
|
5675
5691
|
text: string;
|
|
5676
|
-
type: "
|
|
5692
|
+
type: "success" | "error" | "info" | "warning";
|
|
5677
5693
|
id?: number | undefined;
|
|
5678
5694
|
}[] | undefined;
|
|
5679
5695
|
required?: boolean | undefined;
|
|
@@ -5694,7 +5710,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5694
5710
|
hint?: string | undefined;
|
|
5695
5711
|
messages?: {
|
|
5696
5712
|
text: string;
|
|
5697
|
-
type: "
|
|
5713
|
+
type: "success" | "error" | "info" | "warning";
|
|
5698
5714
|
id?: number | undefined;
|
|
5699
5715
|
}[] | undefined;
|
|
5700
5716
|
required?: boolean | undefined;
|
|
@@ -5715,7 +5731,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5715
5731
|
hint?: string | undefined;
|
|
5716
5732
|
messages?: {
|
|
5717
5733
|
text: string;
|
|
5718
|
-
type: "
|
|
5734
|
+
type: "success" | "error" | "info" | "warning";
|
|
5719
5735
|
id?: number | undefined;
|
|
5720
5736
|
}[] | undefined;
|
|
5721
5737
|
required?: boolean | undefined;
|
|
@@ -5948,7 +5964,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5948
5964
|
hint?: string | undefined;
|
|
5949
5965
|
messages?: {
|
|
5950
5966
|
text: string;
|
|
5951
|
-
type: "
|
|
5967
|
+
type: "success" | "error" | "info" | "warning";
|
|
5952
5968
|
id?: number | undefined;
|
|
5953
5969
|
}[] | undefined;
|
|
5954
5970
|
required?: boolean | undefined;
|
|
@@ -5966,7 +5982,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5966
5982
|
hint?: string | undefined;
|
|
5967
5983
|
messages?: {
|
|
5968
5984
|
text: string;
|
|
5969
|
-
type: "
|
|
5985
|
+
type: "success" | "error" | "info" | "warning";
|
|
5970
5986
|
id?: number | undefined;
|
|
5971
5987
|
}[] | undefined;
|
|
5972
5988
|
required?: boolean | undefined;
|
|
@@ -5990,7 +6006,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5990
6006
|
hint?: string | undefined;
|
|
5991
6007
|
messages?: {
|
|
5992
6008
|
text: string;
|
|
5993
|
-
type: "
|
|
6009
|
+
type: "success" | "error" | "info" | "warning";
|
|
5994
6010
|
id?: number | undefined;
|
|
5995
6011
|
}[] | undefined;
|
|
5996
6012
|
required?: boolean | undefined;
|
|
@@ -6014,7 +6030,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6014
6030
|
hint?: string | undefined;
|
|
6015
6031
|
messages?: {
|
|
6016
6032
|
text: string;
|
|
6017
|
-
type: "
|
|
6033
|
+
type: "success" | "error" | "info" | "warning";
|
|
6018
6034
|
id?: number | undefined;
|
|
6019
6035
|
}[] | undefined;
|
|
6020
6036
|
required?: boolean | undefined;
|
|
@@ -6043,7 +6059,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6043
6059
|
hint?: string | undefined;
|
|
6044
6060
|
messages?: {
|
|
6045
6061
|
text: string;
|
|
6046
|
-
type: "
|
|
6062
|
+
type: "success" | "error" | "info" | "warning";
|
|
6047
6063
|
id?: number | undefined;
|
|
6048
6064
|
}[] | undefined;
|
|
6049
6065
|
required?: boolean | undefined;
|
|
@@ -6058,7 +6074,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6058
6074
|
hint?: string | undefined;
|
|
6059
6075
|
messages?: {
|
|
6060
6076
|
text: string;
|
|
6061
|
-
type: "
|
|
6077
|
+
type: "success" | "error" | "info" | "warning";
|
|
6062
6078
|
id?: number | undefined;
|
|
6063
6079
|
}[] | undefined;
|
|
6064
6080
|
required?: boolean | undefined;
|
|
@@ -6079,7 +6095,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6079
6095
|
hint?: string | undefined;
|
|
6080
6096
|
messages?: {
|
|
6081
6097
|
text: string;
|
|
6082
|
-
type: "
|
|
6098
|
+
type: "success" | "error" | "info" | "warning";
|
|
6083
6099
|
id?: number | undefined;
|
|
6084
6100
|
}[] | undefined;
|
|
6085
6101
|
required?: boolean | undefined;
|
|
@@ -6104,7 +6120,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6104
6120
|
hint?: string | undefined;
|
|
6105
6121
|
messages?: {
|
|
6106
6122
|
text: string;
|
|
6107
|
-
type: "
|
|
6123
|
+
type: "success" | "error" | "info" | "warning";
|
|
6108
6124
|
id?: number | undefined;
|
|
6109
6125
|
}[] | undefined;
|
|
6110
6126
|
required?: boolean | undefined;
|
|
@@ -6123,7 +6139,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6123
6139
|
hint?: string | undefined;
|
|
6124
6140
|
messages?: {
|
|
6125
6141
|
text: string;
|
|
6126
|
-
type: "
|
|
6142
|
+
type: "success" | "error" | "info" | "warning";
|
|
6127
6143
|
id?: number | undefined;
|
|
6128
6144
|
}[] | undefined;
|
|
6129
6145
|
required?: boolean | undefined;
|
|
@@ -6143,7 +6159,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6143
6159
|
hint?: string | undefined;
|
|
6144
6160
|
messages?: {
|
|
6145
6161
|
text: string;
|
|
6146
|
-
type: "
|
|
6162
|
+
type: "success" | "error" | "info" | "warning";
|
|
6147
6163
|
id?: number | undefined;
|
|
6148
6164
|
}[] | undefined;
|
|
6149
6165
|
required?: boolean | undefined;
|
|
@@ -6162,7 +6178,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6162
6178
|
hint?: string | undefined;
|
|
6163
6179
|
messages?: {
|
|
6164
6180
|
text: string;
|
|
6165
|
-
type: "
|
|
6181
|
+
type: "success" | "error" | "info" | "warning";
|
|
6166
6182
|
id?: number | undefined;
|
|
6167
6183
|
}[] | undefined;
|
|
6168
6184
|
required?: boolean | undefined;
|
|
@@ -6184,7 +6200,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6184
6200
|
hint?: string | undefined;
|
|
6185
6201
|
messages?: {
|
|
6186
6202
|
text: string;
|
|
6187
|
-
type: "
|
|
6203
|
+
type: "success" | "error" | "info" | "warning";
|
|
6188
6204
|
id?: number | undefined;
|
|
6189
6205
|
}[] | undefined;
|
|
6190
6206
|
required?: boolean | undefined;
|
|
@@ -6206,7 +6222,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6206
6222
|
hint?: string | undefined;
|
|
6207
6223
|
messages?: {
|
|
6208
6224
|
text: string;
|
|
6209
|
-
type: "
|
|
6225
|
+
type: "success" | "error" | "info" | "warning";
|
|
6210
6226
|
id?: number | undefined;
|
|
6211
6227
|
}[] | undefined;
|
|
6212
6228
|
required?: boolean | undefined;
|
|
@@ -6225,7 +6241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6225
6241
|
hint?: string | undefined;
|
|
6226
6242
|
messages?: {
|
|
6227
6243
|
text: string;
|
|
6228
|
-
type: "
|
|
6244
|
+
type: "success" | "error" | "info" | "warning";
|
|
6229
6245
|
id?: number | undefined;
|
|
6230
6246
|
}[] | undefined;
|
|
6231
6247
|
required?: boolean | undefined;
|
|
@@ -6250,7 +6266,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6250
6266
|
hint?: string | undefined;
|
|
6251
6267
|
messages?: {
|
|
6252
6268
|
text: string;
|
|
6253
|
-
type: "
|
|
6269
|
+
type: "success" | "error" | "info" | "warning";
|
|
6254
6270
|
id?: number | undefined;
|
|
6255
6271
|
}[] | undefined;
|
|
6256
6272
|
required?: boolean | undefined;
|
|
@@ -6271,7 +6287,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6271
6287
|
hint?: string | undefined;
|
|
6272
6288
|
messages?: {
|
|
6273
6289
|
text: string;
|
|
6274
|
-
type: "
|
|
6290
|
+
type: "success" | "error" | "info" | "warning";
|
|
6275
6291
|
id?: number | undefined;
|
|
6276
6292
|
}[] | undefined;
|
|
6277
6293
|
required?: boolean | undefined;
|
|
@@ -6292,7 +6308,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6292
6308
|
hint?: string | undefined;
|
|
6293
6309
|
messages?: {
|
|
6294
6310
|
text: string;
|
|
6295
|
-
type: "
|
|
6311
|
+
type: "success" | "error" | "info" | "warning";
|
|
6296
6312
|
id?: number | undefined;
|
|
6297
6313
|
}[] | undefined;
|
|
6298
6314
|
required?: boolean | undefined;
|
|
@@ -6540,7 +6556,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6540
6556
|
hint?: string | undefined;
|
|
6541
6557
|
messages?: {
|
|
6542
6558
|
text: string;
|
|
6543
|
-
type: "
|
|
6559
|
+
type: "success" | "error" | "info" | "warning";
|
|
6544
6560
|
id?: number | undefined;
|
|
6545
6561
|
}[] | undefined;
|
|
6546
6562
|
required?: boolean | undefined;
|
|
@@ -6558,7 +6574,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6558
6574
|
hint?: string | undefined;
|
|
6559
6575
|
messages?: {
|
|
6560
6576
|
text: string;
|
|
6561
|
-
type: "
|
|
6577
|
+
type: "success" | "error" | "info" | "warning";
|
|
6562
6578
|
id?: number | undefined;
|
|
6563
6579
|
}[] | undefined;
|
|
6564
6580
|
required?: boolean | undefined;
|
|
@@ -6582,7 +6598,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6582
6598
|
hint?: string | undefined;
|
|
6583
6599
|
messages?: {
|
|
6584
6600
|
text: string;
|
|
6585
|
-
type: "
|
|
6601
|
+
type: "success" | "error" | "info" | "warning";
|
|
6586
6602
|
id?: number | undefined;
|
|
6587
6603
|
}[] | undefined;
|
|
6588
6604
|
required?: boolean | undefined;
|
|
@@ -6606,7 +6622,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6606
6622
|
hint?: string | undefined;
|
|
6607
6623
|
messages?: {
|
|
6608
6624
|
text: string;
|
|
6609
|
-
type: "
|
|
6625
|
+
type: "success" | "error" | "info" | "warning";
|
|
6610
6626
|
id?: number | undefined;
|
|
6611
6627
|
}[] | undefined;
|
|
6612
6628
|
required?: boolean | undefined;
|
|
@@ -6635,7 +6651,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6635
6651
|
hint?: string | undefined;
|
|
6636
6652
|
messages?: {
|
|
6637
6653
|
text: string;
|
|
6638
|
-
type: "
|
|
6654
|
+
type: "success" | "error" | "info" | "warning";
|
|
6639
6655
|
id?: number | undefined;
|
|
6640
6656
|
}[] | undefined;
|
|
6641
6657
|
required?: boolean | undefined;
|
|
@@ -6650,7 +6666,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6650
6666
|
hint?: string | undefined;
|
|
6651
6667
|
messages?: {
|
|
6652
6668
|
text: string;
|
|
6653
|
-
type: "
|
|
6669
|
+
type: "success" | "error" | "info" | "warning";
|
|
6654
6670
|
id?: number | undefined;
|
|
6655
6671
|
}[] | undefined;
|
|
6656
6672
|
required?: boolean | undefined;
|
|
@@ -6671,7 +6687,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6671
6687
|
hint?: string | undefined;
|
|
6672
6688
|
messages?: {
|
|
6673
6689
|
text: string;
|
|
6674
|
-
type: "
|
|
6690
|
+
type: "success" | "error" | "info" | "warning";
|
|
6675
6691
|
id?: number | undefined;
|
|
6676
6692
|
}[] | undefined;
|
|
6677
6693
|
required?: boolean | undefined;
|
|
@@ -6696,7 +6712,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6696
6712
|
hint?: string | undefined;
|
|
6697
6713
|
messages?: {
|
|
6698
6714
|
text: string;
|
|
6699
|
-
type: "
|
|
6715
|
+
type: "success" | "error" | "info" | "warning";
|
|
6700
6716
|
id?: number | undefined;
|
|
6701
6717
|
}[] | undefined;
|
|
6702
6718
|
required?: boolean | undefined;
|
|
@@ -6715,7 +6731,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6715
6731
|
hint?: string | undefined;
|
|
6716
6732
|
messages?: {
|
|
6717
6733
|
text: string;
|
|
6718
|
-
type: "
|
|
6734
|
+
type: "success" | "error" | "info" | "warning";
|
|
6719
6735
|
id?: number | undefined;
|
|
6720
6736
|
}[] | undefined;
|
|
6721
6737
|
required?: boolean | undefined;
|
|
@@ -6735,7 +6751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6735
6751
|
hint?: string | undefined;
|
|
6736
6752
|
messages?: {
|
|
6737
6753
|
text: string;
|
|
6738
|
-
type: "
|
|
6754
|
+
type: "success" | "error" | "info" | "warning";
|
|
6739
6755
|
id?: number | undefined;
|
|
6740
6756
|
}[] | undefined;
|
|
6741
6757
|
required?: boolean | undefined;
|
|
@@ -6754,7 +6770,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6754
6770
|
hint?: string | undefined;
|
|
6755
6771
|
messages?: {
|
|
6756
6772
|
text: string;
|
|
6757
|
-
type: "
|
|
6773
|
+
type: "success" | "error" | "info" | "warning";
|
|
6758
6774
|
id?: number | undefined;
|
|
6759
6775
|
}[] | undefined;
|
|
6760
6776
|
required?: boolean | undefined;
|
|
@@ -6776,7 +6792,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6776
6792
|
hint?: string | undefined;
|
|
6777
6793
|
messages?: {
|
|
6778
6794
|
text: string;
|
|
6779
|
-
type: "
|
|
6795
|
+
type: "success" | "error" | "info" | "warning";
|
|
6780
6796
|
id?: number | undefined;
|
|
6781
6797
|
}[] | undefined;
|
|
6782
6798
|
required?: boolean | undefined;
|
|
@@ -6798,7 +6814,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6798
6814
|
hint?: string | undefined;
|
|
6799
6815
|
messages?: {
|
|
6800
6816
|
text: string;
|
|
6801
|
-
type: "
|
|
6817
|
+
type: "success" | "error" | "info" | "warning";
|
|
6802
6818
|
id?: number | undefined;
|
|
6803
6819
|
}[] | undefined;
|
|
6804
6820
|
required?: boolean | undefined;
|
|
@@ -6817,7 +6833,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6817
6833
|
hint?: string | undefined;
|
|
6818
6834
|
messages?: {
|
|
6819
6835
|
text: string;
|
|
6820
|
-
type: "
|
|
6836
|
+
type: "success" | "error" | "info" | "warning";
|
|
6821
6837
|
id?: number | undefined;
|
|
6822
6838
|
}[] | undefined;
|
|
6823
6839
|
required?: boolean | undefined;
|
|
@@ -6842,7 +6858,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6842
6858
|
hint?: string | undefined;
|
|
6843
6859
|
messages?: {
|
|
6844
6860
|
text: string;
|
|
6845
|
-
type: "
|
|
6861
|
+
type: "success" | "error" | "info" | "warning";
|
|
6846
6862
|
id?: number | undefined;
|
|
6847
6863
|
}[] | undefined;
|
|
6848
6864
|
required?: boolean | undefined;
|
|
@@ -6863,7 +6879,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6863
6879
|
hint?: string | undefined;
|
|
6864
6880
|
messages?: {
|
|
6865
6881
|
text: string;
|
|
6866
|
-
type: "
|
|
6882
|
+
type: "success" | "error" | "info" | "warning";
|
|
6867
6883
|
id?: number | undefined;
|
|
6868
6884
|
}[] | undefined;
|
|
6869
6885
|
required?: boolean | undefined;
|
|
@@ -6884,7 +6900,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6884
6900
|
hint?: string | undefined;
|
|
6885
6901
|
messages?: {
|
|
6886
6902
|
text: string;
|
|
6887
|
-
type: "
|
|
6903
|
+
type: "success" | "error" | "info" | "warning";
|
|
6888
6904
|
id?: number | undefined;
|
|
6889
6905
|
}[] | undefined;
|
|
6890
6906
|
required?: boolean | undefined;
|
|
@@ -7138,7 +7154,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7138
7154
|
hint?: string | undefined;
|
|
7139
7155
|
messages?: {
|
|
7140
7156
|
text: string;
|
|
7141
|
-
type: "
|
|
7157
|
+
type: "success" | "error" | "info" | "warning";
|
|
7142
7158
|
id?: number | undefined;
|
|
7143
7159
|
}[] | undefined;
|
|
7144
7160
|
required?: boolean | undefined;
|
|
@@ -7156,7 +7172,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7156
7172
|
hint?: string | undefined;
|
|
7157
7173
|
messages?: {
|
|
7158
7174
|
text: string;
|
|
7159
|
-
type: "
|
|
7175
|
+
type: "success" | "error" | "info" | "warning";
|
|
7160
7176
|
id?: number | undefined;
|
|
7161
7177
|
}[] | undefined;
|
|
7162
7178
|
required?: boolean | undefined;
|
|
@@ -7180,7 +7196,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7180
7196
|
hint?: string | undefined;
|
|
7181
7197
|
messages?: {
|
|
7182
7198
|
text: string;
|
|
7183
|
-
type: "
|
|
7199
|
+
type: "success" | "error" | "info" | "warning";
|
|
7184
7200
|
id?: number | undefined;
|
|
7185
7201
|
}[] | undefined;
|
|
7186
7202
|
required?: boolean | undefined;
|
|
@@ -7204,7 +7220,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7204
7220
|
hint?: string | undefined;
|
|
7205
7221
|
messages?: {
|
|
7206
7222
|
text: string;
|
|
7207
|
-
type: "
|
|
7223
|
+
type: "success" | "error" | "info" | "warning";
|
|
7208
7224
|
id?: number | undefined;
|
|
7209
7225
|
}[] | undefined;
|
|
7210
7226
|
required?: boolean | undefined;
|
|
@@ -7229,7 +7245,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7229
7245
|
hint?: string | undefined;
|
|
7230
7246
|
messages?: {
|
|
7231
7247
|
text: string;
|
|
7232
|
-
type: "
|
|
7248
|
+
type: "success" | "error" | "info" | "warning";
|
|
7233
7249
|
id?: number | undefined;
|
|
7234
7250
|
}[] | undefined;
|
|
7235
7251
|
required?: boolean | undefined;
|
|
@@ -7244,7 +7260,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7244
7260
|
hint?: string | undefined;
|
|
7245
7261
|
messages?: {
|
|
7246
7262
|
text: string;
|
|
7247
|
-
type: "
|
|
7263
|
+
type: "success" | "error" | "info" | "warning";
|
|
7248
7264
|
id?: number | undefined;
|
|
7249
7265
|
}[] | undefined;
|
|
7250
7266
|
required?: boolean | undefined;
|
|
@@ -7265,7 +7281,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7265
7281
|
hint?: string | undefined;
|
|
7266
7282
|
messages?: {
|
|
7267
7283
|
text: string;
|
|
7268
|
-
type: "
|
|
7284
|
+
type: "success" | "error" | "info" | "warning";
|
|
7269
7285
|
id?: number | undefined;
|
|
7270
7286
|
}[] | undefined;
|
|
7271
7287
|
required?: boolean | undefined;
|
|
@@ -7290,7 +7306,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7290
7306
|
hint?: string | undefined;
|
|
7291
7307
|
messages?: {
|
|
7292
7308
|
text: string;
|
|
7293
|
-
type: "
|
|
7309
|
+
type: "success" | "error" | "info" | "warning";
|
|
7294
7310
|
id?: number | undefined;
|
|
7295
7311
|
}[] | undefined;
|
|
7296
7312
|
required?: boolean | undefined;
|
|
@@ -7309,7 +7325,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7309
7325
|
hint?: string | undefined;
|
|
7310
7326
|
messages?: {
|
|
7311
7327
|
text: string;
|
|
7312
|
-
type: "
|
|
7328
|
+
type: "success" | "error" | "info" | "warning";
|
|
7313
7329
|
id?: number | undefined;
|
|
7314
7330
|
}[] | undefined;
|
|
7315
7331
|
required?: boolean | undefined;
|
|
@@ -7329,7 +7345,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7329
7345
|
hint?: string | undefined;
|
|
7330
7346
|
messages?: {
|
|
7331
7347
|
text: string;
|
|
7332
|
-
type: "
|
|
7348
|
+
type: "success" | "error" | "info" | "warning";
|
|
7333
7349
|
id?: number | undefined;
|
|
7334
7350
|
}[] | undefined;
|
|
7335
7351
|
required?: boolean | undefined;
|
|
@@ -7348,7 +7364,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7348
7364
|
hint?: string | undefined;
|
|
7349
7365
|
messages?: {
|
|
7350
7366
|
text: string;
|
|
7351
|
-
type: "
|
|
7367
|
+
type: "success" | "error" | "info" | "warning";
|
|
7352
7368
|
id?: number | undefined;
|
|
7353
7369
|
}[] | undefined;
|
|
7354
7370
|
required?: boolean | undefined;
|
|
@@ -7370,7 +7386,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7370
7386
|
hint?: string | undefined;
|
|
7371
7387
|
messages?: {
|
|
7372
7388
|
text: string;
|
|
7373
|
-
type: "
|
|
7389
|
+
type: "success" | "error" | "info" | "warning";
|
|
7374
7390
|
id?: number | undefined;
|
|
7375
7391
|
}[] | undefined;
|
|
7376
7392
|
required?: boolean | undefined;
|
|
@@ -7392,7 +7408,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7392
7408
|
hint?: string | undefined;
|
|
7393
7409
|
messages?: {
|
|
7394
7410
|
text: string;
|
|
7395
|
-
type: "
|
|
7411
|
+
type: "success" | "error" | "info" | "warning";
|
|
7396
7412
|
id?: number | undefined;
|
|
7397
7413
|
}[] | undefined;
|
|
7398
7414
|
required?: boolean | undefined;
|
|
@@ -7411,7 +7427,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7411
7427
|
hint?: string | undefined;
|
|
7412
7428
|
messages?: {
|
|
7413
7429
|
text: string;
|
|
7414
|
-
type: "
|
|
7430
|
+
type: "success" | "error" | "info" | "warning";
|
|
7415
7431
|
id?: number | undefined;
|
|
7416
7432
|
}[] | undefined;
|
|
7417
7433
|
required?: boolean | undefined;
|
|
@@ -7436,7 +7452,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7436
7452
|
hint?: string | undefined;
|
|
7437
7453
|
messages?: {
|
|
7438
7454
|
text: string;
|
|
7439
|
-
type: "
|
|
7455
|
+
type: "success" | "error" | "info" | "warning";
|
|
7440
7456
|
id?: number | undefined;
|
|
7441
7457
|
}[] | undefined;
|
|
7442
7458
|
required?: boolean | undefined;
|
|
@@ -7457,7 +7473,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7457
7473
|
hint?: string | undefined;
|
|
7458
7474
|
messages?: {
|
|
7459
7475
|
text: string;
|
|
7460
|
-
type: "
|
|
7476
|
+
type: "success" | "error" | "info" | "warning";
|
|
7461
7477
|
id?: number | undefined;
|
|
7462
7478
|
}[] | undefined;
|
|
7463
7479
|
required?: boolean | undefined;
|
|
@@ -7478,7 +7494,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7478
7494
|
hint?: string | undefined;
|
|
7479
7495
|
messages?: {
|
|
7480
7496
|
text: string;
|
|
7481
|
-
type: "
|
|
7497
|
+
type: "success" | "error" | "info" | "warning";
|
|
7482
7498
|
id?: number | undefined;
|
|
7483
7499
|
}[] | undefined;
|
|
7484
7500
|
required?: boolean | undefined;
|
|
@@ -7709,7 +7725,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7709
7725
|
hint?: string | undefined;
|
|
7710
7726
|
messages?: {
|
|
7711
7727
|
text: string;
|
|
7712
|
-
type: "
|
|
7728
|
+
type: "success" | "error" | "info" | "warning";
|
|
7713
7729
|
id?: number | undefined;
|
|
7714
7730
|
}[] | undefined;
|
|
7715
7731
|
required?: boolean | undefined;
|
|
@@ -7727,7 +7743,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7727
7743
|
hint?: string | undefined;
|
|
7728
7744
|
messages?: {
|
|
7729
7745
|
text: string;
|
|
7730
|
-
type: "
|
|
7746
|
+
type: "success" | "error" | "info" | "warning";
|
|
7731
7747
|
id?: number | undefined;
|
|
7732
7748
|
}[] | undefined;
|
|
7733
7749
|
required?: boolean | undefined;
|
|
@@ -7751,7 +7767,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7751
7767
|
hint?: string | undefined;
|
|
7752
7768
|
messages?: {
|
|
7753
7769
|
text: string;
|
|
7754
|
-
type: "
|
|
7770
|
+
type: "success" | "error" | "info" | "warning";
|
|
7755
7771
|
id?: number | undefined;
|
|
7756
7772
|
}[] | undefined;
|
|
7757
7773
|
required?: boolean | undefined;
|
|
@@ -7775,7 +7791,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7775
7791
|
hint?: string | undefined;
|
|
7776
7792
|
messages?: {
|
|
7777
7793
|
text: string;
|
|
7778
|
-
type: "
|
|
7794
|
+
type: "success" | "error" | "info" | "warning";
|
|
7779
7795
|
id?: number | undefined;
|
|
7780
7796
|
}[] | undefined;
|
|
7781
7797
|
required?: boolean | undefined;
|
|
@@ -7804,7 +7820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7804
7820
|
hint?: string | undefined;
|
|
7805
7821
|
messages?: {
|
|
7806
7822
|
text: string;
|
|
7807
|
-
type: "
|
|
7823
|
+
type: "success" | "error" | "info" | "warning";
|
|
7808
7824
|
id?: number | undefined;
|
|
7809
7825
|
}[] | undefined;
|
|
7810
7826
|
required?: boolean | undefined;
|
|
@@ -7819,7 +7835,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7819
7835
|
hint?: string | undefined;
|
|
7820
7836
|
messages?: {
|
|
7821
7837
|
text: string;
|
|
7822
|
-
type: "
|
|
7838
|
+
type: "success" | "error" | "info" | "warning";
|
|
7823
7839
|
id?: number | undefined;
|
|
7824
7840
|
}[] | undefined;
|
|
7825
7841
|
required?: boolean | undefined;
|
|
@@ -7840,7 +7856,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7840
7856
|
hint?: string | undefined;
|
|
7841
7857
|
messages?: {
|
|
7842
7858
|
text: string;
|
|
7843
|
-
type: "
|
|
7859
|
+
type: "success" | "error" | "info" | "warning";
|
|
7844
7860
|
id?: number | undefined;
|
|
7845
7861
|
}[] | undefined;
|
|
7846
7862
|
required?: boolean | undefined;
|
|
@@ -7865,7 +7881,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7865
7881
|
hint?: string | undefined;
|
|
7866
7882
|
messages?: {
|
|
7867
7883
|
text: string;
|
|
7868
|
-
type: "
|
|
7884
|
+
type: "success" | "error" | "info" | "warning";
|
|
7869
7885
|
id?: number | undefined;
|
|
7870
7886
|
}[] | undefined;
|
|
7871
7887
|
required?: boolean | undefined;
|
|
@@ -7884,7 +7900,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7884
7900
|
hint?: string | undefined;
|
|
7885
7901
|
messages?: {
|
|
7886
7902
|
text: string;
|
|
7887
|
-
type: "
|
|
7903
|
+
type: "success" | "error" | "info" | "warning";
|
|
7888
7904
|
id?: number | undefined;
|
|
7889
7905
|
}[] | undefined;
|
|
7890
7906
|
required?: boolean | undefined;
|
|
@@ -7904,7 +7920,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7904
7920
|
hint?: string | undefined;
|
|
7905
7921
|
messages?: {
|
|
7906
7922
|
text: string;
|
|
7907
|
-
type: "
|
|
7923
|
+
type: "success" | "error" | "info" | "warning";
|
|
7908
7924
|
id?: number | undefined;
|
|
7909
7925
|
}[] | undefined;
|
|
7910
7926
|
required?: boolean | undefined;
|
|
@@ -7923,7 +7939,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7923
7939
|
hint?: string | undefined;
|
|
7924
7940
|
messages?: {
|
|
7925
7941
|
text: string;
|
|
7926
|
-
type: "
|
|
7942
|
+
type: "success" | "error" | "info" | "warning";
|
|
7927
7943
|
id?: number | undefined;
|
|
7928
7944
|
}[] | undefined;
|
|
7929
7945
|
required?: boolean | undefined;
|
|
@@ -7945,7 +7961,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7945
7961
|
hint?: string | undefined;
|
|
7946
7962
|
messages?: {
|
|
7947
7963
|
text: string;
|
|
7948
|
-
type: "
|
|
7964
|
+
type: "success" | "error" | "info" | "warning";
|
|
7949
7965
|
id?: number | undefined;
|
|
7950
7966
|
}[] | undefined;
|
|
7951
7967
|
required?: boolean | undefined;
|
|
@@ -7967,7 +7983,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7967
7983
|
hint?: string | undefined;
|
|
7968
7984
|
messages?: {
|
|
7969
7985
|
text: string;
|
|
7970
|
-
type: "
|
|
7986
|
+
type: "success" | "error" | "info" | "warning";
|
|
7971
7987
|
id?: number | undefined;
|
|
7972
7988
|
}[] | undefined;
|
|
7973
7989
|
required?: boolean | undefined;
|
|
@@ -7986,7 +8002,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7986
8002
|
hint?: string | undefined;
|
|
7987
8003
|
messages?: {
|
|
7988
8004
|
text: string;
|
|
7989
|
-
type: "
|
|
8005
|
+
type: "success" | "error" | "info" | "warning";
|
|
7990
8006
|
id?: number | undefined;
|
|
7991
8007
|
}[] | undefined;
|
|
7992
8008
|
required?: boolean | undefined;
|
|
@@ -8011,7 +8027,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8011
8027
|
hint?: string | undefined;
|
|
8012
8028
|
messages?: {
|
|
8013
8029
|
text: string;
|
|
8014
|
-
type: "
|
|
8030
|
+
type: "success" | "error" | "info" | "warning";
|
|
8015
8031
|
id?: number | undefined;
|
|
8016
8032
|
}[] | undefined;
|
|
8017
8033
|
required?: boolean | undefined;
|
|
@@ -8032,7 +8048,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8032
8048
|
hint?: string | undefined;
|
|
8033
8049
|
messages?: {
|
|
8034
8050
|
text: string;
|
|
8035
|
-
type: "
|
|
8051
|
+
type: "success" | "error" | "info" | "warning";
|
|
8036
8052
|
id?: number | undefined;
|
|
8037
8053
|
}[] | undefined;
|
|
8038
8054
|
required?: boolean | undefined;
|
|
@@ -8053,7 +8069,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8053
8069
|
hint?: string | undefined;
|
|
8054
8070
|
messages?: {
|
|
8055
8071
|
text: string;
|
|
8056
|
-
type: "
|
|
8072
|
+
type: "success" | "error" | "info" | "warning";
|
|
8057
8073
|
id?: number | undefined;
|
|
8058
8074
|
}[] | undefined;
|
|
8059
8075
|
required?: boolean | undefined;
|
|
@@ -8286,7 +8302,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8286
8302
|
hint?: string | undefined;
|
|
8287
8303
|
messages?: {
|
|
8288
8304
|
text: string;
|
|
8289
|
-
type: "
|
|
8305
|
+
type: "success" | "error" | "info" | "warning";
|
|
8290
8306
|
id?: number | undefined;
|
|
8291
8307
|
}[] | undefined;
|
|
8292
8308
|
required?: boolean | undefined;
|
|
@@ -8304,7 +8320,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8304
8320
|
hint?: string | undefined;
|
|
8305
8321
|
messages?: {
|
|
8306
8322
|
text: string;
|
|
8307
|
-
type: "
|
|
8323
|
+
type: "success" | "error" | "info" | "warning";
|
|
8308
8324
|
id?: number | undefined;
|
|
8309
8325
|
}[] | undefined;
|
|
8310
8326
|
required?: boolean | undefined;
|
|
@@ -8328,7 +8344,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8328
8344
|
hint?: string | undefined;
|
|
8329
8345
|
messages?: {
|
|
8330
8346
|
text: string;
|
|
8331
|
-
type: "
|
|
8347
|
+
type: "success" | "error" | "info" | "warning";
|
|
8332
8348
|
id?: number | undefined;
|
|
8333
8349
|
}[] | undefined;
|
|
8334
8350
|
required?: boolean | undefined;
|
|
@@ -8352,7 +8368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8352
8368
|
hint?: string | undefined;
|
|
8353
8369
|
messages?: {
|
|
8354
8370
|
text: string;
|
|
8355
|
-
type: "
|
|
8371
|
+
type: "success" | "error" | "info" | "warning";
|
|
8356
8372
|
id?: number | undefined;
|
|
8357
8373
|
}[] | undefined;
|
|
8358
8374
|
required?: boolean | undefined;
|
|
@@ -8377,7 +8393,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8377
8393
|
hint?: string | undefined;
|
|
8378
8394
|
messages?: {
|
|
8379
8395
|
text: string;
|
|
8380
|
-
type: "
|
|
8396
|
+
type: "success" | "error" | "info" | "warning";
|
|
8381
8397
|
id?: number | undefined;
|
|
8382
8398
|
}[] | undefined;
|
|
8383
8399
|
required?: boolean | undefined;
|
|
@@ -8392,7 +8408,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8392
8408
|
hint?: string | undefined;
|
|
8393
8409
|
messages?: {
|
|
8394
8410
|
text: string;
|
|
8395
|
-
type: "
|
|
8411
|
+
type: "success" | "error" | "info" | "warning";
|
|
8396
8412
|
id?: number | undefined;
|
|
8397
8413
|
}[] | undefined;
|
|
8398
8414
|
required?: boolean | undefined;
|
|
@@ -8413,7 +8429,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8413
8429
|
hint?: string | undefined;
|
|
8414
8430
|
messages?: {
|
|
8415
8431
|
text: string;
|
|
8416
|
-
type: "
|
|
8432
|
+
type: "success" | "error" | "info" | "warning";
|
|
8417
8433
|
id?: number | undefined;
|
|
8418
8434
|
}[] | undefined;
|
|
8419
8435
|
required?: boolean | undefined;
|
|
@@ -8438,7 +8454,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8438
8454
|
hint?: string | undefined;
|
|
8439
8455
|
messages?: {
|
|
8440
8456
|
text: string;
|
|
8441
|
-
type: "
|
|
8457
|
+
type: "success" | "error" | "info" | "warning";
|
|
8442
8458
|
id?: number | undefined;
|
|
8443
8459
|
}[] | undefined;
|
|
8444
8460
|
required?: boolean | undefined;
|
|
@@ -8457,7 +8473,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8457
8473
|
hint?: string | undefined;
|
|
8458
8474
|
messages?: {
|
|
8459
8475
|
text: string;
|
|
8460
|
-
type: "
|
|
8476
|
+
type: "success" | "error" | "info" | "warning";
|
|
8461
8477
|
id?: number | undefined;
|
|
8462
8478
|
}[] | undefined;
|
|
8463
8479
|
required?: boolean | undefined;
|
|
@@ -8477,7 +8493,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8477
8493
|
hint?: string | undefined;
|
|
8478
8494
|
messages?: {
|
|
8479
8495
|
text: string;
|
|
8480
|
-
type: "
|
|
8496
|
+
type: "success" | "error" | "info" | "warning";
|
|
8481
8497
|
id?: number | undefined;
|
|
8482
8498
|
}[] | undefined;
|
|
8483
8499
|
required?: boolean | undefined;
|
|
@@ -8496,7 +8512,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8496
8512
|
hint?: string | undefined;
|
|
8497
8513
|
messages?: {
|
|
8498
8514
|
text: string;
|
|
8499
|
-
type: "
|
|
8515
|
+
type: "success" | "error" | "info" | "warning";
|
|
8500
8516
|
id?: number | undefined;
|
|
8501
8517
|
}[] | undefined;
|
|
8502
8518
|
required?: boolean | undefined;
|
|
@@ -8518,7 +8534,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8518
8534
|
hint?: string | undefined;
|
|
8519
8535
|
messages?: {
|
|
8520
8536
|
text: string;
|
|
8521
|
-
type: "
|
|
8537
|
+
type: "success" | "error" | "info" | "warning";
|
|
8522
8538
|
id?: number | undefined;
|
|
8523
8539
|
}[] | undefined;
|
|
8524
8540
|
required?: boolean | undefined;
|
|
@@ -8540,7 +8556,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8540
8556
|
hint?: string | undefined;
|
|
8541
8557
|
messages?: {
|
|
8542
8558
|
text: string;
|
|
8543
|
-
type: "
|
|
8559
|
+
type: "success" | "error" | "info" | "warning";
|
|
8544
8560
|
id?: number | undefined;
|
|
8545
8561
|
}[] | undefined;
|
|
8546
8562
|
required?: boolean | undefined;
|
|
@@ -8559,7 +8575,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8559
8575
|
hint?: string | undefined;
|
|
8560
8576
|
messages?: {
|
|
8561
8577
|
text: string;
|
|
8562
|
-
type: "
|
|
8578
|
+
type: "success" | "error" | "info" | "warning";
|
|
8563
8579
|
id?: number | undefined;
|
|
8564
8580
|
}[] | undefined;
|
|
8565
8581
|
required?: boolean | undefined;
|
|
@@ -8584,7 +8600,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8584
8600
|
hint?: string | undefined;
|
|
8585
8601
|
messages?: {
|
|
8586
8602
|
text: string;
|
|
8587
|
-
type: "
|
|
8603
|
+
type: "success" | "error" | "info" | "warning";
|
|
8588
8604
|
id?: number | undefined;
|
|
8589
8605
|
}[] | undefined;
|
|
8590
8606
|
required?: boolean | undefined;
|
|
@@ -8605,7 +8621,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8605
8621
|
hint?: string | undefined;
|
|
8606
8622
|
messages?: {
|
|
8607
8623
|
text: string;
|
|
8608
|
-
type: "
|
|
8624
|
+
type: "success" | "error" | "info" | "warning";
|
|
8609
8625
|
id?: number | undefined;
|
|
8610
8626
|
}[] | undefined;
|
|
8611
8627
|
required?: boolean | undefined;
|
|
@@ -8626,7 +8642,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8626
8642
|
hint?: string | undefined;
|
|
8627
8643
|
messages?: {
|
|
8628
8644
|
text: string;
|
|
8629
|
-
type: "
|
|
8645
|
+
type: "success" | "error" | "info" | "warning";
|
|
8630
8646
|
id?: number | undefined;
|
|
8631
8647
|
}[] | undefined;
|
|
8632
8648
|
required?: boolean | undefined;
|
|
@@ -8857,7 +8873,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8857
8873
|
hint?: string | undefined;
|
|
8858
8874
|
messages?: {
|
|
8859
8875
|
text: string;
|
|
8860
|
-
type: "
|
|
8876
|
+
type: "success" | "error" | "info" | "warning";
|
|
8861
8877
|
id?: number | undefined;
|
|
8862
8878
|
}[] | undefined;
|
|
8863
8879
|
required?: boolean | undefined;
|
|
@@ -8875,7 +8891,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8875
8891
|
hint?: string | undefined;
|
|
8876
8892
|
messages?: {
|
|
8877
8893
|
text: string;
|
|
8878
|
-
type: "
|
|
8894
|
+
type: "success" | "error" | "info" | "warning";
|
|
8879
8895
|
id?: number | undefined;
|
|
8880
8896
|
}[] | undefined;
|
|
8881
8897
|
required?: boolean | undefined;
|
|
@@ -8899,7 +8915,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8899
8915
|
hint?: string | undefined;
|
|
8900
8916
|
messages?: {
|
|
8901
8917
|
text: string;
|
|
8902
|
-
type: "
|
|
8918
|
+
type: "success" | "error" | "info" | "warning";
|
|
8903
8919
|
id?: number | undefined;
|
|
8904
8920
|
}[] | undefined;
|
|
8905
8921
|
required?: boolean | undefined;
|
|
@@ -8923,7 +8939,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8923
8939
|
hint?: string | undefined;
|
|
8924
8940
|
messages?: {
|
|
8925
8941
|
text: string;
|
|
8926
|
-
type: "
|
|
8942
|
+
type: "success" | "error" | "info" | "warning";
|
|
8927
8943
|
id?: number | undefined;
|
|
8928
8944
|
}[] | undefined;
|
|
8929
8945
|
required?: boolean | undefined;
|
|
@@ -8952,7 +8968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8952
8968
|
hint?: string | undefined;
|
|
8953
8969
|
messages?: {
|
|
8954
8970
|
text: string;
|
|
8955
|
-
type: "
|
|
8971
|
+
type: "success" | "error" | "info" | "warning";
|
|
8956
8972
|
id?: number | undefined;
|
|
8957
8973
|
}[] | undefined;
|
|
8958
8974
|
required?: boolean | undefined;
|
|
@@ -8967,7 +8983,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8967
8983
|
hint?: string | undefined;
|
|
8968
8984
|
messages?: {
|
|
8969
8985
|
text: string;
|
|
8970
|
-
type: "
|
|
8986
|
+
type: "success" | "error" | "info" | "warning";
|
|
8971
8987
|
id?: number | undefined;
|
|
8972
8988
|
}[] | undefined;
|
|
8973
8989
|
required?: boolean | undefined;
|
|
@@ -8988,7 +9004,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8988
9004
|
hint?: string | undefined;
|
|
8989
9005
|
messages?: {
|
|
8990
9006
|
text: string;
|
|
8991
|
-
type: "
|
|
9007
|
+
type: "success" | "error" | "info" | "warning";
|
|
8992
9008
|
id?: number | undefined;
|
|
8993
9009
|
}[] | undefined;
|
|
8994
9010
|
required?: boolean | undefined;
|
|
@@ -9013,7 +9029,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9013
9029
|
hint?: string | undefined;
|
|
9014
9030
|
messages?: {
|
|
9015
9031
|
text: string;
|
|
9016
|
-
type: "
|
|
9032
|
+
type: "success" | "error" | "info" | "warning";
|
|
9017
9033
|
id?: number | undefined;
|
|
9018
9034
|
}[] | undefined;
|
|
9019
9035
|
required?: boolean | undefined;
|
|
@@ -9032,7 +9048,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9032
9048
|
hint?: string | undefined;
|
|
9033
9049
|
messages?: {
|
|
9034
9050
|
text: string;
|
|
9035
|
-
type: "
|
|
9051
|
+
type: "success" | "error" | "info" | "warning";
|
|
9036
9052
|
id?: number | undefined;
|
|
9037
9053
|
}[] | undefined;
|
|
9038
9054
|
required?: boolean | undefined;
|
|
@@ -9052,7 +9068,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9052
9068
|
hint?: string | undefined;
|
|
9053
9069
|
messages?: {
|
|
9054
9070
|
text: string;
|
|
9055
|
-
type: "
|
|
9071
|
+
type: "success" | "error" | "info" | "warning";
|
|
9056
9072
|
id?: number | undefined;
|
|
9057
9073
|
}[] | undefined;
|
|
9058
9074
|
required?: boolean | undefined;
|
|
@@ -9071,7 +9087,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9071
9087
|
hint?: string | undefined;
|
|
9072
9088
|
messages?: {
|
|
9073
9089
|
text: string;
|
|
9074
|
-
type: "
|
|
9090
|
+
type: "success" | "error" | "info" | "warning";
|
|
9075
9091
|
id?: number | undefined;
|
|
9076
9092
|
}[] | undefined;
|
|
9077
9093
|
required?: boolean | undefined;
|
|
@@ -9093,7 +9109,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9093
9109
|
hint?: string | undefined;
|
|
9094
9110
|
messages?: {
|
|
9095
9111
|
text: string;
|
|
9096
|
-
type: "
|
|
9112
|
+
type: "success" | "error" | "info" | "warning";
|
|
9097
9113
|
id?: number | undefined;
|
|
9098
9114
|
}[] | undefined;
|
|
9099
9115
|
required?: boolean | undefined;
|
|
@@ -9115,7 +9131,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9115
9131
|
hint?: string | undefined;
|
|
9116
9132
|
messages?: {
|
|
9117
9133
|
text: string;
|
|
9118
|
-
type: "
|
|
9134
|
+
type: "success" | "error" | "info" | "warning";
|
|
9119
9135
|
id?: number | undefined;
|
|
9120
9136
|
}[] | undefined;
|
|
9121
9137
|
required?: boolean | undefined;
|
|
@@ -9134,7 +9150,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9134
9150
|
hint?: string | undefined;
|
|
9135
9151
|
messages?: {
|
|
9136
9152
|
text: string;
|
|
9137
|
-
type: "
|
|
9153
|
+
type: "success" | "error" | "info" | "warning";
|
|
9138
9154
|
id?: number | undefined;
|
|
9139
9155
|
}[] | undefined;
|
|
9140
9156
|
required?: boolean | undefined;
|
|
@@ -9159,7 +9175,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9159
9175
|
hint?: string | undefined;
|
|
9160
9176
|
messages?: {
|
|
9161
9177
|
text: string;
|
|
9162
|
-
type: "
|
|
9178
|
+
type: "success" | "error" | "info" | "warning";
|
|
9163
9179
|
id?: number | undefined;
|
|
9164
9180
|
}[] | undefined;
|
|
9165
9181
|
required?: boolean | undefined;
|
|
@@ -9180,7 +9196,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9180
9196
|
hint?: string | undefined;
|
|
9181
9197
|
messages?: {
|
|
9182
9198
|
text: string;
|
|
9183
|
-
type: "
|
|
9199
|
+
type: "success" | "error" | "info" | "warning";
|
|
9184
9200
|
id?: number | undefined;
|
|
9185
9201
|
}[] | undefined;
|
|
9186
9202
|
required?: boolean | undefined;
|
|
@@ -9201,7 +9217,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9201
9217
|
hint?: string | undefined;
|
|
9202
9218
|
messages?: {
|
|
9203
9219
|
text: string;
|
|
9204
|
-
type: "
|
|
9220
|
+
type: "success" | "error" | "info" | "warning";
|
|
9205
9221
|
id?: number | undefined;
|
|
9206
9222
|
}[] | undefined;
|
|
9207
9223
|
required?: boolean | undefined;
|
|
@@ -9431,7 +9447,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9431
9447
|
};
|
|
9432
9448
|
};
|
|
9433
9449
|
output: {
|
|
9434
|
-
prompt: "signup" | "status" | "mfa" | "organizations" | "
|
|
9450
|
+
prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
9435
9451
|
language: string;
|
|
9436
9452
|
}[];
|
|
9437
9453
|
outputFormat: "json";
|
|
@@ -9469,7 +9485,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9469
9485
|
$get: {
|
|
9470
9486
|
input: {
|
|
9471
9487
|
param: {
|
|
9472
|
-
prompt: "signup" | "status" | "mfa" | "organizations" | "
|
|
9488
|
+
prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
9473
9489
|
language: string;
|
|
9474
9490
|
};
|
|
9475
9491
|
} & {
|
|
@@ -9491,7 +9507,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9491
9507
|
$put: {
|
|
9492
9508
|
input: {
|
|
9493
9509
|
param: {
|
|
9494
|
-
prompt: "signup" | "status" | "mfa" | "organizations" | "
|
|
9510
|
+
prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
9495
9511
|
language: string;
|
|
9496
9512
|
};
|
|
9497
9513
|
} & {
|
|
@@ -9515,7 +9531,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9515
9531
|
$delete: {
|
|
9516
9532
|
input: {
|
|
9517
9533
|
param: {
|
|
9518
|
-
prompt: "signup" | "status" | "mfa" | "organizations" | "
|
|
9534
|
+
prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
9519
9535
|
language: string;
|
|
9520
9536
|
};
|
|
9521
9537
|
} & {
|
|
@@ -10377,7 +10393,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10377
10393
|
};
|
|
10378
10394
|
} | {
|
|
10379
10395
|
mode: "inline";
|
|
10380
|
-
status: "
|
|
10396
|
+
status: "success" | "error";
|
|
10381
10397
|
connection_id: string;
|
|
10382
10398
|
connection_name: string;
|
|
10383
10399
|
strategy: string;
|
|
@@ -11016,7 +11032,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11016
11032
|
log_type: string;
|
|
11017
11033
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
11018
11034
|
actor: {
|
|
11019
|
-
type: "user" | "client_credentials" | "
|
|
11035
|
+
type: "user" | "client_credentials" | "api_key" | "system" | "admin";
|
|
11020
11036
|
id?: string | undefined;
|
|
11021
11037
|
email?: string | undefined;
|
|
11022
11038
|
org_id?: string | undefined;
|
|
@@ -11324,7 +11340,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11324
11340
|
created_at: string;
|
|
11325
11341
|
updated_at: string;
|
|
11326
11342
|
name: string;
|
|
11327
|
-
provider: "auth0" | "
|
|
11343
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11328
11344
|
connection: string;
|
|
11329
11345
|
enabled: boolean;
|
|
11330
11346
|
credentials: {
|
|
@@ -11356,7 +11372,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11356
11372
|
created_at: string;
|
|
11357
11373
|
updated_at: string;
|
|
11358
11374
|
name: string;
|
|
11359
|
-
provider: "auth0" | "
|
|
11375
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11360
11376
|
connection: string;
|
|
11361
11377
|
enabled: boolean;
|
|
11362
11378
|
credentials: {
|
|
@@ -11382,7 +11398,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11382
11398
|
} & {
|
|
11383
11399
|
json: {
|
|
11384
11400
|
name: string;
|
|
11385
|
-
provider: "auth0" | "
|
|
11401
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11386
11402
|
connection: string;
|
|
11387
11403
|
credentials: {
|
|
11388
11404
|
domain: string;
|
|
@@ -11399,7 +11415,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11399
11415
|
created_at: string;
|
|
11400
11416
|
updated_at: string;
|
|
11401
11417
|
name: string;
|
|
11402
|
-
provider: "auth0" | "
|
|
11418
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11403
11419
|
connection: string;
|
|
11404
11420
|
enabled: boolean;
|
|
11405
11421
|
credentials: {
|
|
@@ -11430,7 +11446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11430
11446
|
json: {
|
|
11431
11447
|
id?: string | undefined;
|
|
11432
11448
|
name?: string | undefined;
|
|
11433
|
-
provider?: "auth0" | "
|
|
11449
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
11434
11450
|
connection?: string | undefined;
|
|
11435
11451
|
enabled?: boolean | undefined;
|
|
11436
11452
|
credentials?: {
|
|
@@ -11446,7 +11462,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11446
11462
|
created_at: string;
|
|
11447
11463
|
updated_at: string;
|
|
11448
11464
|
name: string;
|
|
11449
|
-
provider: "auth0" | "
|
|
11465
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11450
11466
|
connection: string;
|
|
11451
11467
|
enabled: boolean;
|
|
11452
11468
|
credentials: {
|
|
@@ -11664,7 +11680,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11664
11680
|
};
|
|
11665
11681
|
};
|
|
11666
11682
|
output: {
|
|
11667
|
-
type: "i" | "
|
|
11683
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11668
11684
|
date: string;
|
|
11669
11685
|
isMobile: boolean;
|
|
11670
11686
|
log_id: string;
|
|
@@ -11703,7 +11719,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11703
11719
|
limit: number;
|
|
11704
11720
|
length: number;
|
|
11705
11721
|
logs: {
|
|
11706
|
-
type: "i" | "
|
|
11722
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11707
11723
|
date: string;
|
|
11708
11724
|
isMobile: boolean;
|
|
11709
11725
|
log_id: string;
|
|
@@ -11757,7 +11773,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11757
11773
|
};
|
|
11758
11774
|
};
|
|
11759
11775
|
output: {
|
|
11760
|
-
type: "i" | "
|
|
11776
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11761
11777
|
date: string;
|
|
11762
11778
|
isMobile: boolean;
|
|
11763
11779
|
log_id: string;
|
|
@@ -12113,7 +12129,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12113
12129
|
client_id: string;
|
|
12114
12130
|
description?: string | undefined;
|
|
12115
12131
|
client_secret?: string | undefined;
|
|
12116
|
-
app_type?: "
|
|
12132
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
12117
12133
|
logo_uri?: string | undefined;
|
|
12118
12134
|
callbacks?: string[] | undefined;
|
|
12119
12135
|
allowed_origins?: string[] | undefined;
|
|
@@ -12209,7 +12225,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12209
12225
|
client_id: string;
|
|
12210
12226
|
description?: string | undefined;
|
|
12211
12227
|
client_secret?: string | undefined;
|
|
12212
|
-
app_type?: "
|
|
12228
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
12213
12229
|
logo_uri?: string | undefined;
|
|
12214
12230
|
callbacks?: string[] | undefined;
|
|
12215
12231
|
allowed_origins?: string[] | undefined;
|
|
@@ -12320,7 +12336,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12320
12336
|
client_id: string;
|
|
12321
12337
|
description?: string | undefined;
|
|
12322
12338
|
client_secret?: string | undefined;
|
|
12323
|
-
app_type?: "
|
|
12339
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
12324
12340
|
logo_uri?: string | undefined;
|
|
12325
12341
|
callbacks?: string[] | undefined;
|
|
12326
12342
|
allowed_origins?: string[] | undefined;
|
|
@@ -12435,7 +12451,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12435
12451
|
description?: string | undefined;
|
|
12436
12452
|
global?: boolean | undefined;
|
|
12437
12453
|
client_secret?: string | undefined;
|
|
12438
|
-
app_type?: "
|
|
12454
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
12439
12455
|
logo_uri?: string | undefined;
|
|
12440
12456
|
is_first_party?: boolean | undefined;
|
|
12441
12457
|
oidc_conformant?: boolean | undefined;
|
|
@@ -12510,7 +12526,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12510
12526
|
client_id: string;
|
|
12511
12527
|
description?: string | undefined;
|
|
12512
12528
|
client_secret?: string | undefined;
|
|
12513
|
-
app_type?: "
|
|
12529
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
12514
12530
|
logo_uri?: string | undefined;
|
|
12515
12531
|
callbacks?: string[] | undefined;
|
|
12516
12532
|
allowed_origins?: string[] | undefined;
|
|
@@ -12604,7 +12620,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12604
12620
|
description?: string | undefined;
|
|
12605
12621
|
global?: boolean | undefined;
|
|
12606
12622
|
client_secret?: string | undefined;
|
|
12607
|
-
app_type?: "
|
|
12623
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
12608
12624
|
logo_uri?: string | undefined;
|
|
12609
12625
|
is_first_party?: boolean | undefined;
|
|
12610
12626
|
oidc_conformant?: boolean | undefined;
|
|
@@ -12679,7 +12695,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12679
12695
|
client_id: string;
|
|
12680
12696
|
description?: string | undefined;
|
|
12681
12697
|
client_secret?: string | undefined;
|
|
12682
|
-
app_type?: "
|
|
12698
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
12683
12699
|
logo_uri?: string | undefined;
|
|
12684
12700
|
callbacks?: string[] | undefined;
|
|
12685
12701
|
allowed_origins?: string[] | undefined;
|
|
@@ -13975,7 +13991,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13975
13991
|
};
|
|
13976
13992
|
};
|
|
13977
13993
|
output: {
|
|
13978
|
-
type: "i" | "
|
|
13994
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13979
13995
|
date: string;
|
|
13980
13996
|
isMobile: boolean;
|
|
13981
13997
|
log_id: string;
|
|
@@ -14014,7 +14030,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14014
14030
|
limit: number;
|
|
14015
14031
|
length: number;
|
|
14016
14032
|
logs: {
|
|
14017
|
-
type: "i" | "
|
|
14033
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14018
14034
|
date: string;
|
|
14019
14035
|
isMobile: boolean;
|
|
14020
14036
|
log_id: string;
|
|
@@ -14329,7 +14345,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14329
14345
|
};
|
|
14330
14346
|
} & {
|
|
14331
14347
|
json: {
|
|
14332
|
-
template: "
|
|
14348
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14333
14349
|
body: string;
|
|
14334
14350
|
from: string;
|
|
14335
14351
|
subject: string;
|
|
@@ -14350,7 +14366,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14350
14366
|
};
|
|
14351
14367
|
} & {
|
|
14352
14368
|
json: {
|
|
14353
|
-
template: "
|
|
14369
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14354
14370
|
body: string;
|
|
14355
14371
|
from: string;
|
|
14356
14372
|
subject: string;
|
|
@@ -14362,7 +14378,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14362
14378
|
};
|
|
14363
14379
|
};
|
|
14364
14380
|
output: {
|
|
14365
|
-
template: "
|
|
14381
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14366
14382
|
body: string;
|
|
14367
14383
|
from: string;
|
|
14368
14384
|
subject: string;
|
|
@@ -14385,7 +14401,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14385
14401
|
};
|
|
14386
14402
|
};
|
|
14387
14403
|
output: {
|
|
14388
|
-
name: "
|
|
14404
|
+
name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14389
14405
|
body: string;
|
|
14390
14406
|
subject: string;
|
|
14391
14407
|
}[];
|
|
@@ -14398,7 +14414,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14398
14414
|
$get: {
|
|
14399
14415
|
input: {
|
|
14400
14416
|
param: {
|
|
14401
|
-
templateName: "
|
|
14417
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14402
14418
|
};
|
|
14403
14419
|
} & {
|
|
14404
14420
|
header: {
|
|
@@ -14411,7 +14427,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14411
14427
|
} | {
|
|
14412
14428
|
input: {
|
|
14413
14429
|
param: {
|
|
14414
|
-
templateName: "
|
|
14430
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14415
14431
|
};
|
|
14416
14432
|
} & {
|
|
14417
14433
|
header: {
|
|
@@ -14419,7 +14435,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14419
14435
|
};
|
|
14420
14436
|
};
|
|
14421
14437
|
output: {
|
|
14422
|
-
template: "
|
|
14438
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14423
14439
|
body: string;
|
|
14424
14440
|
from: string;
|
|
14425
14441
|
subject: string;
|
|
@@ -14438,7 +14454,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14438
14454
|
$put: {
|
|
14439
14455
|
input: {
|
|
14440
14456
|
param: {
|
|
14441
|
-
templateName: "
|
|
14457
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14442
14458
|
};
|
|
14443
14459
|
} & {
|
|
14444
14460
|
header: {
|
|
@@ -14446,7 +14462,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14446
14462
|
};
|
|
14447
14463
|
} & {
|
|
14448
14464
|
json: {
|
|
14449
|
-
template: "
|
|
14465
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14450
14466
|
body: string;
|
|
14451
14467
|
subject: string;
|
|
14452
14468
|
syntax?: "liquid" | undefined;
|
|
@@ -14458,7 +14474,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14458
14474
|
};
|
|
14459
14475
|
};
|
|
14460
14476
|
output: {
|
|
14461
|
-
template: "
|
|
14477
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14462
14478
|
body: string;
|
|
14463
14479
|
from: string;
|
|
14464
14480
|
subject: string;
|
|
@@ -14477,7 +14493,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14477
14493
|
$patch: {
|
|
14478
14494
|
input: {
|
|
14479
14495
|
param: {
|
|
14480
|
-
templateName: "
|
|
14496
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14481
14497
|
};
|
|
14482
14498
|
} & {
|
|
14483
14499
|
header: {
|
|
@@ -14485,7 +14501,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14485
14501
|
};
|
|
14486
14502
|
} & {
|
|
14487
14503
|
json: {
|
|
14488
|
-
template?: "
|
|
14504
|
+
template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14489
14505
|
body?: string | undefined;
|
|
14490
14506
|
from?: string | undefined;
|
|
14491
14507
|
subject?: string | undefined;
|
|
@@ -14502,7 +14518,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14502
14518
|
} | {
|
|
14503
14519
|
input: {
|
|
14504
14520
|
param: {
|
|
14505
|
-
templateName: "
|
|
14521
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14506
14522
|
};
|
|
14507
14523
|
} & {
|
|
14508
14524
|
header: {
|
|
@@ -14510,7 +14526,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14510
14526
|
};
|
|
14511
14527
|
} & {
|
|
14512
14528
|
json: {
|
|
14513
|
-
template?: "
|
|
14529
|
+
template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14514
14530
|
body?: string | undefined;
|
|
14515
14531
|
from?: string | undefined;
|
|
14516
14532
|
subject?: string | undefined;
|
|
@@ -14522,7 +14538,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14522
14538
|
};
|
|
14523
14539
|
};
|
|
14524
14540
|
output: {
|
|
14525
|
-
template: "
|
|
14541
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14526
14542
|
body: string;
|
|
14527
14543
|
from: string;
|
|
14528
14544
|
subject: string;
|
|
@@ -14541,7 +14557,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14541
14557
|
$delete: {
|
|
14542
14558
|
input: {
|
|
14543
14559
|
param: {
|
|
14544
|
-
templateName: "
|
|
14560
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14545
14561
|
};
|
|
14546
14562
|
} & {
|
|
14547
14563
|
header: {
|
|
@@ -14554,7 +14570,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14554
14570
|
} | {
|
|
14555
14571
|
input: {
|
|
14556
14572
|
param: {
|
|
14557
|
-
templateName: "
|
|
14573
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14558
14574
|
};
|
|
14559
14575
|
} & {
|
|
14560
14576
|
header: {
|
|
@@ -14571,7 +14587,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14571
14587
|
$post: {
|
|
14572
14588
|
input: {
|
|
14573
14589
|
param: {
|
|
14574
|
-
templateName: "
|
|
14590
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14575
14591
|
};
|
|
14576
14592
|
} & {
|
|
14577
14593
|
header: {
|
|
@@ -14856,7 +14872,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14856
14872
|
primary: boolean;
|
|
14857
14873
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14858
14874
|
verification_method?: "txt" | undefined;
|
|
14859
|
-
custom_client_ip_header?: "null" | "
|
|
14875
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14860
14876
|
domain_metadata?: {
|
|
14861
14877
|
[x: string]: string;
|
|
14862
14878
|
} | undefined;
|
|
@@ -14897,7 +14913,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14897
14913
|
primary: boolean;
|
|
14898
14914
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14899
14915
|
verification_method?: "txt" | undefined;
|
|
14900
|
-
custom_client_ip_header?: "null" | "
|
|
14916
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14901
14917
|
domain_metadata?: {
|
|
14902
14918
|
[x: string]: string;
|
|
14903
14919
|
} | undefined;
|
|
@@ -14950,7 +14966,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14950
14966
|
} & {
|
|
14951
14967
|
json: {
|
|
14952
14968
|
tls_policy?: "recommended" | undefined;
|
|
14953
|
-
custom_client_ip_header?: "null" | "
|
|
14969
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14954
14970
|
domain_metadata?: Record<string, string> | undefined;
|
|
14955
14971
|
};
|
|
14956
14972
|
};
|
|
@@ -14961,7 +14977,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14961
14977
|
primary: boolean;
|
|
14962
14978
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14963
14979
|
verification_method?: "txt" | undefined;
|
|
14964
|
-
custom_client_ip_header?: "null" | "
|
|
14980
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14965
14981
|
domain_metadata?: {
|
|
14966
14982
|
[x: string]: string;
|
|
14967
14983
|
} | undefined;
|
|
@@ -14997,7 +15013,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14997
15013
|
custom_domain_id?: string | undefined;
|
|
14998
15014
|
verification_method?: "txt" | undefined;
|
|
14999
15015
|
tls_policy?: "recommended" | undefined;
|
|
15000
|
-
custom_client_ip_header?: "null" | "
|
|
15016
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
15001
15017
|
domain_metadata?: Record<string, string> | undefined;
|
|
15002
15018
|
};
|
|
15003
15019
|
};
|
|
@@ -15008,7 +15024,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15008
15024
|
primary: boolean;
|
|
15009
15025
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
15010
15026
|
verification_method?: "txt" | undefined;
|
|
15011
|
-
custom_client_ip_header?: "null" | "
|
|
15027
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
15012
15028
|
domain_metadata?: {
|
|
15013
15029
|
[x: string]: string;
|
|
15014
15030
|
} | undefined;
|
|
@@ -15054,7 +15070,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15054
15070
|
primary: boolean;
|
|
15055
15071
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
15056
15072
|
verification_method?: "txt" | undefined;
|
|
15057
|
-
custom_client_ip_header?: "null" | "
|
|
15073
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
15058
15074
|
domain_metadata?: {
|
|
15059
15075
|
[x: string]: string;
|
|
15060
15076
|
} | undefined;
|
|
@@ -15095,7 +15111,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15095
15111
|
primary: boolean;
|
|
15096
15112
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
15097
15113
|
verification_method?: "txt" | undefined;
|
|
15098
|
-
custom_client_ip_header?: "null" | "
|
|
15114
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
15099
15115
|
domain_metadata?: {
|
|
15100
15116
|
[x: string]: string;
|
|
15101
15117
|
} | undefined;
|
|
@@ -15141,7 +15157,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15141
15157
|
base_focus_color: string;
|
|
15142
15158
|
base_hover_color: string;
|
|
15143
15159
|
body_text: string;
|
|
15144
|
-
captcha_widget_theme: "
|
|
15160
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
15145
15161
|
error: string;
|
|
15146
15162
|
header: string;
|
|
15147
15163
|
icons: string;
|
|
@@ -15231,7 +15247,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15231
15247
|
base_focus_color: string;
|
|
15232
15248
|
base_hover_color: string;
|
|
15233
15249
|
body_text: string;
|
|
15234
|
-
captcha_widget_theme: "
|
|
15250
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
15235
15251
|
error: string;
|
|
15236
15252
|
header: string;
|
|
15237
15253
|
icons: string;
|
|
@@ -15310,7 +15326,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15310
15326
|
base_focus_color: string;
|
|
15311
15327
|
base_hover_color: string;
|
|
15312
15328
|
body_text: string;
|
|
15313
|
-
captcha_widget_theme: "
|
|
15329
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
15314
15330
|
error: string;
|
|
15315
15331
|
header: string;
|
|
15316
15332
|
icons: string;
|
|
@@ -15400,7 +15416,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15400
15416
|
font?: {
|
|
15401
15417
|
url: string;
|
|
15402
15418
|
} | undefined;
|
|
15403
|
-
dark_mode?: "
|
|
15419
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
15404
15420
|
};
|
|
15405
15421
|
outputFormat: "json";
|
|
15406
15422
|
status: 200;
|
|
@@ -15430,7 +15446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15430
15446
|
font?: {
|
|
15431
15447
|
url: string;
|
|
15432
15448
|
} | undefined;
|
|
15433
|
-
dark_mode?: "
|
|
15449
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
15434
15450
|
};
|
|
15435
15451
|
};
|
|
15436
15452
|
output: {
|
|
@@ -15449,7 +15465,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15449
15465
|
font?: {
|
|
15450
15466
|
url: string;
|
|
15451
15467
|
} | undefined;
|
|
15452
|
-
dark_mode?: "
|
|
15468
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
15453
15469
|
};
|
|
15454
15470
|
outputFormat: "json";
|
|
15455
15471
|
status: 200;
|
|
@@ -15700,7 +15716,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15700
15716
|
logs: {
|
|
15701
15717
|
action_name: string;
|
|
15702
15718
|
lines: {
|
|
15703
|
-
level: "
|
|
15719
|
+
level: "log" | "error" | "info" | "debug" | "warn";
|
|
15704
15720
|
message: string;
|
|
15705
15721
|
}[];
|
|
15706
15722
|
}[];
|
|
@@ -16367,7 +16383,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16367
16383
|
args: hono_utils_types.JSONValue[];
|
|
16368
16384
|
}[];
|
|
16369
16385
|
logs: {
|
|
16370
|
-
level: "
|
|
16386
|
+
level: "log" | "error" | "info" | "debug" | "warn";
|
|
16371
16387
|
message: string;
|
|
16372
16388
|
}[];
|
|
16373
16389
|
error?: string | undefined;
|
|
@@ -16811,7 +16827,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16811
16827
|
client_id: string;
|
|
16812
16828
|
redirect_url?: string | undefined;
|
|
16813
16829
|
login_hint?: string | undefined;
|
|
16814
|
-
screen_hint?: "
|
|
16830
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
16815
16831
|
};
|
|
16816
16832
|
};
|
|
16817
16833
|
output: {};
|
|
@@ -16823,7 +16839,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16823
16839
|
client_id: string;
|
|
16824
16840
|
redirect_url?: string | undefined;
|
|
16825
16841
|
login_hint?: string | undefined;
|
|
16826
|
-
screen_hint?: "
|
|
16842
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
16827
16843
|
};
|
|
16828
16844
|
};
|
|
16829
16845
|
output: {
|
|
@@ -17100,19 +17116,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17100
17116
|
email: string;
|
|
17101
17117
|
send: "code" | "link";
|
|
17102
17118
|
authParams: {
|
|
17119
|
+
state?: string | undefined;
|
|
17103
17120
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17104
17121
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17105
17122
|
scope?: string | undefined;
|
|
17106
17123
|
username?: string | undefined;
|
|
17107
|
-
audience?: string | undefined;
|
|
17108
|
-
state?: string | undefined;
|
|
17109
|
-
prompt?: string | undefined;
|
|
17110
|
-
act_as?: string | undefined;
|
|
17111
|
-
redirect_uri?: string | undefined;
|
|
17112
|
-
organization?: string | undefined;
|
|
17113
17124
|
nonce?: string | undefined;
|
|
17114
|
-
|
|
17125
|
+
organization?: string | undefined;
|
|
17115
17126
|
code_challenge?: string | undefined;
|
|
17127
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17128
|
+
redirect_uri?: string | undefined;
|
|
17129
|
+
act_as?: string | undefined;
|
|
17130
|
+
audience?: string | undefined;
|
|
17131
|
+
prompt?: string | undefined;
|
|
17116
17132
|
ui_locales?: string | undefined;
|
|
17117
17133
|
max_age?: number | undefined;
|
|
17118
17134
|
acr_values?: string | undefined;
|
|
@@ -17136,19 +17152,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17136
17152
|
phone_number: string;
|
|
17137
17153
|
send: "code" | "link";
|
|
17138
17154
|
authParams: {
|
|
17155
|
+
state?: string | undefined;
|
|
17139
17156
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17140
17157
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17141
17158
|
scope?: string | undefined;
|
|
17142
17159
|
username?: string | undefined;
|
|
17143
|
-
audience?: string | undefined;
|
|
17144
|
-
state?: string | undefined;
|
|
17145
|
-
prompt?: string | undefined;
|
|
17146
|
-
act_as?: string | undefined;
|
|
17147
|
-
redirect_uri?: string | undefined;
|
|
17148
|
-
organization?: string | undefined;
|
|
17149
17160
|
nonce?: string | undefined;
|
|
17150
|
-
|
|
17161
|
+
organization?: string | undefined;
|
|
17151
17162
|
code_challenge?: string | undefined;
|
|
17163
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17164
|
+
redirect_uri?: string | undefined;
|
|
17165
|
+
act_as?: string | undefined;
|
|
17166
|
+
audience?: string | undefined;
|
|
17167
|
+
prompt?: string | undefined;
|
|
17152
17168
|
ui_locales?: string | undefined;
|
|
17153
17169
|
max_age?: number | undefined;
|
|
17154
17170
|
acr_values?: string | undefined;
|
|
@@ -17280,14 +17296,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17280
17296
|
input: {
|
|
17281
17297
|
form: {
|
|
17282
17298
|
token: string;
|
|
17283
|
-
token_type_hint?: "
|
|
17299
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17284
17300
|
client_id?: string | undefined;
|
|
17285
17301
|
client_secret?: string | undefined;
|
|
17286
17302
|
};
|
|
17287
17303
|
} & {
|
|
17288
17304
|
json: {
|
|
17289
17305
|
token: string;
|
|
17290
|
-
token_type_hint?: "
|
|
17306
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17291
17307
|
client_id?: string | undefined;
|
|
17292
17308
|
client_secret?: string | undefined;
|
|
17293
17309
|
};
|
|
@@ -17299,14 +17315,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17299
17315
|
input: {
|
|
17300
17316
|
form: {
|
|
17301
17317
|
token: string;
|
|
17302
|
-
token_type_hint?: "
|
|
17318
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17303
17319
|
client_id?: string | undefined;
|
|
17304
17320
|
client_secret?: string | undefined;
|
|
17305
17321
|
};
|
|
17306
17322
|
} & {
|
|
17307
17323
|
json: {
|
|
17308
17324
|
token: string;
|
|
17309
|
-
token_type_hint?: "
|
|
17325
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17310
17326
|
client_id?: string | undefined;
|
|
17311
17327
|
client_secret?: string | undefined;
|
|
17312
17328
|
};
|
|
@@ -17321,14 +17337,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17321
17337
|
input: {
|
|
17322
17338
|
form: {
|
|
17323
17339
|
token: string;
|
|
17324
|
-
token_type_hint?: "
|
|
17340
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17325
17341
|
client_id?: string | undefined;
|
|
17326
17342
|
client_secret?: string | undefined;
|
|
17327
17343
|
};
|
|
17328
17344
|
} & {
|
|
17329
17345
|
json: {
|
|
17330
17346
|
token: string;
|
|
17331
|
-
token_type_hint?: "
|
|
17347
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17332
17348
|
client_id?: string | undefined;
|
|
17333
17349
|
client_secret?: string | undefined;
|
|
17334
17350
|
};
|
|
@@ -17864,7 +17880,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17864
17880
|
output: {
|
|
17865
17881
|
keys: {
|
|
17866
17882
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
17867
|
-
kty: "
|
|
17883
|
+
kty: "EC" | "RSA" | "oct";
|
|
17868
17884
|
kid?: string | undefined;
|
|
17869
17885
|
use?: "sig" | "enc" | undefined;
|
|
17870
17886
|
n?: string | undefined;
|
|
@@ -19055,7 +19071,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19055
19071
|
$get: {
|
|
19056
19072
|
input: {
|
|
19057
19073
|
param: {
|
|
19058
|
-
screen: "signup" | "login" | "
|
|
19074
|
+
screen: "signup" | "login" | "account" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
19059
19075
|
};
|
|
19060
19076
|
} & {
|
|
19061
19077
|
query: {
|
|
@@ -19071,7 +19087,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19071
19087
|
} | {
|
|
19072
19088
|
input: {
|
|
19073
19089
|
param: {
|
|
19074
|
-
screen: "signup" | "login" | "
|
|
19090
|
+
screen: "signup" | "login" | "account" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
19075
19091
|
};
|
|
19076
19092
|
} & {
|
|
19077
19093
|
query: {
|
|
@@ -19087,7 +19103,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19087
19103
|
} | {
|
|
19088
19104
|
input: {
|
|
19089
19105
|
param: {
|
|
19090
|
-
screen: "signup" | "login" | "
|
|
19106
|
+
screen: "signup" | "login" | "account" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
19091
19107
|
};
|
|
19092
19108
|
} & {
|
|
19093
19109
|
query: {
|
|
@@ -19107,7 +19123,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19107
19123
|
$post: {
|
|
19108
19124
|
input: {
|
|
19109
19125
|
param: {
|
|
19110
|
-
screen: "signup" | "login" | "
|
|
19126
|
+
screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
19111
19127
|
};
|
|
19112
19128
|
} & {
|
|
19113
19129
|
query: {
|
|
@@ -19125,7 +19141,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19125
19141
|
} | {
|
|
19126
19142
|
input: {
|
|
19127
19143
|
param: {
|
|
19128
|
-
screen: "signup" | "login" | "
|
|
19144
|
+
screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
19129
19145
|
};
|
|
19130
19146
|
} & {
|
|
19131
19147
|
query: {
|
|
@@ -19143,7 +19159,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19143
19159
|
} | {
|
|
19144
19160
|
input: {
|
|
19145
19161
|
param: {
|
|
19146
|
-
screen: "signup" | "login" | "
|
|
19162
|
+
screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
19147
19163
|
};
|
|
19148
19164
|
} & {
|
|
19149
19165
|
query: {
|
|
@@ -19241,5 +19257,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19241
19257
|
createX509Certificate: typeof createX509Certificate;
|
|
19242
19258
|
};
|
|
19243
19259
|
|
|
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 };
|
|
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 };
|
|
19260
|
+
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, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
|
|
19261
|
+
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, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
|