authhero 9.1.1 → 9.2.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/index.esm.js +1 -1
- package/dist/assets/u/widget/p-e95c436f.entry.js +1 -0
- package/dist/authhero.cjs +133 -133
- package/dist/authhero.d.ts +298 -233
- package/dist/authhero.mjs +5803 -5765
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/action-executions-cleanup.d.ts +34 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/run-retention.d.ts +4 -1
- package/dist/types/index.d.ts +259 -229
- package/dist/types/routes/auth-api/index.d.ts +18 -18
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/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 +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +8 -8
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +28 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +234 -206
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +4 -4
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +1 -1
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/package.json +6 -6
- package/dist/assets/u/widget/p-c179b5da.entry.js +0 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as hono_utils_types from 'hono/utils/types';
|
|
2
2
|
import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
|
|
3
|
-
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, LinkCandidate, roleSchema, inviteSchema, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, OutboxAdapter, AuditEvent, CodesAdapter, HooksAdapter, Client, LogsDataAdapter, LogInsert, UserDataAdapter, ProxyRoutesAdapter, CustomDomainsAdapter, TenantsDataAdapter, KeysAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
3
|
+
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, LinkCandidate, roleSchema, inviteSchema, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, OutboxAdapter, AuditEvent, CodesAdapter, ActionExecutionsAdapter, HooksAdapter, Client, LogsDataAdapter, LogInsert, UserDataAdapter, ProxyRoutesAdapter, CustomDomainsAdapter, TenantsDataAdapter, KeysAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
4
4
|
export * from '@authhero/adapter-interfaces';
|
|
5
5
|
import * as hono_types from 'hono/types';
|
|
6
6
|
import * as hono_utils_http_status from 'hono/utils/http-status';
|
|
@@ -2745,6 +2745,40 @@ interface CodesCleanupParams {
|
|
|
2745
2745
|
*/
|
|
2746
2746
|
declare function cleanupCodes(codes: CodesAdapter, params?: CodesCleanupParams): Promise<number>;
|
|
2747
2747
|
|
|
2748
|
+
interface ActionExecutionsCleanupParams {
|
|
2749
|
+
/**
|
|
2750
|
+
* Days of execution history to keep. Defaults to 30.
|
|
2751
|
+
*
|
|
2752
|
+
* Unlike `codes`, these rows have no expiry — they are diagnostic history,
|
|
2753
|
+
* referenced from logs when debugging an action. The window is a genuine
|
|
2754
|
+
* retention policy: long enough to investigate a report that arrives late,
|
|
2755
|
+
* short enough that the table stops growing without bound.
|
|
2756
|
+
*/
|
|
2757
|
+
retentionDays?: number;
|
|
2758
|
+
}
|
|
2759
|
+
/**
|
|
2760
|
+
* Delete action executions created more than the retention window ago.
|
|
2761
|
+
*
|
|
2762
|
+
* Prefer `runRetention`, which calls this along with every other prunable
|
|
2763
|
+
* table — scheduling one call means a future prunable table is covered
|
|
2764
|
+
* without editing your handler. Use this directly only when you want to sweep
|
|
2765
|
+
* `action_executions` on its own schedule.
|
|
2766
|
+
*
|
|
2767
|
+
* Returns `null` when the adapter does not support cleanup (backends like
|
|
2768
|
+
* DynamoDB TTL or Analytics Engine expire rows themselves).
|
|
2769
|
+
*
|
|
2770
|
+
* @example
|
|
2771
|
+
* ```ts
|
|
2772
|
+
* // Cloudflare Workers scheduled handler
|
|
2773
|
+
* async scheduled(_event, env) {
|
|
2774
|
+
* await cleanupActionExecutions(dataAdapter.actionExecutions, {
|
|
2775
|
+
* retentionDays: 30,
|
|
2776
|
+
* });
|
|
2777
|
+
* }
|
|
2778
|
+
* ```
|
|
2779
|
+
*/
|
|
2780
|
+
declare function cleanupActionExecutions(actionExecutions: ActionExecutionsAdapter, params?: ActionExecutionsCleanupParams): Promise<number | null>;
|
|
2781
|
+
|
|
2748
2782
|
/**
|
|
2749
2783
|
* Mints a Bearer token for a given tenant. `scope` is forwarded so a custom
|
|
2750
2784
|
* `webhookInvoker` can request a non-default scope for its outbound call.
|
|
@@ -3008,6 +3042,8 @@ interface RunRetentionConfig {
|
|
|
3008
3042
|
codesRetentionDays?: number;
|
|
3009
3043
|
/** Days to keep processed/dead-lettered outbox events. Default 7. */
|
|
3010
3044
|
outboxRetentionDays?: number;
|
|
3045
|
+
/** Days of action execution history to keep. Default 30. */
|
|
3046
|
+
actionExecutionsRetentionDays?: number;
|
|
3011
3047
|
/**
|
|
3012
3048
|
* Scope the session sweep to a single tenant. Codes and outbox events are
|
|
3013
3049
|
* always swept globally — an expired row is dead regardless of who owns it.
|
|
@@ -3061,7 +3097,8 @@ declare class RetentionSweepError extends Error {
|
|
|
3061
3097
|
* without editing its handler.
|
|
3062
3098
|
*
|
|
3063
3099
|
* Covers `codes`, `outbox_events`, and (where the adapter supports it)
|
|
3064
|
-
* `sessions` / `refresh_tokens` / `login_sessions`.
|
|
3100
|
+
* `action_executions` and `sessions` / `refresh_tokens` / `login_sessions`.
|
|
3101
|
+
* It does **not** drain the
|
|
3065
3102
|
* outbox: delivery is `runOutboxRelay`'s job, and the two are scheduled
|
|
3066
3103
|
* independently. Running both is safe — the relay's own cleanup pass and this
|
|
3067
3104
|
* one are idempotent.
|
|
@@ -4224,8 +4261,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4224
4261
|
$get: {
|
|
4225
4262
|
input: {
|
|
4226
4263
|
query: {
|
|
4227
|
-
include_password_hashes?: "
|
|
4228
|
-
gzip?: "
|
|
4264
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
4265
|
+
gzip?: "true" | "false" | undefined;
|
|
4229
4266
|
};
|
|
4230
4267
|
} & {
|
|
4231
4268
|
header: {
|
|
@@ -4238,8 +4275,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4238
4275
|
} | {
|
|
4239
4276
|
input: {
|
|
4240
4277
|
query: {
|
|
4241
|
-
include_password_hashes?: "
|
|
4242
|
-
gzip?: "
|
|
4278
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
4279
|
+
gzip?: "true" | "false" | undefined;
|
|
4243
4280
|
};
|
|
4244
4281
|
} & {
|
|
4245
4282
|
header: {
|
|
@@ -4258,7 +4295,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4258
4295
|
$post: {
|
|
4259
4296
|
input: {
|
|
4260
4297
|
query: {
|
|
4261
|
-
include_password_hashes?: "
|
|
4298
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
4262
4299
|
};
|
|
4263
4300
|
} & {
|
|
4264
4301
|
header: {
|
|
@@ -4312,7 +4349,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4312
4349
|
};
|
|
4313
4350
|
} & {
|
|
4314
4351
|
json: {
|
|
4315
|
-
type: "email" | "
|
|
4352
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
4316
4353
|
phone_number?: string | undefined;
|
|
4317
4354
|
totp_secret?: string | undefined;
|
|
4318
4355
|
credential_id?: string | undefined;
|
|
@@ -4452,7 +4489,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4452
4489
|
};
|
|
4453
4490
|
};
|
|
4454
4491
|
output: {
|
|
4455
|
-
name: "email" | "
|
|
4492
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4456
4493
|
enabled: boolean;
|
|
4457
4494
|
trial_expired?: boolean | undefined;
|
|
4458
4495
|
}[];
|
|
@@ -4607,7 +4644,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4607
4644
|
$get: {
|
|
4608
4645
|
input: {
|
|
4609
4646
|
param: {
|
|
4610
|
-
factor_name: "email" | "
|
|
4647
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4611
4648
|
};
|
|
4612
4649
|
} & {
|
|
4613
4650
|
header: {
|
|
@@ -4615,7 +4652,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4615
4652
|
};
|
|
4616
4653
|
};
|
|
4617
4654
|
output: {
|
|
4618
|
-
name: "email" | "
|
|
4655
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4619
4656
|
enabled: boolean;
|
|
4620
4657
|
trial_expired?: boolean | undefined;
|
|
4621
4658
|
};
|
|
@@ -4628,7 +4665,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4628
4665
|
$put: {
|
|
4629
4666
|
input: {
|
|
4630
4667
|
param: {
|
|
4631
|
-
factor_name: "email" | "
|
|
4668
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4632
4669
|
};
|
|
4633
4670
|
} & {
|
|
4634
4671
|
header: {
|
|
@@ -4640,7 +4677,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4640
4677
|
};
|
|
4641
4678
|
};
|
|
4642
4679
|
output: {
|
|
4643
|
-
name: "email" | "
|
|
4680
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4644
4681
|
enabled: boolean;
|
|
4645
4682
|
trial_expired?: boolean | undefined;
|
|
4646
4683
|
};
|
|
@@ -5412,19 +5449,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5412
5449
|
} & {
|
|
5413
5450
|
json: {
|
|
5414
5451
|
client_id: string;
|
|
5415
|
-
inviter: {
|
|
5416
|
-
name?: string | undefined;
|
|
5417
|
-
};
|
|
5418
5452
|
invitee: {
|
|
5419
5453
|
email?: string | undefined;
|
|
5420
5454
|
};
|
|
5455
|
+
inviter: {
|
|
5456
|
+
name?: string | undefined;
|
|
5457
|
+
};
|
|
5458
|
+
id?: string | undefined;
|
|
5421
5459
|
app_metadata?: Record<string, any> | undefined;
|
|
5422
5460
|
user_metadata?: Record<string, any> | undefined;
|
|
5423
|
-
id?: string | undefined;
|
|
5424
5461
|
connection_id?: string | undefined;
|
|
5425
5462
|
roles?: string[] | undefined;
|
|
5426
|
-
ttl_sec?: number | undefined;
|
|
5427
5463
|
send_invitation_email?: boolean | undefined;
|
|
5464
|
+
ttl_sec?: number | undefined;
|
|
5428
5465
|
};
|
|
5429
5466
|
};
|
|
5430
5467
|
output: {
|
|
@@ -5607,8 +5644,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5607
5644
|
};
|
|
5608
5645
|
} & {
|
|
5609
5646
|
json: {
|
|
5610
|
-
assign_membership_on_login?: boolean | undefined;
|
|
5611
5647
|
show_as_button?: boolean | undefined;
|
|
5648
|
+
assign_membership_on_login?: boolean | undefined;
|
|
5612
5649
|
is_signup_enabled?: boolean | undefined;
|
|
5613
5650
|
};
|
|
5614
5651
|
};
|
|
@@ -6904,7 +6941,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6904
6941
|
hint?: string | undefined;
|
|
6905
6942
|
messages?: {
|
|
6906
6943
|
text: string;
|
|
6907
|
-
type: "
|
|
6944
|
+
type: "error" | "success" | "info" | "warning";
|
|
6908
6945
|
id?: number | undefined;
|
|
6909
6946
|
}[] | undefined;
|
|
6910
6947
|
required?: boolean | undefined;
|
|
@@ -6922,7 +6959,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6922
6959
|
hint?: string | undefined;
|
|
6923
6960
|
messages?: {
|
|
6924
6961
|
text: string;
|
|
6925
|
-
type: "
|
|
6962
|
+
type: "error" | "success" | "info" | "warning";
|
|
6926
6963
|
id?: number | undefined;
|
|
6927
6964
|
}[] | undefined;
|
|
6928
6965
|
required?: boolean | undefined;
|
|
@@ -6946,7 +6983,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6946
6983
|
hint?: string | undefined;
|
|
6947
6984
|
messages?: {
|
|
6948
6985
|
text: string;
|
|
6949
|
-
type: "
|
|
6986
|
+
type: "error" | "success" | "info" | "warning";
|
|
6950
6987
|
id?: number | undefined;
|
|
6951
6988
|
}[] | undefined;
|
|
6952
6989
|
required?: boolean | undefined;
|
|
@@ -6970,7 +7007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6970
7007
|
hint?: string | undefined;
|
|
6971
7008
|
messages?: {
|
|
6972
7009
|
text: string;
|
|
6973
|
-
type: "
|
|
7010
|
+
type: "error" | "success" | "info" | "warning";
|
|
6974
7011
|
id?: number | undefined;
|
|
6975
7012
|
}[] | undefined;
|
|
6976
7013
|
required?: boolean | undefined;
|
|
@@ -6994,7 +7031,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6994
7031
|
hint?: string | undefined;
|
|
6995
7032
|
messages?: {
|
|
6996
7033
|
text: string;
|
|
6997
|
-
type: "
|
|
7034
|
+
type: "error" | "success" | "info" | "warning";
|
|
6998
7035
|
id?: number | undefined;
|
|
6999
7036
|
}[] | undefined;
|
|
7000
7037
|
required?: boolean | undefined;
|
|
@@ -7023,7 +7060,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7023
7060
|
hint?: string | undefined;
|
|
7024
7061
|
messages?: {
|
|
7025
7062
|
text: string;
|
|
7026
|
-
type: "
|
|
7063
|
+
type: "error" | "success" | "info" | "warning";
|
|
7027
7064
|
id?: number | undefined;
|
|
7028
7065
|
}[] | undefined;
|
|
7029
7066
|
required?: boolean | undefined;
|
|
@@ -7038,7 +7075,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7038
7075
|
hint?: string | undefined;
|
|
7039
7076
|
messages?: {
|
|
7040
7077
|
text: string;
|
|
7041
|
-
type: "
|
|
7078
|
+
type: "error" | "success" | "info" | "warning";
|
|
7042
7079
|
id?: number | undefined;
|
|
7043
7080
|
}[] | undefined;
|
|
7044
7081
|
required?: boolean | undefined;
|
|
@@ -7059,7 +7096,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7059
7096
|
hint?: string | undefined;
|
|
7060
7097
|
messages?: {
|
|
7061
7098
|
text: string;
|
|
7062
|
-
type: "
|
|
7099
|
+
type: "error" | "success" | "info" | "warning";
|
|
7063
7100
|
id?: number | undefined;
|
|
7064
7101
|
}[] | undefined;
|
|
7065
7102
|
required?: boolean | undefined;
|
|
@@ -7084,7 +7121,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7084
7121
|
hint?: string | undefined;
|
|
7085
7122
|
messages?: {
|
|
7086
7123
|
text: string;
|
|
7087
|
-
type: "
|
|
7124
|
+
type: "error" | "success" | "info" | "warning";
|
|
7088
7125
|
id?: number | undefined;
|
|
7089
7126
|
}[] | undefined;
|
|
7090
7127
|
required?: boolean | undefined;
|
|
@@ -7092,6 +7129,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7092
7129
|
config?: {
|
|
7093
7130
|
placeholder?: string | undefined;
|
|
7094
7131
|
default_value?: string | undefined;
|
|
7132
|
+
last_used?: boolean | undefined;
|
|
7133
|
+
last_used_label?: string | undefined;
|
|
7095
7134
|
} | undefined;
|
|
7096
7135
|
} | {
|
|
7097
7136
|
id: string;
|
|
@@ -7103,7 +7142,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7103
7142
|
hint?: string | undefined;
|
|
7104
7143
|
messages?: {
|
|
7105
7144
|
text: string;
|
|
7106
|
-
type: "
|
|
7145
|
+
type: "error" | "success" | "info" | "warning";
|
|
7107
7146
|
id?: number | undefined;
|
|
7108
7147
|
}[] | undefined;
|
|
7109
7148
|
required?: boolean | undefined;
|
|
@@ -7123,7 +7162,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7123
7162
|
hint?: string | undefined;
|
|
7124
7163
|
messages?: {
|
|
7125
7164
|
text: string;
|
|
7126
|
-
type: "
|
|
7165
|
+
type: "error" | "success" | "info" | "warning";
|
|
7127
7166
|
id?: number | undefined;
|
|
7128
7167
|
}[] | undefined;
|
|
7129
7168
|
required?: boolean | undefined;
|
|
@@ -7142,7 +7181,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7142
7181
|
hint?: string | undefined;
|
|
7143
7182
|
messages?: {
|
|
7144
7183
|
text: string;
|
|
7145
|
-
type: "
|
|
7184
|
+
type: "error" | "success" | "info" | "warning";
|
|
7146
7185
|
id?: number | undefined;
|
|
7147
7186
|
}[] | undefined;
|
|
7148
7187
|
required?: boolean | undefined;
|
|
@@ -7164,7 +7203,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7164
7203
|
hint?: string | undefined;
|
|
7165
7204
|
messages?: {
|
|
7166
7205
|
text: string;
|
|
7167
|
-
type: "
|
|
7206
|
+
type: "error" | "success" | "info" | "warning";
|
|
7168
7207
|
id?: number | undefined;
|
|
7169
7208
|
}[] | undefined;
|
|
7170
7209
|
required?: boolean | undefined;
|
|
@@ -7186,7 +7225,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7186
7225
|
hint?: string | undefined;
|
|
7187
7226
|
messages?: {
|
|
7188
7227
|
text: string;
|
|
7189
|
-
type: "
|
|
7228
|
+
type: "error" | "success" | "info" | "warning";
|
|
7190
7229
|
id?: number | undefined;
|
|
7191
7230
|
}[] | undefined;
|
|
7192
7231
|
required?: boolean | undefined;
|
|
@@ -7205,7 +7244,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7205
7244
|
hint?: string | undefined;
|
|
7206
7245
|
messages?: {
|
|
7207
7246
|
text: string;
|
|
7208
|
-
type: "
|
|
7247
|
+
type: "error" | "success" | "info" | "warning";
|
|
7209
7248
|
id?: number | undefined;
|
|
7210
7249
|
}[] | undefined;
|
|
7211
7250
|
required?: boolean | undefined;
|
|
@@ -7232,7 +7271,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7232
7271
|
hint?: string | undefined;
|
|
7233
7272
|
messages?: {
|
|
7234
7273
|
text: string;
|
|
7235
|
-
type: "
|
|
7274
|
+
type: "error" | "success" | "info" | "warning";
|
|
7236
7275
|
id?: number | undefined;
|
|
7237
7276
|
}[] | undefined;
|
|
7238
7277
|
required?: boolean | undefined;
|
|
@@ -7253,7 +7292,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7253
7292
|
hint?: string | undefined;
|
|
7254
7293
|
messages?: {
|
|
7255
7294
|
text: string;
|
|
7256
|
-
type: "
|
|
7295
|
+
type: "error" | "success" | "info" | "warning";
|
|
7257
7296
|
id?: number | undefined;
|
|
7258
7297
|
}[] | undefined;
|
|
7259
7298
|
required?: boolean | undefined;
|
|
@@ -7263,6 +7302,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7263
7302
|
multiline?: boolean | undefined;
|
|
7264
7303
|
max_length?: number | undefined;
|
|
7265
7304
|
default_value?: string | undefined;
|
|
7305
|
+
last_used?: boolean | undefined;
|
|
7306
|
+
last_used_label?: string | undefined;
|
|
7266
7307
|
} | undefined;
|
|
7267
7308
|
} | {
|
|
7268
7309
|
id: string;
|
|
@@ -7274,7 +7315,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7274
7315
|
hint?: string | undefined;
|
|
7275
7316
|
messages?: {
|
|
7276
7317
|
text: string;
|
|
7277
|
-
type: "
|
|
7318
|
+
type: "error" | "success" | "info" | "warning";
|
|
7278
7319
|
id?: number | undefined;
|
|
7279
7320
|
}[] | undefined;
|
|
7280
7321
|
required?: boolean | undefined;
|
|
@@ -7507,7 +7548,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7507
7548
|
hint?: string | undefined;
|
|
7508
7549
|
messages?: {
|
|
7509
7550
|
text: string;
|
|
7510
|
-
type: "
|
|
7551
|
+
type: "error" | "success" | "info" | "warning";
|
|
7511
7552
|
id?: number | undefined;
|
|
7512
7553
|
}[] | undefined;
|
|
7513
7554
|
required?: boolean | undefined;
|
|
@@ -7525,7 +7566,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7525
7566
|
hint?: string | undefined;
|
|
7526
7567
|
messages?: {
|
|
7527
7568
|
text: string;
|
|
7528
|
-
type: "
|
|
7569
|
+
type: "error" | "success" | "info" | "warning";
|
|
7529
7570
|
id?: number | undefined;
|
|
7530
7571
|
}[] | undefined;
|
|
7531
7572
|
required?: boolean | undefined;
|
|
@@ -7549,7 +7590,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7549
7590
|
hint?: string | undefined;
|
|
7550
7591
|
messages?: {
|
|
7551
7592
|
text: string;
|
|
7552
|
-
type: "
|
|
7593
|
+
type: "error" | "success" | "info" | "warning";
|
|
7553
7594
|
id?: number | undefined;
|
|
7554
7595
|
}[] | undefined;
|
|
7555
7596
|
required?: boolean | undefined;
|
|
@@ -7573,7 +7614,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7573
7614
|
hint?: string | undefined;
|
|
7574
7615
|
messages?: {
|
|
7575
7616
|
text: string;
|
|
7576
|
-
type: "
|
|
7617
|
+
type: "error" | "success" | "info" | "warning";
|
|
7577
7618
|
id?: number | undefined;
|
|
7578
7619
|
}[] | undefined;
|
|
7579
7620
|
required?: boolean | undefined;
|
|
@@ -7597,7 +7638,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7597
7638
|
hint?: string | undefined;
|
|
7598
7639
|
messages?: {
|
|
7599
7640
|
text: string;
|
|
7600
|
-
type: "
|
|
7641
|
+
type: "error" | "success" | "info" | "warning";
|
|
7601
7642
|
id?: number | undefined;
|
|
7602
7643
|
}[] | undefined;
|
|
7603
7644
|
required?: boolean | undefined;
|
|
@@ -7626,7 +7667,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7626
7667
|
hint?: string | undefined;
|
|
7627
7668
|
messages?: {
|
|
7628
7669
|
text: string;
|
|
7629
|
-
type: "
|
|
7670
|
+
type: "error" | "success" | "info" | "warning";
|
|
7630
7671
|
id?: number | undefined;
|
|
7631
7672
|
}[] | undefined;
|
|
7632
7673
|
required?: boolean | undefined;
|
|
@@ -7641,7 +7682,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7641
7682
|
hint?: string | undefined;
|
|
7642
7683
|
messages?: {
|
|
7643
7684
|
text: string;
|
|
7644
|
-
type: "
|
|
7685
|
+
type: "error" | "success" | "info" | "warning";
|
|
7645
7686
|
id?: number | undefined;
|
|
7646
7687
|
}[] | undefined;
|
|
7647
7688
|
required?: boolean | undefined;
|
|
@@ -7662,7 +7703,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7662
7703
|
hint?: string | undefined;
|
|
7663
7704
|
messages?: {
|
|
7664
7705
|
text: string;
|
|
7665
|
-
type: "
|
|
7706
|
+
type: "error" | "success" | "info" | "warning";
|
|
7666
7707
|
id?: number | undefined;
|
|
7667
7708
|
}[] | undefined;
|
|
7668
7709
|
required?: boolean | undefined;
|
|
@@ -7687,7 +7728,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7687
7728
|
hint?: string | undefined;
|
|
7688
7729
|
messages?: {
|
|
7689
7730
|
text: string;
|
|
7690
|
-
type: "
|
|
7731
|
+
type: "error" | "success" | "info" | "warning";
|
|
7691
7732
|
id?: number | undefined;
|
|
7692
7733
|
}[] | undefined;
|
|
7693
7734
|
required?: boolean | undefined;
|
|
@@ -7695,6 +7736,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7695
7736
|
config?: {
|
|
7696
7737
|
placeholder?: string | undefined;
|
|
7697
7738
|
default_value?: string | undefined;
|
|
7739
|
+
last_used?: boolean | undefined;
|
|
7740
|
+
last_used_label?: string | undefined;
|
|
7698
7741
|
} | undefined;
|
|
7699
7742
|
} | {
|
|
7700
7743
|
id: string;
|
|
@@ -7706,7 +7749,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7706
7749
|
hint?: string | undefined;
|
|
7707
7750
|
messages?: {
|
|
7708
7751
|
text: string;
|
|
7709
|
-
type: "
|
|
7752
|
+
type: "error" | "success" | "info" | "warning";
|
|
7710
7753
|
id?: number | undefined;
|
|
7711
7754
|
}[] | undefined;
|
|
7712
7755
|
required?: boolean | undefined;
|
|
@@ -7726,7 +7769,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7726
7769
|
hint?: string | undefined;
|
|
7727
7770
|
messages?: {
|
|
7728
7771
|
text: string;
|
|
7729
|
-
type: "
|
|
7772
|
+
type: "error" | "success" | "info" | "warning";
|
|
7730
7773
|
id?: number | undefined;
|
|
7731
7774
|
}[] | undefined;
|
|
7732
7775
|
required?: boolean | undefined;
|
|
@@ -7745,7 +7788,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7745
7788
|
hint?: string | undefined;
|
|
7746
7789
|
messages?: {
|
|
7747
7790
|
text: string;
|
|
7748
|
-
type: "
|
|
7791
|
+
type: "error" | "success" | "info" | "warning";
|
|
7749
7792
|
id?: number | undefined;
|
|
7750
7793
|
}[] | undefined;
|
|
7751
7794
|
required?: boolean | undefined;
|
|
@@ -7767,7 +7810,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7767
7810
|
hint?: string | undefined;
|
|
7768
7811
|
messages?: {
|
|
7769
7812
|
text: string;
|
|
7770
|
-
type: "
|
|
7813
|
+
type: "error" | "success" | "info" | "warning";
|
|
7771
7814
|
id?: number | undefined;
|
|
7772
7815
|
}[] | undefined;
|
|
7773
7816
|
required?: boolean | undefined;
|
|
@@ -7789,7 +7832,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7789
7832
|
hint?: string | undefined;
|
|
7790
7833
|
messages?: {
|
|
7791
7834
|
text: string;
|
|
7792
|
-
type: "
|
|
7835
|
+
type: "error" | "success" | "info" | "warning";
|
|
7793
7836
|
id?: number | undefined;
|
|
7794
7837
|
}[] | undefined;
|
|
7795
7838
|
required?: boolean | undefined;
|
|
@@ -7808,7 +7851,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7808
7851
|
hint?: string | undefined;
|
|
7809
7852
|
messages?: {
|
|
7810
7853
|
text: string;
|
|
7811
|
-
type: "
|
|
7854
|
+
type: "error" | "success" | "info" | "warning";
|
|
7812
7855
|
id?: number | undefined;
|
|
7813
7856
|
}[] | undefined;
|
|
7814
7857
|
required?: boolean | undefined;
|
|
@@ -7835,7 +7878,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7835
7878
|
hint?: string | undefined;
|
|
7836
7879
|
messages?: {
|
|
7837
7880
|
text: string;
|
|
7838
|
-
type: "
|
|
7881
|
+
type: "error" | "success" | "info" | "warning";
|
|
7839
7882
|
id?: number | undefined;
|
|
7840
7883
|
}[] | undefined;
|
|
7841
7884
|
required?: boolean | undefined;
|
|
@@ -7856,7 +7899,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7856
7899
|
hint?: string | undefined;
|
|
7857
7900
|
messages?: {
|
|
7858
7901
|
text: string;
|
|
7859
|
-
type: "
|
|
7902
|
+
type: "error" | "success" | "info" | "warning";
|
|
7860
7903
|
id?: number | undefined;
|
|
7861
7904
|
}[] | undefined;
|
|
7862
7905
|
required?: boolean | undefined;
|
|
@@ -7866,6 +7909,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7866
7909
|
multiline?: boolean | undefined;
|
|
7867
7910
|
max_length?: number | undefined;
|
|
7868
7911
|
default_value?: string | undefined;
|
|
7912
|
+
last_used?: boolean | undefined;
|
|
7913
|
+
last_used_label?: string | undefined;
|
|
7869
7914
|
} | undefined;
|
|
7870
7915
|
} | {
|
|
7871
7916
|
id: string;
|
|
@@ -7877,7 +7922,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7877
7922
|
hint?: string | undefined;
|
|
7878
7923
|
messages?: {
|
|
7879
7924
|
text: string;
|
|
7880
|
-
type: "
|
|
7925
|
+
type: "error" | "success" | "info" | "warning";
|
|
7881
7926
|
id?: number | undefined;
|
|
7882
7927
|
}[] | undefined;
|
|
7883
7928
|
required?: boolean | undefined;
|
|
@@ -8126,7 +8171,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8126
8171
|
hint?: string | undefined;
|
|
8127
8172
|
messages?: {
|
|
8128
8173
|
text: string;
|
|
8129
|
-
type: "
|
|
8174
|
+
type: "error" | "success" | "info" | "warning";
|
|
8130
8175
|
id?: number | undefined;
|
|
8131
8176
|
}[] | undefined;
|
|
8132
8177
|
required?: boolean | undefined;
|
|
@@ -8144,7 +8189,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8144
8189
|
hint?: string | undefined;
|
|
8145
8190
|
messages?: {
|
|
8146
8191
|
text: string;
|
|
8147
|
-
type: "
|
|
8192
|
+
type: "error" | "success" | "info" | "warning";
|
|
8148
8193
|
id?: number | undefined;
|
|
8149
8194
|
}[] | undefined;
|
|
8150
8195
|
required?: boolean | undefined;
|
|
@@ -8168,7 +8213,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8168
8213
|
hint?: string | undefined;
|
|
8169
8214
|
messages?: {
|
|
8170
8215
|
text: string;
|
|
8171
|
-
type: "
|
|
8216
|
+
type: "error" | "success" | "info" | "warning";
|
|
8172
8217
|
id?: number | undefined;
|
|
8173
8218
|
}[] | undefined;
|
|
8174
8219
|
required?: boolean | undefined;
|
|
@@ -8192,7 +8237,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8192
8237
|
hint?: string | undefined;
|
|
8193
8238
|
messages?: {
|
|
8194
8239
|
text: string;
|
|
8195
|
-
type: "
|
|
8240
|
+
type: "error" | "success" | "info" | "warning";
|
|
8196
8241
|
id?: number | undefined;
|
|
8197
8242
|
}[] | undefined;
|
|
8198
8243
|
required?: boolean | undefined;
|
|
@@ -8216,7 +8261,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8216
8261
|
hint?: string | undefined;
|
|
8217
8262
|
messages?: {
|
|
8218
8263
|
text: string;
|
|
8219
|
-
type: "
|
|
8264
|
+
type: "error" | "success" | "info" | "warning";
|
|
8220
8265
|
id?: number | undefined;
|
|
8221
8266
|
}[] | undefined;
|
|
8222
8267
|
required?: boolean | undefined;
|
|
@@ -8245,7 +8290,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8245
8290
|
hint?: string | undefined;
|
|
8246
8291
|
messages?: {
|
|
8247
8292
|
text: string;
|
|
8248
|
-
type: "
|
|
8293
|
+
type: "error" | "success" | "info" | "warning";
|
|
8249
8294
|
id?: number | undefined;
|
|
8250
8295
|
}[] | undefined;
|
|
8251
8296
|
required?: boolean | undefined;
|
|
@@ -8260,7 +8305,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8260
8305
|
hint?: string | undefined;
|
|
8261
8306
|
messages?: {
|
|
8262
8307
|
text: string;
|
|
8263
|
-
type: "
|
|
8308
|
+
type: "error" | "success" | "info" | "warning";
|
|
8264
8309
|
id?: number | undefined;
|
|
8265
8310
|
}[] | undefined;
|
|
8266
8311
|
required?: boolean | undefined;
|
|
@@ -8281,7 +8326,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8281
8326
|
hint?: string | undefined;
|
|
8282
8327
|
messages?: {
|
|
8283
8328
|
text: string;
|
|
8284
|
-
type: "
|
|
8329
|
+
type: "error" | "success" | "info" | "warning";
|
|
8285
8330
|
id?: number | undefined;
|
|
8286
8331
|
}[] | undefined;
|
|
8287
8332
|
required?: boolean | undefined;
|
|
@@ -8306,7 +8351,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8306
8351
|
hint?: string | undefined;
|
|
8307
8352
|
messages?: {
|
|
8308
8353
|
text: string;
|
|
8309
|
-
type: "
|
|
8354
|
+
type: "error" | "success" | "info" | "warning";
|
|
8310
8355
|
id?: number | undefined;
|
|
8311
8356
|
}[] | undefined;
|
|
8312
8357
|
required?: boolean | undefined;
|
|
@@ -8314,6 +8359,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8314
8359
|
config?: {
|
|
8315
8360
|
placeholder?: string | undefined;
|
|
8316
8361
|
default_value?: string | undefined;
|
|
8362
|
+
last_used?: boolean | undefined;
|
|
8363
|
+
last_used_label?: string | undefined;
|
|
8317
8364
|
} | undefined;
|
|
8318
8365
|
} | {
|
|
8319
8366
|
id: string;
|
|
@@ -8325,7 +8372,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8325
8372
|
hint?: string | undefined;
|
|
8326
8373
|
messages?: {
|
|
8327
8374
|
text: string;
|
|
8328
|
-
type: "
|
|
8375
|
+
type: "error" | "success" | "info" | "warning";
|
|
8329
8376
|
id?: number | undefined;
|
|
8330
8377
|
}[] | undefined;
|
|
8331
8378
|
required?: boolean | undefined;
|
|
@@ -8345,7 +8392,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8345
8392
|
hint?: string | undefined;
|
|
8346
8393
|
messages?: {
|
|
8347
8394
|
text: string;
|
|
8348
|
-
type: "
|
|
8395
|
+
type: "error" | "success" | "info" | "warning";
|
|
8349
8396
|
id?: number | undefined;
|
|
8350
8397
|
}[] | undefined;
|
|
8351
8398
|
required?: boolean | undefined;
|
|
@@ -8364,7 +8411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8364
8411
|
hint?: string | undefined;
|
|
8365
8412
|
messages?: {
|
|
8366
8413
|
text: string;
|
|
8367
|
-
type: "
|
|
8414
|
+
type: "error" | "success" | "info" | "warning";
|
|
8368
8415
|
id?: number | undefined;
|
|
8369
8416
|
}[] | undefined;
|
|
8370
8417
|
required?: boolean | undefined;
|
|
@@ -8386,7 +8433,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8386
8433
|
hint?: string | undefined;
|
|
8387
8434
|
messages?: {
|
|
8388
8435
|
text: string;
|
|
8389
|
-
type: "
|
|
8436
|
+
type: "error" | "success" | "info" | "warning";
|
|
8390
8437
|
id?: number | undefined;
|
|
8391
8438
|
}[] | undefined;
|
|
8392
8439
|
required?: boolean | undefined;
|
|
@@ -8408,7 +8455,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8408
8455
|
hint?: string | undefined;
|
|
8409
8456
|
messages?: {
|
|
8410
8457
|
text: string;
|
|
8411
|
-
type: "
|
|
8458
|
+
type: "error" | "success" | "info" | "warning";
|
|
8412
8459
|
id?: number | undefined;
|
|
8413
8460
|
}[] | undefined;
|
|
8414
8461
|
required?: boolean | undefined;
|
|
@@ -8427,7 +8474,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8427
8474
|
hint?: string | undefined;
|
|
8428
8475
|
messages?: {
|
|
8429
8476
|
text: string;
|
|
8430
|
-
type: "
|
|
8477
|
+
type: "error" | "success" | "info" | "warning";
|
|
8431
8478
|
id?: number | undefined;
|
|
8432
8479
|
}[] | undefined;
|
|
8433
8480
|
required?: boolean | undefined;
|
|
@@ -8454,7 +8501,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8454
8501
|
hint?: string | undefined;
|
|
8455
8502
|
messages?: {
|
|
8456
8503
|
text: string;
|
|
8457
|
-
type: "
|
|
8504
|
+
type: "error" | "success" | "info" | "warning";
|
|
8458
8505
|
id?: number | undefined;
|
|
8459
8506
|
}[] | undefined;
|
|
8460
8507
|
required?: boolean | undefined;
|
|
@@ -8475,7 +8522,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8475
8522
|
hint?: string | undefined;
|
|
8476
8523
|
messages?: {
|
|
8477
8524
|
text: string;
|
|
8478
|
-
type: "
|
|
8525
|
+
type: "error" | "success" | "info" | "warning";
|
|
8479
8526
|
id?: number | undefined;
|
|
8480
8527
|
}[] | undefined;
|
|
8481
8528
|
required?: boolean | undefined;
|
|
@@ -8485,6 +8532,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8485
8532
|
multiline?: boolean | undefined;
|
|
8486
8533
|
max_length?: number | undefined;
|
|
8487
8534
|
default_value?: string | undefined;
|
|
8535
|
+
last_used?: boolean | undefined;
|
|
8536
|
+
last_used_label?: string | undefined;
|
|
8488
8537
|
} | undefined;
|
|
8489
8538
|
} | {
|
|
8490
8539
|
id: string;
|
|
@@ -8496,7 +8545,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8496
8545
|
hint?: string | undefined;
|
|
8497
8546
|
messages?: {
|
|
8498
8547
|
text: string;
|
|
8499
|
-
type: "
|
|
8548
|
+
type: "error" | "success" | "info" | "warning";
|
|
8500
8549
|
id?: number | undefined;
|
|
8501
8550
|
}[] | undefined;
|
|
8502
8551
|
required?: boolean | undefined;
|
|
@@ -8750,7 +8799,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8750
8799
|
hint?: string | undefined;
|
|
8751
8800
|
messages?: {
|
|
8752
8801
|
text: string;
|
|
8753
|
-
type: "
|
|
8802
|
+
type: "error" | "success" | "info" | "warning";
|
|
8754
8803
|
id?: number | undefined;
|
|
8755
8804
|
}[] | undefined;
|
|
8756
8805
|
required?: boolean | undefined;
|
|
@@ -8768,7 +8817,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8768
8817
|
hint?: string | undefined;
|
|
8769
8818
|
messages?: {
|
|
8770
8819
|
text: string;
|
|
8771
|
-
type: "
|
|
8820
|
+
type: "error" | "success" | "info" | "warning";
|
|
8772
8821
|
id?: number | undefined;
|
|
8773
8822
|
}[] | undefined;
|
|
8774
8823
|
required?: boolean | undefined;
|
|
@@ -8792,7 +8841,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8792
8841
|
hint?: string | undefined;
|
|
8793
8842
|
messages?: {
|
|
8794
8843
|
text: string;
|
|
8795
|
-
type: "
|
|
8844
|
+
type: "error" | "success" | "info" | "warning";
|
|
8796
8845
|
id?: number | undefined;
|
|
8797
8846
|
}[] | undefined;
|
|
8798
8847
|
required?: boolean | undefined;
|
|
@@ -8816,7 +8865,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8816
8865
|
hint?: string | undefined;
|
|
8817
8866
|
messages?: {
|
|
8818
8867
|
text: string;
|
|
8819
|
-
type: "
|
|
8868
|
+
type: "error" | "success" | "info" | "warning";
|
|
8820
8869
|
id?: number | undefined;
|
|
8821
8870
|
}[] | undefined;
|
|
8822
8871
|
required?: boolean | undefined;
|
|
@@ -8840,7 +8889,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8840
8889
|
hint?: string | undefined;
|
|
8841
8890
|
messages?: {
|
|
8842
8891
|
text: string;
|
|
8843
|
-
type: "
|
|
8892
|
+
type: "error" | "success" | "info" | "warning";
|
|
8844
8893
|
id?: number | undefined;
|
|
8845
8894
|
}[] | undefined;
|
|
8846
8895
|
required?: boolean | undefined;
|
|
@@ -8865,7 +8914,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8865
8914
|
hint?: string | undefined;
|
|
8866
8915
|
messages?: {
|
|
8867
8916
|
text: string;
|
|
8868
|
-
type: "
|
|
8917
|
+
type: "error" | "success" | "info" | "warning";
|
|
8869
8918
|
id?: number | undefined;
|
|
8870
8919
|
}[] | undefined;
|
|
8871
8920
|
required?: boolean | undefined;
|
|
@@ -8880,7 +8929,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8880
8929
|
hint?: string | undefined;
|
|
8881
8930
|
messages?: {
|
|
8882
8931
|
text: string;
|
|
8883
|
-
type: "
|
|
8932
|
+
type: "error" | "success" | "info" | "warning";
|
|
8884
8933
|
id?: number | undefined;
|
|
8885
8934
|
}[] | undefined;
|
|
8886
8935
|
required?: boolean | undefined;
|
|
@@ -8901,7 +8950,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8901
8950
|
hint?: string | undefined;
|
|
8902
8951
|
messages?: {
|
|
8903
8952
|
text: string;
|
|
8904
|
-
type: "
|
|
8953
|
+
type: "error" | "success" | "info" | "warning";
|
|
8905
8954
|
id?: number | undefined;
|
|
8906
8955
|
}[] | undefined;
|
|
8907
8956
|
required?: boolean | undefined;
|
|
@@ -8926,7 +8975,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8926
8975
|
hint?: string | undefined;
|
|
8927
8976
|
messages?: {
|
|
8928
8977
|
text: string;
|
|
8929
|
-
type: "
|
|
8978
|
+
type: "error" | "success" | "info" | "warning";
|
|
8930
8979
|
id?: number | undefined;
|
|
8931
8980
|
}[] | undefined;
|
|
8932
8981
|
required?: boolean | undefined;
|
|
@@ -8934,6 +8983,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8934
8983
|
config?: {
|
|
8935
8984
|
placeholder?: string | undefined;
|
|
8936
8985
|
default_value?: string | undefined;
|
|
8986
|
+
last_used?: boolean | undefined;
|
|
8987
|
+
last_used_label?: string | undefined;
|
|
8937
8988
|
} | undefined;
|
|
8938
8989
|
} | {
|
|
8939
8990
|
id: string;
|
|
@@ -8945,7 +8996,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8945
8996
|
hint?: string | undefined;
|
|
8946
8997
|
messages?: {
|
|
8947
8998
|
text: string;
|
|
8948
|
-
type: "
|
|
8999
|
+
type: "error" | "success" | "info" | "warning";
|
|
8949
9000
|
id?: number | undefined;
|
|
8950
9001
|
}[] | undefined;
|
|
8951
9002
|
required?: boolean | undefined;
|
|
@@ -8965,7 +9016,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8965
9016
|
hint?: string | undefined;
|
|
8966
9017
|
messages?: {
|
|
8967
9018
|
text: string;
|
|
8968
|
-
type: "
|
|
9019
|
+
type: "error" | "success" | "info" | "warning";
|
|
8969
9020
|
id?: number | undefined;
|
|
8970
9021
|
}[] | undefined;
|
|
8971
9022
|
required?: boolean | undefined;
|
|
@@ -8984,7 +9035,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8984
9035
|
hint?: string | undefined;
|
|
8985
9036
|
messages?: {
|
|
8986
9037
|
text: string;
|
|
8987
|
-
type: "
|
|
9038
|
+
type: "error" | "success" | "info" | "warning";
|
|
8988
9039
|
id?: number | undefined;
|
|
8989
9040
|
}[] | undefined;
|
|
8990
9041
|
required?: boolean | undefined;
|
|
@@ -9006,7 +9057,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9006
9057
|
hint?: string | undefined;
|
|
9007
9058
|
messages?: {
|
|
9008
9059
|
text: string;
|
|
9009
|
-
type: "
|
|
9060
|
+
type: "error" | "success" | "info" | "warning";
|
|
9010
9061
|
id?: number | undefined;
|
|
9011
9062
|
}[] | undefined;
|
|
9012
9063
|
required?: boolean | undefined;
|
|
@@ -9028,7 +9079,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9028
9079
|
hint?: string | undefined;
|
|
9029
9080
|
messages?: {
|
|
9030
9081
|
text: string;
|
|
9031
|
-
type: "
|
|
9082
|
+
type: "error" | "success" | "info" | "warning";
|
|
9032
9083
|
id?: number | undefined;
|
|
9033
9084
|
}[] | undefined;
|
|
9034
9085
|
required?: boolean | undefined;
|
|
@@ -9047,7 +9098,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9047
9098
|
hint?: string | undefined;
|
|
9048
9099
|
messages?: {
|
|
9049
9100
|
text: string;
|
|
9050
|
-
type: "
|
|
9101
|
+
type: "error" | "success" | "info" | "warning";
|
|
9051
9102
|
id?: number | undefined;
|
|
9052
9103
|
}[] | undefined;
|
|
9053
9104
|
required?: boolean | undefined;
|
|
@@ -9074,7 +9125,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9074
9125
|
hint?: string | undefined;
|
|
9075
9126
|
messages?: {
|
|
9076
9127
|
text: string;
|
|
9077
|
-
type: "
|
|
9128
|
+
type: "error" | "success" | "info" | "warning";
|
|
9078
9129
|
id?: number | undefined;
|
|
9079
9130
|
}[] | undefined;
|
|
9080
9131
|
required?: boolean | undefined;
|
|
@@ -9095,7 +9146,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9095
9146
|
hint?: string | undefined;
|
|
9096
9147
|
messages?: {
|
|
9097
9148
|
text: string;
|
|
9098
|
-
type: "
|
|
9149
|
+
type: "error" | "success" | "info" | "warning";
|
|
9099
9150
|
id?: number | undefined;
|
|
9100
9151
|
}[] | undefined;
|
|
9101
9152
|
required?: boolean | undefined;
|
|
@@ -9105,6 +9156,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9105
9156
|
multiline?: boolean | undefined;
|
|
9106
9157
|
max_length?: number | undefined;
|
|
9107
9158
|
default_value?: string | undefined;
|
|
9159
|
+
last_used?: boolean | undefined;
|
|
9160
|
+
last_used_label?: string | undefined;
|
|
9108
9161
|
} | undefined;
|
|
9109
9162
|
} | {
|
|
9110
9163
|
id: string;
|
|
@@ -9116,7 +9169,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9116
9169
|
hint?: string | undefined;
|
|
9117
9170
|
messages?: {
|
|
9118
9171
|
text: string;
|
|
9119
|
-
type: "
|
|
9172
|
+
type: "error" | "success" | "info" | "warning";
|
|
9120
9173
|
id?: number | undefined;
|
|
9121
9174
|
}[] | undefined;
|
|
9122
9175
|
required?: boolean | undefined;
|
|
@@ -9347,7 +9400,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9347
9400
|
hint?: string | undefined;
|
|
9348
9401
|
messages?: {
|
|
9349
9402
|
text: string;
|
|
9350
|
-
type: "
|
|
9403
|
+
type: "error" | "success" | "info" | "warning";
|
|
9351
9404
|
id?: number | undefined;
|
|
9352
9405
|
}[] | undefined;
|
|
9353
9406
|
required?: boolean | undefined;
|
|
@@ -9365,7 +9418,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9365
9418
|
hint?: string | undefined;
|
|
9366
9419
|
messages?: {
|
|
9367
9420
|
text: string;
|
|
9368
|
-
type: "
|
|
9421
|
+
type: "error" | "success" | "info" | "warning";
|
|
9369
9422
|
id?: number | undefined;
|
|
9370
9423
|
}[] | undefined;
|
|
9371
9424
|
required?: boolean | undefined;
|
|
@@ -9389,7 +9442,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9389
9442
|
hint?: string | undefined;
|
|
9390
9443
|
messages?: {
|
|
9391
9444
|
text: string;
|
|
9392
|
-
type: "
|
|
9445
|
+
type: "error" | "success" | "info" | "warning";
|
|
9393
9446
|
id?: number | undefined;
|
|
9394
9447
|
}[] | undefined;
|
|
9395
9448
|
required?: boolean | undefined;
|
|
@@ -9413,7 +9466,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9413
9466
|
hint?: string | undefined;
|
|
9414
9467
|
messages?: {
|
|
9415
9468
|
text: string;
|
|
9416
|
-
type: "
|
|
9469
|
+
type: "error" | "success" | "info" | "warning";
|
|
9417
9470
|
id?: number | undefined;
|
|
9418
9471
|
}[] | undefined;
|
|
9419
9472
|
required?: boolean | undefined;
|
|
@@ -9437,7 +9490,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9437
9490
|
hint?: string | undefined;
|
|
9438
9491
|
messages?: {
|
|
9439
9492
|
text: string;
|
|
9440
|
-
type: "
|
|
9493
|
+
type: "error" | "success" | "info" | "warning";
|
|
9441
9494
|
id?: number | undefined;
|
|
9442
9495
|
}[] | undefined;
|
|
9443
9496
|
required?: boolean | undefined;
|
|
@@ -9466,7 +9519,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9466
9519
|
hint?: string | undefined;
|
|
9467
9520
|
messages?: {
|
|
9468
9521
|
text: string;
|
|
9469
|
-
type: "
|
|
9522
|
+
type: "error" | "success" | "info" | "warning";
|
|
9470
9523
|
id?: number | undefined;
|
|
9471
9524
|
}[] | undefined;
|
|
9472
9525
|
required?: boolean | undefined;
|
|
@@ -9481,7 +9534,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9481
9534
|
hint?: string | undefined;
|
|
9482
9535
|
messages?: {
|
|
9483
9536
|
text: string;
|
|
9484
|
-
type: "
|
|
9537
|
+
type: "error" | "success" | "info" | "warning";
|
|
9485
9538
|
id?: number | undefined;
|
|
9486
9539
|
}[] | undefined;
|
|
9487
9540
|
required?: boolean | undefined;
|
|
@@ -9502,7 +9555,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9502
9555
|
hint?: string | undefined;
|
|
9503
9556
|
messages?: {
|
|
9504
9557
|
text: string;
|
|
9505
|
-
type: "
|
|
9558
|
+
type: "error" | "success" | "info" | "warning";
|
|
9506
9559
|
id?: number | undefined;
|
|
9507
9560
|
}[] | undefined;
|
|
9508
9561
|
required?: boolean | undefined;
|
|
@@ -9527,7 +9580,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9527
9580
|
hint?: string | undefined;
|
|
9528
9581
|
messages?: {
|
|
9529
9582
|
text: string;
|
|
9530
|
-
type: "
|
|
9583
|
+
type: "error" | "success" | "info" | "warning";
|
|
9531
9584
|
id?: number | undefined;
|
|
9532
9585
|
}[] | undefined;
|
|
9533
9586
|
required?: boolean | undefined;
|
|
@@ -9535,6 +9588,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9535
9588
|
config?: {
|
|
9536
9589
|
placeholder?: string | undefined;
|
|
9537
9590
|
default_value?: string | undefined;
|
|
9591
|
+
last_used?: boolean | undefined;
|
|
9592
|
+
last_used_label?: string | undefined;
|
|
9538
9593
|
} | undefined;
|
|
9539
9594
|
} | {
|
|
9540
9595
|
id: string;
|
|
@@ -9546,7 +9601,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9546
9601
|
hint?: string | undefined;
|
|
9547
9602
|
messages?: {
|
|
9548
9603
|
text: string;
|
|
9549
|
-
type: "
|
|
9604
|
+
type: "error" | "success" | "info" | "warning";
|
|
9550
9605
|
id?: number | undefined;
|
|
9551
9606
|
}[] | undefined;
|
|
9552
9607
|
required?: boolean | undefined;
|
|
@@ -9566,7 +9621,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9566
9621
|
hint?: string | undefined;
|
|
9567
9622
|
messages?: {
|
|
9568
9623
|
text: string;
|
|
9569
|
-
type: "
|
|
9624
|
+
type: "error" | "success" | "info" | "warning";
|
|
9570
9625
|
id?: number | undefined;
|
|
9571
9626
|
}[] | undefined;
|
|
9572
9627
|
required?: boolean | undefined;
|
|
@@ -9585,7 +9640,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9585
9640
|
hint?: string | undefined;
|
|
9586
9641
|
messages?: {
|
|
9587
9642
|
text: string;
|
|
9588
|
-
type: "
|
|
9643
|
+
type: "error" | "success" | "info" | "warning";
|
|
9589
9644
|
id?: number | undefined;
|
|
9590
9645
|
}[] | undefined;
|
|
9591
9646
|
required?: boolean | undefined;
|
|
@@ -9607,7 +9662,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9607
9662
|
hint?: string | undefined;
|
|
9608
9663
|
messages?: {
|
|
9609
9664
|
text: string;
|
|
9610
|
-
type: "
|
|
9665
|
+
type: "error" | "success" | "info" | "warning";
|
|
9611
9666
|
id?: number | undefined;
|
|
9612
9667
|
}[] | undefined;
|
|
9613
9668
|
required?: boolean | undefined;
|
|
@@ -9629,7 +9684,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9629
9684
|
hint?: string | undefined;
|
|
9630
9685
|
messages?: {
|
|
9631
9686
|
text: string;
|
|
9632
|
-
type: "
|
|
9687
|
+
type: "error" | "success" | "info" | "warning";
|
|
9633
9688
|
id?: number | undefined;
|
|
9634
9689
|
}[] | undefined;
|
|
9635
9690
|
required?: boolean | undefined;
|
|
@@ -9648,7 +9703,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9648
9703
|
hint?: string | undefined;
|
|
9649
9704
|
messages?: {
|
|
9650
9705
|
text: string;
|
|
9651
|
-
type: "
|
|
9706
|
+
type: "error" | "success" | "info" | "warning";
|
|
9652
9707
|
id?: number | undefined;
|
|
9653
9708
|
}[] | undefined;
|
|
9654
9709
|
required?: boolean | undefined;
|
|
@@ -9675,7 +9730,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9675
9730
|
hint?: string | undefined;
|
|
9676
9731
|
messages?: {
|
|
9677
9732
|
text: string;
|
|
9678
|
-
type: "
|
|
9733
|
+
type: "error" | "success" | "info" | "warning";
|
|
9679
9734
|
id?: number | undefined;
|
|
9680
9735
|
}[] | undefined;
|
|
9681
9736
|
required?: boolean | undefined;
|
|
@@ -9696,7 +9751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9696
9751
|
hint?: string | undefined;
|
|
9697
9752
|
messages?: {
|
|
9698
9753
|
text: string;
|
|
9699
|
-
type: "
|
|
9754
|
+
type: "error" | "success" | "info" | "warning";
|
|
9700
9755
|
id?: number | undefined;
|
|
9701
9756
|
}[] | undefined;
|
|
9702
9757
|
required?: boolean | undefined;
|
|
@@ -9706,6 +9761,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9706
9761
|
multiline?: boolean | undefined;
|
|
9707
9762
|
max_length?: number | undefined;
|
|
9708
9763
|
default_value?: string | undefined;
|
|
9764
|
+
last_used?: boolean | undefined;
|
|
9765
|
+
last_used_label?: string | undefined;
|
|
9709
9766
|
} | undefined;
|
|
9710
9767
|
} | {
|
|
9711
9768
|
id: string;
|
|
@@ -9717,7 +9774,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9717
9774
|
hint?: string | undefined;
|
|
9718
9775
|
messages?: {
|
|
9719
9776
|
text: string;
|
|
9720
|
-
type: "
|
|
9777
|
+
type: "error" | "success" | "info" | "warning";
|
|
9721
9778
|
id?: number | undefined;
|
|
9722
9779
|
}[] | undefined;
|
|
9723
9780
|
required?: boolean | undefined;
|
|
@@ -9950,7 +10007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9950
10007
|
hint?: string | undefined;
|
|
9951
10008
|
messages?: {
|
|
9952
10009
|
text: string;
|
|
9953
|
-
type: "
|
|
10010
|
+
type: "error" | "success" | "info" | "warning";
|
|
9954
10011
|
id?: number | undefined;
|
|
9955
10012
|
}[] | undefined;
|
|
9956
10013
|
required?: boolean | undefined;
|
|
@@ -9968,7 +10025,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9968
10025
|
hint?: string | undefined;
|
|
9969
10026
|
messages?: {
|
|
9970
10027
|
text: string;
|
|
9971
|
-
type: "
|
|
10028
|
+
type: "error" | "success" | "info" | "warning";
|
|
9972
10029
|
id?: number | undefined;
|
|
9973
10030
|
}[] | undefined;
|
|
9974
10031
|
required?: boolean | undefined;
|
|
@@ -9992,7 +10049,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9992
10049
|
hint?: string | undefined;
|
|
9993
10050
|
messages?: {
|
|
9994
10051
|
text: string;
|
|
9995
|
-
type: "
|
|
10052
|
+
type: "error" | "success" | "info" | "warning";
|
|
9996
10053
|
id?: number | undefined;
|
|
9997
10054
|
}[] | undefined;
|
|
9998
10055
|
required?: boolean | undefined;
|
|
@@ -10016,7 +10073,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10016
10073
|
hint?: string | undefined;
|
|
10017
10074
|
messages?: {
|
|
10018
10075
|
text: string;
|
|
10019
|
-
type: "
|
|
10076
|
+
type: "error" | "success" | "info" | "warning";
|
|
10020
10077
|
id?: number | undefined;
|
|
10021
10078
|
}[] | undefined;
|
|
10022
10079
|
required?: boolean | undefined;
|
|
@@ -10040,7 +10097,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10040
10097
|
hint?: string | undefined;
|
|
10041
10098
|
messages?: {
|
|
10042
10099
|
text: string;
|
|
10043
|
-
type: "
|
|
10100
|
+
type: "error" | "success" | "info" | "warning";
|
|
10044
10101
|
id?: number | undefined;
|
|
10045
10102
|
}[] | undefined;
|
|
10046
10103
|
required?: boolean | undefined;
|
|
@@ -10065,7 +10122,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10065
10122
|
hint?: string | undefined;
|
|
10066
10123
|
messages?: {
|
|
10067
10124
|
text: string;
|
|
10068
|
-
type: "
|
|
10125
|
+
type: "error" | "success" | "info" | "warning";
|
|
10069
10126
|
id?: number | undefined;
|
|
10070
10127
|
}[] | undefined;
|
|
10071
10128
|
required?: boolean | undefined;
|
|
@@ -10080,7 +10137,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10080
10137
|
hint?: string | undefined;
|
|
10081
10138
|
messages?: {
|
|
10082
10139
|
text: string;
|
|
10083
|
-
type: "
|
|
10140
|
+
type: "error" | "success" | "info" | "warning";
|
|
10084
10141
|
id?: number | undefined;
|
|
10085
10142
|
}[] | undefined;
|
|
10086
10143
|
required?: boolean | undefined;
|
|
@@ -10101,7 +10158,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10101
10158
|
hint?: string | undefined;
|
|
10102
10159
|
messages?: {
|
|
10103
10160
|
text: string;
|
|
10104
|
-
type: "
|
|
10161
|
+
type: "error" | "success" | "info" | "warning";
|
|
10105
10162
|
id?: number | undefined;
|
|
10106
10163
|
}[] | undefined;
|
|
10107
10164
|
required?: boolean | undefined;
|
|
@@ -10126,7 +10183,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10126
10183
|
hint?: string | undefined;
|
|
10127
10184
|
messages?: {
|
|
10128
10185
|
text: string;
|
|
10129
|
-
type: "
|
|
10186
|
+
type: "error" | "success" | "info" | "warning";
|
|
10130
10187
|
id?: number | undefined;
|
|
10131
10188
|
}[] | undefined;
|
|
10132
10189
|
required?: boolean | undefined;
|
|
@@ -10134,6 +10191,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10134
10191
|
config?: {
|
|
10135
10192
|
placeholder?: string | undefined;
|
|
10136
10193
|
default_value?: string | undefined;
|
|
10194
|
+
last_used?: boolean | undefined;
|
|
10195
|
+
last_used_label?: string | undefined;
|
|
10137
10196
|
} | undefined;
|
|
10138
10197
|
} | {
|
|
10139
10198
|
id: string;
|
|
@@ -10145,7 +10204,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10145
10204
|
hint?: string | undefined;
|
|
10146
10205
|
messages?: {
|
|
10147
10206
|
text: string;
|
|
10148
|
-
type: "
|
|
10207
|
+
type: "error" | "success" | "info" | "warning";
|
|
10149
10208
|
id?: number | undefined;
|
|
10150
10209
|
}[] | undefined;
|
|
10151
10210
|
required?: boolean | undefined;
|
|
@@ -10165,7 +10224,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10165
10224
|
hint?: string | undefined;
|
|
10166
10225
|
messages?: {
|
|
10167
10226
|
text: string;
|
|
10168
|
-
type: "
|
|
10227
|
+
type: "error" | "success" | "info" | "warning";
|
|
10169
10228
|
id?: number | undefined;
|
|
10170
10229
|
}[] | undefined;
|
|
10171
10230
|
required?: boolean | undefined;
|
|
@@ -10184,7 +10243,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10184
10243
|
hint?: string | undefined;
|
|
10185
10244
|
messages?: {
|
|
10186
10245
|
text: string;
|
|
10187
|
-
type: "
|
|
10246
|
+
type: "error" | "success" | "info" | "warning";
|
|
10188
10247
|
id?: number | undefined;
|
|
10189
10248
|
}[] | undefined;
|
|
10190
10249
|
required?: boolean | undefined;
|
|
@@ -10206,7 +10265,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10206
10265
|
hint?: string | undefined;
|
|
10207
10266
|
messages?: {
|
|
10208
10267
|
text: string;
|
|
10209
|
-
type: "
|
|
10268
|
+
type: "error" | "success" | "info" | "warning";
|
|
10210
10269
|
id?: number | undefined;
|
|
10211
10270
|
}[] | undefined;
|
|
10212
10271
|
required?: boolean | undefined;
|
|
@@ -10228,7 +10287,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10228
10287
|
hint?: string | undefined;
|
|
10229
10288
|
messages?: {
|
|
10230
10289
|
text: string;
|
|
10231
|
-
type: "
|
|
10290
|
+
type: "error" | "success" | "info" | "warning";
|
|
10232
10291
|
id?: number | undefined;
|
|
10233
10292
|
}[] | undefined;
|
|
10234
10293
|
required?: boolean | undefined;
|
|
@@ -10247,7 +10306,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10247
10306
|
hint?: string | undefined;
|
|
10248
10307
|
messages?: {
|
|
10249
10308
|
text: string;
|
|
10250
|
-
type: "
|
|
10309
|
+
type: "error" | "success" | "info" | "warning";
|
|
10251
10310
|
id?: number | undefined;
|
|
10252
10311
|
}[] | undefined;
|
|
10253
10312
|
required?: boolean | undefined;
|
|
@@ -10274,7 +10333,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10274
10333
|
hint?: string | undefined;
|
|
10275
10334
|
messages?: {
|
|
10276
10335
|
text: string;
|
|
10277
|
-
type: "
|
|
10336
|
+
type: "error" | "success" | "info" | "warning";
|
|
10278
10337
|
id?: number | undefined;
|
|
10279
10338
|
}[] | undefined;
|
|
10280
10339
|
required?: boolean | undefined;
|
|
@@ -10295,7 +10354,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10295
10354
|
hint?: string | undefined;
|
|
10296
10355
|
messages?: {
|
|
10297
10356
|
text: string;
|
|
10298
|
-
type: "
|
|
10357
|
+
type: "error" | "success" | "info" | "warning";
|
|
10299
10358
|
id?: number | undefined;
|
|
10300
10359
|
}[] | undefined;
|
|
10301
10360
|
required?: boolean | undefined;
|
|
@@ -10305,6 +10364,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10305
10364
|
multiline?: boolean | undefined;
|
|
10306
10365
|
max_length?: number | undefined;
|
|
10307
10366
|
default_value?: string | undefined;
|
|
10367
|
+
last_used?: boolean | undefined;
|
|
10368
|
+
last_used_label?: string | undefined;
|
|
10308
10369
|
} | undefined;
|
|
10309
10370
|
} | {
|
|
10310
10371
|
id: string;
|
|
@@ -10316,7 +10377,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10316
10377
|
hint?: string | undefined;
|
|
10317
10378
|
messages?: {
|
|
10318
10379
|
text: string;
|
|
10319
|
-
type: "
|
|
10380
|
+
type: "error" | "success" | "info" | "warning";
|
|
10320
10381
|
id?: number | undefined;
|
|
10321
10382
|
}[] | undefined;
|
|
10322
10383
|
required?: boolean | undefined;
|
|
@@ -10547,7 +10608,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10547
10608
|
hint?: string | undefined;
|
|
10548
10609
|
messages?: {
|
|
10549
10610
|
text: string;
|
|
10550
|
-
type: "
|
|
10611
|
+
type: "error" | "success" | "info" | "warning";
|
|
10551
10612
|
id?: number | undefined;
|
|
10552
10613
|
}[] | undefined;
|
|
10553
10614
|
required?: boolean | undefined;
|
|
@@ -10565,7 +10626,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10565
10626
|
hint?: string | undefined;
|
|
10566
10627
|
messages?: {
|
|
10567
10628
|
text: string;
|
|
10568
|
-
type: "
|
|
10629
|
+
type: "error" | "success" | "info" | "warning";
|
|
10569
10630
|
id?: number | undefined;
|
|
10570
10631
|
}[] | undefined;
|
|
10571
10632
|
required?: boolean | undefined;
|
|
@@ -10589,7 +10650,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10589
10650
|
hint?: string | undefined;
|
|
10590
10651
|
messages?: {
|
|
10591
10652
|
text: string;
|
|
10592
|
-
type: "
|
|
10653
|
+
type: "error" | "success" | "info" | "warning";
|
|
10593
10654
|
id?: number | undefined;
|
|
10594
10655
|
}[] | undefined;
|
|
10595
10656
|
required?: boolean | undefined;
|
|
@@ -10613,7 +10674,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10613
10674
|
hint?: string | undefined;
|
|
10614
10675
|
messages?: {
|
|
10615
10676
|
text: string;
|
|
10616
|
-
type: "
|
|
10677
|
+
type: "error" | "success" | "info" | "warning";
|
|
10617
10678
|
id?: number | undefined;
|
|
10618
10679
|
}[] | undefined;
|
|
10619
10680
|
required?: boolean | undefined;
|
|
@@ -10637,7 +10698,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10637
10698
|
hint?: string | undefined;
|
|
10638
10699
|
messages?: {
|
|
10639
10700
|
text: string;
|
|
10640
|
-
type: "
|
|
10701
|
+
type: "error" | "success" | "info" | "warning";
|
|
10641
10702
|
id?: number | undefined;
|
|
10642
10703
|
}[] | undefined;
|
|
10643
10704
|
required?: boolean | undefined;
|
|
@@ -10666,7 +10727,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10666
10727
|
hint?: string | undefined;
|
|
10667
10728
|
messages?: {
|
|
10668
10729
|
text: string;
|
|
10669
|
-
type: "
|
|
10730
|
+
type: "error" | "success" | "info" | "warning";
|
|
10670
10731
|
id?: number | undefined;
|
|
10671
10732
|
}[] | undefined;
|
|
10672
10733
|
required?: boolean | undefined;
|
|
@@ -10681,7 +10742,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10681
10742
|
hint?: string | undefined;
|
|
10682
10743
|
messages?: {
|
|
10683
10744
|
text: string;
|
|
10684
|
-
type: "
|
|
10745
|
+
type: "error" | "success" | "info" | "warning";
|
|
10685
10746
|
id?: number | undefined;
|
|
10686
10747
|
}[] | undefined;
|
|
10687
10748
|
required?: boolean | undefined;
|
|
@@ -10702,7 +10763,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10702
10763
|
hint?: string | undefined;
|
|
10703
10764
|
messages?: {
|
|
10704
10765
|
text: string;
|
|
10705
|
-
type: "
|
|
10766
|
+
type: "error" | "success" | "info" | "warning";
|
|
10706
10767
|
id?: number | undefined;
|
|
10707
10768
|
}[] | undefined;
|
|
10708
10769
|
required?: boolean | undefined;
|
|
@@ -10727,7 +10788,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10727
10788
|
hint?: string | undefined;
|
|
10728
10789
|
messages?: {
|
|
10729
10790
|
text: string;
|
|
10730
|
-
type: "
|
|
10791
|
+
type: "error" | "success" | "info" | "warning";
|
|
10731
10792
|
id?: number | undefined;
|
|
10732
10793
|
}[] | undefined;
|
|
10733
10794
|
required?: boolean | undefined;
|
|
@@ -10735,6 +10796,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10735
10796
|
config?: {
|
|
10736
10797
|
placeholder?: string | undefined;
|
|
10737
10798
|
default_value?: string | undefined;
|
|
10799
|
+
last_used?: boolean | undefined;
|
|
10800
|
+
last_used_label?: string | undefined;
|
|
10738
10801
|
} | undefined;
|
|
10739
10802
|
} | {
|
|
10740
10803
|
id: string;
|
|
@@ -10746,7 +10809,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10746
10809
|
hint?: string | undefined;
|
|
10747
10810
|
messages?: {
|
|
10748
10811
|
text: string;
|
|
10749
|
-
type: "
|
|
10812
|
+
type: "error" | "success" | "info" | "warning";
|
|
10750
10813
|
id?: number | undefined;
|
|
10751
10814
|
}[] | undefined;
|
|
10752
10815
|
required?: boolean | undefined;
|
|
@@ -10766,7 +10829,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10766
10829
|
hint?: string | undefined;
|
|
10767
10830
|
messages?: {
|
|
10768
10831
|
text: string;
|
|
10769
|
-
type: "
|
|
10832
|
+
type: "error" | "success" | "info" | "warning";
|
|
10770
10833
|
id?: number | undefined;
|
|
10771
10834
|
}[] | undefined;
|
|
10772
10835
|
required?: boolean | undefined;
|
|
@@ -10785,7 +10848,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10785
10848
|
hint?: string | undefined;
|
|
10786
10849
|
messages?: {
|
|
10787
10850
|
text: string;
|
|
10788
|
-
type: "
|
|
10851
|
+
type: "error" | "success" | "info" | "warning";
|
|
10789
10852
|
id?: number | undefined;
|
|
10790
10853
|
}[] | undefined;
|
|
10791
10854
|
required?: boolean | undefined;
|
|
@@ -10807,7 +10870,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10807
10870
|
hint?: string | undefined;
|
|
10808
10871
|
messages?: {
|
|
10809
10872
|
text: string;
|
|
10810
|
-
type: "
|
|
10873
|
+
type: "error" | "success" | "info" | "warning";
|
|
10811
10874
|
id?: number | undefined;
|
|
10812
10875
|
}[] | undefined;
|
|
10813
10876
|
required?: boolean | undefined;
|
|
@@ -10829,7 +10892,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10829
10892
|
hint?: string | undefined;
|
|
10830
10893
|
messages?: {
|
|
10831
10894
|
text: string;
|
|
10832
|
-
type: "
|
|
10895
|
+
type: "error" | "success" | "info" | "warning";
|
|
10833
10896
|
id?: number | undefined;
|
|
10834
10897
|
}[] | undefined;
|
|
10835
10898
|
required?: boolean | undefined;
|
|
@@ -10848,7 +10911,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10848
10911
|
hint?: string | undefined;
|
|
10849
10912
|
messages?: {
|
|
10850
10913
|
text: string;
|
|
10851
|
-
type: "
|
|
10914
|
+
type: "error" | "success" | "info" | "warning";
|
|
10852
10915
|
id?: number | undefined;
|
|
10853
10916
|
}[] | undefined;
|
|
10854
10917
|
required?: boolean | undefined;
|
|
@@ -10875,7 +10938,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10875
10938
|
hint?: string | undefined;
|
|
10876
10939
|
messages?: {
|
|
10877
10940
|
text: string;
|
|
10878
|
-
type: "
|
|
10941
|
+
type: "error" | "success" | "info" | "warning";
|
|
10879
10942
|
id?: number | undefined;
|
|
10880
10943
|
}[] | undefined;
|
|
10881
10944
|
required?: boolean | undefined;
|
|
@@ -10896,7 +10959,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10896
10959
|
hint?: string | undefined;
|
|
10897
10960
|
messages?: {
|
|
10898
10961
|
text: string;
|
|
10899
|
-
type: "
|
|
10962
|
+
type: "error" | "success" | "info" | "warning";
|
|
10900
10963
|
id?: number | undefined;
|
|
10901
10964
|
}[] | undefined;
|
|
10902
10965
|
required?: boolean | undefined;
|
|
@@ -10906,6 +10969,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10906
10969
|
multiline?: boolean | undefined;
|
|
10907
10970
|
max_length?: number | undefined;
|
|
10908
10971
|
default_value?: string | undefined;
|
|
10972
|
+
last_used?: boolean | undefined;
|
|
10973
|
+
last_used_label?: string | undefined;
|
|
10909
10974
|
} | undefined;
|
|
10910
10975
|
} | {
|
|
10911
10976
|
id: string;
|
|
@@ -10917,7 +10982,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10917
10982
|
hint?: string | undefined;
|
|
10918
10983
|
messages?: {
|
|
10919
10984
|
text: string;
|
|
10920
|
-
type: "
|
|
10985
|
+
type: "error" | "success" | "info" | "warning";
|
|
10921
10986
|
id?: number | undefined;
|
|
10922
10987
|
}[] | undefined;
|
|
10923
10988
|
required?: boolean | undefined;
|
|
@@ -11149,7 +11214,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11149
11214
|
};
|
|
11150
11215
|
};
|
|
11151
11216
|
output: {
|
|
11152
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
11217
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
11153
11218
|
language: string;
|
|
11154
11219
|
}[];
|
|
11155
11220
|
outputFormat: "json";
|
|
@@ -11187,7 +11252,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11187
11252
|
$get: {
|
|
11188
11253
|
input: {
|
|
11189
11254
|
param: {
|
|
11190
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
11255
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
11191
11256
|
language: string;
|
|
11192
11257
|
};
|
|
11193
11258
|
} & {
|
|
@@ -11209,7 +11274,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11209
11274
|
$put: {
|
|
11210
11275
|
input: {
|
|
11211
11276
|
param: {
|
|
11212
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
11277
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
11213
11278
|
language: string;
|
|
11214
11279
|
};
|
|
11215
11280
|
} & {
|
|
@@ -11233,7 +11298,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11233
11298
|
$delete: {
|
|
11234
11299
|
input: {
|
|
11235
11300
|
param: {
|
|
11236
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
11301
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
11237
11302
|
language: string;
|
|
11238
11303
|
};
|
|
11239
11304
|
} & {
|
|
@@ -12096,7 +12161,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12096
12161
|
};
|
|
12097
12162
|
} | {
|
|
12098
12163
|
mode: "inline";
|
|
12099
|
-
status: "
|
|
12164
|
+
status: "error" | "success";
|
|
12100
12165
|
connection_id: string;
|
|
12101
12166
|
connection_name: string;
|
|
12102
12167
|
strategy: string;
|
|
@@ -12736,7 +12801,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12736
12801
|
log_type: string;
|
|
12737
12802
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
12738
12803
|
actor: {
|
|
12739
|
-
type: "
|
|
12804
|
+
type: "api_key" | "user" | "client_credentials" | "system" | "admin";
|
|
12740
12805
|
id?: string | undefined;
|
|
12741
12806
|
email?: string | undefined;
|
|
12742
12807
|
org_id?: string | undefined;
|
|
@@ -13047,7 +13112,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13047
13112
|
created_at: string;
|
|
13048
13113
|
updated_at: string;
|
|
13049
13114
|
name: string;
|
|
13050
|
-
provider: "auth0" | "
|
|
13115
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
13051
13116
|
connection: string;
|
|
13052
13117
|
enabled: boolean;
|
|
13053
13118
|
credentials: {
|
|
@@ -13079,7 +13144,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13079
13144
|
created_at: string;
|
|
13080
13145
|
updated_at: string;
|
|
13081
13146
|
name: string;
|
|
13082
|
-
provider: "auth0" | "
|
|
13147
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
13083
13148
|
connection: string;
|
|
13084
13149
|
enabled: boolean;
|
|
13085
13150
|
credentials: {
|
|
@@ -13105,7 +13170,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13105
13170
|
} & {
|
|
13106
13171
|
json: {
|
|
13107
13172
|
name: string;
|
|
13108
|
-
provider: "auth0" | "
|
|
13173
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
13109
13174
|
connection: string;
|
|
13110
13175
|
credentials: {
|
|
13111
13176
|
domain: string;
|
|
@@ -13122,7 +13187,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13122
13187
|
created_at: string;
|
|
13123
13188
|
updated_at: string;
|
|
13124
13189
|
name: string;
|
|
13125
|
-
provider: "auth0" | "
|
|
13190
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
13126
13191
|
connection: string;
|
|
13127
13192
|
enabled: boolean;
|
|
13128
13193
|
credentials: {
|
|
@@ -13153,7 +13218,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13153
13218
|
json: {
|
|
13154
13219
|
id?: string | undefined;
|
|
13155
13220
|
name?: string | undefined;
|
|
13156
|
-
provider?: "auth0" | "
|
|
13221
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
13157
13222
|
connection?: string | undefined;
|
|
13158
13223
|
enabled?: boolean | undefined;
|
|
13159
13224
|
credentials?: {
|
|
@@ -13169,7 +13234,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13169
13234
|
created_at: string;
|
|
13170
13235
|
updated_at: string;
|
|
13171
13236
|
name: string;
|
|
13172
|
-
provider: "auth0" | "
|
|
13237
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
13173
13238
|
connection: string;
|
|
13174
13239
|
enabled: boolean;
|
|
13175
13240
|
credentials: {
|
|
@@ -13387,7 +13452,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13387
13452
|
};
|
|
13388
13453
|
};
|
|
13389
13454
|
output: {
|
|
13390
|
-
type: "
|
|
13455
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13391
13456
|
date: string;
|
|
13392
13457
|
isMobile: boolean;
|
|
13393
13458
|
log_id: string;
|
|
@@ -13426,7 +13491,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13426
13491
|
limit: number;
|
|
13427
13492
|
length: number;
|
|
13428
13493
|
logs: {
|
|
13429
|
-
type: "
|
|
13494
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13430
13495
|
date: string;
|
|
13431
13496
|
isMobile: boolean;
|
|
13432
13497
|
log_id: string;
|
|
@@ -13465,7 +13530,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13465
13530
|
next?: string | undefined;
|
|
13466
13531
|
} | {
|
|
13467
13532
|
logs: {
|
|
13468
|
-
type: "
|
|
13533
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13469
13534
|
date: string;
|
|
13470
13535
|
isMobile: boolean;
|
|
13471
13536
|
log_id: string;
|
|
@@ -13519,7 +13584,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13519
13584
|
};
|
|
13520
13585
|
};
|
|
13521
13586
|
output: {
|
|
13522
|
-
type: "
|
|
13587
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13523
13588
|
date: string;
|
|
13524
13589
|
isMobile: boolean;
|
|
13525
13590
|
log_id: string;
|
|
@@ -13675,7 +13740,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13675
13740
|
audience?: string | undefined;
|
|
13676
13741
|
client_id?: string | undefined;
|
|
13677
13742
|
allow_any_organization?: string | undefined;
|
|
13678
|
-
subject_type?: "
|
|
13743
|
+
subject_type?: "client" | "user" | undefined;
|
|
13679
13744
|
};
|
|
13680
13745
|
} & {
|
|
13681
13746
|
header: {
|
|
@@ -13690,7 +13755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13690
13755
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13691
13756
|
allow_any_organization?: boolean | undefined;
|
|
13692
13757
|
is_system?: boolean | undefined;
|
|
13693
|
-
subject_type?: "
|
|
13758
|
+
subject_type?: "client" | "user" | undefined;
|
|
13694
13759
|
authorization_details_types?: string[] | undefined;
|
|
13695
13760
|
created_at?: string | undefined;
|
|
13696
13761
|
updated_at?: string | undefined;
|
|
@@ -13706,7 +13771,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13706
13771
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13707
13772
|
allow_any_organization?: boolean | undefined;
|
|
13708
13773
|
is_system?: boolean | undefined;
|
|
13709
|
-
subject_type?: "
|
|
13774
|
+
subject_type?: "client" | "user" | undefined;
|
|
13710
13775
|
authorization_details_types?: string[] | undefined;
|
|
13711
13776
|
created_at?: string | undefined;
|
|
13712
13777
|
updated_at?: string | undefined;
|
|
@@ -13722,7 +13787,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13722
13787
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13723
13788
|
allow_any_organization?: boolean | undefined;
|
|
13724
13789
|
is_system?: boolean | undefined;
|
|
13725
|
-
subject_type?: "
|
|
13790
|
+
subject_type?: "client" | "user" | undefined;
|
|
13726
13791
|
authorization_details_types?: string[] | undefined;
|
|
13727
13792
|
created_at?: string | undefined;
|
|
13728
13793
|
updated_at?: string | undefined;
|
|
@@ -13753,7 +13818,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13753
13818
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13754
13819
|
allow_any_organization?: boolean | undefined;
|
|
13755
13820
|
is_system?: boolean | undefined;
|
|
13756
|
-
subject_type?: "
|
|
13821
|
+
subject_type?: "client" | "user" | undefined;
|
|
13757
13822
|
authorization_details_types?: string[] | undefined;
|
|
13758
13823
|
created_at?: string | undefined;
|
|
13759
13824
|
updated_at?: string | undefined;
|
|
@@ -13798,7 +13863,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13798
13863
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13799
13864
|
allow_any_organization?: boolean | undefined;
|
|
13800
13865
|
is_system?: boolean | undefined;
|
|
13801
|
-
subject_type?: "
|
|
13866
|
+
subject_type?: "client" | "user" | undefined;
|
|
13802
13867
|
authorization_details_types?: string[] | undefined;
|
|
13803
13868
|
};
|
|
13804
13869
|
};
|
|
@@ -13810,7 +13875,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13810
13875
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13811
13876
|
allow_any_organization?: boolean | undefined;
|
|
13812
13877
|
is_system?: boolean | undefined;
|
|
13813
|
-
subject_type?: "
|
|
13878
|
+
subject_type?: "client" | "user" | undefined;
|
|
13814
13879
|
authorization_details_types?: string[] | undefined;
|
|
13815
13880
|
created_at?: string | undefined;
|
|
13816
13881
|
updated_at?: string | undefined;
|
|
@@ -13834,7 +13899,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13834
13899
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13835
13900
|
allow_any_organization?: boolean | undefined;
|
|
13836
13901
|
is_system?: boolean | undefined;
|
|
13837
|
-
subject_type?: "
|
|
13902
|
+
subject_type?: "client" | "user" | undefined;
|
|
13838
13903
|
authorization_details_types?: string[] | undefined;
|
|
13839
13904
|
};
|
|
13840
13905
|
};
|
|
@@ -13846,7 +13911,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13846
13911
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13847
13912
|
allow_any_organization?: boolean | undefined;
|
|
13848
13913
|
is_system?: boolean | undefined;
|
|
13849
|
-
subject_type?: "
|
|
13914
|
+
subject_type?: "client" | "user" | undefined;
|
|
13850
13915
|
authorization_details_types?: string[] | undefined;
|
|
13851
13916
|
created_at?: string | undefined;
|
|
13852
13917
|
updated_at?: string | undefined;
|
|
@@ -13930,7 +13995,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13930
13995
|
addons?: {
|
|
13931
13996
|
[x: string]: any;
|
|
13932
13997
|
} | undefined;
|
|
13933
|
-
token_endpoint_auth_method?: "
|
|
13998
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13934
13999
|
client_metadata?: {
|
|
13935
14000
|
[x: string]: string;
|
|
13936
14001
|
} | undefined;
|
|
@@ -14032,7 +14097,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14032
14097
|
addons?: {
|
|
14033
14098
|
[x: string]: any;
|
|
14034
14099
|
} | undefined;
|
|
14035
|
-
token_endpoint_auth_method?: "
|
|
14100
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14036
14101
|
client_metadata?: {
|
|
14037
14102
|
[x: string]: string;
|
|
14038
14103
|
} | undefined;
|
|
@@ -14134,7 +14199,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14134
14199
|
addons?: {
|
|
14135
14200
|
[x: string]: any;
|
|
14136
14201
|
} | undefined;
|
|
14137
|
-
token_endpoint_auth_method?: "
|
|
14202
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14138
14203
|
client_metadata?: {
|
|
14139
14204
|
[x: string]: string;
|
|
14140
14205
|
} | undefined;
|
|
@@ -14251,7 +14316,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14251
14316
|
addons?: {
|
|
14252
14317
|
[x: string]: any;
|
|
14253
14318
|
} | undefined;
|
|
14254
|
-
token_endpoint_auth_method?: "
|
|
14319
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14255
14320
|
client_metadata?: {
|
|
14256
14321
|
[x: string]: string;
|
|
14257
14322
|
} | undefined;
|
|
@@ -14369,7 +14434,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14369
14434
|
custom_login_page_preview?: string | undefined;
|
|
14370
14435
|
form_template?: string | undefined;
|
|
14371
14436
|
addons?: Record<string, any> | undefined;
|
|
14372
|
-
token_endpoint_auth_method?: "
|
|
14437
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14373
14438
|
client_metadata?: Record<string, string> | undefined;
|
|
14374
14439
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
14375
14440
|
mobile?: Record<string, any> | undefined;
|
|
@@ -14455,7 +14520,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14455
14520
|
addons?: {
|
|
14456
14521
|
[x: string]: any;
|
|
14457
14522
|
} | undefined;
|
|
14458
|
-
token_endpoint_auth_method?: "
|
|
14523
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14459
14524
|
client_metadata?: {
|
|
14460
14525
|
[x: string]: string;
|
|
14461
14526
|
} | undefined;
|
|
@@ -14552,7 +14617,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14552
14617
|
custom_login_page_preview?: string | undefined;
|
|
14553
14618
|
form_template?: string | undefined;
|
|
14554
14619
|
addons?: Record<string, any> | undefined;
|
|
14555
|
-
token_endpoint_auth_method?: "
|
|
14620
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14556
14621
|
client_metadata?: Record<string, string> | undefined;
|
|
14557
14622
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
14558
14623
|
mobile?: Record<string, any> | undefined;
|
|
@@ -14638,7 +14703,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14638
14703
|
addons?: {
|
|
14639
14704
|
[x: string]: any;
|
|
14640
14705
|
} | undefined;
|
|
14641
|
-
token_endpoint_auth_method?: "
|
|
14706
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14642
14707
|
client_metadata?: {
|
|
14643
14708
|
[x: string]: string;
|
|
14644
14709
|
} | undefined;
|
|
@@ -15983,7 +16048,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15983
16048
|
};
|
|
15984
16049
|
};
|
|
15985
16050
|
output: {
|
|
15986
|
-
type: "
|
|
16051
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
15987
16052
|
date: string;
|
|
15988
16053
|
isMobile: boolean;
|
|
15989
16054
|
log_id: string;
|
|
@@ -16022,7 +16087,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16022
16087
|
limit: number;
|
|
16023
16088
|
length: number;
|
|
16024
16089
|
logs: {
|
|
16025
|
-
type: "
|
|
16090
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
16026
16091
|
date: string;
|
|
16027
16092
|
isMobile: boolean;
|
|
16028
16093
|
log_id: string;
|
|
@@ -16341,7 +16406,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16341
16406
|
};
|
|
16342
16407
|
} & {
|
|
16343
16408
|
json: {
|
|
16344
|
-
template: "
|
|
16409
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16345
16410
|
body: string;
|
|
16346
16411
|
from: string;
|
|
16347
16412
|
subject: string;
|
|
@@ -16362,7 +16427,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16362
16427
|
};
|
|
16363
16428
|
} & {
|
|
16364
16429
|
json: {
|
|
16365
|
-
template: "
|
|
16430
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16366
16431
|
body: string;
|
|
16367
16432
|
from: string;
|
|
16368
16433
|
subject: string;
|
|
@@ -16374,7 +16439,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16374
16439
|
};
|
|
16375
16440
|
};
|
|
16376
16441
|
output: {
|
|
16377
|
-
template: "
|
|
16442
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16378
16443
|
body: string;
|
|
16379
16444
|
from: string;
|
|
16380
16445
|
subject: string;
|
|
@@ -16397,7 +16462,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16397
16462
|
};
|
|
16398
16463
|
};
|
|
16399
16464
|
output: {
|
|
16400
|
-
name: "
|
|
16465
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16401
16466
|
body: string;
|
|
16402
16467
|
subject: string;
|
|
16403
16468
|
}[];
|
|
@@ -16410,7 +16475,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16410
16475
|
$get: {
|
|
16411
16476
|
input: {
|
|
16412
16477
|
param: {
|
|
16413
|
-
templateName: "
|
|
16478
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16414
16479
|
};
|
|
16415
16480
|
} & {
|
|
16416
16481
|
header: {
|
|
@@ -16423,7 +16488,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16423
16488
|
} | {
|
|
16424
16489
|
input: {
|
|
16425
16490
|
param: {
|
|
16426
|
-
templateName: "
|
|
16491
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16427
16492
|
};
|
|
16428
16493
|
} & {
|
|
16429
16494
|
header: {
|
|
@@ -16431,7 +16496,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16431
16496
|
};
|
|
16432
16497
|
};
|
|
16433
16498
|
output: {
|
|
16434
|
-
template: "
|
|
16499
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16435
16500
|
body: string;
|
|
16436
16501
|
from: string;
|
|
16437
16502
|
subject: string;
|
|
@@ -16450,7 +16515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16450
16515
|
$put: {
|
|
16451
16516
|
input: {
|
|
16452
16517
|
param: {
|
|
16453
|
-
templateName: "
|
|
16518
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16454
16519
|
};
|
|
16455
16520
|
} & {
|
|
16456
16521
|
header: {
|
|
@@ -16458,7 +16523,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16458
16523
|
};
|
|
16459
16524
|
} & {
|
|
16460
16525
|
json: {
|
|
16461
|
-
template: "
|
|
16526
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16462
16527
|
body: string;
|
|
16463
16528
|
subject: string;
|
|
16464
16529
|
syntax?: "liquid" | undefined;
|
|
@@ -16470,7 +16535,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16470
16535
|
};
|
|
16471
16536
|
};
|
|
16472
16537
|
output: {
|
|
16473
|
-
template: "
|
|
16538
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16474
16539
|
body: string;
|
|
16475
16540
|
from: string;
|
|
16476
16541
|
subject: string;
|
|
@@ -16489,7 +16554,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16489
16554
|
$patch: {
|
|
16490
16555
|
input: {
|
|
16491
16556
|
param: {
|
|
16492
|
-
templateName: "
|
|
16557
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16493
16558
|
};
|
|
16494
16559
|
} & {
|
|
16495
16560
|
header: {
|
|
@@ -16497,7 +16562,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16497
16562
|
};
|
|
16498
16563
|
} & {
|
|
16499
16564
|
json: {
|
|
16500
|
-
template?: "
|
|
16565
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
16501
16566
|
body?: string | undefined;
|
|
16502
16567
|
from?: string | undefined;
|
|
16503
16568
|
subject?: string | undefined;
|
|
@@ -16514,7 +16579,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16514
16579
|
} | {
|
|
16515
16580
|
input: {
|
|
16516
16581
|
param: {
|
|
16517
|
-
templateName: "
|
|
16582
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16518
16583
|
};
|
|
16519
16584
|
} & {
|
|
16520
16585
|
header: {
|
|
@@ -16522,7 +16587,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16522
16587
|
};
|
|
16523
16588
|
} & {
|
|
16524
16589
|
json: {
|
|
16525
|
-
template?: "
|
|
16590
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
16526
16591
|
body?: string | undefined;
|
|
16527
16592
|
from?: string | undefined;
|
|
16528
16593
|
subject?: string | undefined;
|
|
@@ -16534,7 +16599,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16534
16599
|
};
|
|
16535
16600
|
};
|
|
16536
16601
|
output: {
|
|
16537
|
-
template: "
|
|
16602
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16538
16603
|
body: string;
|
|
16539
16604
|
from: string;
|
|
16540
16605
|
subject: string;
|
|
@@ -16553,7 +16618,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16553
16618
|
$delete: {
|
|
16554
16619
|
input: {
|
|
16555
16620
|
param: {
|
|
16556
|
-
templateName: "
|
|
16621
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16557
16622
|
};
|
|
16558
16623
|
} & {
|
|
16559
16624
|
header: {
|
|
@@ -16566,7 +16631,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16566
16631
|
} | {
|
|
16567
16632
|
input: {
|
|
16568
16633
|
param: {
|
|
16569
|
-
templateName: "
|
|
16634
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16570
16635
|
};
|
|
16571
16636
|
} & {
|
|
16572
16637
|
header: {
|
|
@@ -16583,7 +16648,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16583
16648
|
$post: {
|
|
16584
16649
|
input: {
|
|
16585
16650
|
param: {
|
|
16586
|
-
templateName: "
|
|
16651
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16587
16652
|
};
|
|
16588
16653
|
} & {
|
|
16589
16654
|
header: {
|
|
@@ -16866,7 +16931,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16866
16931
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16867
16932
|
custom_domain_id: string;
|
|
16868
16933
|
primary: boolean;
|
|
16869
|
-
status: "
|
|
16934
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16870
16935
|
verification_method?: "txt" | undefined;
|
|
16871
16936
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16872
16937
|
domain_metadata?: {
|
|
@@ -16907,7 +16972,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16907
16972
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16908
16973
|
custom_domain_id: string;
|
|
16909
16974
|
primary: boolean;
|
|
16910
|
-
status: "
|
|
16975
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16911
16976
|
verification_method?: "txt" | undefined;
|
|
16912
16977
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16913
16978
|
domain_metadata?: {
|
|
@@ -16971,7 +17036,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16971
17036
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16972
17037
|
custom_domain_id: string;
|
|
16973
17038
|
primary: boolean;
|
|
16974
|
-
status: "
|
|
17039
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16975
17040
|
verification_method?: "txt" | undefined;
|
|
16976
17041
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16977
17042
|
domain_metadata?: {
|
|
@@ -17018,7 +17083,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17018
17083
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17019
17084
|
custom_domain_id: string;
|
|
17020
17085
|
primary: boolean;
|
|
17021
|
-
status: "
|
|
17086
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17022
17087
|
verification_method?: "txt" | undefined;
|
|
17023
17088
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17024
17089
|
domain_metadata?: {
|
|
@@ -17064,7 +17129,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17064
17129
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17065
17130
|
custom_domain_id: string;
|
|
17066
17131
|
primary: boolean;
|
|
17067
|
-
status: "
|
|
17132
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17068
17133
|
verification_method?: "txt" | undefined;
|
|
17069
17134
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17070
17135
|
domain_metadata?: {
|
|
@@ -17105,7 +17170,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17105
17170
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17106
17171
|
custom_domain_id: string;
|
|
17107
17172
|
primary: boolean;
|
|
17108
|
-
status: "
|
|
17173
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17109
17174
|
verification_method?: "txt" | undefined;
|
|
17110
17175
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17111
17176
|
domain_metadata?: {
|
|
@@ -17535,7 +17600,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17535
17600
|
} & {
|
|
17536
17601
|
json: {
|
|
17537
17602
|
body?: string | undefined;
|
|
17538
|
-
screen?: "
|
|
17603
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
17539
17604
|
branding?: {
|
|
17540
17605
|
colors?: {
|
|
17541
17606
|
primary: string;
|
|
@@ -17704,7 +17769,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17704
17769
|
json: {
|
|
17705
17770
|
bindings: {
|
|
17706
17771
|
ref: {
|
|
17707
|
-
type?: "
|
|
17772
|
+
type?: "action_id" | "action_name" | undefined;
|
|
17708
17773
|
value?: string | undefined;
|
|
17709
17774
|
id?: string | undefined;
|
|
17710
17775
|
name?: string | undefined;
|
|
@@ -17826,7 +17891,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17826
17891
|
logs: {
|
|
17827
17892
|
action_name: string;
|
|
17828
17893
|
lines: {
|
|
17829
|
-
level: "
|
|
17894
|
+
level: "error" | "info" | "log" | "warn" | "debug";
|
|
17830
17895
|
message: string;
|
|
17831
17896
|
}[];
|
|
17832
17897
|
}[];
|
|
@@ -18495,7 +18560,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18495
18560
|
args: hono_utils_types.JSONValue[];
|
|
18496
18561
|
}[];
|
|
18497
18562
|
logs: {
|
|
18498
|
-
level: "
|
|
18563
|
+
level: "error" | "info" | "log" | "warn" | "debug";
|
|
18499
18564
|
message: string;
|
|
18500
18565
|
}[];
|
|
18501
18566
|
error?: string | undefined;
|
|
@@ -18806,7 +18871,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18806
18871
|
scope?: string | undefined;
|
|
18807
18872
|
grant_types?: string[] | undefined;
|
|
18808
18873
|
response_types?: string[] | undefined;
|
|
18809
|
-
token_endpoint_auth_method?: "
|
|
18874
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
18810
18875
|
jwks_uri?: string | undefined;
|
|
18811
18876
|
jwks?: Record<string, unknown> | undefined;
|
|
18812
18877
|
software_id?: string | undefined;
|
|
@@ -18895,7 +18960,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18895
18960
|
scope?: string | undefined;
|
|
18896
18961
|
grant_types?: string[] | undefined;
|
|
18897
18962
|
response_types?: string[] | undefined;
|
|
18898
|
-
token_endpoint_auth_method?: "
|
|
18963
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
18899
18964
|
jwks_uri?: string | undefined;
|
|
18900
18965
|
jwks?: Record<string, unknown> | undefined;
|
|
18901
18966
|
software_id?: string | undefined;
|
|
@@ -19241,16 +19306,16 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19241
19306
|
email: string;
|
|
19242
19307
|
send: "code" | "link";
|
|
19243
19308
|
authParams: {
|
|
19309
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19310
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19311
|
+
scope?: string | undefined;
|
|
19244
19312
|
username?: string | undefined;
|
|
19245
19313
|
state?: string | undefined;
|
|
19314
|
+
audience?: string | undefined;
|
|
19246
19315
|
act_as?: string | undefined;
|
|
19247
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19248
|
-
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19249
19316
|
redirect_uri?: string | undefined;
|
|
19250
|
-
audience?: string | undefined;
|
|
19251
19317
|
organization?: string | undefined;
|
|
19252
19318
|
nonce?: string | undefined;
|
|
19253
|
-
scope?: string | undefined;
|
|
19254
19319
|
prompt?: string | undefined;
|
|
19255
19320
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19256
19321
|
code_challenge?: string | undefined;
|
|
@@ -19277,16 +19342,16 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19277
19342
|
phone_number: string;
|
|
19278
19343
|
send: "code" | "link";
|
|
19279
19344
|
authParams: {
|
|
19345
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19346
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19347
|
+
scope?: string | undefined;
|
|
19280
19348
|
username?: string | undefined;
|
|
19281
19349
|
state?: string | undefined;
|
|
19350
|
+
audience?: string | undefined;
|
|
19282
19351
|
act_as?: string | undefined;
|
|
19283
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19284
|
-
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19285
19352
|
redirect_uri?: string | undefined;
|
|
19286
|
-
audience?: string | undefined;
|
|
19287
19353
|
organization?: string | undefined;
|
|
19288
19354
|
nonce?: string | undefined;
|
|
19289
|
-
scope?: string | undefined;
|
|
19290
19355
|
prompt?: string | undefined;
|
|
19291
19356
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19292
19357
|
code_challenge?: string | undefined;
|
|
@@ -19421,14 +19486,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19421
19486
|
input: {
|
|
19422
19487
|
form: {
|
|
19423
19488
|
token: string;
|
|
19424
|
-
token_type_hint?: "
|
|
19489
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19425
19490
|
client_id?: string | undefined;
|
|
19426
19491
|
client_secret?: string | undefined;
|
|
19427
19492
|
};
|
|
19428
19493
|
} & {
|
|
19429
19494
|
json: {
|
|
19430
19495
|
token: string;
|
|
19431
|
-
token_type_hint?: "
|
|
19496
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19432
19497
|
client_id?: string | undefined;
|
|
19433
19498
|
client_secret?: string | undefined;
|
|
19434
19499
|
};
|
|
@@ -19440,14 +19505,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19440
19505
|
input: {
|
|
19441
19506
|
form: {
|
|
19442
19507
|
token: string;
|
|
19443
|
-
token_type_hint?: "
|
|
19508
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19444
19509
|
client_id?: string | undefined;
|
|
19445
19510
|
client_secret?: string | undefined;
|
|
19446
19511
|
};
|
|
19447
19512
|
} & {
|
|
19448
19513
|
json: {
|
|
19449
19514
|
token: string;
|
|
19450
|
-
token_type_hint?: "
|
|
19515
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19451
19516
|
client_id?: string | undefined;
|
|
19452
19517
|
client_secret?: string | undefined;
|
|
19453
19518
|
};
|
|
@@ -19462,14 +19527,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19462
19527
|
input: {
|
|
19463
19528
|
form: {
|
|
19464
19529
|
token: string;
|
|
19465
|
-
token_type_hint?: "
|
|
19530
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19466
19531
|
client_id?: string | undefined;
|
|
19467
19532
|
client_secret?: string | undefined;
|
|
19468
19533
|
};
|
|
19469
19534
|
} & {
|
|
19470
19535
|
json: {
|
|
19471
19536
|
token: string;
|
|
19472
|
-
token_type_hint?: "
|
|
19537
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19473
19538
|
client_id?: string | undefined;
|
|
19474
19539
|
client_secret?: string | undefined;
|
|
19475
19540
|
};
|
|
@@ -20198,7 +20263,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20198
20263
|
};
|
|
20199
20264
|
output: {};
|
|
20200
20265
|
outputFormat: string;
|
|
20201
|
-
status:
|
|
20266
|
+
status: 302;
|
|
20202
20267
|
} | {
|
|
20203
20268
|
input: {
|
|
20204
20269
|
query: {
|
|
@@ -20212,7 +20277,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20212
20277
|
};
|
|
20213
20278
|
output: {};
|
|
20214
20279
|
outputFormat: string;
|
|
20215
|
-
status:
|
|
20280
|
+
status: 200;
|
|
20216
20281
|
} | {
|
|
20217
20282
|
input: {
|
|
20218
20283
|
query: {
|
|
@@ -21200,7 +21265,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21200
21265
|
$get: {
|
|
21201
21266
|
input: {
|
|
21202
21267
|
param: {
|
|
21203
|
-
screen: "
|
|
21268
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21204
21269
|
};
|
|
21205
21270
|
} & {
|
|
21206
21271
|
query: {
|
|
@@ -21216,7 +21281,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21216
21281
|
} | {
|
|
21217
21282
|
input: {
|
|
21218
21283
|
param: {
|
|
21219
|
-
screen: "
|
|
21284
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21220
21285
|
};
|
|
21221
21286
|
} & {
|
|
21222
21287
|
query: {
|
|
@@ -21232,7 +21297,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21232
21297
|
} | {
|
|
21233
21298
|
input: {
|
|
21234
21299
|
param: {
|
|
21235
|
-
screen: "
|
|
21300
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21236
21301
|
};
|
|
21237
21302
|
} & {
|
|
21238
21303
|
query: {
|
|
@@ -21252,7 +21317,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21252
21317
|
$post: {
|
|
21253
21318
|
input: {
|
|
21254
21319
|
param: {
|
|
21255
|
-
screen: "
|
|
21320
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21256
21321
|
};
|
|
21257
21322
|
} & {
|
|
21258
21323
|
query: {
|
|
@@ -21270,7 +21335,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21270
21335
|
} | {
|
|
21271
21336
|
input: {
|
|
21272
21337
|
param: {
|
|
21273
|
-
screen: "
|
|
21338
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21274
21339
|
};
|
|
21275
21340
|
} & {
|
|
21276
21341
|
query: {
|
|
@@ -21372,5 +21437,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21372
21437
|
createX509Certificate: typeof createX509Certificate;
|
|
21373
21438
|
};
|
|
21374
21439
|
|
|
21375
|
-
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_SYNC_EVENT_PREFIX, CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_PATH, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, ControlPlaneSyncDestination, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, 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, RetentionSweepError, SignupPage as SignUpPage, SocialButton, Spinner, TenantInvitationNotFoundError, TenantMembersNotFoundError, TenantOrganizationNotFoundError, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupCodes, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, composeHostResolvers, createApplySyncEvents, createAuthMiddleware, createControlPlaneClient, createControlPlaneCustomDomainsAdapter, createControlPlaneTenantMembersAdapter, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, createLocalTenantMembersBackend, createServiceTokenCore, createTenantMembersControlPlaneApp, createTenantMembersRoutes, createWfpTenantHostResolver, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, ensureSigningKey, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, runRetention, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
|
|
21376
|
-
export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, CodesCleanupParams, ControlPlaneClient, ControlPlaneClientOptions, ControlPlaneCustomDomainsOptions, ControlPlaneRequest, ControlPlaneResponse, ControlPlaneSyncDestinationOptions, ControlPlaneTenantMembersOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, CreateServiceTokenCoreParams, EncryptKeyIdResolver, EnsureSigningKeyOptions, EnsureSigningKeyResult, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetControlPlaneToken, GetServiceToken, GetTenantMembersBackend, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, LocalTenantMembersBackendOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementApiScope, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RetentionSweep, RetentionSweepFailed, RetentionSweepSkipped, RetentionSweepStatus, RetentionSweepSwept, RolePermissionHooks, RunOutboxRelayConfig, RunRetentionConfig, RunRetentionResult, SeedOptions, SeedResult, ServiceTokenResponse, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantInvitation, TenantInvitationInput, TenantMember, TenantMembersBackend, TenantMembersControlPlaneOptions, TenantMembersListResult, TenantMembersPageParams, TenantOperationExecutorBinding, TenantRole, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };
|
|
21440
|
+
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_SYNC_EVENT_PREFIX, CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_PATH, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, ControlPlaneSyncDestination, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, 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, RetentionSweepError, SignupPage as SignUpPage, SocialButton, Spinner, TenantInvitationNotFoundError, TenantMembersNotFoundError, TenantOrganizationNotFoundError, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupActionExecutions, cleanupCodes, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, composeHostResolvers, createApplySyncEvents, createAuthMiddleware, createControlPlaneClient, createControlPlaneCustomDomainsAdapter, createControlPlaneTenantMembersAdapter, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, createLocalTenantMembersBackend, createServiceTokenCore, createTenantMembersControlPlaneApp, createTenantMembersRoutes, createWfpTenantHostResolver, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, ensureSigningKey, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, runRetention, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
|
|
21441
|
+
export type { ActionExecutionsCleanupParams, AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, CodesCleanupParams, ControlPlaneClient, ControlPlaneClientOptions, ControlPlaneCustomDomainsOptions, ControlPlaneRequest, ControlPlaneResponse, ControlPlaneSyncDestinationOptions, ControlPlaneTenantMembersOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, CreateServiceTokenCoreParams, EncryptKeyIdResolver, EnsureSigningKeyOptions, EnsureSigningKeyResult, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetControlPlaneToken, GetServiceToken, GetTenantMembersBackend, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, LocalTenantMembersBackendOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementApiScope, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RetentionSweep, RetentionSweepFailed, RetentionSweepSkipped, RetentionSweepStatus, RetentionSweepSwept, RolePermissionHooks, RunOutboxRelayConfig, RunRetentionConfig, RunRetentionResult, SeedOptions, SeedResult, ServiceTokenResponse, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantInvitation, TenantInvitationInput, TenantMember, TenantMembersBackend, TenantMembersControlPlaneOptions, TenantMembersListResult, TenantMembersPageParams, TenantOperationExecutorBinding, TenantRole, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };
|