authhero 8.24.0 → 8.25.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/authhero.cjs +138 -138
- package/dist/authhero.d.ts +802 -225
- package/dist/authhero.mjs +12109 -11443
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/index.d.ts +228 -222
- package/dist/types/routes/auth-api/index.d.ts +44 -44
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +8 -8
- package/dist/types/routes/auth-api/token.d.ts +22 -22
- 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/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 +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +172 -172
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +7 -7
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenant-members.d.ts +304 -0
- package/dist/types/routes/management-api/tenant-members.test.d.ts +1 -0
- package/dist/types/routes/management-api/tenants.d.ts +9 -9
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/index.d.ts +23 -0
- package/dist/types/routes/proxy-control-plane/scopes.d.ts +7 -0
- package/dist/types/routes/proxy-control-plane/tenant-members.d.ts +37 -0
- package/dist/types/routes/proxy-control-plane/verify.d.ts +14 -0
- package/dist/types/routes/proxy-control-plane/verify.test.d.ts +1 -0
- 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/dist/types/tenant-members/control-plane-roundtrip.test.d.ts +1 -0
- package/dist/types/tenant-members/local-backend.d.ts +43 -0
- package/dist/types/tenant-members/local-backend.test.d.ts +1 -0
- package/dist/types/tenant-members/remote-backend.d.ts +17 -0
- package/dist/types/tenant-members/types.d.ts +112 -0
- package/dist/types/tenant-members/wire.d.ts +28 -0
- package/dist/types/types/AuthHeroConfig.d.ts +32 -0
- package/package.json +3 -3
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, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, Client, LogsDataAdapter, LogInsert, UserDataAdapter, ProxyRoutesAdapter, CustomDomainsAdapter, TenantsDataAdapter, KeysAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
3
|
+
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, roleSchema, inviteSchema, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, 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';
|
|
@@ -8,7 +8,7 @@ import { z, OpenAPIHono } from '@hono/zod-openapi';
|
|
|
8
8
|
import { CountryCode } from 'libphonenumber-js';
|
|
9
9
|
import { SamlSigner } from '@authhero/saml/core';
|
|
10
10
|
export { HttpSamlSigner, SamlSigner } from '@authhero/saml/core';
|
|
11
|
-
import { Context, Next, Handler, MiddlewareHandler } from 'hono';
|
|
11
|
+
import { Context, Hono, Next, Handler, MiddlewareHandler } from 'hono';
|
|
12
12
|
import * as _authhero_proxy from '@authhero/proxy';
|
|
13
13
|
import { ResolvedHost, KvNamespaceWriter } from '@authhero/proxy';
|
|
14
14
|
export { PROXY_RESOLVE_HOST_SCOPE, ServiceBindingFetcher, createServiceBindingFetch } from '@authhero/proxy';
|
|
@@ -822,6 +822,465 @@ type Hooks = {
|
|
|
822
822
|
onFetchUserInfo?: OnFetchUserInfo;
|
|
823
823
|
};
|
|
824
824
|
|
|
825
|
+
/**
|
|
826
|
+
* A tenant's "team" is not the tenant's own users. It is an organization on the
|
|
827
|
+
* control-plane tenant whose `name` equals the tenant id (see
|
|
828
|
+
* `@authhero/multi-tenancy` provisioning). Its members are control-plane users
|
|
829
|
+
* holding org-scoped roles, and the tenant shard cannot write those rows.
|
|
830
|
+
*
|
|
831
|
+
* `TenantMembersBackend` is the seam that hides "where the team actually lives":
|
|
832
|
+
* - on a single-instance / control-plane deployment it resolves the org and
|
|
833
|
+
* acts on the local control-plane adapters (`createLocalTenantMembersBackend`);
|
|
834
|
+
* - on a Workers-for-Platforms shard it delegates every call up to the control
|
|
835
|
+
* plane over the shared control-plane client
|
|
836
|
+
* (`createControlPlaneTenantMembersAdapter`).
|
|
837
|
+
*
|
|
838
|
+
* Every method takes the CHILD `tenantId` (the tenant whose team is managed),
|
|
839
|
+
* never an organization id — the org is resolved from the tenant id internally.
|
|
840
|
+
* The management route that fronts this has already pinned `tenantId` to the
|
|
841
|
+
* caller's verified org claim, so the backend never has to re-authorize.
|
|
842
|
+
*/
|
|
843
|
+
declare const tenantMemberSchema: z.ZodObject<{
|
|
844
|
+
user_id: z.ZodString;
|
|
845
|
+
email: z.ZodOptional<z.ZodString>;
|
|
846
|
+
name: z.ZodOptional<z.ZodString>;
|
|
847
|
+
picture: z.ZodOptional<z.ZodString>;
|
|
848
|
+
roles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
849
|
+
name: z.ZodString;
|
|
850
|
+
description: z.ZodOptional<z.ZodString>;
|
|
851
|
+
is_system: z.ZodOptional<z.ZodBoolean>;
|
|
852
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
853
|
+
id: z.ZodString;
|
|
854
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
855
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
856
|
+
}, z.core.$strip>>>;
|
|
857
|
+
}, z.core.$strip>;
|
|
858
|
+
type TenantMember = z.infer<typeof tenantMemberSchema>;
|
|
859
|
+
declare const tenantMembersListSchema: z.ZodObject<{
|
|
860
|
+
members: z.ZodArray<z.ZodObject<{
|
|
861
|
+
user_id: z.ZodString;
|
|
862
|
+
email: z.ZodOptional<z.ZodString>;
|
|
863
|
+
name: z.ZodOptional<z.ZodString>;
|
|
864
|
+
picture: z.ZodOptional<z.ZodString>;
|
|
865
|
+
roles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
866
|
+
name: z.ZodString;
|
|
867
|
+
description: z.ZodOptional<z.ZodString>;
|
|
868
|
+
is_system: z.ZodOptional<z.ZodBoolean>;
|
|
869
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
870
|
+
id: z.ZodString;
|
|
871
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
872
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
873
|
+
}, z.core.$strip>>>;
|
|
874
|
+
}, z.core.$strip>>;
|
|
875
|
+
start: z.ZodNumber;
|
|
876
|
+
limit: z.ZodNumber;
|
|
877
|
+
total: z.ZodNumber;
|
|
878
|
+
}, z.core.$strip>;
|
|
879
|
+
type TenantMembersListResult = z.infer<typeof tenantMembersListSchema>;
|
|
880
|
+
/**
|
|
881
|
+
* The invitee-facing fields of an invitation create. `organization_id`,
|
|
882
|
+
* `invitation_url` and `id` are resolved server-side (the org from the tenant
|
|
883
|
+
* id, the URL from the control-plane issuer), never trusted from the caller —
|
|
884
|
+
* that is the fix for the admin UI's "invite silently disappears when the
|
|
885
|
+
* client id isn't in local storage" foot-gun.
|
|
886
|
+
*/
|
|
887
|
+
declare const tenantInvitationInputSchema: z.ZodObject<{
|
|
888
|
+
invitee: z.ZodObject<{
|
|
889
|
+
email: z.ZodString;
|
|
890
|
+
}, z.core.$strip>;
|
|
891
|
+
inviter: z.ZodDefault<z.ZodObject<{
|
|
892
|
+
name: z.ZodOptional<z.ZodString>;
|
|
893
|
+
}, z.core.$strip>>;
|
|
894
|
+
roles: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
895
|
+
send_invitation_email: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
896
|
+
ttl_sec: z.ZodOptional<z.ZodNumber>;
|
|
897
|
+
}, z.core.$strip>;
|
|
898
|
+
type TenantInvitationInput = z.input<typeof tenantInvitationInputSchema>;
|
|
899
|
+
interface TenantMembersPageParams {
|
|
900
|
+
page?: number;
|
|
901
|
+
per_page?: number;
|
|
902
|
+
q?: string;
|
|
903
|
+
}
|
|
904
|
+
type TenantInvitation = z.infer<typeof inviteSchema>;
|
|
905
|
+
type TenantRole = z.infer<typeof roleSchema>;
|
|
906
|
+
interface TenantMembersBackend {
|
|
907
|
+
listMembers(tenantId: string, params?: TenantMembersPageParams): Promise<TenantMembersListResult>;
|
|
908
|
+
addMembers(tenantId: string, userIds: string[]): Promise<void>;
|
|
909
|
+
removeMembers(tenantId: string, userIds: string[]): Promise<void>;
|
|
910
|
+
listMemberRoles(tenantId: string, userId: string): Promise<TenantRole[]>;
|
|
911
|
+
assignMemberRoles(tenantId: string, userId: string, roleIds: string[]): Promise<void>;
|
|
912
|
+
removeMemberRoles(tenantId: string, userId: string, roleIds: string[]): Promise<void>;
|
|
913
|
+
/** Roles that can be granted to a member — the control-plane tenant's roles. */
|
|
914
|
+
listRoles(tenantId: string, params?: TenantMembersPageParams): Promise<TenantRole[]>;
|
|
915
|
+
listInvitations(tenantId: string, params?: TenantMembersPageParams): Promise<TenantInvitation[]>;
|
|
916
|
+
createInvitation(tenantId: string, input: TenantInvitationInput): Promise<TenantInvitation>;
|
|
917
|
+
revokeInvitation(tenantId: string, invitationId: string): Promise<void>;
|
|
918
|
+
}
|
|
919
|
+
/**
|
|
920
|
+
* Base for the "asked for something that isn't there" cases a backend can hit.
|
|
921
|
+
* The management route maps any of these to a 404. It is a distinct type (not a
|
|
922
|
+
* bare HTTPException) so the local and remote backends can agree on the
|
|
923
|
+
* semantics without depending on hono.
|
|
924
|
+
*/
|
|
925
|
+
declare class TenantMembersNotFoundError extends Error {
|
|
926
|
+
}
|
|
927
|
+
/** The tenant id names no control-plane organization — i.e. no team. */
|
|
928
|
+
declare class TenantOrganizationNotFoundError extends TenantMembersNotFoundError {
|
|
929
|
+
constructor(tenantId: string);
|
|
930
|
+
}
|
|
931
|
+
/** The invitation does not exist, or belongs to a different tenant's team. */
|
|
932
|
+
declare class TenantInvitationNotFoundError extends TenantMembersNotFoundError {
|
|
933
|
+
constructor(invitationId: string);
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
type Ctx = Context<{
|
|
937
|
+
Bindings: Bindings;
|
|
938
|
+
Variables: Variables;
|
|
939
|
+
}>;
|
|
940
|
+
/** Build the request's backend (local org resolution, or a control-plane hop). */
|
|
941
|
+
type GetTenantMembersBackend = (ctx: Ctx) => TenantMembersBackend | Promise<TenantMembersBackend>;
|
|
942
|
+
/**
|
|
943
|
+
* `GET/POST/DELETE /api/v2/tenant-members` — lets a tenant admin manage who
|
|
944
|
+
* administers their tenant, from the per-tenant admin UI, without a
|
|
945
|
+
* control-plane login. The heavy lifting (resolving the control-plane org,
|
|
946
|
+
* writing membership/roles/invitations) is delegated to a
|
|
947
|
+
* {@link TenantMembersBackend}; this layer only pins the tenant to the token's
|
|
948
|
+
* org claim and shapes responses.
|
|
949
|
+
*/
|
|
950
|
+
declare function createTenantMembersRoutes(getBackend: GetTenantMembersBackend): OpenAPIHono<{
|
|
951
|
+
Bindings: Bindings;
|
|
952
|
+
Variables: Variables;
|
|
953
|
+
}, {
|
|
954
|
+
"/roles": {
|
|
955
|
+
$get: {
|
|
956
|
+
input: {
|
|
957
|
+
query: {
|
|
958
|
+
page?: unknown;
|
|
959
|
+
per_page?: unknown;
|
|
960
|
+
q?: string | undefined;
|
|
961
|
+
};
|
|
962
|
+
} & {
|
|
963
|
+
header: {
|
|
964
|
+
"tenant-id"?: string | undefined;
|
|
965
|
+
};
|
|
966
|
+
};
|
|
967
|
+
output: {
|
|
968
|
+
name: string;
|
|
969
|
+
id: string;
|
|
970
|
+
description?: string | undefined;
|
|
971
|
+
is_system?: boolean | undefined;
|
|
972
|
+
metadata?: {
|
|
973
|
+
[x: string]: any;
|
|
974
|
+
} | undefined;
|
|
975
|
+
created_at?: string | undefined;
|
|
976
|
+
updated_at?: string | undefined;
|
|
977
|
+
}[];
|
|
978
|
+
outputFormat: "json";
|
|
979
|
+
status: 200;
|
|
980
|
+
};
|
|
981
|
+
};
|
|
982
|
+
} & {
|
|
983
|
+
"/invitations": {
|
|
984
|
+
$get: {
|
|
985
|
+
input: {
|
|
986
|
+
query: {
|
|
987
|
+
page?: unknown;
|
|
988
|
+
per_page?: unknown;
|
|
989
|
+
q?: string | undefined;
|
|
990
|
+
};
|
|
991
|
+
} & {
|
|
992
|
+
header: {
|
|
993
|
+
"tenant-id"?: string | undefined;
|
|
994
|
+
};
|
|
995
|
+
};
|
|
996
|
+
output: {
|
|
997
|
+
id: string;
|
|
998
|
+
created_at: string;
|
|
999
|
+
expires_at: string;
|
|
1000
|
+
client_id: string;
|
|
1001
|
+
inviter: {
|
|
1002
|
+
name?: string | undefined;
|
|
1003
|
+
};
|
|
1004
|
+
invitee: {
|
|
1005
|
+
email?: string | undefined;
|
|
1006
|
+
};
|
|
1007
|
+
organization_id: string;
|
|
1008
|
+
invitation_url: string;
|
|
1009
|
+
ticket_id?: string | undefined;
|
|
1010
|
+
connection_id?: string | undefined;
|
|
1011
|
+
app_metadata?: {
|
|
1012
|
+
[x: string]: any;
|
|
1013
|
+
} | undefined;
|
|
1014
|
+
user_metadata?: {
|
|
1015
|
+
[x: string]: any;
|
|
1016
|
+
} | undefined;
|
|
1017
|
+
ttl_sec?: number | undefined;
|
|
1018
|
+
roles?: string[] | undefined;
|
|
1019
|
+
send_invitation_email?: boolean | undefined;
|
|
1020
|
+
}[];
|
|
1021
|
+
outputFormat: "json";
|
|
1022
|
+
status: 200;
|
|
1023
|
+
};
|
|
1024
|
+
};
|
|
1025
|
+
} & {
|
|
1026
|
+
"/invitations": {
|
|
1027
|
+
$post: {
|
|
1028
|
+
input: {
|
|
1029
|
+
header: {
|
|
1030
|
+
"tenant-id"?: string | undefined;
|
|
1031
|
+
};
|
|
1032
|
+
} & {
|
|
1033
|
+
json: {
|
|
1034
|
+
invitee: {
|
|
1035
|
+
email: string;
|
|
1036
|
+
};
|
|
1037
|
+
inviter?: {
|
|
1038
|
+
name?: string | undefined;
|
|
1039
|
+
} | undefined;
|
|
1040
|
+
roles?: string[] | undefined;
|
|
1041
|
+
send_invitation_email?: boolean | undefined;
|
|
1042
|
+
ttl_sec?: number | undefined;
|
|
1043
|
+
};
|
|
1044
|
+
};
|
|
1045
|
+
output: {
|
|
1046
|
+
id: string;
|
|
1047
|
+
created_at: string;
|
|
1048
|
+
expires_at: string;
|
|
1049
|
+
client_id: string;
|
|
1050
|
+
inviter: {
|
|
1051
|
+
name?: string | undefined;
|
|
1052
|
+
};
|
|
1053
|
+
invitee: {
|
|
1054
|
+
email?: string | undefined;
|
|
1055
|
+
};
|
|
1056
|
+
organization_id: string;
|
|
1057
|
+
invitation_url: string;
|
|
1058
|
+
ticket_id?: string | undefined;
|
|
1059
|
+
connection_id?: string | undefined;
|
|
1060
|
+
app_metadata?: {
|
|
1061
|
+
[x: string]: any;
|
|
1062
|
+
} | undefined;
|
|
1063
|
+
user_metadata?: {
|
|
1064
|
+
[x: string]: any;
|
|
1065
|
+
} | undefined;
|
|
1066
|
+
ttl_sec?: number | undefined;
|
|
1067
|
+
roles?: string[] | undefined;
|
|
1068
|
+
send_invitation_email?: boolean | undefined;
|
|
1069
|
+
};
|
|
1070
|
+
outputFormat: "json";
|
|
1071
|
+
status: 201;
|
|
1072
|
+
};
|
|
1073
|
+
};
|
|
1074
|
+
} & {
|
|
1075
|
+
"/invitations/:invitation_id": {
|
|
1076
|
+
$delete: {
|
|
1077
|
+
input: {
|
|
1078
|
+
param: {
|
|
1079
|
+
invitation_id: string;
|
|
1080
|
+
};
|
|
1081
|
+
} & {
|
|
1082
|
+
header: {
|
|
1083
|
+
"tenant-id"?: string | undefined;
|
|
1084
|
+
};
|
|
1085
|
+
};
|
|
1086
|
+
output: {};
|
|
1087
|
+
outputFormat: string;
|
|
1088
|
+
status: 204;
|
|
1089
|
+
};
|
|
1090
|
+
};
|
|
1091
|
+
} & {
|
|
1092
|
+
"/": {
|
|
1093
|
+
$get: {
|
|
1094
|
+
input: {
|
|
1095
|
+
query: {
|
|
1096
|
+
page?: unknown;
|
|
1097
|
+
per_page?: unknown;
|
|
1098
|
+
q?: string | undefined;
|
|
1099
|
+
};
|
|
1100
|
+
} & {
|
|
1101
|
+
header: {
|
|
1102
|
+
"tenant-id"?: string | undefined;
|
|
1103
|
+
};
|
|
1104
|
+
};
|
|
1105
|
+
output: {
|
|
1106
|
+
members: {
|
|
1107
|
+
user_id: string;
|
|
1108
|
+
roles: {
|
|
1109
|
+
name: string;
|
|
1110
|
+
id: string;
|
|
1111
|
+
description?: string | undefined;
|
|
1112
|
+
is_system?: boolean | undefined;
|
|
1113
|
+
metadata?: {
|
|
1114
|
+
[x: string]: any;
|
|
1115
|
+
} | undefined;
|
|
1116
|
+
created_at?: string | undefined;
|
|
1117
|
+
updated_at?: string | undefined;
|
|
1118
|
+
}[];
|
|
1119
|
+
email?: string | undefined;
|
|
1120
|
+
name?: string | undefined;
|
|
1121
|
+
picture?: string | undefined;
|
|
1122
|
+
}[];
|
|
1123
|
+
start: number;
|
|
1124
|
+
limit: number;
|
|
1125
|
+
total: number;
|
|
1126
|
+
};
|
|
1127
|
+
outputFormat: "json";
|
|
1128
|
+
status: 200;
|
|
1129
|
+
};
|
|
1130
|
+
};
|
|
1131
|
+
} & {
|
|
1132
|
+
"/": {
|
|
1133
|
+
$post: {
|
|
1134
|
+
input: {
|
|
1135
|
+
header: {
|
|
1136
|
+
"tenant-id"?: string | undefined;
|
|
1137
|
+
};
|
|
1138
|
+
} & {
|
|
1139
|
+
json: {
|
|
1140
|
+
user_ids: string[];
|
|
1141
|
+
};
|
|
1142
|
+
};
|
|
1143
|
+
output: {};
|
|
1144
|
+
outputFormat: string;
|
|
1145
|
+
status: 204;
|
|
1146
|
+
};
|
|
1147
|
+
};
|
|
1148
|
+
} & {
|
|
1149
|
+
"/": {
|
|
1150
|
+
$delete: {
|
|
1151
|
+
input: {
|
|
1152
|
+
header: {
|
|
1153
|
+
"tenant-id"?: string | undefined;
|
|
1154
|
+
};
|
|
1155
|
+
} & {
|
|
1156
|
+
json: {
|
|
1157
|
+
user_ids: string[];
|
|
1158
|
+
};
|
|
1159
|
+
};
|
|
1160
|
+
output: {};
|
|
1161
|
+
outputFormat: string;
|
|
1162
|
+
status: 204;
|
|
1163
|
+
};
|
|
1164
|
+
};
|
|
1165
|
+
} & {
|
|
1166
|
+
"/:user_id/roles": {
|
|
1167
|
+
$get: {
|
|
1168
|
+
input: {
|
|
1169
|
+
param: {
|
|
1170
|
+
user_id: string;
|
|
1171
|
+
};
|
|
1172
|
+
} & {
|
|
1173
|
+
header: {
|
|
1174
|
+
"tenant-id"?: string | undefined;
|
|
1175
|
+
};
|
|
1176
|
+
};
|
|
1177
|
+
output: {
|
|
1178
|
+
name: string;
|
|
1179
|
+
id: string;
|
|
1180
|
+
description?: string | undefined;
|
|
1181
|
+
is_system?: boolean | undefined;
|
|
1182
|
+
metadata?: {
|
|
1183
|
+
[x: string]: any;
|
|
1184
|
+
} | undefined;
|
|
1185
|
+
created_at?: string | undefined;
|
|
1186
|
+
updated_at?: string | undefined;
|
|
1187
|
+
}[];
|
|
1188
|
+
outputFormat: "json";
|
|
1189
|
+
status: 200;
|
|
1190
|
+
};
|
|
1191
|
+
};
|
|
1192
|
+
} & {
|
|
1193
|
+
"/:user_id/roles": {
|
|
1194
|
+
$post: {
|
|
1195
|
+
input: {
|
|
1196
|
+
param: {
|
|
1197
|
+
user_id: string;
|
|
1198
|
+
};
|
|
1199
|
+
} & {
|
|
1200
|
+
header: {
|
|
1201
|
+
"tenant-id"?: string | undefined;
|
|
1202
|
+
};
|
|
1203
|
+
} & {
|
|
1204
|
+
json: {
|
|
1205
|
+
roles: string[];
|
|
1206
|
+
};
|
|
1207
|
+
};
|
|
1208
|
+
output: {};
|
|
1209
|
+
outputFormat: string;
|
|
1210
|
+
status: 204;
|
|
1211
|
+
};
|
|
1212
|
+
};
|
|
1213
|
+
} & {
|
|
1214
|
+
"/:user_id/roles": {
|
|
1215
|
+
$delete: {
|
|
1216
|
+
input: {
|
|
1217
|
+
param: {
|
|
1218
|
+
user_id: string;
|
|
1219
|
+
};
|
|
1220
|
+
} & {
|
|
1221
|
+
header: {
|
|
1222
|
+
"tenant-id"?: string | undefined;
|
|
1223
|
+
};
|
|
1224
|
+
} & {
|
|
1225
|
+
json: {
|
|
1226
|
+
roles: string[];
|
|
1227
|
+
};
|
|
1228
|
+
};
|
|
1229
|
+
output: {};
|
|
1230
|
+
outputFormat: string;
|
|
1231
|
+
status: 204;
|
|
1232
|
+
};
|
|
1233
|
+
};
|
|
1234
|
+
}, "/">;
|
|
1235
|
+
|
|
1236
|
+
type AuthenticateControlPlane = (c: {
|
|
1237
|
+
req: {
|
|
1238
|
+
raw: Request;
|
|
1239
|
+
header(name: string): string | undefined;
|
|
1240
|
+
url: string;
|
|
1241
|
+
};
|
|
1242
|
+
env: Bindings;
|
|
1243
|
+
}) => Promise<{
|
|
1244
|
+
ok: true;
|
|
1245
|
+
tenantId?: string;
|
|
1246
|
+
} | {
|
|
1247
|
+
ok: false;
|
|
1248
|
+
reason: string;
|
|
1249
|
+
}>;
|
|
1250
|
+
|
|
1251
|
+
type TenantVars = {
|
|
1252
|
+
tenantId: string;
|
|
1253
|
+
};
|
|
1254
|
+
/** Context seen by the control-plane resource: env + the pinned tenant id. */
|
|
1255
|
+
type CpCtx = Context<{
|
|
1256
|
+
Bindings: Bindings;
|
|
1257
|
+
Variables: TenantVars;
|
|
1258
|
+
}>;
|
|
1259
|
+
interface TenantMembersControlPlaneOptions {
|
|
1260
|
+
/**
|
|
1261
|
+
* Build the backend for a request. Bound to the control-plane database
|
|
1262
|
+
* (`c.env.data`) and, optionally, an email sender at wire-up time. The tenant
|
|
1263
|
+
* is pinned separately from the verified token, so the factory does not need
|
|
1264
|
+
* it.
|
|
1265
|
+
*/
|
|
1266
|
+
getBackend: (c: CpCtx) => TenantMembersBackend | Promise<TenantMembersBackend>;
|
|
1267
|
+
authenticate: AuthenticateControlPlane;
|
|
1268
|
+
}
|
|
1269
|
+
/**
|
|
1270
|
+
* The authoritative `tenant-members` resource. Tenant shards reach it through
|
|
1271
|
+
* `createControlPlaneTenantMembersAdapter`; it manages the control-plane
|
|
1272
|
+
* organization that models a tenant's team — rows the shard cannot write.
|
|
1273
|
+
*
|
|
1274
|
+
* Every operation is bound to the `tenant_id` claim of the verified token. The
|
|
1275
|
+
* scope alone is not authorization: each shard holds it, so a request-supplied
|
|
1276
|
+
* tenant id would let any shard read or edit any other tenant's team. Mount
|
|
1277
|
+
* under `/api/v2/proxy/control-plane/tenant-members`.
|
|
1278
|
+
*/
|
|
1279
|
+
declare function createTenantMembersControlPlaneApp(options: TenantMembersControlPlaneOptions): Hono<{
|
|
1280
|
+
Bindings: Bindings;
|
|
1281
|
+
Variables: TenantVars;
|
|
1282
|
+
}>;
|
|
1283
|
+
|
|
825
1284
|
declare const CONTROL_PLANE_SYNC_EVENT_PREFIX = "controlplane.sync.";
|
|
826
1285
|
/**
|
|
827
1286
|
* Only `proxy_route` replicates upward. Custom domains used to sync the same
|
|
@@ -1217,6 +1676,14 @@ interface AuthHeroConfig {
|
|
|
1217
1676
|
* hosts through a service binding by inspecting the URL.
|
|
1218
1677
|
*/
|
|
1219
1678
|
jwksFetch?: (url: string) => Promise<Response>;
|
|
1679
|
+
/**
|
|
1680
|
+
* Optional predicate widening the accepted token issuers beyond
|
|
1681
|
+
* `env.ISSUER` / the inbound host to a deployment's own WFP tenant
|
|
1682
|
+
* subdomains, whose per-tenant control-plane credential `jwksFetch`
|
|
1683
|
+
* resolves locally (see #1139). Consulted before any JWKS fetch; return
|
|
1684
|
+
* `true` only for issuer hosts you serve.
|
|
1685
|
+
*/
|
|
1686
|
+
isTrustedIssuer?: (iss: string) => boolean;
|
|
1220
1687
|
/**
|
|
1221
1688
|
* Optional receiver for `POST /sync` events emitted by tenant shards via
|
|
1222
1689
|
* the `ControlPlaneSyncDestination`. Mount on the control-plane authhero
|
|
@@ -1237,6 +1704,30 @@ interface AuthHeroConfig {
|
|
|
1237
1704
|
* needs a view across every tenant that only exists here.
|
|
1238
1705
|
*/
|
|
1239
1706
|
customDomains?: _authhero_adapter_interfaces.CustomDomainsAdapter;
|
|
1707
|
+
/**
|
|
1708
|
+
* The authoritative tenant-team resource. When set, mounts
|
|
1709
|
+
* `/api/v2/proxy/control-plane/tenant-members` — the resource tenant shards
|
|
1710
|
+
* call through `createControlPlaneTenantMembersAdapter` so their admins can
|
|
1711
|
+
* manage who administers the tenant (control-plane organization membership
|
|
1712
|
+
* + org-scoped roles + invitations). Wire the backend to the control-plane
|
|
1713
|
+
* database via `createLocalTenantMembersBackend`.
|
|
1714
|
+
*/
|
|
1715
|
+
tenantMembers?: TenantMembersControlPlaneOptions;
|
|
1716
|
+
};
|
|
1717
|
+
/**
|
|
1718
|
+
* Enables the tenant-scoped `/api/v2/tenant-members` management resource,
|
|
1719
|
+
* which lets a tenant admin manage their own team from the per-tenant admin
|
|
1720
|
+
* UI. Every request is pinned to the caller's `org_name` claim, then
|
|
1721
|
+
* delegated to the backend this returns.
|
|
1722
|
+
*
|
|
1723
|
+
* Return `createLocalTenantMembersBackend(...)` on a single-instance /
|
|
1724
|
+
* control-plane deployment (the team lives in the same database), or
|
|
1725
|
+
* `createControlPlaneTenantMembersAdapter(...)` on a Workers-for-Platforms
|
|
1726
|
+
* shard (the team lives on the control plane and is reached over the shared
|
|
1727
|
+
* control-plane client). Leave unset to not mount the resource.
|
|
1728
|
+
*/
|
|
1729
|
+
tenantMembers?: {
|
|
1730
|
+
getBackend: GetTenantMembersBackend;
|
|
1240
1731
|
};
|
|
1241
1732
|
/**
|
|
1242
1733
|
* Optional outbox-driven replication of `proxy_routes` mutations to a global
|
|
@@ -2641,6 +3132,13 @@ declare const CONTROL_PLANE_SYNC_SCOPE = "controlplane:sync";
|
|
|
2641
3132
|
* `createControlPlaneCustomDomainsAdapter`.
|
|
2642
3133
|
*/
|
|
2643
3134
|
declare const CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE = "controlplane:custom_domains";
|
|
3135
|
+
/**
|
|
3136
|
+
* Scope required by the authoritative `/tenant-members` resource on the control
|
|
3137
|
+
* plane — a tenant's team (organization membership + org-scoped roles +
|
|
3138
|
+
* invitations) that only the control plane can write. Tenant shards mint a
|
|
3139
|
+
* token with this scope through `createControlPlaneTenantMembersAdapter`.
|
|
3140
|
+
*/
|
|
3141
|
+
declare const CONTROL_PLANE_TENANT_MEMBERS_SCOPE = "controlplane:tenant_members";
|
|
2644
3142
|
|
|
2645
3143
|
/**
|
|
2646
3144
|
* Mints a bearer token for a tenant against the control plane. On a tenant
|
|
@@ -2723,6 +3221,71 @@ interface ControlPlaneCustomDomainsOptions {
|
|
|
2723
3221
|
*/
|
|
2724
3222
|
declare function createControlPlaneCustomDomainsAdapter(options: ControlPlaneCustomDomainsOptions): CustomDomainsAdapter;
|
|
2725
3223
|
|
|
3224
|
+
/** The control-plane adapters the team lives in. */
|
|
3225
|
+
type TeamAdapters = Pick<DataAdapters, "organizations" | "userOrganizations" | "userRoles" | "users" | "roles" | "invites">;
|
|
3226
|
+
interface LocalTenantMembersBackendOptions {
|
|
3227
|
+
/**
|
|
3228
|
+
* Adapters bound to the CONTROL-PLANE database — the team lives there, not on
|
|
3229
|
+
* the tenant shard. On the control-plane instance this is just `ctx.env.data`.
|
|
3230
|
+
*/
|
|
3231
|
+
data: TeamAdapters;
|
|
3232
|
+
/** Tenant id under which the org rows are stored (the control-plane tenant). */
|
|
3233
|
+
controlPlaneTenantId: string;
|
|
3234
|
+
/** Issuer used to build invitation acceptance links and default avatars. */
|
|
3235
|
+
issuer: string;
|
|
3236
|
+
/**
|
|
3237
|
+
* Client id embedded in invitation links. Resolved server-side so the caller
|
|
3238
|
+
* never supplies it (the admin-UI bug this fixes). Without it, invitations
|
|
3239
|
+
* cannot be created and `createInvitation` throws.
|
|
3240
|
+
*/
|
|
3241
|
+
invitationClientId?: string;
|
|
3242
|
+
/**
|
|
3243
|
+
* Best-effort invitation email delivery. Bound to a request context at the
|
|
3244
|
+
* call site (it needs branding/email infra). Failures must not fail the
|
|
3245
|
+
* create — Auth0 returns the invite even when delivery fails.
|
|
3246
|
+
*/
|
|
3247
|
+
sendInvitationEmail?: (params: {
|
|
3248
|
+
to: string;
|
|
3249
|
+
invitationUrl: string;
|
|
3250
|
+
inviterName?: string;
|
|
3251
|
+
organizationName: string;
|
|
3252
|
+
ttlSec: number;
|
|
3253
|
+
}) => Promise<void>;
|
|
3254
|
+
}
|
|
3255
|
+
/**
|
|
3256
|
+
* A `TenantMembersBackend` that resolves the tenant's control-plane
|
|
3257
|
+
* organization and manages membership/roles/invitations directly against the
|
|
3258
|
+
* control-plane adapters. Used where the code already runs with the
|
|
3259
|
+
* control-plane database in reach: single-instance deployments (via the
|
|
3260
|
+
* management route) and the control-plane proxy resource (which fronts remote
|
|
3261
|
+
* shards).
|
|
3262
|
+
*/
|
|
3263
|
+
declare function createLocalTenantMembersBackend(options: LocalTenantMembersBackendOptions): TenantMembersBackend;
|
|
3264
|
+
|
|
3265
|
+
interface ControlPlaneTenantMembersOptions {
|
|
3266
|
+
/** Authed transport to the control plane (shared with other adapters). */
|
|
3267
|
+
client: ControlPlaneClient;
|
|
3268
|
+
/** Override the control-plane resource path (tests, custom mounts). */
|
|
3269
|
+
basePath?: string;
|
|
3270
|
+
}
|
|
3271
|
+
/**
|
|
3272
|
+
* A `TenantMembersBackend` for a tenant shard whose own database does not hold
|
|
3273
|
+
* the control-plane organization that models its team. Every call is delegated
|
|
3274
|
+
* up to the authoritative `tenant-members` resource
|
|
3275
|
+
* (`createTenantMembersControlPlaneApp`) over the shared control-plane client,
|
|
3276
|
+
* which mints a service token bound to this tenant. The control plane pins the
|
|
3277
|
+
* org from that token, so the shard never has to (and cannot) name it.
|
|
3278
|
+
*/
|
|
3279
|
+
declare function createControlPlaneTenantMembersAdapter(options: ControlPlaneTenantMembersOptions): TenantMembersBackend;
|
|
3280
|
+
|
|
3281
|
+
/**
|
|
3282
|
+
* The HTTP contract shared by the control-plane `tenant-members` resource
|
|
3283
|
+
* (`createTenantMembersControlPlaneApp`) and the remote client that calls it
|
|
3284
|
+
* (`createControlPlaneTenantMembersAdapter`). Keeping the paths and body shapes
|
|
3285
|
+
* in one place is what keeps the two ends from drifting.
|
|
3286
|
+
*/
|
|
3287
|
+
declare const CONTROL_PLANE_TENANT_MEMBERS_PATH = "/api/v2/proxy/control-plane/tenant-members";
|
|
3288
|
+
|
|
2726
3289
|
interface ServiceTokenResponse {
|
|
2727
3290
|
access_token: string;
|
|
2728
3291
|
token_type: "Bearer";
|
|
@@ -2984,6 +3547,20 @@ interface VerifyControlPlaneTokenOptions {
|
|
|
2984
3547
|
* `proxy:resolve_host`.
|
|
2985
3548
|
*/
|
|
2986
3549
|
requiredScope?: string | string[];
|
|
3550
|
+
/**
|
|
3551
|
+
* Optional predicate consulted IN ADDITION to `expectedIssuers`, for issuers
|
|
3552
|
+
* that can't be enumerated ahead of time — specifically a deployment's own
|
|
3553
|
+
* Workers-for-Platforms tenant subdomains (`https://{tenant}.{host}/`), whose
|
|
3554
|
+
* per-tenant control-plane credential the accompanying `jwksFetch` resolves
|
|
3555
|
+
* locally (see #1139).
|
|
3556
|
+
*
|
|
3557
|
+
* Like `expectedIssuers`, it runs BEFORE the JWKS fetch, so it still gates
|
|
3558
|
+
* where the verifier will fetch keys from: return `true` only for issuer
|
|
3559
|
+
* hosts you actually serve. The signature must still verify against the
|
|
3560
|
+
* resolved key, so this does not broaden trust beyond "a caller holding that
|
|
3561
|
+
* tenant's registered private key."
|
|
3562
|
+
*/
|
|
3563
|
+
isTrustedIssuer?: (iss: string) => boolean;
|
|
2987
3564
|
}
|
|
2988
3565
|
/**
|
|
2989
3566
|
* Verify a bearer token for the proxy control plane. Returns `{ ok: true }`
|
|
@@ -3449,8 +4026,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3449
4026
|
$get: {
|
|
3450
4027
|
input: {
|
|
3451
4028
|
query: {
|
|
3452
|
-
include_password_hashes?: "
|
|
3453
|
-
gzip?: "
|
|
4029
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
4030
|
+
gzip?: "false" | "true" | undefined;
|
|
3454
4031
|
};
|
|
3455
4032
|
} & {
|
|
3456
4033
|
header: {
|
|
@@ -3463,8 +4040,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3463
4040
|
} | {
|
|
3464
4041
|
input: {
|
|
3465
4042
|
query: {
|
|
3466
|
-
include_password_hashes?: "
|
|
3467
|
-
gzip?: "
|
|
4043
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
4044
|
+
gzip?: "false" | "true" | undefined;
|
|
3468
4045
|
};
|
|
3469
4046
|
} & {
|
|
3470
4047
|
header: {
|
|
@@ -3483,7 +4060,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3483
4060
|
$post: {
|
|
3484
4061
|
input: {
|
|
3485
4062
|
query: {
|
|
3486
|
-
include_password_hashes?: "
|
|
4063
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
3487
4064
|
};
|
|
3488
4065
|
} & {
|
|
3489
4066
|
header: {
|
|
@@ -3537,7 +4114,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3537
4114
|
};
|
|
3538
4115
|
} & {
|
|
3539
4116
|
json: {
|
|
3540
|
-
type: "
|
|
4117
|
+
type: "email" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
3541
4118
|
phone_number?: string | undefined;
|
|
3542
4119
|
totp_secret?: string | undefined;
|
|
3543
4120
|
credential_id?: string | undefined;
|
|
@@ -3677,7 +4254,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3677
4254
|
};
|
|
3678
4255
|
};
|
|
3679
4256
|
output: {
|
|
3680
|
-
name: "
|
|
4257
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3681
4258
|
enabled: boolean;
|
|
3682
4259
|
trial_expired?: boolean | undefined;
|
|
3683
4260
|
}[];
|
|
@@ -3832,7 +4409,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3832
4409
|
$get: {
|
|
3833
4410
|
input: {
|
|
3834
4411
|
param: {
|
|
3835
|
-
factor_name: "
|
|
4412
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3836
4413
|
};
|
|
3837
4414
|
} & {
|
|
3838
4415
|
header: {
|
|
@@ -3840,7 +4417,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3840
4417
|
};
|
|
3841
4418
|
};
|
|
3842
4419
|
output: {
|
|
3843
|
-
name: "
|
|
4420
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3844
4421
|
enabled: boolean;
|
|
3845
4422
|
trial_expired?: boolean | undefined;
|
|
3846
4423
|
};
|
|
@@ -3853,7 +4430,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3853
4430
|
$put: {
|
|
3854
4431
|
input: {
|
|
3855
4432
|
param: {
|
|
3856
|
-
factor_name: "
|
|
4433
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3857
4434
|
};
|
|
3858
4435
|
} & {
|
|
3859
4436
|
header: {
|
|
@@ -3865,7 +4442,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3865
4442
|
};
|
|
3866
4443
|
};
|
|
3867
4444
|
output: {
|
|
3868
|
-
name: "
|
|
4445
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3869
4446
|
enabled: boolean;
|
|
3870
4447
|
trial_expired?: boolean | undefined;
|
|
3871
4448
|
};
|
|
@@ -4636,20 +5213,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4636
5213
|
};
|
|
4637
5214
|
} & {
|
|
4638
5215
|
json: {
|
|
4639
|
-
client_id: string;
|
|
4640
|
-
inviter: {
|
|
4641
|
-
name?: string | undefined;
|
|
4642
|
-
};
|
|
4643
5216
|
invitee: {
|
|
4644
5217
|
email?: string | undefined;
|
|
4645
5218
|
};
|
|
5219
|
+
inviter: {
|
|
5220
|
+
name?: string | undefined;
|
|
5221
|
+
};
|
|
5222
|
+
client_id: string;
|
|
4646
5223
|
id?: string | undefined;
|
|
5224
|
+
roles?: string[] | undefined;
|
|
5225
|
+
send_invitation_email?: boolean | undefined;
|
|
5226
|
+
ttl_sec?: number | undefined;
|
|
4647
5227
|
connection_id?: string | undefined;
|
|
4648
5228
|
app_metadata?: Record<string, any> | undefined;
|
|
4649
5229
|
user_metadata?: Record<string, any> | undefined;
|
|
4650
|
-
roles?: string[] | undefined;
|
|
4651
|
-
ttl_sec?: number | undefined;
|
|
4652
|
-
send_invitation_email?: boolean | undefined;
|
|
4653
5230
|
};
|
|
4654
5231
|
};
|
|
4655
5232
|
output: {
|
|
@@ -5404,8 +5981,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5404
5981
|
};
|
|
5405
5982
|
} & {
|
|
5406
5983
|
query: {
|
|
5407
|
-
from?: string | undefined;
|
|
5408
5984
|
page?: string | undefined;
|
|
5985
|
+
from?: string | undefined;
|
|
5409
5986
|
include_totals?: string | undefined;
|
|
5410
5987
|
per_page?: string | undefined;
|
|
5411
5988
|
take?: string | undefined;
|
|
@@ -6129,7 +6706,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6129
6706
|
hint?: string | undefined;
|
|
6130
6707
|
messages?: {
|
|
6131
6708
|
text: string;
|
|
6132
|
-
type: "
|
|
6709
|
+
type: "success" | "error" | "info" | "warning";
|
|
6133
6710
|
id?: number | undefined;
|
|
6134
6711
|
}[] | undefined;
|
|
6135
6712
|
required?: boolean | undefined;
|
|
@@ -6147,7 +6724,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6147
6724
|
hint?: string | undefined;
|
|
6148
6725
|
messages?: {
|
|
6149
6726
|
text: string;
|
|
6150
|
-
type: "
|
|
6727
|
+
type: "success" | "error" | "info" | "warning";
|
|
6151
6728
|
id?: number | undefined;
|
|
6152
6729
|
}[] | undefined;
|
|
6153
6730
|
required?: boolean | undefined;
|
|
@@ -6171,7 +6748,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6171
6748
|
hint?: string | undefined;
|
|
6172
6749
|
messages?: {
|
|
6173
6750
|
text: string;
|
|
6174
|
-
type: "
|
|
6751
|
+
type: "success" | "error" | "info" | "warning";
|
|
6175
6752
|
id?: number | undefined;
|
|
6176
6753
|
}[] | undefined;
|
|
6177
6754
|
required?: boolean | undefined;
|
|
@@ -6195,7 +6772,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6195
6772
|
hint?: string | undefined;
|
|
6196
6773
|
messages?: {
|
|
6197
6774
|
text: string;
|
|
6198
|
-
type: "
|
|
6775
|
+
type: "success" | "error" | "info" | "warning";
|
|
6199
6776
|
id?: number | undefined;
|
|
6200
6777
|
}[] | undefined;
|
|
6201
6778
|
required?: boolean | undefined;
|
|
@@ -6219,7 +6796,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6219
6796
|
hint?: string | undefined;
|
|
6220
6797
|
messages?: {
|
|
6221
6798
|
text: string;
|
|
6222
|
-
type: "
|
|
6799
|
+
type: "success" | "error" | "info" | "warning";
|
|
6223
6800
|
id?: number | undefined;
|
|
6224
6801
|
}[] | undefined;
|
|
6225
6802
|
required?: boolean | undefined;
|
|
@@ -6248,7 +6825,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6248
6825
|
hint?: string | undefined;
|
|
6249
6826
|
messages?: {
|
|
6250
6827
|
text: string;
|
|
6251
|
-
type: "
|
|
6828
|
+
type: "success" | "error" | "info" | "warning";
|
|
6252
6829
|
id?: number | undefined;
|
|
6253
6830
|
}[] | undefined;
|
|
6254
6831
|
required?: boolean | undefined;
|
|
@@ -6263,7 +6840,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6263
6840
|
hint?: string | undefined;
|
|
6264
6841
|
messages?: {
|
|
6265
6842
|
text: string;
|
|
6266
|
-
type: "
|
|
6843
|
+
type: "success" | "error" | "info" | "warning";
|
|
6267
6844
|
id?: number | undefined;
|
|
6268
6845
|
}[] | undefined;
|
|
6269
6846
|
required?: boolean | undefined;
|
|
@@ -6284,7 +6861,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6284
6861
|
hint?: string | undefined;
|
|
6285
6862
|
messages?: {
|
|
6286
6863
|
text: string;
|
|
6287
|
-
type: "
|
|
6864
|
+
type: "success" | "error" | "info" | "warning";
|
|
6288
6865
|
id?: number | undefined;
|
|
6289
6866
|
}[] | undefined;
|
|
6290
6867
|
required?: boolean | undefined;
|
|
@@ -6309,7 +6886,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6309
6886
|
hint?: string | undefined;
|
|
6310
6887
|
messages?: {
|
|
6311
6888
|
text: string;
|
|
6312
|
-
type: "
|
|
6889
|
+
type: "success" | "error" | "info" | "warning";
|
|
6313
6890
|
id?: number | undefined;
|
|
6314
6891
|
}[] | undefined;
|
|
6315
6892
|
required?: boolean | undefined;
|
|
@@ -6328,7 +6905,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6328
6905
|
hint?: string | undefined;
|
|
6329
6906
|
messages?: {
|
|
6330
6907
|
text: string;
|
|
6331
|
-
type: "
|
|
6908
|
+
type: "success" | "error" | "info" | "warning";
|
|
6332
6909
|
id?: number | undefined;
|
|
6333
6910
|
}[] | undefined;
|
|
6334
6911
|
required?: boolean | undefined;
|
|
@@ -6348,7 +6925,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6348
6925
|
hint?: string | undefined;
|
|
6349
6926
|
messages?: {
|
|
6350
6927
|
text: string;
|
|
6351
|
-
type: "
|
|
6928
|
+
type: "success" | "error" | "info" | "warning";
|
|
6352
6929
|
id?: number | undefined;
|
|
6353
6930
|
}[] | undefined;
|
|
6354
6931
|
required?: boolean | undefined;
|
|
@@ -6367,7 +6944,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6367
6944
|
hint?: string | undefined;
|
|
6368
6945
|
messages?: {
|
|
6369
6946
|
text: string;
|
|
6370
|
-
type: "
|
|
6947
|
+
type: "success" | "error" | "info" | "warning";
|
|
6371
6948
|
id?: number | undefined;
|
|
6372
6949
|
}[] | undefined;
|
|
6373
6950
|
required?: boolean | undefined;
|
|
@@ -6389,7 +6966,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6389
6966
|
hint?: string | undefined;
|
|
6390
6967
|
messages?: {
|
|
6391
6968
|
text: string;
|
|
6392
|
-
type: "
|
|
6969
|
+
type: "success" | "error" | "info" | "warning";
|
|
6393
6970
|
id?: number | undefined;
|
|
6394
6971
|
}[] | undefined;
|
|
6395
6972
|
required?: boolean | undefined;
|
|
@@ -6411,7 +6988,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6411
6988
|
hint?: string | undefined;
|
|
6412
6989
|
messages?: {
|
|
6413
6990
|
text: string;
|
|
6414
|
-
type: "
|
|
6991
|
+
type: "success" | "error" | "info" | "warning";
|
|
6415
6992
|
id?: number | undefined;
|
|
6416
6993
|
}[] | undefined;
|
|
6417
6994
|
required?: boolean | undefined;
|
|
@@ -6430,7 +7007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6430
7007
|
hint?: string | undefined;
|
|
6431
7008
|
messages?: {
|
|
6432
7009
|
text: string;
|
|
6433
|
-
type: "
|
|
7010
|
+
type: "success" | "error" | "info" | "warning";
|
|
6434
7011
|
id?: number | undefined;
|
|
6435
7012
|
}[] | undefined;
|
|
6436
7013
|
required?: boolean | undefined;
|
|
@@ -6455,7 +7032,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6455
7032
|
hint?: string | undefined;
|
|
6456
7033
|
messages?: {
|
|
6457
7034
|
text: string;
|
|
6458
|
-
type: "
|
|
7035
|
+
type: "success" | "error" | "info" | "warning";
|
|
6459
7036
|
id?: number | undefined;
|
|
6460
7037
|
}[] | undefined;
|
|
6461
7038
|
required?: boolean | undefined;
|
|
@@ -6476,7 +7053,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6476
7053
|
hint?: string | undefined;
|
|
6477
7054
|
messages?: {
|
|
6478
7055
|
text: string;
|
|
6479
|
-
type: "
|
|
7056
|
+
type: "success" | "error" | "info" | "warning";
|
|
6480
7057
|
id?: number | undefined;
|
|
6481
7058
|
}[] | undefined;
|
|
6482
7059
|
required?: boolean | undefined;
|
|
@@ -6497,7 +7074,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6497
7074
|
hint?: string | undefined;
|
|
6498
7075
|
messages?: {
|
|
6499
7076
|
text: string;
|
|
6500
|
-
type: "
|
|
7077
|
+
type: "success" | "error" | "info" | "warning";
|
|
6501
7078
|
id?: number | undefined;
|
|
6502
7079
|
}[] | undefined;
|
|
6503
7080
|
required?: boolean | undefined;
|
|
@@ -6730,7 +7307,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6730
7307
|
hint?: string | undefined;
|
|
6731
7308
|
messages?: {
|
|
6732
7309
|
text: string;
|
|
6733
|
-
type: "
|
|
7310
|
+
type: "success" | "error" | "info" | "warning";
|
|
6734
7311
|
id?: number | undefined;
|
|
6735
7312
|
}[] | undefined;
|
|
6736
7313
|
required?: boolean | undefined;
|
|
@@ -6748,7 +7325,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6748
7325
|
hint?: string | undefined;
|
|
6749
7326
|
messages?: {
|
|
6750
7327
|
text: string;
|
|
6751
|
-
type: "
|
|
7328
|
+
type: "success" | "error" | "info" | "warning";
|
|
6752
7329
|
id?: number | undefined;
|
|
6753
7330
|
}[] | undefined;
|
|
6754
7331
|
required?: boolean | undefined;
|
|
@@ -6772,7 +7349,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6772
7349
|
hint?: string | undefined;
|
|
6773
7350
|
messages?: {
|
|
6774
7351
|
text: string;
|
|
6775
|
-
type: "
|
|
7352
|
+
type: "success" | "error" | "info" | "warning";
|
|
6776
7353
|
id?: number | undefined;
|
|
6777
7354
|
}[] | undefined;
|
|
6778
7355
|
required?: boolean | undefined;
|
|
@@ -6796,7 +7373,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6796
7373
|
hint?: string | undefined;
|
|
6797
7374
|
messages?: {
|
|
6798
7375
|
text: string;
|
|
6799
|
-
type: "
|
|
7376
|
+
type: "success" | "error" | "info" | "warning";
|
|
6800
7377
|
id?: number | undefined;
|
|
6801
7378
|
}[] | undefined;
|
|
6802
7379
|
required?: boolean | undefined;
|
|
@@ -6820,7 +7397,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6820
7397
|
hint?: string | undefined;
|
|
6821
7398
|
messages?: {
|
|
6822
7399
|
text: string;
|
|
6823
|
-
type: "
|
|
7400
|
+
type: "success" | "error" | "info" | "warning";
|
|
6824
7401
|
id?: number | undefined;
|
|
6825
7402
|
}[] | undefined;
|
|
6826
7403
|
required?: boolean | undefined;
|
|
@@ -6849,7 +7426,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6849
7426
|
hint?: string | undefined;
|
|
6850
7427
|
messages?: {
|
|
6851
7428
|
text: string;
|
|
6852
|
-
type: "
|
|
7429
|
+
type: "success" | "error" | "info" | "warning";
|
|
6853
7430
|
id?: number | undefined;
|
|
6854
7431
|
}[] | undefined;
|
|
6855
7432
|
required?: boolean | undefined;
|
|
@@ -6864,7 +7441,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6864
7441
|
hint?: string | undefined;
|
|
6865
7442
|
messages?: {
|
|
6866
7443
|
text: string;
|
|
6867
|
-
type: "
|
|
7444
|
+
type: "success" | "error" | "info" | "warning";
|
|
6868
7445
|
id?: number | undefined;
|
|
6869
7446
|
}[] | undefined;
|
|
6870
7447
|
required?: boolean | undefined;
|
|
@@ -6885,7 +7462,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6885
7462
|
hint?: string | undefined;
|
|
6886
7463
|
messages?: {
|
|
6887
7464
|
text: string;
|
|
6888
|
-
type: "
|
|
7465
|
+
type: "success" | "error" | "info" | "warning";
|
|
6889
7466
|
id?: number | undefined;
|
|
6890
7467
|
}[] | undefined;
|
|
6891
7468
|
required?: boolean | undefined;
|
|
@@ -6910,7 +7487,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6910
7487
|
hint?: string | undefined;
|
|
6911
7488
|
messages?: {
|
|
6912
7489
|
text: string;
|
|
6913
|
-
type: "
|
|
7490
|
+
type: "success" | "error" | "info" | "warning";
|
|
6914
7491
|
id?: number | undefined;
|
|
6915
7492
|
}[] | undefined;
|
|
6916
7493
|
required?: boolean | undefined;
|
|
@@ -6929,7 +7506,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6929
7506
|
hint?: string | undefined;
|
|
6930
7507
|
messages?: {
|
|
6931
7508
|
text: string;
|
|
6932
|
-
type: "
|
|
7509
|
+
type: "success" | "error" | "info" | "warning";
|
|
6933
7510
|
id?: number | undefined;
|
|
6934
7511
|
}[] | undefined;
|
|
6935
7512
|
required?: boolean | undefined;
|
|
@@ -6949,7 +7526,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6949
7526
|
hint?: string | undefined;
|
|
6950
7527
|
messages?: {
|
|
6951
7528
|
text: string;
|
|
6952
|
-
type: "
|
|
7529
|
+
type: "success" | "error" | "info" | "warning";
|
|
6953
7530
|
id?: number | undefined;
|
|
6954
7531
|
}[] | undefined;
|
|
6955
7532
|
required?: boolean | undefined;
|
|
@@ -6968,7 +7545,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6968
7545
|
hint?: string | undefined;
|
|
6969
7546
|
messages?: {
|
|
6970
7547
|
text: string;
|
|
6971
|
-
type: "
|
|
7548
|
+
type: "success" | "error" | "info" | "warning";
|
|
6972
7549
|
id?: number | undefined;
|
|
6973
7550
|
}[] | undefined;
|
|
6974
7551
|
required?: boolean | undefined;
|
|
@@ -6990,7 +7567,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6990
7567
|
hint?: string | undefined;
|
|
6991
7568
|
messages?: {
|
|
6992
7569
|
text: string;
|
|
6993
|
-
type: "
|
|
7570
|
+
type: "success" | "error" | "info" | "warning";
|
|
6994
7571
|
id?: number | undefined;
|
|
6995
7572
|
}[] | undefined;
|
|
6996
7573
|
required?: boolean | undefined;
|
|
@@ -7012,7 +7589,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7012
7589
|
hint?: string | undefined;
|
|
7013
7590
|
messages?: {
|
|
7014
7591
|
text: string;
|
|
7015
|
-
type: "
|
|
7592
|
+
type: "success" | "error" | "info" | "warning";
|
|
7016
7593
|
id?: number | undefined;
|
|
7017
7594
|
}[] | undefined;
|
|
7018
7595
|
required?: boolean | undefined;
|
|
@@ -7031,7 +7608,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7031
7608
|
hint?: string | undefined;
|
|
7032
7609
|
messages?: {
|
|
7033
7610
|
text: string;
|
|
7034
|
-
type: "
|
|
7611
|
+
type: "success" | "error" | "info" | "warning";
|
|
7035
7612
|
id?: number | undefined;
|
|
7036
7613
|
}[] | undefined;
|
|
7037
7614
|
required?: boolean | undefined;
|
|
@@ -7056,7 +7633,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7056
7633
|
hint?: string | undefined;
|
|
7057
7634
|
messages?: {
|
|
7058
7635
|
text: string;
|
|
7059
|
-
type: "
|
|
7636
|
+
type: "success" | "error" | "info" | "warning";
|
|
7060
7637
|
id?: number | undefined;
|
|
7061
7638
|
}[] | undefined;
|
|
7062
7639
|
required?: boolean | undefined;
|
|
@@ -7077,7 +7654,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7077
7654
|
hint?: string | undefined;
|
|
7078
7655
|
messages?: {
|
|
7079
7656
|
text: string;
|
|
7080
|
-
type: "
|
|
7657
|
+
type: "success" | "error" | "info" | "warning";
|
|
7081
7658
|
id?: number | undefined;
|
|
7082
7659
|
}[] | undefined;
|
|
7083
7660
|
required?: boolean | undefined;
|
|
@@ -7098,7 +7675,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7098
7675
|
hint?: string | undefined;
|
|
7099
7676
|
messages?: {
|
|
7100
7677
|
text: string;
|
|
7101
|
-
type: "
|
|
7678
|
+
type: "success" | "error" | "info" | "warning";
|
|
7102
7679
|
id?: number | undefined;
|
|
7103
7680
|
}[] | undefined;
|
|
7104
7681
|
required?: boolean | undefined;
|
|
@@ -7347,7 +7924,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7347
7924
|
hint?: string | undefined;
|
|
7348
7925
|
messages?: {
|
|
7349
7926
|
text: string;
|
|
7350
|
-
type: "
|
|
7927
|
+
type: "success" | "error" | "info" | "warning";
|
|
7351
7928
|
id?: number | undefined;
|
|
7352
7929
|
}[] | undefined;
|
|
7353
7930
|
required?: boolean | undefined;
|
|
@@ -7365,7 +7942,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7365
7942
|
hint?: string | undefined;
|
|
7366
7943
|
messages?: {
|
|
7367
7944
|
text: string;
|
|
7368
|
-
type: "
|
|
7945
|
+
type: "success" | "error" | "info" | "warning";
|
|
7369
7946
|
id?: number | undefined;
|
|
7370
7947
|
}[] | undefined;
|
|
7371
7948
|
required?: boolean | undefined;
|
|
@@ -7389,7 +7966,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7389
7966
|
hint?: string | undefined;
|
|
7390
7967
|
messages?: {
|
|
7391
7968
|
text: string;
|
|
7392
|
-
type: "
|
|
7969
|
+
type: "success" | "error" | "info" | "warning";
|
|
7393
7970
|
id?: number | undefined;
|
|
7394
7971
|
}[] | undefined;
|
|
7395
7972
|
required?: boolean | undefined;
|
|
@@ -7413,7 +7990,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7413
7990
|
hint?: string | undefined;
|
|
7414
7991
|
messages?: {
|
|
7415
7992
|
text: string;
|
|
7416
|
-
type: "
|
|
7993
|
+
type: "success" | "error" | "info" | "warning";
|
|
7417
7994
|
id?: number | undefined;
|
|
7418
7995
|
}[] | undefined;
|
|
7419
7996
|
required?: boolean | undefined;
|
|
@@ -7437,7 +8014,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7437
8014
|
hint?: string | undefined;
|
|
7438
8015
|
messages?: {
|
|
7439
8016
|
text: string;
|
|
7440
|
-
type: "
|
|
8017
|
+
type: "success" | "error" | "info" | "warning";
|
|
7441
8018
|
id?: number | undefined;
|
|
7442
8019
|
}[] | undefined;
|
|
7443
8020
|
required?: boolean | undefined;
|
|
@@ -7466,7 +8043,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7466
8043
|
hint?: string | undefined;
|
|
7467
8044
|
messages?: {
|
|
7468
8045
|
text: string;
|
|
7469
|
-
type: "
|
|
8046
|
+
type: "success" | "error" | "info" | "warning";
|
|
7470
8047
|
id?: number | undefined;
|
|
7471
8048
|
}[] | undefined;
|
|
7472
8049
|
required?: boolean | undefined;
|
|
@@ -7481,7 +8058,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7481
8058
|
hint?: string | undefined;
|
|
7482
8059
|
messages?: {
|
|
7483
8060
|
text: string;
|
|
7484
|
-
type: "
|
|
8061
|
+
type: "success" | "error" | "info" | "warning";
|
|
7485
8062
|
id?: number | undefined;
|
|
7486
8063
|
}[] | undefined;
|
|
7487
8064
|
required?: boolean | undefined;
|
|
@@ -7502,7 +8079,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7502
8079
|
hint?: string | undefined;
|
|
7503
8080
|
messages?: {
|
|
7504
8081
|
text: string;
|
|
7505
|
-
type: "
|
|
8082
|
+
type: "success" | "error" | "info" | "warning";
|
|
7506
8083
|
id?: number | undefined;
|
|
7507
8084
|
}[] | undefined;
|
|
7508
8085
|
required?: boolean | undefined;
|
|
@@ -7527,7 +8104,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7527
8104
|
hint?: string | undefined;
|
|
7528
8105
|
messages?: {
|
|
7529
8106
|
text: string;
|
|
7530
|
-
type: "
|
|
8107
|
+
type: "success" | "error" | "info" | "warning";
|
|
7531
8108
|
id?: number | undefined;
|
|
7532
8109
|
}[] | undefined;
|
|
7533
8110
|
required?: boolean | undefined;
|
|
@@ -7546,7 +8123,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7546
8123
|
hint?: string | undefined;
|
|
7547
8124
|
messages?: {
|
|
7548
8125
|
text: string;
|
|
7549
|
-
type: "
|
|
8126
|
+
type: "success" | "error" | "info" | "warning";
|
|
7550
8127
|
id?: number | undefined;
|
|
7551
8128
|
}[] | undefined;
|
|
7552
8129
|
required?: boolean | undefined;
|
|
@@ -7566,7 +8143,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7566
8143
|
hint?: string | undefined;
|
|
7567
8144
|
messages?: {
|
|
7568
8145
|
text: string;
|
|
7569
|
-
type: "
|
|
8146
|
+
type: "success" | "error" | "info" | "warning";
|
|
7570
8147
|
id?: number | undefined;
|
|
7571
8148
|
}[] | undefined;
|
|
7572
8149
|
required?: boolean | undefined;
|
|
@@ -7585,7 +8162,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7585
8162
|
hint?: string | undefined;
|
|
7586
8163
|
messages?: {
|
|
7587
8164
|
text: string;
|
|
7588
|
-
type: "
|
|
8165
|
+
type: "success" | "error" | "info" | "warning";
|
|
7589
8166
|
id?: number | undefined;
|
|
7590
8167
|
}[] | undefined;
|
|
7591
8168
|
required?: boolean | undefined;
|
|
@@ -7607,7 +8184,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7607
8184
|
hint?: string | undefined;
|
|
7608
8185
|
messages?: {
|
|
7609
8186
|
text: string;
|
|
7610
|
-
type: "
|
|
8187
|
+
type: "success" | "error" | "info" | "warning";
|
|
7611
8188
|
id?: number | undefined;
|
|
7612
8189
|
}[] | undefined;
|
|
7613
8190
|
required?: boolean | undefined;
|
|
@@ -7629,7 +8206,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7629
8206
|
hint?: string | undefined;
|
|
7630
8207
|
messages?: {
|
|
7631
8208
|
text: string;
|
|
7632
|
-
type: "
|
|
8209
|
+
type: "success" | "error" | "info" | "warning";
|
|
7633
8210
|
id?: number | undefined;
|
|
7634
8211
|
}[] | undefined;
|
|
7635
8212
|
required?: boolean | undefined;
|
|
@@ -7648,7 +8225,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7648
8225
|
hint?: string | undefined;
|
|
7649
8226
|
messages?: {
|
|
7650
8227
|
text: string;
|
|
7651
|
-
type: "
|
|
8228
|
+
type: "success" | "error" | "info" | "warning";
|
|
7652
8229
|
id?: number | undefined;
|
|
7653
8230
|
}[] | undefined;
|
|
7654
8231
|
required?: boolean | undefined;
|
|
@@ -7673,7 +8250,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7673
8250
|
hint?: string | undefined;
|
|
7674
8251
|
messages?: {
|
|
7675
8252
|
text: string;
|
|
7676
|
-
type: "
|
|
8253
|
+
type: "success" | "error" | "info" | "warning";
|
|
7677
8254
|
id?: number | undefined;
|
|
7678
8255
|
}[] | undefined;
|
|
7679
8256
|
required?: boolean | undefined;
|
|
@@ -7694,7 +8271,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7694
8271
|
hint?: string | undefined;
|
|
7695
8272
|
messages?: {
|
|
7696
8273
|
text: string;
|
|
7697
|
-
type: "
|
|
8274
|
+
type: "success" | "error" | "info" | "warning";
|
|
7698
8275
|
id?: number | undefined;
|
|
7699
8276
|
}[] | undefined;
|
|
7700
8277
|
required?: boolean | undefined;
|
|
@@ -7715,7 +8292,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7715
8292
|
hint?: string | undefined;
|
|
7716
8293
|
messages?: {
|
|
7717
8294
|
text: string;
|
|
7718
|
-
type: "
|
|
8295
|
+
type: "success" | "error" | "info" | "warning";
|
|
7719
8296
|
id?: number | undefined;
|
|
7720
8297
|
}[] | undefined;
|
|
7721
8298
|
required?: boolean | undefined;
|
|
@@ -7969,7 +8546,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7969
8546
|
hint?: string | undefined;
|
|
7970
8547
|
messages?: {
|
|
7971
8548
|
text: string;
|
|
7972
|
-
type: "
|
|
8549
|
+
type: "success" | "error" | "info" | "warning";
|
|
7973
8550
|
id?: number | undefined;
|
|
7974
8551
|
}[] | undefined;
|
|
7975
8552
|
required?: boolean | undefined;
|
|
@@ -7987,7 +8564,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7987
8564
|
hint?: string | undefined;
|
|
7988
8565
|
messages?: {
|
|
7989
8566
|
text: string;
|
|
7990
|
-
type: "
|
|
8567
|
+
type: "success" | "error" | "info" | "warning";
|
|
7991
8568
|
id?: number | undefined;
|
|
7992
8569
|
}[] | undefined;
|
|
7993
8570
|
required?: boolean | undefined;
|
|
@@ -8011,7 +8588,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8011
8588
|
hint?: string | undefined;
|
|
8012
8589
|
messages?: {
|
|
8013
8590
|
text: string;
|
|
8014
|
-
type: "
|
|
8591
|
+
type: "success" | "error" | "info" | "warning";
|
|
8015
8592
|
id?: number | undefined;
|
|
8016
8593
|
}[] | undefined;
|
|
8017
8594
|
required?: boolean | undefined;
|
|
@@ -8035,7 +8612,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8035
8612
|
hint?: string | undefined;
|
|
8036
8613
|
messages?: {
|
|
8037
8614
|
text: string;
|
|
8038
|
-
type: "
|
|
8615
|
+
type: "success" | "error" | "info" | "warning";
|
|
8039
8616
|
id?: number | undefined;
|
|
8040
8617
|
}[] | undefined;
|
|
8041
8618
|
required?: boolean | undefined;
|
|
@@ -8059,7 +8636,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8059
8636
|
hint?: string | undefined;
|
|
8060
8637
|
messages?: {
|
|
8061
8638
|
text: string;
|
|
8062
|
-
type: "
|
|
8639
|
+
type: "success" | "error" | "info" | "warning";
|
|
8063
8640
|
id?: number | undefined;
|
|
8064
8641
|
}[] | undefined;
|
|
8065
8642
|
required?: boolean | undefined;
|
|
@@ -8084,7 +8661,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8084
8661
|
hint?: string | undefined;
|
|
8085
8662
|
messages?: {
|
|
8086
8663
|
text: string;
|
|
8087
|
-
type: "
|
|
8664
|
+
type: "success" | "error" | "info" | "warning";
|
|
8088
8665
|
id?: number | undefined;
|
|
8089
8666
|
}[] | undefined;
|
|
8090
8667
|
required?: boolean | undefined;
|
|
@@ -8099,7 +8676,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8099
8676
|
hint?: string | undefined;
|
|
8100
8677
|
messages?: {
|
|
8101
8678
|
text: string;
|
|
8102
|
-
type: "
|
|
8679
|
+
type: "success" | "error" | "info" | "warning";
|
|
8103
8680
|
id?: number | undefined;
|
|
8104
8681
|
}[] | undefined;
|
|
8105
8682
|
required?: boolean | undefined;
|
|
@@ -8120,7 +8697,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8120
8697
|
hint?: string | undefined;
|
|
8121
8698
|
messages?: {
|
|
8122
8699
|
text: string;
|
|
8123
|
-
type: "
|
|
8700
|
+
type: "success" | "error" | "info" | "warning";
|
|
8124
8701
|
id?: number | undefined;
|
|
8125
8702
|
}[] | undefined;
|
|
8126
8703
|
required?: boolean | undefined;
|
|
@@ -8145,7 +8722,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8145
8722
|
hint?: string | undefined;
|
|
8146
8723
|
messages?: {
|
|
8147
8724
|
text: string;
|
|
8148
|
-
type: "
|
|
8725
|
+
type: "success" | "error" | "info" | "warning";
|
|
8149
8726
|
id?: number | undefined;
|
|
8150
8727
|
}[] | undefined;
|
|
8151
8728
|
required?: boolean | undefined;
|
|
@@ -8164,7 +8741,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8164
8741
|
hint?: string | undefined;
|
|
8165
8742
|
messages?: {
|
|
8166
8743
|
text: string;
|
|
8167
|
-
type: "
|
|
8744
|
+
type: "success" | "error" | "info" | "warning";
|
|
8168
8745
|
id?: number | undefined;
|
|
8169
8746
|
}[] | undefined;
|
|
8170
8747
|
required?: boolean | undefined;
|
|
@@ -8184,7 +8761,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8184
8761
|
hint?: string | undefined;
|
|
8185
8762
|
messages?: {
|
|
8186
8763
|
text: string;
|
|
8187
|
-
type: "
|
|
8764
|
+
type: "success" | "error" | "info" | "warning";
|
|
8188
8765
|
id?: number | undefined;
|
|
8189
8766
|
}[] | undefined;
|
|
8190
8767
|
required?: boolean | undefined;
|
|
@@ -8203,7 +8780,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8203
8780
|
hint?: string | undefined;
|
|
8204
8781
|
messages?: {
|
|
8205
8782
|
text: string;
|
|
8206
|
-
type: "
|
|
8783
|
+
type: "success" | "error" | "info" | "warning";
|
|
8207
8784
|
id?: number | undefined;
|
|
8208
8785
|
}[] | undefined;
|
|
8209
8786
|
required?: boolean | undefined;
|
|
@@ -8225,7 +8802,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8225
8802
|
hint?: string | undefined;
|
|
8226
8803
|
messages?: {
|
|
8227
8804
|
text: string;
|
|
8228
|
-
type: "
|
|
8805
|
+
type: "success" | "error" | "info" | "warning";
|
|
8229
8806
|
id?: number | undefined;
|
|
8230
8807
|
}[] | undefined;
|
|
8231
8808
|
required?: boolean | undefined;
|
|
@@ -8247,7 +8824,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8247
8824
|
hint?: string | undefined;
|
|
8248
8825
|
messages?: {
|
|
8249
8826
|
text: string;
|
|
8250
|
-
type: "
|
|
8827
|
+
type: "success" | "error" | "info" | "warning";
|
|
8251
8828
|
id?: number | undefined;
|
|
8252
8829
|
}[] | undefined;
|
|
8253
8830
|
required?: boolean | undefined;
|
|
@@ -8266,7 +8843,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8266
8843
|
hint?: string | undefined;
|
|
8267
8844
|
messages?: {
|
|
8268
8845
|
text: string;
|
|
8269
|
-
type: "
|
|
8846
|
+
type: "success" | "error" | "info" | "warning";
|
|
8270
8847
|
id?: number | undefined;
|
|
8271
8848
|
}[] | undefined;
|
|
8272
8849
|
required?: boolean | undefined;
|
|
@@ -8291,7 +8868,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8291
8868
|
hint?: string | undefined;
|
|
8292
8869
|
messages?: {
|
|
8293
8870
|
text: string;
|
|
8294
|
-
type: "
|
|
8871
|
+
type: "success" | "error" | "info" | "warning";
|
|
8295
8872
|
id?: number | undefined;
|
|
8296
8873
|
}[] | undefined;
|
|
8297
8874
|
required?: boolean | undefined;
|
|
@@ -8312,7 +8889,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8312
8889
|
hint?: string | undefined;
|
|
8313
8890
|
messages?: {
|
|
8314
8891
|
text: string;
|
|
8315
|
-
type: "
|
|
8892
|
+
type: "success" | "error" | "info" | "warning";
|
|
8316
8893
|
id?: number | undefined;
|
|
8317
8894
|
}[] | undefined;
|
|
8318
8895
|
required?: boolean | undefined;
|
|
@@ -8333,7 +8910,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8333
8910
|
hint?: string | undefined;
|
|
8334
8911
|
messages?: {
|
|
8335
8912
|
text: string;
|
|
8336
|
-
type: "
|
|
8913
|
+
type: "success" | "error" | "info" | "warning";
|
|
8337
8914
|
id?: number | undefined;
|
|
8338
8915
|
}[] | undefined;
|
|
8339
8916
|
required?: boolean | undefined;
|
|
@@ -8564,7 +9141,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8564
9141
|
hint?: string | undefined;
|
|
8565
9142
|
messages?: {
|
|
8566
9143
|
text: string;
|
|
8567
|
-
type: "
|
|
9144
|
+
type: "success" | "error" | "info" | "warning";
|
|
8568
9145
|
id?: number | undefined;
|
|
8569
9146
|
}[] | undefined;
|
|
8570
9147
|
required?: boolean | undefined;
|
|
@@ -8582,7 +9159,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8582
9159
|
hint?: string | undefined;
|
|
8583
9160
|
messages?: {
|
|
8584
9161
|
text: string;
|
|
8585
|
-
type: "
|
|
9162
|
+
type: "success" | "error" | "info" | "warning";
|
|
8586
9163
|
id?: number | undefined;
|
|
8587
9164
|
}[] | undefined;
|
|
8588
9165
|
required?: boolean | undefined;
|
|
@@ -8606,7 +9183,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8606
9183
|
hint?: string | undefined;
|
|
8607
9184
|
messages?: {
|
|
8608
9185
|
text: string;
|
|
8609
|
-
type: "
|
|
9186
|
+
type: "success" | "error" | "info" | "warning";
|
|
8610
9187
|
id?: number | undefined;
|
|
8611
9188
|
}[] | undefined;
|
|
8612
9189
|
required?: boolean | undefined;
|
|
@@ -8630,7 +9207,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8630
9207
|
hint?: string | undefined;
|
|
8631
9208
|
messages?: {
|
|
8632
9209
|
text: string;
|
|
8633
|
-
type: "
|
|
9210
|
+
type: "success" | "error" | "info" | "warning";
|
|
8634
9211
|
id?: number | undefined;
|
|
8635
9212
|
}[] | undefined;
|
|
8636
9213
|
required?: boolean | undefined;
|
|
@@ -8654,7 +9231,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8654
9231
|
hint?: string | undefined;
|
|
8655
9232
|
messages?: {
|
|
8656
9233
|
text: string;
|
|
8657
|
-
type: "
|
|
9234
|
+
type: "success" | "error" | "info" | "warning";
|
|
8658
9235
|
id?: number | undefined;
|
|
8659
9236
|
}[] | undefined;
|
|
8660
9237
|
required?: boolean | undefined;
|
|
@@ -8683,7 +9260,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8683
9260
|
hint?: string | undefined;
|
|
8684
9261
|
messages?: {
|
|
8685
9262
|
text: string;
|
|
8686
|
-
type: "
|
|
9263
|
+
type: "success" | "error" | "info" | "warning";
|
|
8687
9264
|
id?: number | undefined;
|
|
8688
9265
|
}[] | undefined;
|
|
8689
9266
|
required?: boolean | undefined;
|
|
@@ -8698,7 +9275,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8698
9275
|
hint?: string | undefined;
|
|
8699
9276
|
messages?: {
|
|
8700
9277
|
text: string;
|
|
8701
|
-
type: "
|
|
9278
|
+
type: "success" | "error" | "info" | "warning";
|
|
8702
9279
|
id?: number | undefined;
|
|
8703
9280
|
}[] | undefined;
|
|
8704
9281
|
required?: boolean | undefined;
|
|
@@ -8719,7 +9296,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8719
9296
|
hint?: string | undefined;
|
|
8720
9297
|
messages?: {
|
|
8721
9298
|
text: string;
|
|
8722
|
-
type: "
|
|
9299
|
+
type: "success" | "error" | "info" | "warning";
|
|
8723
9300
|
id?: number | undefined;
|
|
8724
9301
|
}[] | undefined;
|
|
8725
9302
|
required?: boolean | undefined;
|
|
@@ -8744,7 +9321,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8744
9321
|
hint?: string | undefined;
|
|
8745
9322
|
messages?: {
|
|
8746
9323
|
text: string;
|
|
8747
|
-
type: "
|
|
9324
|
+
type: "success" | "error" | "info" | "warning";
|
|
8748
9325
|
id?: number | undefined;
|
|
8749
9326
|
}[] | undefined;
|
|
8750
9327
|
required?: boolean | undefined;
|
|
@@ -8763,7 +9340,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8763
9340
|
hint?: string | undefined;
|
|
8764
9341
|
messages?: {
|
|
8765
9342
|
text: string;
|
|
8766
|
-
type: "
|
|
9343
|
+
type: "success" | "error" | "info" | "warning";
|
|
8767
9344
|
id?: number | undefined;
|
|
8768
9345
|
}[] | undefined;
|
|
8769
9346
|
required?: boolean | undefined;
|
|
@@ -8783,7 +9360,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8783
9360
|
hint?: string | undefined;
|
|
8784
9361
|
messages?: {
|
|
8785
9362
|
text: string;
|
|
8786
|
-
type: "
|
|
9363
|
+
type: "success" | "error" | "info" | "warning";
|
|
8787
9364
|
id?: number | undefined;
|
|
8788
9365
|
}[] | undefined;
|
|
8789
9366
|
required?: boolean | undefined;
|
|
@@ -8802,7 +9379,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8802
9379
|
hint?: string | undefined;
|
|
8803
9380
|
messages?: {
|
|
8804
9381
|
text: string;
|
|
8805
|
-
type: "
|
|
9382
|
+
type: "success" | "error" | "info" | "warning";
|
|
8806
9383
|
id?: number | undefined;
|
|
8807
9384
|
}[] | undefined;
|
|
8808
9385
|
required?: boolean | undefined;
|
|
@@ -8824,7 +9401,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8824
9401
|
hint?: string | undefined;
|
|
8825
9402
|
messages?: {
|
|
8826
9403
|
text: string;
|
|
8827
|
-
type: "
|
|
9404
|
+
type: "success" | "error" | "info" | "warning";
|
|
8828
9405
|
id?: number | undefined;
|
|
8829
9406
|
}[] | undefined;
|
|
8830
9407
|
required?: boolean | undefined;
|
|
@@ -8846,7 +9423,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8846
9423
|
hint?: string | undefined;
|
|
8847
9424
|
messages?: {
|
|
8848
9425
|
text: string;
|
|
8849
|
-
type: "
|
|
9426
|
+
type: "success" | "error" | "info" | "warning";
|
|
8850
9427
|
id?: number | undefined;
|
|
8851
9428
|
}[] | undefined;
|
|
8852
9429
|
required?: boolean | undefined;
|
|
@@ -8865,7 +9442,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8865
9442
|
hint?: string | undefined;
|
|
8866
9443
|
messages?: {
|
|
8867
9444
|
text: string;
|
|
8868
|
-
type: "
|
|
9445
|
+
type: "success" | "error" | "info" | "warning";
|
|
8869
9446
|
id?: number | undefined;
|
|
8870
9447
|
}[] | undefined;
|
|
8871
9448
|
required?: boolean | undefined;
|
|
@@ -8890,7 +9467,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8890
9467
|
hint?: string | undefined;
|
|
8891
9468
|
messages?: {
|
|
8892
9469
|
text: string;
|
|
8893
|
-
type: "
|
|
9470
|
+
type: "success" | "error" | "info" | "warning";
|
|
8894
9471
|
id?: number | undefined;
|
|
8895
9472
|
}[] | undefined;
|
|
8896
9473
|
required?: boolean | undefined;
|
|
@@ -8911,7 +9488,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8911
9488
|
hint?: string | undefined;
|
|
8912
9489
|
messages?: {
|
|
8913
9490
|
text: string;
|
|
8914
|
-
type: "
|
|
9491
|
+
type: "success" | "error" | "info" | "warning";
|
|
8915
9492
|
id?: number | undefined;
|
|
8916
9493
|
}[] | undefined;
|
|
8917
9494
|
required?: boolean | undefined;
|
|
@@ -8932,7 +9509,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8932
9509
|
hint?: string | undefined;
|
|
8933
9510
|
messages?: {
|
|
8934
9511
|
text: string;
|
|
8935
|
-
type: "
|
|
9512
|
+
type: "success" | "error" | "info" | "warning";
|
|
8936
9513
|
id?: number | undefined;
|
|
8937
9514
|
}[] | undefined;
|
|
8938
9515
|
required?: boolean | undefined;
|
|
@@ -9165,7 +9742,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9165
9742
|
hint?: string | undefined;
|
|
9166
9743
|
messages?: {
|
|
9167
9744
|
text: string;
|
|
9168
|
-
type: "
|
|
9745
|
+
type: "success" | "error" | "info" | "warning";
|
|
9169
9746
|
id?: number | undefined;
|
|
9170
9747
|
}[] | undefined;
|
|
9171
9748
|
required?: boolean | undefined;
|
|
@@ -9183,7 +9760,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9183
9760
|
hint?: string | undefined;
|
|
9184
9761
|
messages?: {
|
|
9185
9762
|
text: string;
|
|
9186
|
-
type: "
|
|
9763
|
+
type: "success" | "error" | "info" | "warning";
|
|
9187
9764
|
id?: number | undefined;
|
|
9188
9765
|
}[] | undefined;
|
|
9189
9766
|
required?: boolean | undefined;
|
|
@@ -9207,7 +9784,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9207
9784
|
hint?: string | undefined;
|
|
9208
9785
|
messages?: {
|
|
9209
9786
|
text: string;
|
|
9210
|
-
type: "
|
|
9787
|
+
type: "success" | "error" | "info" | "warning";
|
|
9211
9788
|
id?: number | undefined;
|
|
9212
9789
|
}[] | undefined;
|
|
9213
9790
|
required?: boolean | undefined;
|
|
@@ -9231,7 +9808,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9231
9808
|
hint?: string | undefined;
|
|
9232
9809
|
messages?: {
|
|
9233
9810
|
text: string;
|
|
9234
|
-
type: "
|
|
9811
|
+
type: "success" | "error" | "info" | "warning";
|
|
9235
9812
|
id?: number | undefined;
|
|
9236
9813
|
}[] | undefined;
|
|
9237
9814
|
required?: boolean | undefined;
|
|
@@ -9255,7 +9832,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9255
9832
|
hint?: string | undefined;
|
|
9256
9833
|
messages?: {
|
|
9257
9834
|
text: string;
|
|
9258
|
-
type: "
|
|
9835
|
+
type: "success" | "error" | "info" | "warning";
|
|
9259
9836
|
id?: number | undefined;
|
|
9260
9837
|
}[] | undefined;
|
|
9261
9838
|
required?: boolean | undefined;
|
|
@@ -9280,7 +9857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9280
9857
|
hint?: string | undefined;
|
|
9281
9858
|
messages?: {
|
|
9282
9859
|
text: string;
|
|
9283
|
-
type: "
|
|
9860
|
+
type: "success" | "error" | "info" | "warning";
|
|
9284
9861
|
id?: number | undefined;
|
|
9285
9862
|
}[] | undefined;
|
|
9286
9863
|
required?: boolean | undefined;
|
|
@@ -9295,7 +9872,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9295
9872
|
hint?: string | undefined;
|
|
9296
9873
|
messages?: {
|
|
9297
9874
|
text: string;
|
|
9298
|
-
type: "
|
|
9875
|
+
type: "success" | "error" | "info" | "warning";
|
|
9299
9876
|
id?: number | undefined;
|
|
9300
9877
|
}[] | undefined;
|
|
9301
9878
|
required?: boolean | undefined;
|
|
@@ -9316,7 +9893,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9316
9893
|
hint?: string | undefined;
|
|
9317
9894
|
messages?: {
|
|
9318
9895
|
text: string;
|
|
9319
|
-
type: "
|
|
9896
|
+
type: "success" | "error" | "info" | "warning";
|
|
9320
9897
|
id?: number | undefined;
|
|
9321
9898
|
}[] | undefined;
|
|
9322
9899
|
required?: boolean | undefined;
|
|
@@ -9341,7 +9918,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9341
9918
|
hint?: string | undefined;
|
|
9342
9919
|
messages?: {
|
|
9343
9920
|
text: string;
|
|
9344
|
-
type: "
|
|
9921
|
+
type: "success" | "error" | "info" | "warning";
|
|
9345
9922
|
id?: number | undefined;
|
|
9346
9923
|
}[] | undefined;
|
|
9347
9924
|
required?: boolean | undefined;
|
|
@@ -9360,7 +9937,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9360
9937
|
hint?: string | undefined;
|
|
9361
9938
|
messages?: {
|
|
9362
9939
|
text: string;
|
|
9363
|
-
type: "
|
|
9940
|
+
type: "success" | "error" | "info" | "warning";
|
|
9364
9941
|
id?: number | undefined;
|
|
9365
9942
|
}[] | undefined;
|
|
9366
9943
|
required?: boolean | undefined;
|
|
@@ -9380,7 +9957,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9380
9957
|
hint?: string | undefined;
|
|
9381
9958
|
messages?: {
|
|
9382
9959
|
text: string;
|
|
9383
|
-
type: "
|
|
9960
|
+
type: "success" | "error" | "info" | "warning";
|
|
9384
9961
|
id?: number | undefined;
|
|
9385
9962
|
}[] | undefined;
|
|
9386
9963
|
required?: boolean | undefined;
|
|
@@ -9399,7 +9976,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9399
9976
|
hint?: string | undefined;
|
|
9400
9977
|
messages?: {
|
|
9401
9978
|
text: string;
|
|
9402
|
-
type: "
|
|
9979
|
+
type: "success" | "error" | "info" | "warning";
|
|
9403
9980
|
id?: number | undefined;
|
|
9404
9981
|
}[] | undefined;
|
|
9405
9982
|
required?: boolean | undefined;
|
|
@@ -9421,7 +9998,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9421
9998
|
hint?: string | undefined;
|
|
9422
9999
|
messages?: {
|
|
9423
10000
|
text: string;
|
|
9424
|
-
type: "
|
|
10001
|
+
type: "success" | "error" | "info" | "warning";
|
|
9425
10002
|
id?: number | undefined;
|
|
9426
10003
|
}[] | undefined;
|
|
9427
10004
|
required?: boolean | undefined;
|
|
@@ -9443,7 +10020,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9443
10020
|
hint?: string | undefined;
|
|
9444
10021
|
messages?: {
|
|
9445
10022
|
text: string;
|
|
9446
|
-
type: "
|
|
10023
|
+
type: "success" | "error" | "info" | "warning";
|
|
9447
10024
|
id?: number | undefined;
|
|
9448
10025
|
}[] | undefined;
|
|
9449
10026
|
required?: boolean | undefined;
|
|
@@ -9462,7 +10039,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9462
10039
|
hint?: string | undefined;
|
|
9463
10040
|
messages?: {
|
|
9464
10041
|
text: string;
|
|
9465
|
-
type: "
|
|
10042
|
+
type: "success" | "error" | "info" | "warning";
|
|
9466
10043
|
id?: number | undefined;
|
|
9467
10044
|
}[] | undefined;
|
|
9468
10045
|
required?: boolean | undefined;
|
|
@@ -9487,7 +10064,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9487
10064
|
hint?: string | undefined;
|
|
9488
10065
|
messages?: {
|
|
9489
10066
|
text: string;
|
|
9490
|
-
type: "
|
|
10067
|
+
type: "success" | "error" | "info" | "warning";
|
|
9491
10068
|
id?: number | undefined;
|
|
9492
10069
|
}[] | undefined;
|
|
9493
10070
|
required?: boolean | undefined;
|
|
@@ -9508,7 +10085,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9508
10085
|
hint?: string | undefined;
|
|
9509
10086
|
messages?: {
|
|
9510
10087
|
text: string;
|
|
9511
|
-
type: "
|
|
10088
|
+
type: "success" | "error" | "info" | "warning";
|
|
9512
10089
|
id?: number | undefined;
|
|
9513
10090
|
}[] | undefined;
|
|
9514
10091
|
required?: boolean | undefined;
|
|
@@ -9529,7 +10106,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9529
10106
|
hint?: string | undefined;
|
|
9530
10107
|
messages?: {
|
|
9531
10108
|
text: string;
|
|
9532
|
-
type: "
|
|
10109
|
+
type: "success" | "error" | "info" | "warning";
|
|
9533
10110
|
id?: number | undefined;
|
|
9534
10111
|
}[] | undefined;
|
|
9535
10112
|
required?: boolean | undefined;
|
|
@@ -9760,7 +10337,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9760
10337
|
hint?: string | undefined;
|
|
9761
10338
|
messages?: {
|
|
9762
10339
|
text: string;
|
|
9763
|
-
type: "
|
|
10340
|
+
type: "success" | "error" | "info" | "warning";
|
|
9764
10341
|
id?: number | undefined;
|
|
9765
10342
|
}[] | undefined;
|
|
9766
10343
|
required?: boolean | undefined;
|
|
@@ -9778,7 +10355,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9778
10355
|
hint?: string | undefined;
|
|
9779
10356
|
messages?: {
|
|
9780
10357
|
text: string;
|
|
9781
|
-
type: "
|
|
10358
|
+
type: "success" | "error" | "info" | "warning";
|
|
9782
10359
|
id?: number | undefined;
|
|
9783
10360
|
}[] | undefined;
|
|
9784
10361
|
required?: boolean | undefined;
|
|
@@ -9802,7 +10379,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9802
10379
|
hint?: string | undefined;
|
|
9803
10380
|
messages?: {
|
|
9804
10381
|
text: string;
|
|
9805
|
-
type: "
|
|
10382
|
+
type: "success" | "error" | "info" | "warning";
|
|
9806
10383
|
id?: number | undefined;
|
|
9807
10384
|
}[] | undefined;
|
|
9808
10385
|
required?: boolean | undefined;
|
|
@@ -9826,7 +10403,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9826
10403
|
hint?: string | undefined;
|
|
9827
10404
|
messages?: {
|
|
9828
10405
|
text: string;
|
|
9829
|
-
type: "
|
|
10406
|
+
type: "success" | "error" | "info" | "warning";
|
|
9830
10407
|
id?: number | undefined;
|
|
9831
10408
|
}[] | undefined;
|
|
9832
10409
|
required?: boolean | undefined;
|
|
@@ -9850,7 +10427,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9850
10427
|
hint?: string | undefined;
|
|
9851
10428
|
messages?: {
|
|
9852
10429
|
text: string;
|
|
9853
|
-
type: "
|
|
10430
|
+
type: "success" | "error" | "info" | "warning";
|
|
9854
10431
|
id?: number | undefined;
|
|
9855
10432
|
}[] | undefined;
|
|
9856
10433
|
required?: boolean | undefined;
|
|
@@ -9879,7 +10456,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9879
10456
|
hint?: string | undefined;
|
|
9880
10457
|
messages?: {
|
|
9881
10458
|
text: string;
|
|
9882
|
-
type: "
|
|
10459
|
+
type: "success" | "error" | "info" | "warning";
|
|
9883
10460
|
id?: number | undefined;
|
|
9884
10461
|
}[] | undefined;
|
|
9885
10462
|
required?: boolean | undefined;
|
|
@@ -9894,7 +10471,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9894
10471
|
hint?: string | undefined;
|
|
9895
10472
|
messages?: {
|
|
9896
10473
|
text: string;
|
|
9897
|
-
type: "
|
|
10474
|
+
type: "success" | "error" | "info" | "warning";
|
|
9898
10475
|
id?: number | undefined;
|
|
9899
10476
|
}[] | undefined;
|
|
9900
10477
|
required?: boolean | undefined;
|
|
@@ -9915,7 +10492,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9915
10492
|
hint?: string | undefined;
|
|
9916
10493
|
messages?: {
|
|
9917
10494
|
text: string;
|
|
9918
|
-
type: "
|
|
10495
|
+
type: "success" | "error" | "info" | "warning";
|
|
9919
10496
|
id?: number | undefined;
|
|
9920
10497
|
}[] | undefined;
|
|
9921
10498
|
required?: boolean | undefined;
|
|
@@ -9940,7 +10517,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9940
10517
|
hint?: string | undefined;
|
|
9941
10518
|
messages?: {
|
|
9942
10519
|
text: string;
|
|
9943
|
-
type: "
|
|
10520
|
+
type: "success" | "error" | "info" | "warning";
|
|
9944
10521
|
id?: number | undefined;
|
|
9945
10522
|
}[] | undefined;
|
|
9946
10523
|
required?: boolean | undefined;
|
|
@@ -9959,7 +10536,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9959
10536
|
hint?: string | undefined;
|
|
9960
10537
|
messages?: {
|
|
9961
10538
|
text: string;
|
|
9962
|
-
type: "
|
|
10539
|
+
type: "success" | "error" | "info" | "warning";
|
|
9963
10540
|
id?: number | undefined;
|
|
9964
10541
|
}[] | undefined;
|
|
9965
10542
|
required?: boolean | undefined;
|
|
@@ -9979,7 +10556,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9979
10556
|
hint?: string | undefined;
|
|
9980
10557
|
messages?: {
|
|
9981
10558
|
text: string;
|
|
9982
|
-
type: "
|
|
10559
|
+
type: "success" | "error" | "info" | "warning";
|
|
9983
10560
|
id?: number | undefined;
|
|
9984
10561
|
}[] | undefined;
|
|
9985
10562
|
required?: boolean | undefined;
|
|
@@ -9998,7 +10575,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9998
10575
|
hint?: string | undefined;
|
|
9999
10576
|
messages?: {
|
|
10000
10577
|
text: string;
|
|
10001
|
-
type: "
|
|
10578
|
+
type: "success" | "error" | "info" | "warning";
|
|
10002
10579
|
id?: number | undefined;
|
|
10003
10580
|
}[] | undefined;
|
|
10004
10581
|
required?: boolean | undefined;
|
|
@@ -10020,7 +10597,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10020
10597
|
hint?: string | undefined;
|
|
10021
10598
|
messages?: {
|
|
10022
10599
|
text: string;
|
|
10023
|
-
type: "
|
|
10600
|
+
type: "success" | "error" | "info" | "warning";
|
|
10024
10601
|
id?: number | undefined;
|
|
10025
10602
|
}[] | undefined;
|
|
10026
10603
|
required?: boolean | undefined;
|
|
@@ -10042,7 +10619,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10042
10619
|
hint?: string | undefined;
|
|
10043
10620
|
messages?: {
|
|
10044
10621
|
text: string;
|
|
10045
|
-
type: "
|
|
10622
|
+
type: "success" | "error" | "info" | "warning";
|
|
10046
10623
|
id?: number | undefined;
|
|
10047
10624
|
}[] | undefined;
|
|
10048
10625
|
required?: boolean | undefined;
|
|
@@ -10061,7 +10638,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10061
10638
|
hint?: string | undefined;
|
|
10062
10639
|
messages?: {
|
|
10063
10640
|
text: string;
|
|
10064
|
-
type: "
|
|
10641
|
+
type: "success" | "error" | "info" | "warning";
|
|
10065
10642
|
id?: number | undefined;
|
|
10066
10643
|
}[] | undefined;
|
|
10067
10644
|
required?: boolean | undefined;
|
|
@@ -10086,7 +10663,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10086
10663
|
hint?: string | undefined;
|
|
10087
10664
|
messages?: {
|
|
10088
10665
|
text: string;
|
|
10089
|
-
type: "
|
|
10666
|
+
type: "success" | "error" | "info" | "warning";
|
|
10090
10667
|
id?: number | undefined;
|
|
10091
10668
|
}[] | undefined;
|
|
10092
10669
|
required?: boolean | undefined;
|
|
@@ -10107,7 +10684,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10107
10684
|
hint?: string | undefined;
|
|
10108
10685
|
messages?: {
|
|
10109
10686
|
text: string;
|
|
10110
|
-
type: "
|
|
10687
|
+
type: "success" | "error" | "info" | "warning";
|
|
10111
10688
|
id?: number | undefined;
|
|
10112
10689
|
}[] | undefined;
|
|
10113
10690
|
required?: boolean | undefined;
|
|
@@ -10128,7 +10705,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10128
10705
|
hint?: string | undefined;
|
|
10129
10706
|
messages?: {
|
|
10130
10707
|
text: string;
|
|
10131
|
-
type: "
|
|
10708
|
+
type: "success" | "error" | "info" | "warning";
|
|
10132
10709
|
id?: number | undefined;
|
|
10133
10710
|
}[] | undefined;
|
|
10134
10711
|
required?: boolean | undefined;
|
|
@@ -10358,7 +10935,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10358
10935
|
};
|
|
10359
10936
|
};
|
|
10360
10937
|
output: {
|
|
10361
|
-
prompt: "
|
|
10938
|
+
prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
10362
10939
|
language: string;
|
|
10363
10940
|
}[];
|
|
10364
10941
|
outputFormat: "json";
|
|
@@ -10396,7 +10973,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10396
10973
|
$get: {
|
|
10397
10974
|
input: {
|
|
10398
10975
|
param: {
|
|
10399
|
-
prompt: "
|
|
10976
|
+
prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
10400
10977
|
language: string;
|
|
10401
10978
|
};
|
|
10402
10979
|
} & {
|
|
@@ -10418,7 +10995,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10418
10995
|
$put: {
|
|
10419
10996
|
input: {
|
|
10420
10997
|
param: {
|
|
10421
|
-
prompt: "
|
|
10998
|
+
prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
10422
10999
|
language: string;
|
|
10423
11000
|
};
|
|
10424
11001
|
} & {
|
|
@@ -10442,7 +11019,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10442
11019
|
$delete: {
|
|
10443
11020
|
input: {
|
|
10444
11021
|
param: {
|
|
10445
|
-
prompt: "
|
|
11022
|
+
prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
10446
11023
|
language: string;
|
|
10447
11024
|
};
|
|
10448
11025
|
} & {
|
|
@@ -11305,7 +11882,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11305
11882
|
};
|
|
11306
11883
|
} | {
|
|
11307
11884
|
mode: "inline";
|
|
11308
|
-
status: "
|
|
11885
|
+
status: "success" | "error";
|
|
11309
11886
|
connection_id: string;
|
|
11310
11887
|
connection_name: string;
|
|
11311
11888
|
strategy: string;
|
|
@@ -11945,7 +12522,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11945
12522
|
log_type: string;
|
|
11946
12523
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
11947
12524
|
actor: {
|
|
11948
|
-
type: "
|
|
12525
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
11949
12526
|
id?: string | undefined;
|
|
11950
12527
|
email?: string | undefined;
|
|
11951
12528
|
org_id?: string | undefined;
|
|
@@ -12595,7 +13172,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12595
13172
|
};
|
|
12596
13173
|
};
|
|
12597
13174
|
output: {
|
|
12598
|
-
type: "fn" | "i" | "
|
|
13175
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12599
13176
|
date: string;
|
|
12600
13177
|
isMobile: boolean;
|
|
12601
13178
|
log_id: string;
|
|
@@ -12634,7 +13211,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12634
13211
|
limit: number;
|
|
12635
13212
|
length: number;
|
|
12636
13213
|
logs: {
|
|
12637
|
-
type: "fn" | "i" | "
|
|
13214
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12638
13215
|
date: string;
|
|
12639
13216
|
isMobile: boolean;
|
|
12640
13217
|
log_id: string;
|
|
@@ -12673,7 +13250,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12673
13250
|
next?: string | undefined;
|
|
12674
13251
|
} | {
|
|
12675
13252
|
logs: {
|
|
12676
|
-
type: "fn" | "i" | "
|
|
13253
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12677
13254
|
date: string;
|
|
12678
13255
|
isMobile: boolean;
|
|
12679
13256
|
log_id: string;
|
|
@@ -12727,7 +13304,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12727
13304
|
};
|
|
12728
13305
|
};
|
|
12729
13306
|
output: {
|
|
12730
|
-
type: "fn" | "i" | "
|
|
13307
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12731
13308
|
date: string;
|
|
12732
13309
|
isMobile: boolean;
|
|
12733
13310
|
log_id: string;
|
|
@@ -13138,7 +13715,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13138
13715
|
addons?: {
|
|
13139
13716
|
[x: string]: any;
|
|
13140
13717
|
} | undefined;
|
|
13141
|
-
token_endpoint_auth_method?: "
|
|
13718
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13142
13719
|
client_metadata?: {
|
|
13143
13720
|
[x: string]: string;
|
|
13144
13721
|
} | undefined;
|
|
@@ -13240,7 +13817,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13240
13817
|
addons?: {
|
|
13241
13818
|
[x: string]: any;
|
|
13242
13819
|
} | undefined;
|
|
13243
|
-
token_endpoint_auth_method?: "
|
|
13820
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13244
13821
|
client_metadata?: {
|
|
13245
13822
|
[x: string]: string;
|
|
13246
13823
|
} | undefined;
|
|
@@ -13342,7 +13919,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13342
13919
|
addons?: {
|
|
13343
13920
|
[x: string]: any;
|
|
13344
13921
|
} | undefined;
|
|
13345
|
-
token_endpoint_auth_method?: "
|
|
13922
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13346
13923
|
client_metadata?: {
|
|
13347
13924
|
[x: string]: string;
|
|
13348
13925
|
} | undefined;
|
|
@@ -13459,7 +14036,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13459
14036
|
addons?: {
|
|
13460
14037
|
[x: string]: any;
|
|
13461
14038
|
} | undefined;
|
|
13462
|
-
token_endpoint_auth_method?: "
|
|
14039
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13463
14040
|
client_metadata?: {
|
|
13464
14041
|
[x: string]: string;
|
|
13465
14042
|
} | undefined;
|
|
@@ -13577,7 +14154,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13577
14154
|
custom_login_page_preview?: string | undefined;
|
|
13578
14155
|
form_template?: string | undefined;
|
|
13579
14156
|
addons?: Record<string, any> | undefined;
|
|
13580
|
-
token_endpoint_auth_method?: "
|
|
14157
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13581
14158
|
client_metadata?: Record<string, string> | undefined;
|
|
13582
14159
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
13583
14160
|
mobile?: Record<string, any> | undefined;
|
|
@@ -13663,7 +14240,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13663
14240
|
addons?: {
|
|
13664
14241
|
[x: string]: any;
|
|
13665
14242
|
} | undefined;
|
|
13666
|
-
token_endpoint_auth_method?: "
|
|
14243
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13667
14244
|
client_metadata?: {
|
|
13668
14245
|
[x: string]: string;
|
|
13669
14246
|
} | undefined;
|
|
@@ -13760,7 +14337,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13760
14337
|
custom_login_page_preview?: string | undefined;
|
|
13761
14338
|
form_template?: string | undefined;
|
|
13762
14339
|
addons?: Record<string, any> | undefined;
|
|
13763
|
-
token_endpoint_auth_method?: "
|
|
14340
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13764
14341
|
client_metadata?: Record<string, string> | undefined;
|
|
13765
14342
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
13766
14343
|
mobile?: Record<string, any> | undefined;
|
|
@@ -13846,7 +14423,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13846
14423
|
addons?: {
|
|
13847
14424
|
[x: string]: any;
|
|
13848
14425
|
} | undefined;
|
|
13849
|
-
token_endpoint_auth_method?: "
|
|
14426
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13850
14427
|
client_metadata?: {
|
|
13851
14428
|
[x: string]: string;
|
|
13852
14429
|
} | undefined;
|
|
@@ -15182,7 +15759,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15182
15759
|
};
|
|
15183
15760
|
};
|
|
15184
15761
|
output: {
|
|
15185
|
-
type: "fn" | "i" | "
|
|
15762
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
15186
15763
|
date: string;
|
|
15187
15764
|
isMobile: boolean;
|
|
15188
15765
|
log_id: string;
|
|
@@ -15221,7 +15798,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15221
15798
|
limit: number;
|
|
15222
15799
|
length: number;
|
|
15223
15800
|
logs: {
|
|
15224
|
-
type: "fn" | "i" | "
|
|
15801
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
15225
15802
|
date: string;
|
|
15226
15803
|
isMobile: boolean;
|
|
15227
15804
|
log_id: string;
|
|
@@ -16065,7 +16642,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16065
16642
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16066
16643
|
custom_domain_id: string;
|
|
16067
16644
|
primary: boolean;
|
|
16068
|
-
status: "
|
|
16645
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16069
16646
|
verification_method?: "txt" | undefined;
|
|
16070
16647
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16071
16648
|
domain_metadata?: {
|
|
@@ -16106,7 +16683,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16106
16683
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16107
16684
|
custom_domain_id: string;
|
|
16108
16685
|
primary: boolean;
|
|
16109
|
-
status: "
|
|
16686
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16110
16687
|
verification_method?: "txt" | undefined;
|
|
16111
16688
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16112
16689
|
domain_metadata?: {
|
|
@@ -16170,7 +16747,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16170
16747
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16171
16748
|
custom_domain_id: string;
|
|
16172
16749
|
primary: boolean;
|
|
16173
|
-
status: "
|
|
16750
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16174
16751
|
verification_method?: "txt" | undefined;
|
|
16175
16752
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16176
16753
|
domain_metadata?: {
|
|
@@ -16217,7 +16794,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16217
16794
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16218
16795
|
custom_domain_id: string;
|
|
16219
16796
|
primary: boolean;
|
|
16220
|
-
status: "
|
|
16797
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16221
16798
|
verification_method?: "txt" | undefined;
|
|
16222
16799
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16223
16800
|
domain_metadata?: {
|
|
@@ -16263,7 +16840,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16263
16840
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16264
16841
|
custom_domain_id: string;
|
|
16265
16842
|
primary: boolean;
|
|
16266
|
-
status: "
|
|
16843
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16267
16844
|
verification_method?: "txt" | undefined;
|
|
16268
16845
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16269
16846
|
domain_metadata?: {
|
|
@@ -16304,7 +16881,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16304
16881
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16305
16882
|
custom_domain_id: string;
|
|
16306
16883
|
primary: boolean;
|
|
16307
|
-
status: "
|
|
16884
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16308
16885
|
verification_method?: "txt" | undefined;
|
|
16309
16886
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16310
16887
|
domain_metadata?: {
|
|
@@ -16734,7 +17311,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16734
17311
|
} & {
|
|
16735
17312
|
json: {
|
|
16736
17313
|
body?: string | undefined;
|
|
16737
|
-
screen?: "
|
|
17314
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
16738
17315
|
branding?: {
|
|
16739
17316
|
colors?: {
|
|
16740
17317
|
primary: string;
|
|
@@ -18005,7 +18582,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18005
18582
|
scope?: string | undefined;
|
|
18006
18583
|
grant_types?: string[] | undefined;
|
|
18007
18584
|
response_types?: string[] | undefined;
|
|
18008
|
-
token_endpoint_auth_method?: "
|
|
18585
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
18009
18586
|
jwks_uri?: string | undefined;
|
|
18010
18587
|
jwks?: Record<string, unknown> | undefined;
|
|
18011
18588
|
software_id?: string | undefined;
|
|
@@ -18094,7 +18671,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18094
18671
|
scope?: string | undefined;
|
|
18095
18672
|
grant_types?: string[] | undefined;
|
|
18096
18673
|
response_types?: string[] | undefined;
|
|
18097
|
-
token_endpoint_auth_method?: "
|
|
18674
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
18098
18675
|
jwks_uri?: string | undefined;
|
|
18099
18676
|
jwks?: Record<string, unknown> | undefined;
|
|
18100
18677
|
software_id?: string | undefined;
|
|
@@ -18440,20 +19017,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18440
19017
|
email: string;
|
|
18441
19018
|
send: "code" | "link";
|
|
18442
19019
|
authParams: {
|
|
18443
|
-
|
|
19020
|
+
username?: string | undefined;
|
|
18444
19021
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
18445
19022
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
18446
19023
|
scope?: string | undefined;
|
|
18447
|
-
|
|
19024
|
+
audience?: string | undefined;
|
|
18448
19025
|
state?: string | undefined;
|
|
18449
|
-
nonce?: string | undefined;
|
|
18450
19026
|
prompt?: string | undefined;
|
|
18451
|
-
act_as?: string | undefined;
|
|
18452
|
-
redirect_uri?: string | undefined;
|
|
18453
19027
|
organization?: string | undefined;
|
|
19028
|
+
ui_locales?: string | undefined;
|
|
19029
|
+
redirect_uri?: string | undefined;
|
|
19030
|
+
act_as?: string | undefined;
|
|
19031
|
+
nonce?: string | undefined;
|
|
18454
19032
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
18455
19033
|
code_challenge?: string | undefined;
|
|
18456
|
-
ui_locales?: string | undefined;
|
|
18457
19034
|
max_age?: number | undefined;
|
|
18458
19035
|
acr_values?: string | undefined;
|
|
18459
19036
|
claims?: {
|
|
@@ -18476,20 +19053,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18476
19053
|
phone_number: string;
|
|
18477
19054
|
send: "code" | "link";
|
|
18478
19055
|
authParams: {
|
|
18479
|
-
|
|
19056
|
+
username?: string | undefined;
|
|
18480
19057
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
18481
19058
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
18482
19059
|
scope?: string | undefined;
|
|
18483
|
-
|
|
19060
|
+
audience?: string | undefined;
|
|
18484
19061
|
state?: string | undefined;
|
|
18485
|
-
nonce?: string | undefined;
|
|
18486
19062
|
prompt?: string | undefined;
|
|
18487
|
-
act_as?: string | undefined;
|
|
18488
|
-
redirect_uri?: string | undefined;
|
|
18489
19063
|
organization?: string | undefined;
|
|
19064
|
+
ui_locales?: string | undefined;
|
|
19065
|
+
redirect_uri?: string | undefined;
|
|
19066
|
+
act_as?: string | undefined;
|
|
19067
|
+
nonce?: string | undefined;
|
|
18490
19068
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
18491
19069
|
code_challenge?: string | undefined;
|
|
18492
|
-
ui_locales?: string | undefined;
|
|
18493
19070
|
max_age?: number | undefined;
|
|
18494
19071
|
acr_values?: string | undefined;
|
|
18495
19072
|
claims?: {
|
|
@@ -18620,14 +19197,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18620
19197
|
input: {
|
|
18621
19198
|
form: {
|
|
18622
19199
|
token: string;
|
|
18623
|
-
token_type_hint?: "
|
|
19200
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
18624
19201
|
client_id?: string | undefined;
|
|
18625
19202
|
client_secret?: string | undefined;
|
|
18626
19203
|
};
|
|
18627
19204
|
} & {
|
|
18628
19205
|
json: {
|
|
18629
19206
|
token: string;
|
|
18630
|
-
token_type_hint?: "
|
|
19207
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
18631
19208
|
client_id?: string | undefined;
|
|
18632
19209
|
client_secret?: string | undefined;
|
|
18633
19210
|
};
|
|
@@ -18639,14 +19216,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18639
19216
|
input: {
|
|
18640
19217
|
form: {
|
|
18641
19218
|
token: string;
|
|
18642
|
-
token_type_hint?: "
|
|
19219
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
18643
19220
|
client_id?: string | undefined;
|
|
18644
19221
|
client_secret?: string | undefined;
|
|
18645
19222
|
};
|
|
18646
19223
|
} & {
|
|
18647
19224
|
json: {
|
|
18648
19225
|
token: string;
|
|
18649
|
-
token_type_hint?: "
|
|
19226
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
18650
19227
|
client_id?: string | undefined;
|
|
18651
19228
|
client_secret?: string | undefined;
|
|
18652
19229
|
};
|
|
@@ -18656,19 +19233,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18656
19233
|
error_description?: string | undefined;
|
|
18657
19234
|
};
|
|
18658
19235
|
outputFormat: "json";
|
|
18659
|
-
status:
|
|
19236
|
+
status: 401;
|
|
18660
19237
|
} | {
|
|
18661
19238
|
input: {
|
|
18662
19239
|
form: {
|
|
18663
19240
|
token: string;
|
|
18664
|
-
token_type_hint?: "
|
|
19241
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
18665
19242
|
client_id?: string | undefined;
|
|
18666
19243
|
client_secret?: string | undefined;
|
|
18667
19244
|
};
|
|
18668
19245
|
} & {
|
|
18669
19246
|
json: {
|
|
18670
19247
|
token: string;
|
|
18671
|
-
token_type_hint?: "
|
|
19248
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
18672
19249
|
client_id?: string | undefined;
|
|
18673
19250
|
client_secret?: string | undefined;
|
|
18674
19251
|
};
|
|
@@ -18678,7 +19255,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18678
19255
|
error_description?: string | undefined;
|
|
18679
19256
|
};
|
|
18680
19257
|
outputFormat: "json";
|
|
18681
|
-
status:
|
|
19258
|
+
status: 400;
|
|
18682
19259
|
};
|
|
18683
19260
|
};
|
|
18684
19261
|
}, "/oauth/revoke"> & hono_types.MergeSchemaPath<{
|
|
@@ -18718,7 +19295,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18718
19295
|
client_id: string;
|
|
18719
19296
|
username: string;
|
|
18720
19297
|
otp: string;
|
|
18721
|
-
realm: "
|
|
19298
|
+
realm: "email" | "sms";
|
|
18722
19299
|
} | {
|
|
18723
19300
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18724
19301
|
subject_token: string;
|
|
@@ -18765,7 +19342,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18765
19342
|
client_id: string;
|
|
18766
19343
|
username: string;
|
|
18767
19344
|
otp: string;
|
|
18768
|
-
realm: "
|
|
19345
|
+
realm: "email" | "sms";
|
|
18769
19346
|
} | {
|
|
18770
19347
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18771
19348
|
subject_token: string;
|
|
@@ -18817,7 +19394,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18817
19394
|
client_id: string;
|
|
18818
19395
|
username: string;
|
|
18819
19396
|
otp: string;
|
|
18820
|
-
realm: "
|
|
19397
|
+
realm: "email" | "sms";
|
|
18821
19398
|
} | {
|
|
18822
19399
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18823
19400
|
subject_token: string;
|
|
@@ -18864,7 +19441,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18864
19441
|
client_id: string;
|
|
18865
19442
|
username: string;
|
|
18866
19443
|
otp: string;
|
|
18867
|
-
realm: "
|
|
19444
|
+
realm: "email" | "sms";
|
|
18868
19445
|
} | {
|
|
18869
19446
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18870
19447
|
subject_token: string;
|
|
@@ -18879,16 +19456,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18879
19456
|
};
|
|
18880
19457
|
};
|
|
18881
19458
|
output: {
|
|
18882
|
-
|
|
18883
|
-
|
|
18884
|
-
expires_in: number;
|
|
18885
|
-
id_token?: string | undefined;
|
|
18886
|
-
scope?: string | undefined;
|
|
18887
|
-
state?: string | undefined;
|
|
18888
|
-
refresh_token?: string | undefined;
|
|
19459
|
+
error: string;
|
|
19460
|
+
error_description?: string | undefined;
|
|
18889
19461
|
};
|
|
18890
19462
|
outputFormat: "json";
|
|
18891
|
-
status:
|
|
19463
|
+
status: 401;
|
|
18892
19464
|
} | {
|
|
18893
19465
|
input: {
|
|
18894
19466
|
form: {
|
|
@@ -18924,7 +19496,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18924
19496
|
client_id: string;
|
|
18925
19497
|
username: string;
|
|
18926
19498
|
otp: string;
|
|
18927
|
-
realm: "
|
|
19499
|
+
realm: "email" | "sms";
|
|
18928
19500
|
} | {
|
|
18929
19501
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18930
19502
|
subject_token: string;
|
|
@@ -18971,7 +19543,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18971
19543
|
client_id: string;
|
|
18972
19544
|
username: string;
|
|
18973
19545
|
otp: string;
|
|
18974
|
-
realm: "
|
|
19546
|
+
realm: "email" | "sms";
|
|
18975
19547
|
} | {
|
|
18976
19548
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18977
19549
|
subject_token: string;
|
|
@@ -18986,11 +19558,16 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18986
19558
|
};
|
|
18987
19559
|
};
|
|
18988
19560
|
output: {
|
|
18989
|
-
|
|
18990
|
-
|
|
19561
|
+
access_token: string;
|
|
19562
|
+
token_type: string;
|
|
19563
|
+
expires_in: number;
|
|
19564
|
+
id_token?: string | undefined;
|
|
19565
|
+
scope?: string | undefined;
|
|
19566
|
+
state?: string | undefined;
|
|
19567
|
+
refresh_token?: string | undefined;
|
|
18991
19568
|
};
|
|
18992
19569
|
outputFormat: "json";
|
|
18993
|
-
status:
|
|
19570
|
+
status: 200;
|
|
18994
19571
|
} | {
|
|
18995
19572
|
input: {
|
|
18996
19573
|
form: {
|
|
@@ -19026,7 +19603,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19026
19603
|
client_id: string;
|
|
19027
19604
|
username: string;
|
|
19028
19605
|
otp: string;
|
|
19029
|
-
realm: "
|
|
19606
|
+
realm: "email" | "sms";
|
|
19030
19607
|
} | {
|
|
19031
19608
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19032
19609
|
subject_token: string;
|
|
@@ -19073,7 +19650,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19073
19650
|
client_id: string;
|
|
19074
19651
|
username: string;
|
|
19075
19652
|
otp: string;
|
|
19076
|
-
realm: "
|
|
19653
|
+
realm: "email" | "sms";
|
|
19077
19654
|
} | {
|
|
19078
19655
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19079
19656
|
subject_token: string;
|
|
@@ -19092,7 +19669,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19092
19669
|
error_description?: string | undefined;
|
|
19093
19670
|
};
|
|
19094
19671
|
outputFormat: "json";
|
|
19095
|
-
status:
|
|
19672
|
+
status: 400;
|
|
19096
19673
|
} | {
|
|
19097
19674
|
input: {
|
|
19098
19675
|
form: {
|
|
@@ -19128,7 +19705,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19128
19705
|
client_id: string;
|
|
19129
19706
|
username: string;
|
|
19130
19707
|
otp: string;
|
|
19131
|
-
realm: "
|
|
19708
|
+
realm: "email" | "sms";
|
|
19132
19709
|
} | {
|
|
19133
19710
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19134
19711
|
subject_token: string;
|
|
@@ -19175,7 +19752,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19175
19752
|
client_id: string;
|
|
19176
19753
|
username: string;
|
|
19177
19754
|
otp: string;
|
|
19178
|
-
realm: "
|
|
19755
|
+
realm: "email" | "sms";
|
|
19179
19756
|
} | {
|
|
19180
19757
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19181
19758
|
subject_token: string;
|
|
@@ -20399,7 +20976,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20399
20976
|
$get: {
|
|
20400
20977
|
input: {
|
|
20401
20978
|
param: {
|
|
20402
|
-
screen: "signup" | "
|
|
20979
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
20403
20980
|
};
|
|
20404
20981
|
} & {
|
|
20405
20982
|
query: {
|
|
@@ -20415,7 +20992,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20415
20992
|
} | {
|
|
20416
20993
|
input: {
|
|
20417
20994
|
param: {
|
|
20418
|
-
screen: "signup" | "
|
|
20995
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
20419
20996
|
};
|
|
20420
20997
|
} & {
|
|
20421
20998
|
query: {
|
|
@@ -20431,7 +21008,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20431
21008
|
} | {
|
|
20432
21009
|
input: {
|
|
20433
21010
|
param: {
|
|
20434
|
-
screen: "signup" | "
|
|
21011
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
20435
21012
|
};
|
|
20436
21013
|
} & {
|
|
20437
21014
|
query: {
|
|
@@ -20451,7 +21028,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20451
21028
|
$post: {
|
|
20452
21029
|
input: {
|
|
20453
21030
|
param: {
|
|
20454
|
-
screen: "signup" | "
|
|
21031
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
20455
21032
|
};
|
|
20456
21033
|
} & {
|
|
20457
21034
|
query: {
|
|
@@ -20469,7 +21046,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20469
21046
|
} | {
|
|
20470
21047
|
input: {
|
|
20471
21048
|
param: {
|
|
20472
|
-
screen: "signup" | "
|
|
21049
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
20473
21050
|
};
|
|
20474
21051
|
} & {
|
|
20475
21052
|
query: {
|
|
@@ -20567,5 +21144,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20567
21144
|
createX509Certificate: typeof createX509Certificate;
|
|
20568
21145
|
};
|
|
20569
21146
|
|
|
20570
|
-
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, 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, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, composeHostResolvers, createApplySyncEvents, createAuthMiddleware, createControlPlaneClient, createControlPlaneCustomDomainsAdapter, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, createServiceTokenCore, createWfpTenantHostResolver, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
|
|
20571
|
-
export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneClient, ControlPlaneClientOptions, ControlPlaneCustomDomainsOptions, ControlPlaneRequest, ControlPlaneResponse, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, CreateServiceTokenCoreParams, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetControlPlaneToken, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, 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, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, ServiceTokenResponse, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantOperationExecutorBinding, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };
|
|
21147
|
+
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, SignupPage as SignUpPage, SocialButton, Spinner, TenantInvitationNotFoundError, TenantMembersNotFoundError, TenantOrganizationNotFoundError, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, 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, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
|
|
21148
|
+
export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneClient, ControlPlaneClientOptions, ControlPlaneCustomDomainsOptions, ControlPlaneRequest, ControlPlaneResponse, ControlPlaneSyncDestinationOptions, ControlPlaneTenantMembersOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, CreateServiceTokenCoreParams, EncryptKeyIdResolver, 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, RolePermissionHooks, RunOutboxRelayConfig, 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 };
|