authhero 8.24.0 → 8.25.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/css/tailwind.css +1 -1
- package/dist/authhero.cjs +138 -138
- package/dist/authhero.css +1 -1
- package/dist/authhero.d.ts +667 -72
- package/dist/authhero.mjs +12181 -11479
- package/dist/tailwind.css +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/components/AuthCard.d.ts +17 -0
- package/dist/types/components/PasswordField.d.ts +18 -0
- package/dist/types/components/auth-form-styles.d.ts +39 -0
- package/dist/types/components/auth-forms.render.test.d.ts +1 -0
- package/dist/types/components/ui/input.d.ts +1 -0
- package/dist/types/index.d.ts +74 -68
- package/dist/types/routes/auth-api/index.d.ts +25 -25
- package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +8 -8
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +37 -37
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- 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 +29 -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 +26 -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/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/styles/tailwind.d.ts +1 -1
- 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 +37 -0
- package/dist/types/utils/jwks.d.ts +2 -2
- package/package.json +1 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as hono_utils_types from 'hono/utils/types';
|
|
2
2
|
import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
|
|
3
|
-
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, 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,19 @@ 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
|
+
* The second argument is the token's (unverified) `tenant_id` claim. Bind
|
|
1687
|
+
* it to `iss` so a caller holding one tenant's subdomain key cannot act on
|
|
1688
|
+
* another by naming it in the claim (#1143), e.g.
|
|
1689
|
+
* `(iss, tid) => !!tid && iss === \`https://${tid}.${issuerHost}/\``.
|
|
1690
|
+
*/
|
|
1691
|
+
isTrustedIssuer?: (iss: string, tenantId: string | undefined) => boolean;
|
|
1220
1692
|
/**
|
|
1221
1693
|
* Optional receiver for `POST /sync` events emitted by tenant shards via
|
|
1222
1694
|
* the `ControlPlaneSyncDestination`. Mount on the control-plane authhero
|
|
@@ -1237,6 +1709,30 @@ interface AuthHeroConfig {
|
|
|
1237
1709
|
* needs a view across every tenant that only exists here.
|
|
1238
1710
|
*/
|
|
1239
1711
|
customDomains?: _authhero_adapter_interfaces.CustomDomainsAdapter;
|
|
1712
|
+
/**
|
|
1713
|
+
* The authoritative tenant-team resource. When set, mounts
|
|
1714
|
+
* `/api/v2/proxy/control-plane/tenant-members` — the resource tenant shards
|
|
1715
|
+
* call through `createControlPlaneTenantMembersAdapter` so their admins can
|
|
1716
|
+
* manage who administers the tenant (control-plane organization membership
|
|
1717
|
+
* + org-scoped roles + invitations). Wire the backend to the control-plane
|
|
1718
|
+
* database via `createLocalTenantMembersBackend`.
|
|
1719
|
+
*/
|
|
1720
|
+
tenantMembers?: TenantMembersControlPlaneOptions;
|
|
1721
|
+
};
|
|
1722
|
+
/**
|
|
1723
|
+
* Enables the tenant-scoped `/api/v2/tenant-members` management resource,
|
|
1724
|
+
* which lets a tenant admin manage their own team from the per-tenant admin
|
|
1725
|
+
* UI. Every request is pinned to the caller's `org_name` claim, then
|
|
1726
|
+
* delegated to the backend this returns.
|
|
1727
|
+
*
|
|
1728
|
+
* Return `createLocalTenantMembersBackend(...)` on a single-instance /
|
|
1729
|
+
* control-plane deployment (the team lives in the same database), or
|
|
1730
|
+
* `createControlPlaneTenantMembersAdapter(...)` on a Workers-for-Platforms
|
|
1731
|
+
* shard (the team lives on the control plane and is reached over the shared
|
|
1732
|
+
* control-plane client). Leave unset to not mount the resource.
|
|
1733
|
+
*/
|
|
1734
|
+
tenantMembers?: {
|
|
1735
|
+
getBackend: GetTenantMembersBackend;
|
|
1240
1736
|
};
|
|
1241
1737
|
/**
|
|
1242
1738
|
* Optional outbox-driven replication of `proxy_routes` mutations to a global
|
|
@@ -1935,6 +2431,7 @@ interface InputProps {
|
|
|
1935
2431
|
disabled?: boolean;
|
|
1936
2432
|
error?: boolean;
|
|
1937
2433
|
style?: Record<string, string | number>;
|
|
2434
|
+
"data-password-input"?: string;
|
|
1938
2435
|
}
|
|
1939
2436
|
declare const Input: FC<InputProps>;
|
|
1940
2437
|
|
|
@@ -1945,7 +2442,7 @@ interface LabelProps {
|
|
|
1945
2442
|
}
|
|
1946
2443
|
declare const Label: FC<PropsWithChildren<LabelProps>>;
|
|
1947
2444
|
|
|
1948
|
-
declare const tailwindCss = "\n@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:400;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Regular.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:500;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Medium.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:600;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Bold.woff2) format(\"woff2\")}@font-face{font-family:uicon;src:url(https://login2.sesamy.com/_next/static/media/uicon.0b00e08a.woff2)}[class*=\" uicon-\"],[class^=uicon-]{font-family:uicon!important;font-size:inherit;font-style:normal;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.uicon-apple:before{content:\"\\ea01\"}.uicon-arrow-down:before{content:\"\\ea02\"}.uicon-arrow-left:before{content:\"\\ea03\"}.uicon-arrow-right:before{content:\"\\ea04\"}.uicon-arrow-up:before{content:\"\\ea05\"}.uicon-facebook:before{content:\"\\ea06\"}.uicon-google:before{content:\"\\ea07\"}.uicon-info-bubble:before{content:\"\\ea08\"}.uicon-info:before{content:\"\\ea09\"}.uicon-sesamy:before{content:\"\\ea0a\"}.uicon-spinner-circle:before{content:\"\\ea0b\"}.uicon-spinner-inner:before{content:\"\\ea0c\"}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }\n\n/*! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #bfbcd7;box-sizing:border-box}:after,:before{--tw-content:\"\"}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:KHTeka,Helvetica Neue,HelveticaNeue,TeX Gyre Heros,TeXGyreHeros,FreeSans,Nimbus Sans L,Liberation Sans,Arimo,Helvetica,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#4b4a58;opacity:1}input::placeholder,textarea::placeholder{color:#4b4a58;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]:where(:not([hidden=until-found])){display:none}body,html{height:100%}body{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1));font-size:1rem;letter-spacing:.0125rem;line-height:120%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:1280px){body{font-size:1.125rem;line-height:120%}}body:is(.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}button,input,optgroup,select,textarea{font-size:.875rem;letter-spacing:.0125rem;line-height:120%}@media (min-width:1280px){button,input,optgroup,select,textarea{font-size:1rem;line-height:120%}}h1{font-size:1.5rem;font-weight:500;line-height:120%}@media (min-width:1280px){h1{font-size:2rem;line-height:120%}}@media (min-width:640px){h1{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}@media (min-width:1280px){h1{font-size:3.5rem;letter-spacing:-.0625rem;line-height:100%}}h2{font-size:1.25rem;font-weight:500;line-height:120%}@media (min-width:1280px){h2{font-size:1.5rem;line-height:120%}}@media (min-width:640px){h2{font-size:2rem;letter-spacing:0;line-height:120%}}@media (min-width:1280px){h2{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}h3{font-size:1.125rem;font-weight:500;line-height:120%}@media (min-width:1280px){h3{font-size:1.25rem;line-height:120%}}@media (min-width:640px){h3{font-size:1.5rem;line-height:120%}}@media (min-width:1280px){h3{font-size:2rem;line-height:120%}}h4{font-size:1rem;font-weight:500;line-height:120%}@media (min-width:1280px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:640px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:1280px){h4{font-size:1.5rem;line-height:120%}}h5{font-size:.875rem;font-weight:500;line-height:120%}@media (min-width:1280px){h5{font-size:1rem;line-height:120%}}@media (min-width:640px){h5{font-size:1rem;line-height:120%}}@media (min-width:1280px){h5{font-size:1.125rem;line-height:120%}}h6{font-size:.75rem;font-weight:500;line-height:135%}@media (min-width:1280px){h6{font-size:.875rem;line-height:120%}}@media (min-width:640px){h6{font-size:.875rem;line-height:120%}}@media (min-width:1280px){h6{font-size:1rem;line-height:120%}}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1920px){.container{max-width:1920px}}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.left-0{left:0}.right-0{right:0}.right-2{right:.5rem}.top-0{top:0}.top-1\\/2{top:50%}.my-4{margin-bottom:1rem;margin-top:1rem}.mb-1{margin-bottom:.25rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-7{margin-bottom:1.75rem}.mb-8{margin-bottom:2rem}.mr-2{margin-right:.5rem}.mr-4{margin-right:1rem}.mt-0\\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-8{margin-top:2rem}.line-clamp-1{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-5{height:1.25rem}.h-9{height:2.25rem}.h-full{height:100%}.min-h-\\[calc\\(100vh-83px\\)\\]{min-height:calc(100vh - 83px)}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.w-10{width:2.5rem}.w-12{width:3rem}.w-5{width:1.25rem}.w-9{width:2.25rem}.w-\\[calc\\(100\\%-theme\\(space\\.2\\)-theme\\(space\\.2\\)\\)\\]{width:calc(100% - 1rem)}.w-auto{width:auto}.w-full{width:100%}.min-w-0{min-width:0}.max-w-\\[1295px\\]{max-width:1295px}.max-w-md{max-width:28rem}.max-w-none{max-width:none}.max-w-sm{max-width:24rem}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.grow{flex-grow:1}.-translate-y-1\\/2{--tw-translate-y:-50%}.-translate-y-1\\/2,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.flex-col{flex-direction:column}.\\!flex-nowrap{flex-wrap:nowrap!important}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.\\!justify-between{justify-content:space-between!important}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-1\\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-y-1\\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.375rem*var(--tw-space-y-reverse));margin-top:calc(.375rem*(1 - var(--tw-space-y-reverse)))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.overflow-hidden,.truncate{overflow:hidden}.truncate{text-overflow:ellipsis;white-space:nowrap}.break-all{word-break:break-all}.rounded-2xl{border-radius:1.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.625rem}.rounded-md{border-radius:.375rem}.rounded-r-lg{border-bottom-right-radius:.625rem;border-top-right-radius:.625rem}.border{border-width:1px}.border-y{border-top-width:1px}.border-b,.border-y{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-gray-100{--tw-border-opacity:1;border-color:rgb(248 249 251/var(--tw-border-opacity,1))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(191 188 215/var(--tw-border-opacity,1))}.border-gray-200\\/50{border-color:rgba(191,188,215,.5)}.border-gray-300{--tw-border-opacity:1;border-color:rgb(136 134 159/var(--tw-border-opacity,1))}.border-gray-400{--tw-border-opacity:1;border-color:rgb(75 74 88/var(--tw-border-opacity,1))}.border-gray-500{--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity,1))}.border-red{--tw-border-opacity:1;border-color:rgb(252 90 90/var(--tw-border-opacity,1))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1))}.bg-gray-200\\/40{background-color:rgba(191,188,215,.4)}.bg-primary{background-color:var(--primary-color)}.bg-primaryHover{background-color:var(--primary-hover)}.bg-red\\/80{background-color:rgba(252,90,90,.8)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.bg-cover{background-size:cover}.bg-center{background-position:50%}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-0{padding-left:0;padding-right:0}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.pb-2{padding-bottom:.5rem}.pb-8{padding-bottom:2rem}.pl-12{padding-left:3rem}.pl-6{padding-left:1.5rem}.pr-12{padding-right:3rem}.pr-6{padding-right:1.5rem}.pr-8{padding-right:2rem}.pt-0{padding-top:0}.pt-2{padding-top:.5rem}.pt-2\\.5{padding-top:.625rem}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.indent-\\[5px\\]{text-indent:5px}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.\\!text-base{font-size:1rem!important;line-height:120%!important}.\\!text-xs{font-size:.75rem!important;line-height:135%!important}.text-2xl{font-size:1.5rem;line-height:120%}.text-3xl{font-size:2rem;line-height:120%}.text-base{font-size:1rem;line-height:120%}.text-lg{font-size:1.125rem;line-height:120%}.text-sm{font-size:.875rem;line-height:120%}.text-xl{font-size:1.25rem;line-height:120%}.text-xs{font-size:.75rem;line-height:135%}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.leading-\\[0\\]{line-height:0}.leading-none{line-height:1}.leading-tight{line-height:1.25}.tracking-tight{letter-spacing:-.025em}.text-\\[\\#B2B2B2\\]{--tw-text-opacity:1;color:rgb(178 178 178/var(--tw-text-opacity,1))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity,1))}.text-gray-200{--tw-text-opacity:1;color:rgb(191 188 215/var(--tw-text-opacity,1))}.text-gray-300{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.text-gray-400{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.text-gray-500{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.text-gray-800{--tw-text-opacity:1;color:rgb(20 20 26/var(--tw-text-opacity,1))}.text-green{--tw-text-opacity:1;color:rgb(54 191 118/var(--tw-text-opacity,1))}.text-primary{color:var(--primary-color)}.text-red{--tw-text-opacity:1;color:rgb(252 90 90/var(--tw-text-opacity,1))}.text-textOnPrimary{color:var(--text-on-primary)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.accent-\\[\\#4F2D7F\\]{accent-color:#4f2d7f}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-90{opacity:.9}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.ring-offset-white{--tw-ring-offset-color:#fff}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}.row-up-left{align-content:flex-start;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.row-left{justify-content:flex-start}.row,.row-left{align-content:center;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap}.row{justify-content:center}.column-left{align-items:flex-start}.column,.column-left{display:flex;flex-direction:column;justify-content:center}.column{align-items:center}@media (min-width:1280px){.text-5xl{font-size:5.125rem;letter-spacing:-.125rem;line-height:100%}.text-4xl{font-size:3.5rem}.text-3xl,.text-4xl{letter-spacing:-.0625rem;line-height:100%}.text-3xl{font-size:3rem}.text-2xl{font-size:2rem}.text-2xl,.text-xl{line-height:120%}.text-xl{font-size:1.5rem}.text-lg{font-size:1.25rem}.text-base,.text-lg{line-height:120%}.text-base{font-size:1.125rem}.text-sm{font-size:1rem}.text-sm,.text-xs{line-height:120%}.text-xs{font-size:.875rem}}:root{--primary-color:#7d68f4;--primary-hover:#9786f6;--text-on-primary:#fff}svg{transform:translate3d(var(--tw-translate-x),var(--tw-translate-y),0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}*,:after,:before{text-underline-offset:4px}input[type=number],input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:textfield!important}.btn.is-loading{cursor:not-allowed;opacity:.4;pointer-events:none}.btn .btn-spinner,.btn.is-loading .btn-label{opacity:0;visibility:hidden}.btn.is-loading .btn-spinner{opacity:1;visibility:visible}[class*=\" uicon-\"],[class^=uicon-]{letter-spacing:0;line-height:100%}.file\\:border-0::file-selector-button{border-width:0}.file\\:text-sm::file-selector-button{font-size:.875rem;line-height:120%}.file\\:font-medium::file-selector-button{font-weight:500}.placeholder\\:normal-case::-moz-placeholder{text-transform:none}.placeholder\\:normal-case::placeholder{text-transform:none}.placeholder\\:text-gray-300::-moz-placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.placeholder\\:text-gray-300::placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.placeholder\\:text-gray-500::-moz-placeholder{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.placeholder\\:text-gray-500::placeholder{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.first\\:rounded-l-md:first-child{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.first\\:border-l:first-child{border-left-width:1px}.last\\:rounded-r-md:last-child{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.hover\\:bg-black\\/5:hover{background-color:rgba(0,0,0,.05)}.hover\\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1))}.hover\\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(191 188 215/var(--tw-bg-opacity,1))}.hover\\:bg-gray-200\\/75:hover{background-color:rgba(191,188,215,.75)}.hover\\:bg-primaryHover:hover{background-color:var(--primary-hover)}.hover\\:bg-red\\/90:hover{background-color:rgba(252,90,90,.9)}.hover\\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity,1))}.hover\\:text-primaryHover:hover{color:var(--primary-hover)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:opacity-100:hover{opacity:1}.hover\\:brightness-90:hover{--tw-brightness:brightness(.9);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.focus\\:z-10:focus{z-index:10}.focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-1:focus,.focus\\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus-visible\\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\\:ring-2:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-visible\\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px}.disabled\\:pointer-events-none:disabled{pointer-events:none}.disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:opacity-50:disabled{opacity:.5}.group[open] .group-open\\:rotate-90{--tw-rotate:90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.peer:disabled~.peer-disabled\\:cursor-not-allowed{cursor:not-allowed}.peer:disabled~.peer-disabled\\:opacity-70{opacity:.7}.has-\\[\\:disabled\\]\\:opacity-50:has(:disabled){opacity:.5}.dark\\:border-gray-500:is(.dark *){--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity,1))}.dark\\:border-gray-600:is(.dark *){--tw-border-opacity:1;border-color:rgb(40 40 52/var(--tw-border-opacity,1))}.dark\\:border-gray-700:is(.dark *){--tw-border-opacity:1;border-color:rgb(30 30 39/var(--tw-border-opacity,1))}.dark\\:bg-black:is(.dark *){--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity,1))}.dark\\:bg-gray-600:is(.dark *){--tw-bg-opacity:1;background-color:rgb(40 40 52/var(--tw-bg-opacity,1))}.dark\\:bg-gray-700:is(.dark *){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity,1))}.dark\\:bg-gray-800:is(.dark *){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity,1))}.dark\\:text-\\[\\#201a41\\]:is(.dark *){--tw-text-opacity:1;color:rgb(32 26 65/var(--tw-text-opacity,1))}.dark\\:text-gray-300:is(.dark *){--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.dark\\:text-gray-400:is(.dark *){--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:text-white:is(.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.dark\\:ring-offset-gray-900:is(.dark *){--tw-ring-offset-color:#08080e}.dark\\:placeholder\\:text-gray-400:is(.dark *)::-moz-placeholder{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:placeholder\\:text-gray-400:is(.dark *)::placeholder{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:hover\\:bg-black\\/90:hover:is(.dark *){background-color:rgba(0,0,0,.9)}.dark\\:hover\\:bg-gray-700:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity,1))}.dark\\:hover\\:bg-gray-800:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity,1))}@media (min-width:640px){.sm\\:absolute{position:absolute}.sm\\:left-4{left:1rem}.sm\\:top-1\\/2{top:50%}.sm\\:mt-4{margin-top:1rem}.sm\\:inline{display:inline}.sm\\:h-6{height:1.5rem}.sm\\:min-h-\\[700px\\]{min-height:700px}.sm\\:w-6{width:1.5rem}.sm\\:w-\\[calc\\(100\\%-theme\\(space\\.16\\)-theme\\(space\\.16\\)\\)\\]{width:calc(100% - 8rem)}.sm\\:w-auto{width:auto}.sm\\:w-full{width:100%}.sm\\:max-w-md{max-width:28rem}.sm\\:-translate-y-1\\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\\:flex-col{flex-direction:column}.sm\\:justify-normal{justify-content:normal}.sm\\:space-x-0>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(0px*(1 - var(--tw-space-x-reverse)));margin-right:calc(0px*var(--tw-space-x-reverse))}.sm\\:space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.sm\\:bg-fixed{background-attachment:fixed}.sm\\:bg-left-top{background-position:0 0}.sm\\:px-10{padding-left:2.5rem;padding-right:2.5rem}.sm\\:px-14{padding-left:3.5rem;padding-right:3.5rem}.sm\\:py-14{padding-bottom:3.5rem;padding-top:3.5rem}.sm\\:py-4{padding-bottom:1rem;padding-top:1rem}.sm\\:pt-16{padding-top:4rem}.sm\\:text-2xl{font-size:1.5rem;line-height:120%}.sm\\:text-base{font-size:1rem;line-height:120%}}@media (min-width:1280px){.md\\:min-w-\\[448px\\]{min-width:448px}.md\\:p-10{padding:2.5rem}.md\\:py-10{padding-bottom:2.5rem;padding-top:2.5rem}.md\\:pl-10{padding-left:2.5rem}.md\\:pl-20{padding-left:5rem}.md\\:pr-10{padding-right:2.5rem}.md\\:pr-20{padding-right:5rem}.md\\:text-3xl{font-size:2rem;line-height:120%}.md\\:text-base{font-size:1rem;line-height:120%}.md\\:text-sm{font-size:.875rem;line-height:120%}.md\\:text-xs{font-size:.75rem;line-height:135%}}@media (max-height:900px) and (min-width:640px){.short\\:static{position:static}.short\\:left-auto{left:auto}.short\\:top-auto{top:auto}.short\\:inline{display:inline}.short\\:hidden{display:none}.short\\:h-5{height:1.25rem}.short\\:min-h-\\[558px\\]{min-height:558px}.short\\:w-5{width:1.25rem}.short\\:flex-1{flex:1 1 0%}.short\\:translate-y-0{--tw-translate-y:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.short\\:flex-row{flex-direction:row}.short\\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.short\\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.short\\:px-0{padding-left:0;padding-right:0}.short\\:py-3{padding-bottom:.75rem;padding-top:.75rem}}.\\[\\&\\>\\*\\:last-child\\]\\:mb-0>:last-child{margin-bottom:0}.\\[\\&_h1\\]\\:mb-6 h1,.\\[\\&_h2\\]\\:mb-6 h2{margin-bottom:1.5rem}";
|
|
2445
|
+
declare const tailwindCss = "\n@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:400;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Regular.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:500;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Medium.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:600;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Bold.woff2) format(\"woff2\")}@font-face{font-family:uicon;src:url(https://login2.sesamy.com/_next/static/media/uicon.0b00e08a.woff2)}[class*=\" uicon-\"],[class^=uicon-]{font-family:uicon!important;font-size:inherit;font-style:normal;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.uicon-apple:before{content:\"\\ea01\"}.uicon-arrow-down:before{content:\"\\ea02\"}.uicon-arrow-left:before{content:\"\\ea03\"}.uicon-arrow-right:before{content:\"\\ea04\"}.uicon-arrow-up:before{content:\"\\ea05\"}.uicon-facebook:before{content:\"\\ea06\"}.uicon-google:before{content:\"\\ea07\"}.uicon-info-bubble:before{content:\"\\ea08\"}.uicon-info:before{content:\"\\ea09\"}.uicon-sesamy:before{content:\"\\ea0a\"}.uicon-spinner-circle:before{content:\"\\ea0b\"}.uicon-spinner-inner:before{content:\"\\ea0c\"}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }\n\n/*! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #bfbcd7;box-sizing:border-box}:after,:before{--tw-content:\"\"}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:KHTeka,Helvetica Neue,HelveticaNeue,TeX Gyre Heros,TeXGyreHeros,FreeSans,Nimbus Sans L,Liberation Sans,Arimo,Helvetica,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#4b4a58;opacity:1}input::placeholder,textarea::placeholder{color:#4b4a58;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]:where(:not([hidden=until-found])){display:none}body,html{height:100%}body{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1));font-size:1rem;letter-spacing:.0125rem;line-height:120%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:1280px){body{font-size:1.125rem;line-height:120%}}body:is(.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}button,input,optgroup,select,textarea{font-size:.875rem;letter-spacing:.0125rem;line-height:120%}@media (min-width:1280px){button,input,optgroup,select,textarea{font-size:1rem;line-height:120%}}h1{font-size:1.5rem;font-weight:500;line-height:120%}@media (min-width:1280px){h1{font-size:2rem;line-height:120%}}@media (min-width:640px){h1{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}@media (min-width:1280px){h1{font-size:3.5rem;letter-spacing:-.0625rem;line-height:100%}}h2{font-size:1.25rem;font-weight:500;line-height:120%}@media (min-width:1280px){h2{font-size:1.5rem;line-height:120%}}@media (min-width:640px){h2{font-size:2rem;letter-spacing:0;line-height:120%}}@media (min-width:1280px){h2{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}h3{font-size:1.125rem;font-weight:500;line-height:120%}@media (min-width:1280px){h3{font-size:1.25rem;line-height:120%}}@media (min-width:640px){h3{font-size:1.5rem;line-height:120%}}@media (min-width:1280px){h3{font-size:2rem;line-height:120%}}h4{font-size:1rem;font-weight:500;line-height:120%}@media (min-width:1280px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:640px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:1280px){h4{font-size:1.5rem;line-height:120%}}h5{font-size:.875rem;font-weight:500;line-height:120%}@media (min-width:1280px){h5{font-size:1rem;line-height:120%}}@media (min-width:640px){h5{font-size:1rem;line-height:120%}}@media (min-width:1280px){h5{font-size:1.125rem;line-height:120%}}h6{font-size:.75rem;font-weight:500;line-height:135%}@media (min-width:1280px){h6{font-size:.875rem;line-height:120%}}@media (min-width:640px){h6{font-size:.875rem;line-height:120%}}@media (min-width:1280px){h6{font-size:1rem;line-height:120%}}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1920px){.container{max-width:1920px}}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.left-0{left:0}.right-0{right:0}.right-2{right:.5rem}.top-0{top:0}.top-1\\/2{top:50%}.my-4{margin-bottom:1rem;margin-top:1rem}.mb-1{margin-bottom:.25rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-7{margin-bottom:1.75rem}.mb-8{margin-bottom:2rem}.mr-2{margin-right:.5rem}.mr-4{margin-right:1rem}.mt-0\\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-8{margin-top:2rem}.line-clamp-1{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-5{height:1.25rem}.h-9{height:2.25rem}.h-full{height:100%}.min-h-\\[calc\\(100vh-83px\\)\\]{min-height:calc(100vh - 83px)}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.w-10{width:2.5rem}.w-12{width:3rem}.w-5{width:1.25rem}.w-9{width:2.25rem}.w-\\[calc\\(100\\%-theme\\(space\\.2\\)-theme\\(space\\.2\\)\\)\\]{width:calc(100% - 1rem)}.w-auto{width:auto}.w-full{width:100%}.min-w-0{min-width:0}.max-w-\\[1295px\\]{max-width:1295px}.max-w-md{max-width:28rem}.max-w-none{max-width:none}.max-w-sm{max-width:24rem}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.grow{flex-grow:1}.-translate-y-1\\/2{--tw-translate-y:-50%}.-translate-y-1\\/2,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.flex-col{flex-direction:column}.\\!flex-nowrap{flex-wrap:nowrap!important}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.\\!justify-between{justify-content:space-between!important}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-1\\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-y-1\\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.375rem*var(--tw-space-y-reverse));margin-top:calc(.375rem*(1 - var(--tw-space-y-reverse)))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.overflow-hidden,.truncate{overflow:hidden}.truncate{text-overflow:ellipsis;white-space:nowrap}.break-all{word-break:break-all}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.625rem}.rounded-md{border-radius:.375rem}.rounded-r-lg{border-bottom-right-radius:.625rem;border-top-right-radius:.625rem}.border{border-width:1px}.border-y{border-top-width:1px}.border-b,.border-y{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-gray-100{--tw-border-opacity:1;border-color:rgb(248 249 251/var(--tw-border-opacity,1))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(191 188 215/var(--tw-border-opacity,1))}.border-gray-200\\/50{border-color:rgba(191,188,215,.5)}.border-gray-300{--tw-border-opacity:1;border-color:rgb(136 134 159/var(--tw-border-opacity,1))}.border-gray-400{--tw-border-opacity:1;border-color:rgb(75 74 88/var(--tw-border-opacity,1))}.border-gray-500{--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity,1))}.border-red{--tw-border-opacity:1;border-color:rgb(252 90 90/var(--tw-border-opacity,1))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1))}.bg-gray-200\\/40{background-color:rgba(191,188,215,.4)}.bg-primary{background-color:var(--primary-color)}.bg-primaryHover{background-color:var(--primary-hover)}.bg-red\\/80{background-color:rgba(252,90,90,.8)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.bg-cover{background-size:cover}.bg-center{background-position:50%}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-0{padding-left:0;padding-right:0}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.pb-2{padding-bottom:.5rem}.pb-8{padding-bottom:2rem}.pl-12{padding-left:3rem}.pl-6{padding-left:1.5rem}.pr-12{padding-right:3rem}.pr-6{padding-right:1.5rem}.pr-8{padding-right:2rem}.pt-0{padding-top:0}.pt-2{padding-top:.5rem}.pt-2\\.5{padding-top:.625rem}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.indent-\\[5px\\]{text-indent:5px}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.\\!text-base{font-size:1rem!important;line-height:120%!important}.\\!text-xs{font-size:.75rem!important;line-height:135%!important}.text-2xl{font-size:1.5rem;line-height:120%}.text-3xl{font-size:2rem;line-height:120%}.text-base{font-size:1rem;line-height:120%}.text-lg{font-size:1.125rem;line-height:120%}.text-sm{font-size:.875rem;line-height:120%}.text-xl{font-size:1.25rem;line-height:120%}.text-xs{font-size:.75rem;line-height:135%}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.leading-\\[0\\]{line-height:0}.leading-none{line-height:1}.leading-tight{line-height:1.25}.tracking-tight{letter-spacing:-.025em}.text-\\[\\#B2B2B2\\]{--tw-text-opacity:1;color:rgb(178 178 178/var(--tw-text-opacity,1))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity,1))}.text-gray-200{--tw-text-opacity:1;color:rgb(191 188 215/var(--tw-text-opacity,1))}.text-gray-300{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.text-gray-400{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.text-gray-500{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.text-gray-800{--tw-text-opacity:1;color:rgb(20 20 26/var(--tw-text-opacity,1))}.text-green{--tw-text-opacity:1;color:rgb(54 191 118/var(--tw-text-opacity,1))}.text-primary{color:var(--primary-color)}.text-red{--tw-text-opacity:1;color:rgb(252 90 90/var(--tw-text-opacity,1))}.text-textOnPrimary{color:var(--text-on-primary)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.accent-\\[\\#4F2D7F\\]{accent-color:#4f2d7f}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-90{opacity:.9}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.ring-offset-white{--tw-ring-offset-color:#fff}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}.row-up-left{align-content:flex-start;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.row-left{justify-content:flex-start}.row,.row-left{align-content:center;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap}.row{justify-content:center}.column-left{align-items:flex-start}.column,.column-left{display:flex;flex-direction:column;justify-content:center}.column{align-items:center}@media (min-width:1280px){.text-5xl{font-size:5.125rem;letter-spacing:-.125rem;line-height:100%}.text-4xl{font-size:3.5rem}.text-3xl,.text-4xl{letter-spacing:-.0625rem;line-height:100%}.text-3xl{font-size:3rem}.text-2xl{font-size:2rem}.text-2xl,.text-xl{line-height:120%}.text-xl{font-size:1.5rem}.text-lg{font-size:1.25rem}.text-base,.text-lg{line-height:120%}.text-base{font-size:1.125rem}.text-sm{font-size:1rem}.text-sm,.text-xs{line-height:120%}.text-xs{font-size:.875rem}}:root{--primary-color:#7d68f4;--primary-hover:#9786f6;--text-on-primary:#fff}svg{transform:translate3d(var(--tw-translate-x),var(--tw-translate-y),0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}*,:after,:before{text-underline-offset:4px}input[type=number],input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:textfield!important}.btn.is-loading{cursor:not-allowed;opacity:.4;pointer-events:none}.btn .btn-spinner,.btn.is-loading .btn-label{opacity:0;visibility:hidden}.btn.is-loading .btn-spinner{opacity:1;visibility:visible}[class*=\" uicon-\"],[class^=uicon-]{letter-spacing:0;line-height:100%}.file\\:border-0::file-selector-button{border-width:0}.file\\:text-sm::file-selector-button{font-size:.875rem;line-height:120%}.file\\:font-medium::file-selector-button{font-weight:500}.placeholder\\:normal-case::-moz-placeholder{text-transform:none}.placeholder\\:normal-case::placeholder{text-transform:none}.placeholder\\:text-gray-300::-moz-placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.placeholder\\:text-gray-300::placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.placeholder\\:text-gray-500::-moz-placeholder{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.placeholder\\:text-gray-500::placeholder{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.first\\:rounded-l-md:first-child{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.first\\:border-l:first-child{border-left-width:1px}.last\\:rounded-r-md:last-child{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.hover\\:bg-black\\/5:hover{background-color:rgba(0,0,0,.05)}.hover\\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1))}.hover\\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(191 188 215/var(--tw-bg-opacity,1))}.hover\\:bg-gray-200\\/75:hover{background-color:rgba(191,188,215,.75)}.hover\\:bg-primaryHover:hover{background-color:var(--primary-hover)}.hover\\:bg-red\\/90:hover{background-color:rgba(252,90,90,.9)}.hover\\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity,1))}.hover\\:text-primaryHover:hover{color:var(--primary-hover)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:opacity-100:hover{opacity:1}.hover\\:brightness-90:hover{--tw-brightness:brightness(.9);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.focus\\:z-10:focus{z-index:10}.focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-1:focus,.focus\\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus-visible\\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\\:ring-2:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-visible\\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px}.disabled\\:pointer-events-none:disabled{pointer-events:none}.disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:opacity-50:disabled{opacity:.5}.group[open] .group-open\\:rotate-90{--tw-rotate:90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.peer:disabled~.peer-disabled\\:cursor-not-allowed{cursor:not-allowed}.peer:disabled~.peer-disabled\\:opacity-70{opacity:.7}.has-\\[\\:disabled\\]\\:opacity-50:has(:disabled){opacity:.5}.dark\\:border-gray-500:is(.dark *){--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity,1))}.dark\\:border-gray-600:is(.dark *){--tw-border-opacity:1;border-color:rgb(40 40 52/var(--tw-border-opacity,1))}.dark\\:border-gray-700:is(.dark *){--tw-border-opacity:1;border-color:rgb(30 30 39/var(--tw-border-opacity,1))}.dark\\:bg-black:is(.dark *){--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity,1))}.dark\\:bg-gray-600:is(.dark *){--tw-bg-opacity:1;background-color:rgb(40 40 52/var(--tw-bg-opacity,1))}.dark\\:bg-gray-700:is(.dark *){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity,1))}.dark\\:bg-gray-800:is(.dark *){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity,1))}.dark\\:text-\\[\\#201a41\\]:is(.dark *){--tw-text-opacity:1;color:rgb(32 26 65/var(--tw-text-opacity,1))}.dark\\:text-gray-300:is(.dark *){--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.dark\\:text-gray-400:is(.dark *){--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:text-white:is(.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.dark\\:ring-offset-gray-900:is(.dark *){--tw-ring-offset-color:#08080e}.dark\\:placeholder\\:text-gray-400:is(.dark *)::-moz-placeholder{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:placeholder\\:text-gray-400:is(.dark *)::placeholder{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:hover\\:bg-black\\/90:hover:is(.dark *){background-color:rgba(0,0,0,.9)}.dark\\:hover\\:bg-gray-700:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity,1))}.dark\\:hover\\:bg-gray-800:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity,1))}@media (min-width:640px){.sm\\:absolute{position:absolute}.sm\\:left-4{left:1rem}.sm\\:top-1\\/2{top:50%}.sm\\:mt-4{margin-top:1rem}.sm\\:inline{display:inline}.sm\\:h-6{height:1.5rem}.sm\\:min-h-\\[700px\\]{min-height:700px}.sm\\:w-6{width:1.5rem}.sm\\:w-\\[calc\\(100\\%-theme\\(space\\.16\\)-theme\\(space\\.16\\)\\)\\]{width:calc(100% - 8rem)}.sm\\:w-auto{width:auto}.sm\\:w-full{width:100%}.sm\\:max-w-md{max-width:28rem}.sm\\:-translate-y-1\\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\\:flex-col{flex-direction:column}.sm\\:justify-normal{justify-content:normal}.sm\\:space-x-0>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(0px*(1 - var(--tw-space-x-reverse)));margin-right:calc(0px*var(--tw-space-x-reverse))}.sm\\:space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.sm\\:bg-fixed{background-attachment:fixed}.sm\\:bg-left-top{background-position:0 0}.sm\\:px-10{padding-left:2.5rem;padding-right:2.5rem}.sm\\:px-14{padding-left:3.5rem;padding-right:3.5rem}.sm\\:py-14{padding-bottom:3.5rem;padding-top:3.5rem}.sm\\:py-4{padding-bottom:1rem;padding-top:1rem}.sm\\:pt-16{padding-top:4rem}.sm\\:text-2xl{font-size:1.5rem;line-height:120%}.sm\\:text-base{font-size:1rem;line-height:120%}}@media (min-width:1280px){.md\\:min-w-\\[448px\\]{min-width:448px}.md\\:p-10{padding:2.5rem}.md\\:py-10{padding-bottom:2.5rem;padding-top:2.5rem}.md\\:pl-10{padding-left:2.5rem}.md\\:pl-20{padding-left:5rem}.md\\:pr-10{padding-right:2.5rem}.md\\:pr-20{padding-right:5rem}.md\\:text-3xl{font-size:2rem;line-height:120%}.md\\:text-base{font-size:1rem;line-height:120%}.md\\:text-sm{font-size:.875rem;line-height:120%}.md\\:text-xs{font-size:.75rem;line-height:135%}}@media (max-height:900px) and (min-width:640px){.short\\:static{position:static}.short\\:left-auto{left:auto}.short\\:top-auto{top:auto}.short\\:inline{display:inline}.short\\:hidden{display:none}.short\\:h-5{height:1.25rem}.short\\:min-h-\\[558px\\]{min-height:558px}.short\\:w-5{width:1.25rem}.short\\:flex-1{flex:1 1 0%}.short\\:translate-y-0{--tw-translate-y:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.short\\:flex-row{flex-direction:row}.short\\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.short\\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.short\\:px-0{padding-left:0;padding-right:0}.short\\:py-3{padding-bottom:.75rem;padding-top:.75rem}}.\\[\\&\\>\\*\\:last-child\\]\\:mb-0>:last-child{margin-bottom:0}.\\[\\&_h1\\]\\:mb-6 h1,.\\[\\&_h2\\]\\:mb-6 h2{margin-bottom:1.5rem}";
|
|
1949
2446
|
|
|
1950
2447
|
declare function injectTailwindCSS(): void;
|
|
1951
2448
|
|
|
@@ -2641,6 +3138,13 @@ declare const CONTROL_PLANE_SYNC_SCOPE = "controlplane:sync";
|
|
|
2641
3138
|
* `createControlPlaneCustomDomainsAdapter`.
|
|
2642
3139
|
*/
|
|
2643
3140
|
declare const CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE = "controlplane:custom_domains";
|
|
3141
|
+
/**
|
|
3142
|
+
* Scope required by the authoritative `/tenant-members` resource on the control
|
|
3143
|
+
* plane — a tenant's team (organization membership + org-scoped roles +
|
|
3144
|
+
* invitations) that only the control plane can write. Tenant shards mint a
|
|
3145
|
+
* token with this scope through `createControlPlaneTenantMembersAdapter`.
|
|
3146
|
+
*/
|
|
3147
|
+
declare const CONTROL_PLANE_TENANT_MEMBERS_SCOPE = "controlplane:tenant_members";
|
|
2644
3148
|
|
|
2645
3149
|
/**
|
|
2646
3150
|
* Mints a bearer token for a tenant against the control plane. On a tenant
|
|
@@ -2723,6 +3227,71 @@ interface ControlPlaneCustomDomainsOptions {
|
|
|
2723
3227
|
*/
|
|
2724
3228
|
declare function createControlPlaneCustomDomainsAdapter(options: ControlPlaneCustomDomainsOptions): CustomDomainsAdapter;
|
|
2725
3229
|
|
|
3230
|
+
/** The control-plane adapters the team lives in. */
|
|
3231
|
+
type TeamAdapters = Pick<DataAdapters, "organizations" | "userOrganizations" | "userRoles" | "users" | "roles" | "invites">;
|
|
3232
|
+
interface LocalTenantMembersBackendOptions {
|
|
3233
|
+
/**
|
|
3234
|
+
* Adapters bound to the CONTROL-PLANE database — the team lives there, not on
|
|
3235
|
+
* the tenant shard. On the control-plane instance this is just `ctx.env.data`.
|
|
3236
|
+
*/
|
|
3237
|
+
data: TeamAdapters;
|
|
3238
|
+
/** Tenant id under which the org rows are stored (the control-plane tenant). */
|
|
3239
|
+
controlPlaneTenantId: string;
|
|
3240
|
+
/** Issuer used to build invitation acceptance links and default avatars. */
|
|
3241
|
+
issuer: string;
|
|
3242
|
+
/**
|
|
3243
|
+
* Client id embedded in invitation links. Resolved server-side so the caller
|
|
3244
|
+
* never supplies it (the admin-UI bug this fixes). Without it, invitations
|
|
3245
|
+
* cannot be created and `createInvitation` throws.
|
|
3246
|
+
*/
|
|
3247
|
+
invitationClientId?: string;
|
|
3248
|
+
/**
|
|
3249
|
+
* Best-effort invitation email delivery. Bound to a request context at the
|
|
3250
|
+
* call site (it needs branding/email infra). Failures must not fail the
|
|
3251
|
+
* create — Auth0 returns the invite even when delivery fails.
|
|
3252
|
+
*/
|
|
3253
|
+
sendInvitationEmail?: (params: {
|
|
3254
|
+
to: string;
|
|
3255
|
+
invitationUrl: string;
|
|
3256
|
+
inviterName?: string;
|
|
3257
|
+
organizationName: string;
|
|
3258
|
+
ttlSec: number;
|
|
3259
|
+
}) => Promise<void>;
|
|
3260
|
+
}
|
|
3261
|
+
/**
|
|
3262
|
+
* A `TenantMembersBackend` that resolves the tenant's control-plane
|
|
3263
|
+
* organization and manages membership/roles/invitations directly against the
|
|
3264
|
+
* control-plane adapters. Used where the code already runs with the
|
|
3265
|
+
* control-plane database in reach: single-instance deployments (via the
|
|
3266
|
+
* management route) and the control-plane proxy resource (which fronts remote
|
|
3267
|
+
* shards).
|
|
3268
|
+
*/
|
|
3269
|
+
declare function createLocalTenantMembersBackend(options: LocalTenantMembersBackendOptions): TenantMembersBackend;
|
|
3270
|
+
|
|
3271
|
+
interface ControlPlaneTenantMembersOptions {
|
|
3272
|
+
/** Authed transport to the control plane (shared with other adapters). */
|
|
3273
|
+
client: ControlPlaneClient;
|
|
3274
|
+
/** Override the control-plane resource path (tests, custom mounts). */
|
|
3275
|
+
basePath?: string;
|
|
3276
|
+
}
|
|
3277
|
+
/**
|
|
3278
|
+
* A `TenantMembersBackend` for a tenant shard whose own database does not hold
|
|
3279
|
+
* the control-plane organization that models its team. Every call is delegated
|
|
3280
|
+
* up to the authoritative `tenant-members` resource
|
|
3281
|
+
* (`createTenantMembersControlPlaneApp`) over the shared control-plane client,
|
|
3282
|
+
* which mints a service token bound to this tenant. The control plane pins the
|
|
3283
|
+
* org from that token, so the shard never has to (and cannot) name it.
|
|
3284
|
+
*/
|
|
3285
|
+
declare function createControlPlaneTenantMembersAdapter(options: ControlPlaneTenantMembersOptions): TenantMembersBackend;
|
|
3286
|
+
|
|
3287
|
+
/**
|
|
3288
|
+
* The HTTP contract shared by the control-plane `tenant-members` resource
|
|
3289
|
+
* (`createTenantMembersControlPlaneApp`) and the remote client that calls it
|
|
3290
|
+
* (`createControlPlaneTenantMembersAdapter`). Keeping the paths and body shapes
|
|
3291
|
+
* in one place is what keeps the two ends from drifting.
|
|
3292
|
+
*/
|
|
3293
|
+
declare const CONTROL_PLANE_TENANT_MEMBERS_PATH = "/api/v2/proxy/control-plane/tenant-members";
|
|
3294
|
+
|
|
2726
3295
|
interface ServiceTokenResponse {
|
|
2727
3296
|
access_token: string;
|
|
2728
3297
|
token_type: "Bearer";
|
|
@@ -2984,6 +3553,32 @@ interface VerifyControlPlaneTokenOptions {
|
|
|
2984
3553
|
* `proxy:resolve_host`.
|
|
2985
3554
|
*/
|
|
2986
3555
|
requiredScope?: string | string[];
|
|
3556
|
+
/**
|
|
3557
|
+
* Optional predicate consulted IN ADDITION to `expectedIssuers`, for issuers
|
|
3558
|
+
* that can't be enumerated ahead of time — specifically a deployment's own
|
|
3559
|
+
* Workers-for-Platforms tenant subdomains (`https://{tenant}.{host}/`), whose
|
|
3560
|
+
* per-tenant control-plane credential the accompanying `jwksFetch` resolves
|
|
3561
|
+
* locally (see #1139).
|
|
3562
|
+
*
|
|
3563
|
+
* Like `expectedIssuers`, it runs BEFORE the JWKS fetch, so it still gates
|
|
3564
|
+
* where the verifier will fetch keys from: return `true` only for issuer
|
|
3565
|
+
* hosts you actually serve. The signature must still verify against the
|
|
3566
|
+
* resolved key, so this does not broaden trust beyond "a caller holding that
|
|
3567
|
+
* tenant's registered private key."
|
|
3568
|
+
*
|
|
3569
|
+
* `tenantId` is the token's (as-yet UNVERIFIED) `tenant_id` claim. With
|
|
3570
|
+
* per-tenant signing keys the key owner is encoded in `iss` while the
|
|
3571
|
+
* `tenant_id` claim is set freely by the caller, so a predicate that only
|
|
3572
|
+
* looks at `iss` cannot stop tenant A (holding A's key) from acting on
|
|
3573
|
+
* tenant B by claiming `tenant_id: "B"`. Bind the two here — e.g.
|
|
3574
|
+
* `(iss, tid) => !!tid && iss === \`https://${tid}.${host}/\``. This is
|
|
3575
|
+
* sound despite `tenant_id` being unverified at predicate time: it is the
|
|
3576
|
+
* SAME token whose signature is checked moments later, so verification
|
|
3577
|
+
* confirms the exact `tenant_id` the predicate bound to `iss`. A forged
|
|
3578
|
+
* `tenant_id` either fails the predicate (mismatch with `iss`) or fails
|
|
3579
|
+
* signature verification (the caller lacks that subdomain's key).
|
|
3580
|
+
*/
|
|
3581
|
+
isTrustedIssuer?: (iss: string, tenantId: string | undefined) => boolean;
|
|
2987
3582
|
}
|
|
2988
3583
|
/**
|
|
2989
3584
|
* Verify a bearer token for the proxy control plane. Returns `{ ok: true }`
|
|
@@ -3537,7 +4132,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3537
4132
|
};
|
|
3538
4133
|
} & {
|
|
3539
4134
|
json: {
|
|
3540
|
-
type: "
|
|
4135
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
3541
4136
|
phone_number?: string | undefined;
|
|
3542
4137
|
totp_secret?: string | undefined;
|
|
3543
4138
|
credential_id?: string | undefined;
|
|
@@ -3677,7 +4272,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3677
4272
|
};
|
|
3678
4273
|
};
|
|
3679
4274
|
output: {
|
|
3680
|
-
name: "
|
|
4275
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3681
4276
|
enabled: boolean;
|
|
3682
4277
|
trial_expired?: boolean | undefined;
|
|
3683
4278
|
}[];
|
|
@@ -3832,7 +4427,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3832
4427
|
$get: {
|
|
3833
4428
|
input: {
|
|
3834
4429
|
param: {
|
|
3835
|
-
factor_name: "
|
|
4430
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3836
4431
|
};
|
|
3837
4432
|
} & {
|
|
3838
4433
|
header: {
|
|
@@ -3840,7 +4435,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3840
4435
|
};
|
|
3841
4436
|
};
|
|
3842
4437
|
output: {
|
|
3843
|
-
name: "
|
|
4438
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3844
4439
|
enabled: boolean;
|
|
3845
4440
|
trial_expired?: boolean | undefined;
|
|
3846
4441
|
};
|
|
@@ -3853,7 +4448,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3853
4448
|
$put: {
|
|
3854
4449
|
input: {
|
|
3855
4450
|
param: {
|
|
3856
|
-
factor_name: "
|
|
4451
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3857
4452
|
};
|
|
3858
4453
|
} & {
|
|
3859
4454
|
header: {
|
|
@@ -3865,7 +4460,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3865
4460
|
};
|
|
3866
4461
|
};
|
|
3867
4462
|
output: {
|
|
3868
|
-
name: "
|
|
4463
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3869
4464
|
enabled: boolean;
|
|
3870
4465
|
trial_expired?: boolean | undefined;
|
|
3871
4466
|
};
|
|
@@ -4644,9 +5239,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4644
5239
|
email?: string | undefined;
|
|
4645
5240
|
};
|
|
4646
5241
|
id?: string | undefined;
|
|
4647
|
-
connection_id?: string | undefined;
|
|
4648
5242
|
app_metadata?: Record<string, any> | undefined;
|
|
4649
5243
|
user_metadata?: Record<string, any> | undefined;
|
|
5244
|
+
connection_id?: string | undefined;
|
|
4650
5245
|
roles?: string[] | undefined;
|
|
4651
5246
|
ttl_sec?: number | undefined;
|
|
4652
5247
|
send_invitation_email?: boolean | undefined;
|
|
@@ -10358,7 +10953,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10358
10953
|
};
|
|
10359
10954
|
};
|
|
10360
10955
|
output: {
|
|
10361
|
-
prompt: "
|
|
10956
|
+
prompt: "signup" | "status" | "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
10957
|
language: string;
|
|
10363
10958
|
}[];
|
|
10364
10959
|
outputFormat: "json";
|
|
@@ -10396,7 +10991,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10396
10991
|
$get: {
|
|
10397
10992
|
input: {
|
|
10398
10993
|
param: {
|
|
10399
|
-
prompt: "
|
|
10994
|
+
prompt: "signup" | "status" | "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
10995
|
language: string;
|
|
10401
10996
|
};
|
|
10402
10997
|
} & {
|
|
@@ -10418,7 +11013,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10418
11013
|
$put: {
|
|
10419
11014
|
input: {
|
|
10420
11015
|
param: {
|
|
10421
|
-
prompt: "
|
|
11016
|
+
prompt: "signup" | "status" | "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
11017
|
language: string;
|
|
10423
11018
|
};
|
|
10424
11019
|
} & {
|
|
@@ -10442,7 +11037,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10442
11037
|
$delete: {
|
|
10443
11038
|
input: {
|
|
10444
11039
|
param: {
|
|
10445
|
-
prompt: "
|
|
11040
|
+
prompt: "signup" | "status" | "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
11041
|
language: string;
|
|
10447
11042
|
};
|
|
10448
11043
|
} & {
|
|
@@ -12255,7 +12850,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12255
12850
|
created_at: string;
|
|
12256
12851
|
updated_at: string;
|
|
12257
12852
|
name: string;
|
|
12258
|
-
provider: "auth0" | "
|
|
12853
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
12259
12854
|
connection: string;
|
|
12260
12855
|
enabled: boolean;
|
|
12261
12856
|
credentials: {
|
|
@@ -12287,7 +12882,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12287
12882
|
created_at: string;
|
|
12288
12883
|
updated_at: string;
|
|
12289
12884
|
name: string;
|
|
12290
|
-
provider: "auth0" | "
|
|
12885
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
12291
12886
|
connection: string;
|
|
12292
12887
|
enabled: boolean;
|
|
12293
12888
|
credentials: {
|
|
@@ -12313,7 +12908,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12313
12908
|
} & {
|
|
12314
12909
|
json: {
|
|
12315
12910
|
name: string;
|
|
12316
|
-
provider: "auth0" | "
|
|
12911
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
12317
12912
|
connection: string;
|
|
12318
12913
|
credentials: {
|
|
12319
12914
|
domain: string;
|
|
@@ -12330,7 +12925,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12330
12925
|
created_at: string;
|
|
12331
12926
|
updated_at: string;
|
|
12332
12927
|
name: string;
|
|
12333
|
-
provider: "auth0" | "
|
|
12928
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
12334
12929
|
connection: string;
|
|
12335
12930
|
enabled: boolean;
|
|
12336
12931
|
credentials: {
|
|
@@ -12361,7 +12956,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12361
12956
|
json: {
|
|
12362
12957
|
id?: string | undefined;
|
|
12363
12958
|
name?: string | undefined;
|
|
12364
|
-
provider?: "auth0" | "
|
|
12959
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
12365
12960
|
connection?: string | undefined;
|
|
12366
12961
|
enabled?: boolean | undefined;
|
|
12367
12962
|
credentials?: {
|
|
@@ -12377,7 +12972,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12377
12972
|
created_at: string;
|
|
12378
12973
|
updated_at: string;
|
|
12379
12974
|
name: string;
|
|
12380
|
-
provider: "auth0" | "
|
|
12975
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
12381
12976
|
connection: string;
|
|
12382
12977
|
enabled: boolean;
|
|
12383
12978
|
credentials: {
|
|
@@ -12595,7 +13190,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12595
13190
|
};
|
|
12596
13191
|
};
|
|
12597
13192
|
output: {
|
|
12598
|
-
type: "
|
|
13193
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12599
13194
|
date: string;
|
|
12600
13195
|
isMobile: boolean;
|
|
12601
13196
|
log_id: string;
|
|
@@ -12634,7 +13229,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12634
13229
|
limit: number;
|
|
12635
13230
|
length: number;
|
|
12636
13231
|
logs: {
|
|
12637
|
-
type: "
|
|
13232
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12638
13233
|
date: string;
|
|
12639
13234
|
isMobile: boolean;
|
|
12640
13235
|
log_id: string;
|
|
@@ -12673,7 +13268,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12673
13268
|
next?: string | undefined;
|
|
12674
13269
|
} | {
|
|
12675
13270
|
logs: {
|
|
12676
|
-
type: "
|
|
13271
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12677
13272
|
date: string;
|
|
12678
13273
|
isMobile: boolean;
|
|
12679
13274
|
log_id: string;
|
|
@@ -12727,7 +13322,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12727
13322
|
};
|
|
12728
13323
|
};
|
|
12729
13324
|
output: {
|
|
12730
|
-
type: "
|
|
13325
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12731
13326
|
date: string;
|
|
12732
13327
|
isMobile: boolean;
|
|
12733
13328
|
log_id: string;
|
|
@@ -13138,7 +13733,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13138
13733
|
addons?: {
|
|
13139
13734
|
[x: string]: any;
|
|
13140
13735
|
} | undefined;
|
|
13141
|
-
token_endpoint_auth_method?: "
|
|
13736
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13142
13737
|
client_metadata?: {
|
|
13143
13738
|
[x: string]: string;
|
|
13144
13739
|
} | undefined;
|
|
@@ -13240,7 +13835,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13240
13835
|
addons?: {
|
|
13241
13836
|
[x: string]: any;
|
|
13242
13837
|
} | undefined;
|
|
13243
|
-
token_endpoint_auth_method?: "
|
|
13838
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13244
13839
|
client_metadata?: {
|
|
13245
13840
|
[x: string]: string;
|
|
13246
13841
|
} | undefined;
|
|
@@ -13342,7 +13937,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13342
13937
|
addons?: {
|
|
13343
13938
|
[x: string]: any;
|
|
13344
13939
|
} | undefined;
|
|
13345
|
-
token_endpoint_auth_method?: "
|
|
13940
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13346
13941
|
client_metadata?: {
|
|
13347
13942
|
[x: string]: string;
|
|
13348
13943
|
} | undefined;
|
|
@@ -13459,7 +14054,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13459
14054
|
addons?: {
|
|
13460
14055
|
[x: string]: any;
|
|
13461
14056
|
} | undefined;
|
|
13462
|
-
token_endpoint_auth_method?: "
|
|
14057
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13463
14058
|
client_metadata?: {
|
|
13464
14059
|
[x: string]: string;
|
|
13465
14060
|
} | undefined;
|
|
@@ -13577,7 +14172,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13577
14172
|
custom_login_page_preview?: string | undefined;
|
|
13578
14173
|
form_template?: string | undefined;
|
|
13579
14174
|
addons?: Record<string, any> | undefined;
|
|
13580
|
-
token_endpoint_auth_method?: "
|
|
14175
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13581
14176
|
client_metadata?: Record<string, string> | undefined;
|
|
13582
14177
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
13583
14178
|
mobile?: Record<string, any> | undefined;
|
|
@@ -13663,7 +14258,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13663
14258
|
addons?: {
|
|
13664
14259
|
[x: string]: any;
|
|
13665
14260
|
} | undefined;
|
|
13666
|
-
token_endpoint_auth_method?: "
|
|
14261
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13667
14262
|
client_metadata?: {
|
|
13668
14263
|
[x: string]: string;
|
|
13669
14264
|
} | undefined;
|
|
@@ -13760,7 +14355,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13760
14355
|
custom_login_page_preview?: string | undefined;
|
|
13761
14356
|
form_template?: string | undefined;
|
|
13762
14357
|
addons?: Record<string, any> | undefined;
|
|
13763
|
-
token_endpoint_auth_method?: "
|
|
14358
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13764
14359
|
client_metadata?: Record<string, string> | undefined;
|
|
13765
14360
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
13766
14361
|
mobile?: Record<string, any> | undefined;
|
|
@@ -13846,7 +14441,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13846
14441
|
addons?: {
|
|
13847
14442
|
[x: string]: any;
|
|
13848
14443
|
} | undefined;
|
|
13849
|
-
token_endpoint_auth_method?: "
|
|
14444
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13850
14445
|
client_metadata?: {
|
|
13851
14446
|
[x: string]: string;
|
|
13852
14447
|
} | undefined;
|
|
@@ -15182,7 +15777,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15182
15777
|
};
|
|
15183
15778
|
};
|
|
15184
15779
|
output: {
|
|
15185
|
-
type: "
|
|
15780
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
15186
15781
|
date: string;
|
|
15187
15782
|
isMobile: boolean;
|
|
15188
15783
|
log_id: string;
|
|
@@ -15221,7 +15816,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15221
15816
|
limit: number;
|
|
15222
15817
|
length: number;
|
|
15223
15818
|
logs: {
|
|
15224
|
-
type: "
|
|
15819
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
15225
15820
|
date: string;
|
|
15226
15821
|
isMobile: boolean;
|
|
15227
15822
|
log_id: string;
|
|
@@ -16065,7 +16660,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16065
16660
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16066
16661
|
custom_domain_id: string;
|
|
16067
16662
|
primary: boolean;
|
|
16068
|
-
status: "
|
|
16663
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16069
16664
|
verification_method?: "txt" | undefined;
|
|
16070
16665
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16071
16666
|
domain_metadata?: {
|
|
@@ -16106,7 +16701,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16106
16701
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16107
16702
|
custom_domain_id: string;
|
|
16108
16703
|
primary: boolean;
|
|
16109
|
-
status: "
|
|
16704
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16110
16705
|
verification_method?: "txt" | undefined;
|
|
16111
16706
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16112
16707
|
domain_metadata?: {
|
|
@@ -16170,7 +16765,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16170
16765
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16171
16766
|
custom_domain_id: string;
|
|
16172
16767
|
primary: boolean;
|
|
16173
|
-
status: "
|
|
16768
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16174
16769
|
verification_method?: "txt" | undefined;
|
|
16175
16770
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16176
16771
|
domain_metadata?: {
|
|
@@ -16217,7 +16812,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16217
16812
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16218
16813
|
custom_domain_id: string;
|
|
16219
16814
|
primary: boolean;
|
|
16220
|
-
status: "
|
|
16815
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16221
16816
|
verification_method?: "txt" | undefined;
|
|
16222
16817
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16223
16818
|
domain_metadata?: {
|
|
@@ -16263,7 +16858,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16263
16858
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16264
16859
|
custom_domain_id: string;
|
|
16265
16860
|
primary: boolean;
|
|
16266
|
-
status: "
|
|
16861
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16267
16862
|
verification_method?: "txt" | undefined;
|
|
16268
16863
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16269
16864
|
domain_metadata?: {
|
|
@@ -16304,7 +16899,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16304
16899
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16305
16900
|
custom_domain_id: string;
|
|
16306
16901
|
primary: boolean;
|
|
16307
|
-
status: "
|
|
16902
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16308
16903
|
verification_method?: "txt" | undefined;
|
|
16309
16904
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16310
16905
|
domain_metadata?: {
|
|
@@ -18005,7 +18600,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18005
18600
|
scope?: string | undefined;
|
|
18006
18601
|
grant_types?: string[] | undefined;
|
|
18007
18602
|
response_types?: string[] | undefined;
|
|
18008
|
-
token_endpoint_auth_method?: "
|
|
18603
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
18009
18604
|
jwks_uri?: string | undefined;
|
|
18010
18605
|
jwks?: Record<string, unknown> | undefined;
|
|
18011
18606
|
software_id?: string | undefined;
|
|
@@ -18094,7 +18689,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18094
18689
|
scope?: string | undefined;
|
|
18095
18690
|
grant_types?: string[] | undefined;
|
|
18096
18691
|
response_types?: string[] | undefined;
|
|
18097
|
-
token_endpoint_auth_method?: "
|
|
18692
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
18098
18693
|
jwks_uri?: string | undefined;
|
|
18099
18694
|
jwks?: Record<string, unknown> | undefined;
|
|
18100
18695
|
software_id?: string | undefined;
|
|
@@ -18440,17 +19035,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18440
19035
|
email: string;
|
|
18441
19036
|
send: "code" | "link";
|
|
18442
19037
|
authParams: {
|
|
18443
|
-
audience?: string | undefined;
|
|
18444
19038
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
18445
19039
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
18446
19040
|
scope?: string | undefined;
|
|
18447
19041
|
username?: string | undefined;
|
|
19042
|
+
audience?: string | undefined;
|
|
19043
|
+
organization?: string | undefined;
|
|
18448
19044
|
state?: string | undefined;
|
|
18449
19045
|
nonce?: string | undefined;
|
|
18450
|
-
prompt?: string | undefined;
|
|
18451
19046
|
act_as?: string | undefined;
|
|
18452
19047
|
redirect_uri?: string | undefined;
|
|
18453
|
-
|
|
19048
|
+
prompt?: string | undefined;
|
|
18454
19049
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
18455
19050
|
code_challenge?: string | undefined;
|
|
18456
19051
|
ui_locales?: string | undefined;
|
|
@@ -18476,17 +19071,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18476
19071
|
phone_number: string;
|
|
18477
19072
|
send: "code" | "link";
|
|
18478
19073
|
authParams: {
|
|
18479
|
-
audience?: string | undefined;
|
|
18480
19074
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
18481
19075
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
18482
19076
|
scope?: string | undefined;
|
|
18483
19077
|
username?: string | undefined;
|
|
19078
|
+
audience?: string | undefined;
|
|
19079
|
+
organization?: string | undefined;
|
|
18484
19080
|
state?: string | undefined;
|
|
18485
19081
|
nonce?: string | undefined;
|
|
18486
|
-
prompt?: string | undefined;
|
|
18487
19082
|
act_as?: string | undefined;
|
|
18488
19083
|
redirect_uri?: string | undefined;
|
|
18489
|
-
|
|
19084
|
+
prompt?: string | undefined;
|
|
18490
19085
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
18491
19086
|
code_challenge?: string | undefined;
|
|
18492
19087
|
ui_locales?: string | undefined;
|
|
@@ -18620,14 +19215,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18620
19215
|
input: {
|
|
18621
19216
|
form: {
|
|
18622
19217
|
token: string;
|
|
18623
|
-
token_type_hint?: "
|
|
19218
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
18624
19219
|
client_id?: string | undefined;
|
|
18625
19220
|
client_secret?: string | undefined;
|
|
18626
19221
|
};
|
|
18627
19222
|
} & {
|
|
18628
19223
|
json: {
|
|
18629
19224
|
token: string;
|
|
18630
|
-
token_type_hint?: "
|
|
19225
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
18631
19226
|
client_id?: string | undefined;
|
|
18632
19227
|
client_secret?: string | undefined;
|
|
18633
19228
|
};
|
|
@@ -18639,14 +19234,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18639
19234
|
input: {
|
|
18640
19235
|
form: {
|
|
18641
19236
|
token: string;
|
|
18642
|
-
token_type_hint?: "
|
|
19237
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
18643
19238
|
client_id?: string | undefined;
|
|
18644
19239
|
client_secret?: string | undefined;
|
|
18645
19240
|
};
|
|
18646
19241
|
} & {
|
|
18647
19242
|
json: {
|
|
18648
19243
|
token: string;
|
|
18649
|
-
token_type_hint?: "
|
|
19244
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
18650
19245
|
client_id?: string | undefined;
|
|
18651
19246
|
client_secret?: string | undefined;
|
|
18652
19247
|
};
|
|
@@ -18661,14 +19256,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18661
19256
|
input: {
|
|
18662
19257
|
form: {
|
|
18663
19258
|
token: string;
|
|
18664
|
-
token_type_hint?: "
|
|
19259
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
18665
19260
|
client_id?: string | undefined;
|
|
18666
19261
|
client_secret?: string | undefined;
|
|
18667
19262
|
};
|
|
18668
19263
|
} & {
|
|
18669
19264
|
json: {
|
|
18670
19265
|
token: string;
|
|
18671
|
-
token_type_hint?: "
|
|
19266
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
18672
19267
|
client_id?: string | undefined;
|
|
18673
19268
|
client_secret?: string | undefined;
|
|
18674
19269
|
};
|
|
@@ -18718,7 +19313,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18718
19313
|
client_id: string;
|
|
18719
19314
|
username: string;
|
|
18720
19315
|
otp: string;
|
|
18721
|
-
realm: "
|
|
19316
|
+
realm: "email" | "sms";
|
|
18722
19317
|
} | {
|
|
18723
19318
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18724
19319
|
subject_token: string;
|
|
@@ -18765,7 +19360,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18765
19360
|
client_id: string;
|
|
18766
19361
|
username: string;
|
|
18767
19362
|
otp: string;
|
|
18768
|
-
realm: "
|
|
19363
|
+
realm: "email" | "sms";
|
|
18769
19364
|
} | {
|
|
18770
19365
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18771
19366
|
subject_token: string;
|
|
@@ -18817,7 +19412,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18817
19412
|
client_id: string;
|
|
18818
19413
|
username: string;
|
|
18819
19414
|
otp: string;
|
|
18820
|
-
realm: "
|
|
19415
|
+
realm: "email" | "sms";
|
|
18821
19416
|
} | {
|
|
18822
19417
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18823
19418
|
subject_token: string;
|
|
@@ -18864,7 +19459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18864
19459
|
client_id: string;
|
|
18865
19460
|
username: string;
|
|
18866
19461
|
otp: string;
|
|
18867
|
-
realm: "
|
|
19462
|
+
realm: "email" | "sms";
|
|
18868
19463
|
} | {
|
|
18869
19464
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18870
19465
|
subject_token: string;
|
|
@@ -18924,7 +19519,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18924
19519
|
client_id: string;
|
|
18925
19520
|
username: string;
|
|
18926
19521
|
otp: string;
|
|
18927
|
-
realm: "
|
|
19522
|
+
realm: "email" | "sms";
|
|
18928
19523
|
} | {
|
|
18929
19524
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18930
19525
|
subject_token: string;
|
|
@@ -18971,7 +19566,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18971
19566
|
client_id: string;
|
|
18972
19567
|
username: string;
|
|
18973
19568
|
otp: string;
|
|
18974
|
-
realm: "
|
|
19569
|
+
realm: "email" | "sms";
|
|
18975
19570
|
} | {
|
|
18976
19571
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18977
19572
|
subject_token: string;
|
|
@@ -19026,7 +19621,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19026
19621
|
client_id: string;
|
|
19027
19622
|
username: string;
|
|
19028
19623
|
otp: string;
|
|
19029
|
-
realm: "
|
|
19624
|
+
realm: "email" | "sms";
|
|
19030
19625
|
} | {
|
|
19031
19626
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19032
19627
|
subject_token: string;
|
|
@@ -19073,7 +19668,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19073
19668
|
client_id: string;
|
|
19074
19669
|
username: string;
|
|
19075
19670
|
otp: string;
|
|
19076
|
-
realm: "
|
|
19671
|
+
realm: "email" | "sms";
|
|
19077
19672
|
} | {
|
|
19078
19673
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19079
19674
|
subject_token: string;
|
|
@@ -19128,7 +19723,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19128
19723
|
client_id: string;
|
|
19129
19724
|
username: string;
|
|
19130
19725
|
otp: string;
|
|
19131
|
-
realm: "
|
|
19726
|
+
realm: "email" | "sms";
|
|
19132
19727
|
} | {
|
|
19133
19728
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19134
19729
|
subject_token: string;
|
|
@@ -19175,7 +19770,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19175
19770
|
client_id: string;
|
|
19176
19771
|
username: string;
|
|
19177
19772
|
otp: string;
|
|
19178
|
-
realm: "
|
|
19773
|
+
realm: "email" | "sms";
|
|
19179
19774
|
} | {
|
|
19180
19775
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19181
19776
|
subject_token: string;
|
|
@@ -19204,7 +19799,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19204
19799
|
output: {
|
|
19205
19800
|
keys: {
|
|
19206
19801
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
19207
|
-
kty: "
|
|
19802
|
+
kty: "RSA" | "EC" | "oct";
|
|
19208
19803
|
kid?: string | undefined;
|
|
19209
19804
|
use?: "sig" | "enc" | undefined;
|
|
19210
19805
|
n?: string | undefined;
|
|
@@ -20399,7 +20994,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20399
20994
|
$get: {
|
|
20400
20995
|
input: {
|
|
20401
20996
|
param: {
|
|
20402
|
-
screen: "signup" | "
|
|
20997
|
+
screen: "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
20403
20998
|
};
|
|
20404
20999
|
} & {
|
|
20405
21000
|
query: {
|
|
@@ -20415,7 +21010,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20415
21010
|
} | {
|
|
20416
21011
|
input: {
|
|
20417
21012
|
param: {
|
|
20418
|
-
screen: "signup" | "
|
|
21013
|
+
screen: "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
20419
21014
|
};
|
|
20420
21015
|
} & {
|
|
20421
21016
|
query: {
|
|
@@ -20431,7 +21026,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20431
21026
|
} | {
|
|
20432
21027
|
input: {
|
|
20433
21028
|
param: {
|
|
20434
|
-
screen: "signup" | "
|
|
21029
|
+
screen: "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
20435
21030
|
};
|
|
20436
21031
|
} & {
|
|
20437
21032
|
query: {
|
|
@@ -20451,7 +21046,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20451
21046
|
$post: {
|
|
20452
21047
|
input: {
|
|
20453
21048
|
param: {
|
|
20454
|
-
screen: "signup" | "
|
|
21049
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
20455
21050
|
};
|
|
20456
21051
|
} & {
|
|
20457
21052
|
query: {
|
|
@@ -20469,7 +21064,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20469
21064
|
} | {
|
|
20470
21065
|
input: {
|
|
20471
21066
|
param: {
|
|
20472
|
-
screen: "signup" | "
|
|
21067
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
20473
21068
|
};
|
|
20474
21069
|
} & {
|
|
20475
21070
|
query: {
|
|
@@ -20567,5 +21162,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20567
21162
|
createX509Certificate: typeof createX509Certificate;
|
|
20568
21163
|
};
|
|
20569
21164
|
|
|
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 };
|
|
21165
|
+
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 };
|
|
21166
|
+
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 };
|