@authhero/adapter-interfaces 3.4.0 → 3.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10090,6 +10090,23 @@ declare const grantSchema: z.ZodObject<{
10090
10090
  }, z.core.$strip>;
10091
10091
  type Grant = z.infer<typeof grantSchema>;
10092
10092
 
10093
+ /**
10094
+ * Write-often per-user counters split out of the `users` row (issue #1003) so
10095
+ * the profile row isn't rewritten on every login / failed password attempt.
10096
+ * 1:1 with a user, keyed by `(tenant_id, user_id)`.
10097
+ */
10098
+ declare const userActivitySchema: z.ZodObject<{
10099
+ user_id: z.ZodString;
10100
+ last_login: z.ZodOptional<z.ZodString>;
10101
+ last_ip: z.ZodOptional<z.ZodString>;
10102
+ login_count: z.ZodDefault<z.ZodNumber>;
10103
+ failed_logins: z.ZodOptional<z.ZodArray<z.ZodString>>;
10104
+ last_password_reset: z.ZodOptional<z.ZodString>;
10105
+ }, z.core.$strip>;
10106
+ type UserActivity = z.infer<typeof userActivitySchema>;
10107
+ /** Partial payload for an upsert — only the provided fields are written. */
10108
+ type UserActivityUpdate = Partial<Omit<UserActivity, "user_id">>;
10109
+
10093
10110
  declare const userPermissionInsertSchema: z.ZodObject<{
10094
10111
  user_id: z.ZodString;
10095
10112
  resource_server_identifier: z.ZodString;
@@ -10423,10 +10440,15 @@ type ActiveUsersResponse = z.infer<typeof activeUsersResponseSchema>;
10423
10440
 
10424
10441
  declare const analyticsResourceSchema: z.ZodEnum<{
10425
10442
  sessions: "sessions";
10443
+ mfa: "mfa";
10426
10444
  logins: "logins";
10427
10445
  signups: "signups";
10428
10446
  "active-users": "active-users";
10429
10447
  "refresh-tokens": "refresh-tokens";
10448
+ logouts: "logouts";
10449
+ "password-changes": "password-changes";
10450
+ "email-verifications": "email-verifications";
10451
+ "codes-sent": "codes-sent";
10430
10452
  }>;
10431
10453
  type AnalyticsResource = z.infer<typeof analyticsResourceSchema>;
10432
10454
  declare const analyticsIntervalSchema: z.ZodEnum<{
@@ -11324,6 +11346,15 @@ interface GrantsAdapter {
11324
11346
  removeByUser: (tenant_id: string, user_id: string) => Promise<boolean>;
11325
11347
  }
11326
11348
 
11349
+ interface UserActivityAdapter {
11350
+ get(tenantId: string, userId: string): Promise<UserActivity | null>;
11351
+ /**
11352
+ * Insert or merge-update the activity row for a user. Only the provided
11353
+ * fields are written; previously-stored fields are preserved.
11354
+ */
11355
+ upsert(tenantId: string, userId: string, activity: UserActivityUpdate): Promise<void>;
11356
+ }
11357
+
11327
11358
  interface UserPermissionsAdapter {
11328
11359
  create(tenant_id: string, user_id: string, permission: UserPermissionInsert, organization_id?: string, options?: CreateOptions): Promise<boolean>;
11329
11360
  remove(tenant_id: string, user_id: string, permission: Pick<UserPermissionInsert, "resource_server_identifier" | "permission_name">, organization_id?: string): Promise<boolean>;
@@ -11728,6 +11759,14 @@ interface DataAdapters {
11728
11759
  * `/api/v2/client-grants`, which is `clientGrants` above).
11729
11760
  */
11730
11761
  grants?: GrantsAdapter;
11762
+ /**
11763
+ * Optional write-often per-user activity counters (last_login, last_ip,
11764
+ * login_count, …) split out of the `users` row (issue #1003). When set, the
11765
+ * login flow double-writes these alongside the legacy `users` columns during
11766
+ * the expand/contract migration. When undefined, only the legacy columns are
11767
+ * written.
11768
+ */
11769
+ userActivity?: UserActivityAdapter;
11731
11770
  userPermissions: UserPermissionsAdapter;
11732
11771
  roles: RolesAdapter;
11733
11772
  sessions: SessionsAdapter;
@@ -11801,5 +11840,5 @@ interface DataAdapters {
11801
11840
  };
11802
11841
  }
11803
11842
 
11804
- export { Auth0ActionEnum, Auth0Client, AuthorizationResponseMode, AuthorizationResponseType, CodeChallengeMethod, ComponentCategory, ComponentType, EmailActionEnum, FORM_FIELD_TYPES, FlowActionTypeEnum, GrantType, LocationInfo, LogTypes, LoginSessionState, NodeType, RedirectTargetEnum, Strategy, StrategyType, actionDependencySchema, actionExecutionErrorSchema, actionExecutionInsertSchema, actionExecutionLogEntrySchema, actionExecutionLogsSchema, actionExecutionResultSchema, actionExecutionSchema, actionExecutionStatusSchema, actionExecutionTriggerIdSchema, actionInsertSchema, actionNodeSchema, actionSchema, actionSecretSchema, actionTriggerSchema, actionUpdateSchema, actionVersionInsertSchema, actionVersionSchema, activeUsersResponseSchema, actorSchema, addressSchema, analyticsColumnMetaSchema, analyticsGroupBySchema, analyticsIntervalSchema, analyticsQueryResponseSchema, analyticsResourceSchema, analyticsStatisticsSchema, analyticsUserTypeSchema, attackProtectionSchema, auditCategorySchema, auditEventInsertSchema, auditEventSchema, auth0ClientSchema, auth0FlowInsertSchema, auth0FlowSchema, auth0QuerySchema, auth0UpdateUserActionSchema, auth0UserResponseSchema, authParamsSchema, authenticationMethodInsertSchema, authenticationMethodSchema, authenticationMethodTypeSchema, baseUserSchema, blockComponentSchema, bordersSchema, brandingSchema, breachedPasswordDetectionSchema, bruteForceProtectionSchema, buttonComponentSchema, claimsRequestSchema, clientGrantInsertSchema, clientGrantListSchema, clientGrantSchema, clientInsertSchema, clientRegistrationTokenInsertSchema, clientRegistrationTokenSchema, clientRegistrationTokenTypeSchema, clientSchema, codeInsertSchema, codeSchema, codeTypeSchema, colorsSchema, componentMessageSchema, componentSchema, connectionInsertSchema, connectionOptionsSchema, connectionSchema, coordinatesSchema, createPassthroughAdapter, createWriteOnlyAdapter, customDomainCertificateUploadSchema, customDomainInsertSchema, customDomainSchema, customDomainUpdateSchema, customDomainWithTenantIdSchema, customTextEntrySchema, customTextSchema, dailyStatsSchema, emailProviderSchema, emailTemplateNameSchema, emailTemplateSchema, emailVerificationRulesSchema, emailVerifyActionSchema, endingSchema, fieldComponentSchema, flowActionStepSchema, flowInsertSchema, flowSchema, fieldComponentSchema$1 as flowsFieldComponentSchema, flowNodeSchema$1 as flowsFlowNodeSchema, stepNodeSchema$1 as flowsStepNodeSchema, fontDetailsSchema, fontsSchema, formControlSchema, formInsertSchema, formNodeComponentDefinition, formNodeSchema, formSchema, genericComponentSchema, genericNodeSchema, getConnectionIdentifierConfig, getLogTypeCategory, getLogTypeDescription, grantInsertSchema, grantSchema, handlerConfigSchema, hookCodeInsertSchema, hookCodeSchema, hookInsertSchema, hookSchema, hookTemplateId, hookTemplates, identitySchema, importMetadataSchema, inviteInsertSchema, inviteSchema, inviteeSchema, inviterSchema, isBlockComponent, isFieldComponent, isPlainObject, isWidgetComponent, jwksKeySchema, jwksSchema, legalComponentSchema, locationInfoSchema, logInsertSchema, logSchema, logStreamFilterSchema, logStreamInsertSchema, logStreamSchema, logStreamStatusSchema, logStreamTypeSchema, logTypeCategories, logTypeDescriptions, loginSessionAuthStrategySchema, loginSessionInsertSchema, loginSessionSchema, loginSessionStateSchema, matchSchema, migrationProviderTypeSchema, migrationSourceCredentialsSchema, migrationSourceInsertSchema, migrationSourceSchema, nodeSchema, openIDConfigurationSchema, organizationBrandingSchema, organizationConnectionInsertSchema, organizationConnectionListSchema, organizationConnectionSchema, organizationEnabledConnectionSchema, organizationInsertSchema, organizationSchema, organizationTokenQuotaSchema, pageBackgroundSchema, parseUserId, passwordInsertSchema, passwordSchema, profileDataSchema, promptScreenSchema, promptSettingSchema, proxyRouteInsertSchema, proxyRouteSchema, proxyRouteUpdateSchema, redirectActionSchema, refreshTokenInsertSchema, refreshTokenSchema, requestContextSchema, resourceServerInsertSchema, resourceServerListSchema, resourceServerOptionsSchema, resourceServerSchema, resourceServerScopeSchema, responseContextSchema, richTextComponentSchema, roleInsertSchema, roleListSchema, rolePermissionInsertSchema, rolePermissionListSchema, rolePermissionSchema, roleSchema, screenLinkSchema, sessionInsertSchema, sessionSchema, signingKeySchema, smsProviderSchema, smsSendParamsSchema, startSchema, suspiciousIpThrottlingSchema, targetSchema, tenantInsertSchema, tenantSchema, tenantSettingsSchema, themeInsertSchema, themeSchema, tokenResponseSchema, totalsSchema, uiScreenSchema, userInsertSchema, userOrganizationInsertSchema, userOrganizationSchema, userPermissionInsertSchema, userPermissionListSchema, userPermissionSchema, userPermissionWithDetailsListSchema, userPermissionWithDetailsSchema, userResponseSchema, userRoleInsertSchema, userRoleListSchema, userRoleSchema, userSchema, verificationMethodsSchema, widgetComponentSchema, widgetSchema };
11805
- export type { Action, ActionExecution, ActionExecutionError, ActionExecutionInsert, ActionExecutionLogEntry, ActionExecutionLogs, ActionExecutionResult, ActionExecutionStatus, ActionExecutionsAdapter, ActionInsert, ActionNode, ActionUpdate, ActionVersion, ActionVersionInsert, ActionVersionsAdapter, ActionsAdapter, ActiveUsersResponse, Actor, Address, AnalyticsAdapter, AnalyticsColumnMeta, AnalyticsFilters, AnalyticsGroupBy, AnalyticsInterval, AnalyticsQueryParams, AnalyticsQueryResponse, AnalyticsResource, AnalyticsUserType, AttackProtection, AuditCategory, AuditEvent, AuditEventInsert, Auth0Flow, Auth0FlowInsert, Auth0UpdateUserAction, AuthParams, AuthenticationMethod, AuthenticationMethodInsert, AuthenticationMethodType, AuthenticationMethodUpdate, AuthenticationMethodsAdapter, BaseUser, BlockComponent, BooleanField, Branding, BrandingAdapter, BreachedPasswordDetection, BruteForceProtection, ButtonComponent, CacheAdapter, CacheItem, CardsField, ChoiceField, ClaimsRequest, Client, ClientConnectionsAdapter, ClientGrant, ClientGrantInsert, ClientGrantList, ClientGrantsAdapter, ClientInsert, ClientRegistrationToken, ClientRegistrationTokenInsert, ClientRegistrationTokenType, ClientRegistrationTokensAdapter, ClientWithTenantId, ClientsAdapter, Code, CodeExecutionLog, CodeExecutionResult, CodeExecutor, CodeField, CodeInsert, CodeResponse, CodeType, CodesAdapter, Component, ComponentMessage, Connection, ConnectionInsert, ConnectionsAdapter, ContinuationScope, Coordinates, CountryField, CreateOptions, CreateServiceTokenFn, CreateServiceTokenParams, CreateTenantParams, CustomDomain, CustomDomainCertificateUpload, CustomDomainInsert, CustomDomainUpdate, CustomDomainWithTenantId, CustomDomainsAdapter, CustomField, CustomText, CustomTextAdapter, CustomTextEntry, DailyStats, DataAdapters, DateField, DividerComponent, DropdownField, EmailField, EmailProvider, EmailProvidersAdapter, EmailServiceAdapter, EmailServiceSendParams, EmailTemplate, EmailTemplateName, EmailTemplatesAdapter, EmailVerificationRules, EmailVerifyAction, Ending, FieldComponent, FileField, Flow, FlowActionStep, FlowActionType, FlowInsert, FlowNode, FlowsAdapter, FieldComponent$1 as FlowsFieldComponent, FlowNode$1 as FlowsFlowNode, StepNode$1 as FlowsStepNode, Form, FormControl, FormInsert, FormNode, FormNodeComponent, FormsAdapter, GenericComponent, GenericNode, GeoAdapter, GeoInfo, GmapsAddressWidget, Grant, GrantInsert, GrantsAdapter, HandlerConfig, Hook, HookCode, HookCodeAdapter, HookCodeInsert, HookInsert, HookTemplateId, HooksAdapter, HtmlComponent, Identity, ImageComponent, ImportMetadata, Invite, InviteInsert, Invitee, Inviter, InvitesAdapter, JumpButtonComponent, Jwk, Jwks, KeysAdapter, LegalComponent, LegalField, ListActionVersionsResponse, ListActionsResponse, ListClientGrantsResponse, ListCodesResponse, ListConnectionsResponse, ListFailedEventsResponse, ListFlowsResponse, ListFormsResponse, ListGrantsResponse, ListHooksResponse, ListInvitesResponse, ListKeysResponse, ListOrganizationsResponse, ListParams, ListProxyRoutesParams, ListProxyRoutesResult, ListRefreshTokenResponse, ListResourceServersResponse, ListRolesResponse, ListSesssionsResponse, ListUserRolesResponse, ListUsersResponse, Log, LogCategory, LogInsert, LogStream, LogStreamInsert, LogStreamsAdapter, LogType, LoginSession, LoginSessionAuthStrategy, LoginSessionInsert, LoginSessionsAdapter, LogsDataAdapter, MigrationProviderType, MigrationSource, MigrationSourceCredentials, MigrationSourceInsert, MigrationSourcesAdapter, NextButtonComponent, Node, NumberField, Organization, OrganizationConnection, OrganizationConnectionInsert, OrganizationConnectionList, OrganizationConnectionsAdapter, OrganizationInsert, OrganizationsAdapter, OutboxAdapter, OutboxEvent, PassthroughConfig, Password, PasswordField, PasswordInsert, PasswordsAdapter, PaymentField, PostUsersBody, PreviousButtonComponent, PromptScreen, PromptSetting, PromptSettingsAdapter, ProxyRoute, ProxyRouteInsert, ProxyRouteUpdate, ProxyRoutesAdapter, RateLimitAdapter, RateLimitDecision, RateLimitScope, RecaptchaWidget, RedirectAction, RedirectTarget, RefreshToken, RefreshTokenInsert, RefreshTokensAdapter, RequestContext, ResendButtonComponent, ResourceServer, ResourceServerInsert, ResourceServerList, ResourceServerOptions, ResourceServerScope, ResourceServersAdapter, ResponseContext, RichTextComponent, Role, RoleInsert, RoleList, RolePermission, RolePermissionInsert, RolePermissionList, RolePermissionsAdapter, RolesAdapter, RouteMatch, RouterNode, RuntimeComponent, ScreenLink, SecondaryAdapterConfig, Session, SessionCleanupParams, SessionInsert, SessionsAdapter, SigningKey, SmsProvider, SmsSendParams, SmsServiceAdapter, SmsServiceSendParams, SocialField, Start, StatsAdapter, StatsListParams, StepNode, SuspiciousIpThrottling, Target, TelField, Tenant, TenantSettings, TenantSettingsAdapter, TenantsDataAdapter, TextField, Theme, ThemeInsert, ThemesAdapter, TokenResponse, Totals, UiScreen, UniversalLoginTemplate, UniversalLoginTemplatesAdapter, UpdateRefreshTokenOptions, UrlField, User, UserDataAdapter, UserInsert, UserOrganization, UserOrganizationInsert, UserOrganizationsAdapter, UserPermission, UserPermissionInsert, UserPermissionList, UserPermissionWithDetails, UserPermissionWithDetailsList, UserPermissionsAdapter, UserResponse, UserRole, UserRoleInsert, UserRoleList, UserRolesAdapter, VerifiableCredentialsWidget, VerificationMethods, WidgetComponent };
11843
+ export { Auth0ActionEnum, Auth0Client, AuthorizationResponseMode, AuthorizationResponseType, CodeChallengeMethod, ComponentCategory, ComponentType, EmailActionEnum, FORM_FIELD_TYPES, FlowActionTypeEnum, GrantType, LocationInfo, LogTypes, LoginSessionState, NodeType, RedirectTargetEnum, Strategy, StrategyType, actionDependencySchema, actionExecutionErrorSchema, actionExecutionInsertSchema, actionExecutionLogEntrySchema, actionExecutionLogsSchema, actionExecutionResultSchema, actionExecutionSchema, actionExecutionStatusSchema, actionExecutionTriggerIdSchema, actionInsertSchema, actionNodeSchema, actionSchema, actionSecretSchema, actionTriggerSchema, actionUpdateSchema, actionVersionInsertSchema, actionVersionSchema, activeUsersResponseSchema, actorSchema, addressSchema, analyticsColumnMetaSchema, analyticsGroupBySchema, analyticsIntervalSchema, analyticsQueryResponseSchema, analyticsResourceSchema, analyticsStatisticsSchema, analyticsUserTypeSchema, attackProtectionSchema, auditCategorySchema, auditEventInsertSchema, auditEventSchema, auth0ClientSchema, auth0FlowInsertSchema, auth0FlowSchema, auth0QuerySchema, auth0UpdateUserActionSchema, auth0UserResponseSchema, authParamsSchema, authenticationMethodInsertSchema, authenticationMethodSchema, authenticationMethodTypeSchema, baseUserSchema, blockComponentSchema, bordersSchema, brandingSchema, breachedPasswordDetectionSchema, bruteForceProtectionSchema, buttonComponentSchema, claimsRequestSchema, clientGrantInsertSchema, clientGrantListSchema, clientGrantSchema, clientInsertSchema, clientRegistrationTokenInsertSchema, clientRegistrationTokenSchema, clientRegistrationTokenTypeSchema, clientSchema, codeInsertSchema, codeSchema, codeTypeSchema, colorsSchema, componentMessageSchema, componentSchema, connectionInsertSchema, connectionOptionsSchema, connectionSchema, coordinatesSchema, createPassthroughAdapter, createWriteOnlyAdapter, customDomainCertificateUploadSchema, customDomainInsertSchema, customDomainSchema, customDomainUpdateSchema, customDomainWithTenantIdSchema, customTextEntrySchema, customTextSchema, dailyStatsSchema, emailProviderSchema, emailTemplateNameSchema, emailTemplateSchema, emailVerificationRulesSchema, emailVerifyActionSchema, endingSchema, fieldComponentSchema, flowActionStepSchema, flowInsertSchema, flowSchema, fieldComponentSchema$1 as flowsFieldComponentSchema, flowNodeSchema$1 as flowsFlowNodeSchema, stepNodeSchema$1 as flowsStepNodeSchema, fontDetailsSchema, fontsSchema, formControlSchema, formInsertSchema, formNodeComponentDefinition, formNodeSchema, formSchema, genericComponentSchema, genericNodeSchema, getConnectionIdentifierConfig, getLogTypeCategory, getLogTypeDescription, grantInsertSchema, grantSchema, handlerConfigSchema, hookCodeInsertSchema, hookCodeSchema, hookInsertSchema, hookSchema, hookTemplateId, hookTemplates, identitySchema, importMetadataSchema, inviteInsertSchema, inviteSchema, inviteeSchema, inviterSchema, isBlockComponent, isFieldComponent, isPlainObject, isWidgetComponent, jwksKeySchema, jwksSchema, legalComponentSchema, locationInfoSchema, logInsertSchema, logSchema, logStreamFilterSchema, logStreamInsertSchema, logStreamSchema, logStreamStatusSchema, logStreamTypeSchema, logTypeCategories, logTypeDescriptions, loginSessionAuthStrategySchema, loginSessionInsertSchema, loginSessionSchema, loginSessionStateSchema, matchSchema, migrationProviderTypeSchema, migrationSourceCredentialsSchema, migrationSourceInsertSchema, migrationSourceSchema, nodeSchema, openIDConfigurationSchema, organizationBrandingSchema, organizationConnectionInsertSchema, organizationConnectionListSchema, organizationConnectionSchema, organizationEnabledConnectionSchema, organizationInsertSchema, organizationSchema, organizationTokenQuotaSchema, pageBackgroundSchema, parseUserId, passwordInsertSchema, passwordSchema, profileDataSchema, promptScreenSchema, promptSettingSchema, proxyRouteInsertSchema, proxyRouteSchema, proxyRouteUpdateSchema, redirectActionSchema, refreshTokenInsertSchema, refreshTokenSchema, requestContextSchema, resourceServerInsertSchema, resourceServerListSchema, resourceServerOptionsSchema, resourceServerSchema, resourceServerScopeSchema, responseContextSchema, richTextComponentSchema, roleInsertSchema, roleListSchema, rolePermissionInsertSchema, rolePermissionListSchema, rolePermissionSchema, roleSchema, screenLinkSchema, sessionInsertSchema, sessionSchema, signingKeySchema, smsProviderSchema, smsSendParamsSchema, startSchema, suspiciousIpThrottlingSchema, targetSchema, tenantInsertSchema, tenantSchema, tenantSettingsSchema, themeInsertSchema, themeSchema, tokenResponseSchema, totalsSchema, uiScreenSchema, userActivitySchema, userInsertSchema, userOrganizationInsertSchema, userOrganizationSchema, userPermissionInsertSchema, userPermissionListSchema, userPermissionSchema, userPermissionWithDetailsListSchema, userPermissionWithDetailsSchema, userResponseSchema, userRoleInsertSchema, userRoleListSchema, userRoleSchema, userSchema, verificationMethodsSchema, widgetComponentSchema, widgetSchema };
11844
+ export type { Action, ActionExecution, ActionExecutionError, ActionExecutionInsert, ActionExecutionLogEntry, ActionExecutionLogs, ActionExecutionResult, ActionExecutionStatus, ActionExecutionsAdapter, ActionInsert, ActionNode, ActionUpdate, ActionVersion, ActionVersionInsert, ActionVersionsAdapter, ActionsAdapter, ActiveUsersResponse, Actor, Address, AnalyticsAdapter, AnalyticsColumnMeta, AnalyticsFilters, AnalyticsGroupBy, AnalyticsInterval, AnalyticsQueryParams, AnalyticsQueryResponse, AnalyticsResource, AnalyticsUserType, AttackProtection, AuditCategory, AuditEvent, AuditEventInsert, Auth0Flow, Auth0FlowInsert, Auth0UpdateUserAction, AuthParams, AuthenticationMethod, AuthenticationMethodInsert, AuthenticationMethodType, AuthenticationMethodUpdate, AuthenticationMethodsAdapter, BaseUser, BlockComponent, BooleanField, Branding, BrandingAdapter, BreachedPasswordDetection, BruteForceProtection, ButtonComponent, CacheAdapter, CacheItem, CardsField, ChoiceField, ClaimsRequest, Client, ClientConnectionsAdapter, ClientGrant, ClientGrantInsert, ClientGrantList, ClientGrantsAdapter, ClientInsert, ClientRegistrationToken, ClientRegistrationTokenInsert, ClientRegistrationTokenType, ClientRegistrationTokensAdapter, ClientWithTenantId, ClientsAdapter, Code, CodeExecutionLog, CodeExecutionResult, CodeExecutor, CodeField, CodeInsert, CodeResponse, CodeType, CodesAdapter, Component, ComponentMessage, Connection, ConnectionInsert, ConnectionsAdapter, ContinuationScope, Coordinates, CountryField, CreateOptions, CreateServiceTokenFn, CreateServiceTokenParams, CreateTenantParams, CustomDomain, CustomDomainCertificateUpload, CustomDomainInsert, CustomDomainUpdate, CustomDomainWithTenantId, CustomDomainsAdapter, CustomField, CustomText, CustomTextAdapter, CustomTextEntry, DailyStats, DataAdapters, DateField, DividerComponent, DropdownField, EmailField, EmailProvider, EmailProvidersAdapter, EmailServiceAdapter, EmailServiceSendParams, EmailTemplate, EmailTemplateName, EmailTemplatesAdapter, EmailVerificationRules, EmailVerifyAction, Ending, FieldComponent, FileField, Flow, FlowActionStep, FlowActionType, FlowInsert, FlowNode, FlowsAdapter, FieldComponent$1 as FlowsFieldComponent, FlowNode$1 as FlowsFlowNode, StepNode$1 as FlowsStepNode, Form, FormControl, FormInsert, FormNode, FormNodeComponent, FormsAdapter, GenericComponent, GenericNode, GeoAdapter, GeoInfo, GmapsAddressWidget, Grant, GrantInsert, GrantsAdapter, HandlerConfig, Hook, HookCode, HookCodeAdapter, HookCodeInsert, HookInsert, HookTemplateId, HooksAdapter, HtmlComponent, Identity, ImageComponent, ImportMetadata, Invite, InviteInsert, Invitee, Inviter, InvitesAdapter, JumpButtonComponent, Jwk, Jwks, KeysAdapter, LegalComponent, LegalField, ListActionVersionsResponse, ListActionsResponse, ListClientGrantsResponse, ListCodesResponse, ListConnectionsResponse, ListFailedEventsResponse, ListFlowsResponse, ListFormsResponse, ListGrantsResponse, ListHooksResponse, ListInvitesResponse, ListKeysResponse, ListOrganizationsResponse, ListParams, ListProxyRoutesParams, ListProxyRoutesResult, ListRefreshTokenResponse, ListResourceServersResponse, ListRolesResponse, ListSesssionsResponse, ListUserRolesResponse, ListUsersResponse, Log, LogCategory, LogInsert, LogStream, LogStreamInsert, LogStreamsAdapter, LogType, LoginSession, LoginSessionAuthStrategy, LoginSessionInsert, LoginSessionsAdapter, LogsDataAdapter, MigrationProviderType, MigrationSource, MigrationSourceCredentials, MigrationSourceInsert, MigrationSourcesAdapter, NextButtonComponent, Node, NumberField, Organization, OrganizationConnection, OrganizationConnectionInsert, OrganizationConnectionList, OrganizationConnectionsAdapter, OrganizationInsert, OrganizationsAdapter, OutboxAdapter, OutboxEvent, PassthroughConfig, Password, PasswordField, PasswordInsert, PasswordsAdapter, PaymentField, PostUsersBody, PreviousButtonComponent, PromptScreen, PromptSetting, PromptSettingsAdapter, ProxyRoute, ProxyRouteInsert, ProxyRouteUpdate, ProxyRoutesAdapter, RateLimitAdapter, RateLimitDecision, RateLimitScope, RecaptchaWidget, RedirectAction, RedirectTarget, RefreshToken, RefreshTokenInsert, RefreshTokensAdapter, RequestContext, ResendButtonComponent, ResourceServer, ResourceServerInsert, ResourceServerList, ResourceServerOptions, ResourceServerScope, ResourceServersAdapter, ResponseContext, RichTextComponent, Role, RoleInsert, RoleList, RolePermission, RolePermissionInsert, RolePermissionList, RolePermissionsAdapter, RolesAdapter, RouteMatch, RouterNode, RuntimeComponent, ScreenLink, SecondaryAdapterConfig, Session, SessionCleanupParams, SessionInsert, SessionsAdapter, SigningKey, SmsProvider, SmsSendParams, SmsServiceAdapter, SmsServiceSendParams, SocialField, Start, StatsAdapter, StatsListParams, StepNode, SuspiciousIpThrottling, Target, TelField, Tenant, TenantSettings, TenantSettingsAdapter, TenantsDataAdapter, TextField, Theme, ThemeInsert, ThemesAdapter, TokenResponse, Totals, UiScreen, UniversalLoginTemplate, UniversalLoginTemplatesAdapter, UpdateRefreshTokenOptions, UrlField, User, UserActivity, UserActivityAdapter, UserActivityUpdate, UserDataAdapter, UserInsert, UserOrganization, UserOrganizationInsert, UserOrganizationsAdapter, UserPermission, UserPermissionInsert, UserPermissionList, UserPermissionWithDetails, UserPermissionWithDetailsList, UserPermissionsAdapter, UserResponse, UserRole, UserRoleInsert, UserRoleList, UserRolesAdapter, VerifiableCredentialsWidget, VerificationMethods, WidgetComponent };
@@ -2335,14 +2335,21 @@ var tr = e.object({
2335
2335
  audience: e.string().optional().openapi({ description: "The audience the grant applies to" }),
2336
2336
  scope: e.array(e.string()).default([]).openapi({ description: "The list of OAuth scopes the user has consented to" })
2337
2337
  }), kr = Or.extend({ id: e.string() }), Ar = e.object({
2338
+ user_id: e.string(),
2339
+ last_login: e.string().optional(),
2340
+ last_ip: e.string().optional(),
2341
+ login_count: e.number().default(0),
2342
+ failed_logins: e.array(e.string()).optional(),
2343
+ last_password_reset: e.string().optional()
2344
+ }), jr = e.object({
2338
2345
  user_id: e.string(),
2339
2346
  resource_server_identifier: e.string(),
2340
2347
  permission_name: e.string(),
2341
2348
  organization_id: e.string().optional()
2342
- }), jr = Ar.extend({
2349
+ }), Mr = jr.extend({
2343
2350
  tenant_id: e.string(),
2344
2351
  created_at: e.string().optional()
2345
- }), Mr = e.array(jr), Nr = e.object({
2352
+ }), Nr = e.array(Mr), Pr = e.object({
2346
2353
  user_id: e.string(),
2347
2354
  resource_server_identifier: e.string(),
2348
2355
  resource_server_name: e.string(),
@@ -2350,65 +2357,65 @@ var tr = e.object({
2350
2357
  description: e.string().nullable().optional(),
2351
2358
  created_at: e.string().optional(),
2352
2359
  organization_id: e.string().optional()
2353
- }), Pr = e.array(Nr), Fr = e.object({
2360
+ }), Fr = e.array(Pr), Ir = e.object({
2354
2361
  user_id: e.string(),
2355
2362
  role_id: e.string(),
2356
2363
  organization_id: e.string().optional()
2357
- }), Ir = Fr.extend({
2364
+ }), Lr = Ir.extend({
2358
2365
  tenant_id: e.string(),
2359
2366
  created_at: e.string().optional()
2360
- }), Lr = e.array(Ir), Rr = e.object({
2367
+ }), Rr = e.array(Lr), zr = e.object({
2361
2368
  id: e.string().optional().openapi({ description: "The unique identifier of the role. If not provided, one will be generated." }),
2362
2369
  name: e.string().min(1).max(50).openapi({ description: "The name of the role. Cannot include '<' or '>'" }),
2363
2370
  description: e.string().max(255).optional().openapi({ description: "The description of the role" }),
2364
2371
  is_system: e.boolean().optional(),
2365
2372
  metadata: e.record(e.string(), e.any()).optional().openapi({ description: "Metadata associated with the role. Can be used to control sync behavior in multi-tenancy scenarios." })
2366
- }), zr = Rr.extend({
2373
+ }), Br = zr.extend({
2367
2374
  id: e.string().openapi({ description: "The unique identifier of the role" }),
2368
2375
  created_at: e.string().optional(),
2369
2376
  updated_at: e.string().optional()
2370
- }), Br = e.array(zr), Vr = e.object({
2377
+ }), Vr = e.array(Br), Hr = e.object({
2371
2378
  logo_url: e.string().optional().openapi({ description: "URL of the organization's logo" }),
2372
2379
  colors: e.object({
2373
2380
  primary: e.string().optional().openapi({ description: "Primary color in hex format (e.g., #FF0000)" }),
2374
2381
  page_background: e.string().optional().openapi({ description: "Page background color in hex format (e.g., #FFFFFF)" })
2375
2382
  }).optional()
2376
- }).optional(), Hr = e.object({
2383
+ }).optional(), Ur = e.object({
2377
2384
  connection_id: e.string().openapi({ description: "ID of the connection" }),
2378
2385
  assign_membership_on_login: e.boolean().default(!1).openapi({ description: "Whether to assign membership to the organization on login" }),
2379
2386
  show_as_button: e.boolean().default(!0).openapi({ description: "Whether to show this connection as a button in the login screen" }),
2380
2387
  is_signup_enabled: e.boolean().default(!0).openapi({ description: "Whether signup is enabled for this connection" })
2381
- }), Ur = e.object({ client_credentials: e.object({
2388
+ }), Wr = e.object({ client_credentials: e.object({
2382
2389
  enforce: e.boolean().default(!1).openapi({ description: "Whether to enforce token quota limits" }),
2383
2390
  per_day: e.number().min(0).default(0).openapi({ description: "Maximum tokens per day (0 = unlimited)" }),
2384
2391
  per_hour: e.number().min(0).default(0).openapi({ description: "Maximum tokens per hour (0 = unlimited)" })
2385
- }).optional() }).optional(), Wr = e.object({
2392
+ }).optional() }).optional(), Gr = e.object({
2386
2393
  id: e.string().optional(),
2387
2394
  name: e.string().min(1).regex(/^[a-z0-9_-]+$/, { message: "Organization name must be lowercase and can only contain letters, numbers, hyphens, and underscores" }).openapi({ description: "The name of the organization. Must be lowercase and can only contain letters, numbers, hyphens, and underscores." }),
2388
2395
  display_name: e.string().optional().openapi({ description: "The display name of the organization" }),
2389
- branding: Vr,
2396
+ branding: Hr,
2390
2397
  metadata: e.record(e.string(), e.any()).default({}).optional().openapi({ description: "Custom metadata for the organization" }),
2391
- enabled_connections: e.array(Hr).default([]).optional().openapi({ description: "List of enabled connections for the organization" }),
2392
- token_quota: Ur
2393
- }), Gr = Wr.extend(t.shape).extend({
2398
+ enabled_connections: e.array(Ur).default([]).optional().openapi({ description: "List of enabled connections for the organization" }),
2399
+ token_quota: Wr
2400
+ }), Kr = Gr.extend(t.shape).extend({
2394
2401
  id: e.string(),
2395
2402
  name: e.string().min(1).openapi({ description: "The name of the organization" })
2396
- }), Kr = e.object({
2403
+ }), qr = e.object({
2397
2404
  connection_id: e.string().openapi({ description: "ID of the tenant-level connection to enable for the org." }),
2398
2405
  assign_membership_on_login: e.boolean().optional().default(!1),
2399
2406
  show_as_button: e.boolean().optional().default(!0),
2400
2407
  is_signup_enabled: e.boolean().optional().default(!0)
2401
- }), qr = Kr.extend({
2408
+ }), Jr = qr.extend({
2402
2409
  connection: e.object({
2403
2410
  name: e.string().optional(),
2404
2411
  strategy: e.string().optional()
2405
2412
  }).optional(),
2406
2413
  created_at: e.string().optional(),
2407
2414
  updated_at: e.string().optional()
2408
- }), Jr = e.array(qr), Yr = e.object({
2415
+ }), Yr = e.array(Jr), Xr = e.object({
2409
2416
  user_id: e.string().openapi({ description: "ID of the user" }),
2410
2417
  organization_id: e.string().openapi({ description: "ID of the organization" })
2411
- }), Xr = Yr.extend(t.shape).extend({ id: e.string() }), Zr = e.object({
2418
+ }), Zr = Xr.extend(t.shape).extend({ id: e.string() }), Qr = e.object({
2412
2419
  idle_session_lifetime: e.number().default(72),
2413
2420
  session_lifetime: e.number().default(168),
2414
2421
  session_cookie: e.object({ mode: e.enum(["persistent", "non-persistent"]).optional() }).optional(),
@@ -2487,7 +2494,7 @@ var tr = e.object({
2487
2494
  }).optional(),
2488
2495
  phone_message: e.object({ message: e.string().optional() }).optional()
2489
2496
  }).optional()
2490
- }), Qr = e.object({
2497
+ }), $r = e.object({
2491
2498
  date: e.string().openapi({
2492
2499
  description: "Date these events occurred in ISO 8601 format",
2493
2500
  example: "2025-12-19"
@@ -2512,55 +2519,60 @@ var tr = e.object({
2512
2519
  description: "Approximate date and time the first event occurred in ISO 8601 format",
2513
2520
  example: "2025-12-19T00:00:00.000Z"
2514
2521
  })
2515
- }), $r = e.number().openapi({
2522
+ }), ei = e.number().openapi({
2516
2523
  description: "Number of active users in the last 30 days",
2517
2524
  example: 1234
2518
- }), ei = e.enum([
2525
+ }), ti = e.enum([
2519
2526
  "active-users",
2520
2527
  "logins",
2521
2528
  "signups",
2522
2529
  "refresh-tokens",
2523
- "sessions"
2524
- ]), ti = e.enum([
2530
+ "sessions",
2531
+ "logouts",
2532
+ "password-changes",
2533
+ "mfa",
2534
+ "email-verifications",
2535
+ "codes-sent"
2536
+ ]), ni = e.enum([
2525
2537
  "hour",
2526
2538
  "day",
2527
2539
  "week",
2528
2540
  "month"
2529
- ]), ni = e.enum([
2541
+ ]), ri = e.enum([
2530
2542
  "time",
2531
2543
  "connection",
2532
2544
  "client_id",
2533
2545
  "user_type",
2534
2546
  "event"
2535
- ]), ri = e.enum([
2547
+ ]), ii = e.enum([
2536
2548
  "password",
2537
2549
  "social",
2538
2550
  "passwordless",
2539
2551
  "enterprise"
2540
- ]), ii = e.object({
2552
+ ]), ai = e.object({
2541
2553
  name: e.string(),
2542
2554
  type: e.string()
2543
- }), ai = e.object({
2555
+ }), oi = e.object({
2544
2556
  elapsed: e.number(),
2545
2557
  rows_read: e.number().optional(),
2546
2558
  bytes_read: e.number().optional()
2547
- }), oi = e.object({
2548
- meta: e.array(ii),
2559
+ }), si = e.object({
2560
+ meta: e.array(ai),
2549
2561
  data: e.array(e.record(e.string(), e.any())),
2550
2562
  rows: e.number(),
2551
2563
  rows_before_limit_at_least: e.number().optional(),
2552
- statistics: ai.optional()
2553
- }), si = e.enum(/* @__PURE__ */ "login.login-id.login-password.signup.signup-id.signup-password.reset-password.consent.mfa.mfa-push.mfa-otp.mfa-voice.mfa-phone.mfa-webauthn.mfa-email.mfa-recovery-code.status.device-flow.email-verification.email-otp-challenge.organizations.invitation.common.passkeys.captcha.custom-form.login-passwordless.mfa-login-options".split(".")), ci = e.record(e.string(), e.record(e.string(), e.string())).openapi({
2564
+ statistics: oi.optional()
2565
+ }), ci = e.enum(/* @__PURE__ */ "login.login-id.login-password.signup.signup-id.signup-password.reset-password.consent.mfa.mfa-push.mfa-otp.mfa-voice.mfa-phone.mfa-webauthn.mfa-email.mfa-recovery-code.status.device-flow.email-verification.email-otp-challenge.organizations.invitation.common.passkeys.captcha.custom-form.login-passwordless.mfa-login-options".split(".")), li = e.record(e.string(), e.record(e.string(), e.string())).openapi({
2554
2566
  type: "object",
2555
2567
  additionalProperties: {
2556
2568
  type: "object",
2557
2569
  additionalProperties: { type: "string" }
2558
2570
  }
2559
- }), li = e.object({
2560
- prompt: si,
2571
+ }), ui = e.object({
2572
+ prompt: ci,
2561
2573
  language: e.string(),
2562
- custom_text: ci
2563
- }), ui = {
2574
+ custom_text: li
2575
+ }), di = {
2564
2576
  EMAIL: "email",
2565
2577
  SMS: "sms",
2566
2578
  USERNAME_PASSWORD: "Username-Password-Authentication",
@@ -2576,11 +2588,11 @@ var tr = e.object({
2576
2588
  WAAD: "waad",
2577
2589
  ADFS: "adfs",
2578
2590
  OKTA: "okta"
2579
- }, di = {
2591
+ }, fi = {
2580
2592
  DATABASE: "database",
2581
2593
  SOCIAL: "social",
2582
2594
  PASSWORDLESS: "passwordless"
2583
- }, fi = e.enum([
2595
+ }, pi = e.enum([
2584
2596
  "phone",
2585
2597
  "totp",
2586
2598
  "email",
@@ -2588,9 +2600,9 @@ var tr = e.object({
2588
2600
  "webauthn-roaming",
2589
2601
  "webauthn-platform",
2590
2602
  "passkey"
2591
- ]), pi = e.object({
2603
+ ]), mi = e.object({
2592
2604
  user_id: e.string(),
2593
- type: fi,
2605
+ type: pi,
2594
2606
  phone_number: e.string().optional(),
2595
2607
  totp_secret: e.string().optional(),
2596
2608
  credential_id: e.string().optional(),
@@ -2601,7 +2613,7 @@ var tr = e.object({
2601
2613
  friendly_name: e.string().optional(),
2602
2614
  confirmed: e.boolean().default(!1)
2603
2615
  });
2604
- function mi(t, n) {
2616
+ function hi(t, n) {
2605
2617
  t.type === "phone" && !t.phone_number && n.addIssue({
2606
2618
  code: e.ZodIssueCode.custom,
2607
2619
  message: "phone_number is required when type is 'phone'",
@@ -2624,18 +2636,18 @@ function mi(t, n) {
2624
2636
  path: ["public_key"]
2625
2637
  }));
2626
2638
  }
2627
- var hi = pi.superRefine(mi), gi = pi.extend({
2639
+ var gi = mi.superRefine(hi), _i = mi.extend({
2628
2640
  id: e.string(),
2629
2641
  created_at: e.string(),
2630
2642
  updated_at: e.string()
2631
- }).superRefine(mi), _i = e.object({
2643
+ }).superRefine(hi), vi = e.object({
2632
2644
  id: e.string().optional(),
2633
2645
  created_at: e.string().datetime({ offset: !0 }).optional(),
2634
2646
  updated_at: e.string().datetime({ offset: !0 }).optional()
2635
2647
  });
2636
2648
  //#endregion
2637
2649
  //#region src/utils/user-id.ts
2638
- function vi(e) {
2650
+ function yi(e) {
2639
2651
  let [t, n] = e.split("|");
2640
2652
  if (!t || !n) throw Error(`Invalid user_id: ${e}`);
2641
2653
  return {
@@ -2645,7 +2657,7 @@ function vi(e) {
2645
2657
  }
2646
2658
  //#endregion
2647
2659
  //#region src/utils/passthrough.ts
2648
- function yi(e) {
2660
+ function bi(e) {
2649
2661
  let { primary: t, secondaries: n, syncMethods: r = [
2650
2662
  "create",
2651
2663
  "rawCreate",
@@ -2679,12 +2691,12 @@ function yi(e) {
2679
2691
  } : i.bind(e) : i;
2680
2692
  } });
2681
2693
  }
2682
- function bi(e) {
2694
+ function xi(e) {
2683
2695
  return e;
2684
2696
  }
2685
2697
  //#endregion
2686
2698
  //#region src/utils/connection-attributes.ts
2687
- function xi(e) {
2699
+ function Si(e) {
2688
2700
  let t = e?.options;
2689
2701
  if (!t) return {
2690
2702
  usernameIdentifierActive: !1,
@@ -2707,8 +2719,8 @@ function xi(e) {
2707
2719
  }
2708
2720
  //#endregion
2709
2721
  //#region src/utils/guards.ts
2710
- function Si(e) {
2722
+ function Ci(e) {
2711
2723
  return typeof e == "object" && !!e && !Array.isArray(e);
2712
2724
  }
2713
2725
  //#endregion
2714
- export { ve as Auth0ActionEnum, kn as Auth0Client, Be as AuthorizationResponseMode, ze as AuthorizationResponseType, Ve as CodeChallengeMethod, E as ComponentCategory, T as ComponentType, ye as EmailActionEnum, Ft as FORM_FIELD_TYPES, _e as FlowActionTypeEnum, $n as GrantType, An as LocationInfo, X as LogTypes, yn as LoginSessionState, Pe as NodeType, Ce as RedirectTargetEnum, ui as Strategy, di as StrategyType, r as actionDependencySchema, l as actionExecutionErrorSchema, ae as actionExecutionInsertSchema, ne as actionExecutionLogEntrySchema, re as actionExecutionLogsSchema, te as actionExecutionResultSchema, ie as actionExecutionSchema, c as actionExecutionStatusSchema, s as actionExecutionTriggerIdSchema, a as actionInsertSchema, I as actionNodeSchema, ee as actionSchema, i as actionSecretSchema, n as actionTriggerSchema, o as actionUpdateSchema, oe as actionVersionInsertSchema, se as actionVersionSchema, $r as activeUsersResponseSchema, le as actorSchema, h as addressSchema, ii as analyticsColumnMetaSchema, ni as analyticsGroupBySchema, ti as analyticsIntervalSchema, oi as analyticsQueryResponseSchema, ei as analyticsResourceSchema, ai as analyticsStatisticsSchema, ri as analyticsUserTypeSchema, Wn as attackProtectionSchema, ce as auditCategorySchema, he as auditEventInsertSchema, ge as auditEventSchema, me as auth0ClientSchema, Re as auth0FlowInsertSchema, Le as auth0FlowSchema, Te as auth0QuerySchema, xe as auth0UpdateUserActionSchema, De as auth0UserResponseSchema, We as authParamsSchema, hi as authenticationMethodInsertSchema, gi as authenticationMethodSchema, fi as authenticationMethodTypeSchema, g as baseUserSchema, Mt as blockComponentSchema, tr as bordersSchema, Ge as brandingSchema, Vn as breachedPasswordDetectionSchema, Hn as bruteForceProtectionSchema, k as buttonComponentSchema, Ue as claimsRequestSchema, b as clientGrantInsertSchema, Me as clientGrantListSchema, x as clientGrantSchema, y as clientInsertSchema, C as clientRegistrationTokenInsertSchema, Ne as clientRegistrationTokenSchema, S as clientRegistrationTokenTypeSchema, je as clientSchema, qe as codeInsertSchema, Je as codeSchema, Ke as codeTypeSchema, nr as colorsSchema, Ut as componentMessageSchema, N as componentSchema, Xe as connectionInsertSchema, Ye as connectionOptionsSchema, Ze as connectionSchema, w as coordinatesSchema, yi as createPassthroughAdapter, bi as createWriteOnlyAdapter, nt as customDomainCertificateUploadSchema, B as customDomainInsertSchema, $e as customDomainSchema, et as customDomainUpdateSchema, tt as customDomainWithTenantIdSchema, li as customTextEntrySchema, ci as customTextSchema, Qr as dailyStatsSchema, pr as emailProviderSchema, mr as emailTemplateNameSchema, hr as emailTemplateSchema, be as emailVerificationRulesSchema, Se as emailVerifyActionSchema, Ie as endingSchema, Pt as fieldComponentSchema, d as flowActionStepSchema, f as flowInsertSchema, we as flowSchema, j as flowsFieldComponentSchema, F as flowsFlowNodeSchema, P as flowsStepNodeSchema, Q as fontDetailsSchema, rr as fontsSchema, It as formControlSchema, Vt as formInsertSchema, G as formNodeComponentDefinition, Bt as formNodeSchema, Ht as formSchema, M as genericComponentSchema, L as genericNodeSchema, xi as getConnectionIdentifierConfig, On as getLogTypeCategory, Dn as getLogTypeDescription, Or as grantInsertSchema, kr as grantSchema, ur as handlerConfigSchema, dn as hookCodeInsertSchema, fn as hookCodeSchema, an as hookInsertSchema, un as hookSchema, q as hookTemplateId, $t as hookTemplates, m as identitySchema, _i as importMetadataSchema, Y as inviteInsertSchema, hn as inviteSchema, mn as inviteeSchema, pn as inviterSchema, Kt as isBlockComponent, Jt as isFieldComponent, Si as isPlainObject, qt as isWidgetComponent, _n as jwksKeySchema, gn as jwksSchema, A as legalComponentSchema, pe as locationInfoSchema, jn as logInsertSchema, Mn as logSchema, Pn as logStreamFilterSchema, Fn as logStreamInsertSchema, In as logStreamSchema, Z as logStreamStatusSchema, Nn as logStreamTypeSchema, En as logTypeCategories, Tn as logTypeDescriptions, xn as loginSessionAuthStrategySchema, Sn as loginSessionInsertSchema, Cn as loginSessionSchema, bn as loginSessionStateSchema, lr as matchSchema, Ln as migrationProviderTypeSchema, Rn as migrationSourceCredentialsSchema, zn as migrationSourceInsertSchema, Bn as migrationSourceSchema, R as nodeSchema, vn as openIDConfigurationSchema, Vr as organizationBrandingSchema, Kr as organizationConnectionInsertSchema, Jr as organizationConnectionListSchema, qr as organizationConnectionSchema, Hr as organizationEnabledConnectionSchema, Wr as organizationInsertSchema, Gr as organizationSchema, Ur as organizationTokenQuotaSchema, ir as pageBackgroundSchema, vi as parseUserId, Gn as passwordInsertSchema, Kn as passwordSchema, p as profileDataSchema, si as promptScreenSchema, cr as promptSettingSchema, $ as proxyRouteInsertSchema, dr as proxyRouteSchema, fr as proxyRouteUpdateSchema, u as redirectActionSchema, gr as refreshTokenInsertSchema, _r as refreshTokenSchema, de as requestContextSchema, Sr as resourceServerInsertSchema, wr as resourceServerListSchema, xr as resourceServerOptionsSchema, Cr as resourceServerSchema, br as resourceServerScopeSchema, fe as responseContextSchema, O as richTextComponentSchema, Rr as roleInsertSchema, Br as roleListSchema, Tr as rolePermissionInsertSchema, Dr as rolePermissionListSchema, Er as rolePermissionSchema, zr as roleSchema, Wt as screenLinkSchema, Jn as sessionInsertSchema, Yn as sessionSchema, Xn as signingKeySchema, yr as smsProviderSchema, vr as smsSendParamsSchema, Fe as startSchema, Un as suspiciousIpThrottlingSchema, ue as targetSchema, Zn as tenantInsertSchema, Qn as tenantSchema, Zr as tenantSettingsSchema, or as themeInsertSchema, sr as themeSchema, er as tokenResponseSchema, Ee as totalsSchema, Gt as uiScreenSchema, _ as userInsertSchema, Yr as userOrganizationInsertSchema, Xr as userOrganizationSchema, Ar as userPermissionInsertSchema, Mr as userPermissionListSchema, jr as userPermissionSchema, Pr as userPermissionWithDetailsListSchema, Nr as userPermissionWithDetailsSchema, Oe as userResponseSchema, Fr as userRoleInsertSchema, Lr as userRoleListSchema, Ir as userRoleSchema, v as userSchema, Qe as verificationMethodsSchema, Nt as widgetComponentSchema, ar as widgetSchema };
2726
+ export { ve as Auth0ActionEnum, kn as Auth0Client, Be as AuthorizationResponseMode, ze as AuthorizationResponseType, Ve as CodeChallengeMethod, E as ComponentCategory, T as ComponentType, ye as EmailActionEnum, Ft as FORM_FIELD_TYPES, _e as FlowActionTypeEnum, $n as GrantType, An as LocationInfo, X as LogTypes, yn as LoginSessionState, Pe as NodeType, Ce as RedirectTargetEnum, di as Strategy, fi as StrategyType, r as actionDependencySchema, l as actionExecutionErrorSchema, ae as actionExecutionInsertSchema, ne as actionExecutionLogEntrySchema, re as actionExecutionLogsSchema, te as actionExecutionResultSchema, ie as actionExecutionSchema, c as actionExecutionStatusSchema, s as actionExecutionTriggerIdSchema, a as actionInsertSchema, I as actionNodeSchema, ee as actionSchema, i as actionSecretSchema, n as actionTriggerSchema, o as actionUpdateSchema, oe as actionVersionInsertSchema, se as actionVersionSchema, ei as activeUsersResponseSchema, le as actorSchema, h as addressSchema, ai as analyticsColumnMetaSchema, ri as analyticsGroupBySchema, ni as analyticsIntervalSchema, si as analyticsQueryResponseSchema, ti as analyticsResourceSchema, oi as analyticsStatisticsSchema, ii as analyticsUserTypeSchema, Wn as attackProtectionSchema, ce as auditCategorySchema, he as auditEventInsertSchema, ge as auditEventSchema, me as auth0ClientSchema, Re as auth0FlowInsertSchema, Le as auth0FlowSchema, Te as auth0QuerySchema, xe as auth0UpdateUserActionSchema, De as auth0UserResponseSchema, We as authParamsSchema, gi as authenticationMethodInsertSchema, _i as authenticationMethodSchema, pi as authenticationMethodTypeSchema, g as baseUserSchema, Mt as blockComponentSchema, tr as bordersSchema, Ge as brandingSchema, Vn as breachedPasswordDetectionSchema, Hn as bruteForceProtectionSchema, k as buttonComponentSchema, Ue as claimsRequestSchema, b as clientGrantInsertSchema, Me as clientGrantListSchema, x as clientGrantSchema, y as clientInsertSchema, C as clientRegistrationTokenInsertSchema, Ne as clientRegistrationTokenSchema, S as clientRegistrationTokenTypeSchema, je as clientSchema, qe as codeInsertSchema, Je as codeSchema, Ke as codeTypeSchema, nr as colorsSchema, Ut as componentMessageSchema, N as componentSchema, Xe as connectionInsertSchema, Ye as connectionOptionsSchema, Ze as connectionSchema, w as coordinatesSchema, bi as createPassthroughAdapter, xi as createWriteOnlyAdapter, nt as customDomainCertificateUploadSchema, B as customDomainInsertSchema, $e as customDomainSchema, et as customDomainUpdateSchema, tt as customDomainWithTenantIdSchema, ui as customTextEntrySchema, li as customTextSchema, $r as dailyStatsSchema, pr as emailProviderSchema, mr as emailTemplateNameSchema, hr as emailTemplateSchema, be as emailVerificationRulesSchema, Se as emailVerifyActionSchema, Ie as endingSchema, Pt as fieldComponentSchema, d as flowActionStepSchema, f as flowInsertSchema, we as flowSchema, j as flowsFieldComponentSchema, F as flowsFlowNodeSchema, P as flowsStepNodeSchema, Q as fontDetailsSchema, rr as fontsSchema, It as formControlSchema, Vt as formInsertSchema, G as formNodeComponentDefinition, Bt as formNodeSchema, Ht as formSchema, M as genericComponentSchema, L as genericNodeSchema, Si as getConnectionIdentifierConfig, On as getLogTypeCategory, Dn as getLogTypeDescription, Or as grantInsertSchema, kr as grantSchema, ur as handlerConfigSchema, dn as hookCodeInsertSchema, fn as hookCodeSchema, an as hookInsertSchema, un as hookSchema, q as hookTemplateId, $t as hookTemplates, m as identitySchema, vi as importMetadataSchema, Y as inviteInsertSchema, hn as inviteSchema, mn as inviteeSchema, pn as inviterSchema, Kt as isBlockComponent, Jt as isFieldComponent, Ci as isPlainObject, qt as isWidgetComponent, _n as jwksKeySchema, gn as jwksSchema, A as legalComponentSchema, pe as locationInfoSchema, jn as logInsertSchema, Mn as logSchema, Pn as logStreamFilterSchema, Fn as logStreamInsertSchema, In as logStreamSchema, Z as logStreamStatusSchema, Nn as logStreamTypeSchema, En as logTypeCategories, Tn as logTypeDescriptions, xn as loginSessionAuthStrategySchema, Sn as loginSessionInsertSchema, Cn as loginSessionSchema, bn as loginSessionStateSchema, lr as matchSchema, Ln as migrationProviderTypeSchema, Rn as migrationSourceCredentialsSchema, zn as migrationSourceInsertSchema, Bn as migrationSourceSchema, R as nodeSchema, vn as openIDConfigurationSchema, Hr as organizationBrandingSchema, qr as organizationConnectionInsertSchema, Yr as organizationConnectionListSchema, Jr as organizationConnectionSchema, Ur as organizationEnabledConnectionSchema, Gr as organizationInsertSchema, Kr as organizationSchema, Wr as organizationTokenQuotaSchema, ir as pageBackgroundSchema, yi as parseUserId, Gn as passwordInsertSchema, Kn as passwordSchema, p as profileDataSchema, ci as promptScreenSchema, cr as promptSettingSchema, $ as proxyRouteInsertSchema, dr as proxyRouteSchema, fr as proxyRouteUpdateSchema, u as redirectActionSchema, gr as refreshTokenInsertSchema, _r as refreshTokenSchema, de as requestContextSchema, Sr as resourceServerInsertSchema, wr as resourceServerListSchema, xr as resourceServerOptionsSchema, Cr as resourceServerSchema, br as resourceServerScopeSchema, fe as responseContextSchema, O as richTextComponentSchema, zr as roleInsertSchema, Vr as roleListSchema, Tr as rolePermissionInsertSchema, Dr as rolePermissionListSchema, Er as rolePermissionSchema, Br as roleSchema, Wt as screenLinkSchema, Jn as sessionInsertSchema, Yn as sessionSchema, Xn as signingKeySchema, yr as smsProviderSchema, vr as smsSendParamsSchema, Fe as startSchema, Un as suspiciousIpThrottlingSchema, ue as targetSchema, Zn as tenantInsertSchema, Qn as tenantSchema, Qr as tenantSettingsSchema, or as themeInsertSchema, sr as themeSchema, er as tokenResponseSchema, Ee as totalsSchema, Gt as uiScreenSchema, Ar as userActivitySchema, _ as userInsertSchema, Xr as userOrganizationInsertSchema, Zr as userOrganizationSchema, jr as userPermissionInsertSchema, Nr as userPermissionListSchema, Mr as userPermissionSchema, Fr as userPermissionWithDetailsListSchema, Pr as userPermissionWithDetailsSchema, Oe as userResponseSchema, Ir as userRoleInsertSchema, Rr as userRoleListSchema, Lr as userRoleSchema, v as userSchema, Qe as verificationMethodsSchema, Nt as widgetComponentSchema, ar as widgetSchema };