@authhero/adapter-interfaces 3.4.1 → 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.
- package/dist/adapter-interfaces.cjs +1 -1
- package/dist/adapter-interfaces.d.ts +36 -2
- package/dist/adapter-interfaces.mjs +54 -47
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/adapters/UserActivity.d.ts +9 -0
- package/dist/types/adapters/index.d.ts +10 -0
- package/dist/types/types/UserActivity.d.ts +17 -0
- package/dist/types/types/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -11329,6 +11346,15 @@ interface GrantsAdapter {
|
|
|
11329
11346
|
removeByUser: (tenant_id: string, user_id: string) => Promise<boolean>;
|
|
11330
11347
|
}
|
|
11331
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
|
+
|
|
11332
11358
|
interface UserPermissionsAdapter {
|
|
11333
11359
|
create(tenant_id: string, user_id: string, permission: UserPermissionInsert, organization_id?: string, options?: CreateOptions): Promise<boolean>;
|
|
11334
11360
|
remove(tenant_id: string, user_id: string, permission: Pick<UserPermissionInsert, "resource_server_identifier" | "permission_name">, organization_id?: string): Promise<boolean>;
|
|
@@ -11733,6 +11759,14 @@ interface DataAdapters {
|
|
|
11733
11759
|
* `/api/v2/client-grants`, which is `clientGrants` above).
|
|
11734
11760
|
*/
|
|
11735
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;
|
|
11736
11770
|
userPermissions: UserPermissionsAdapter;
|
|
11737
11771
|
roles: RolesAdapter;
|
|
11738
11772
|
sessions: SessionsAdapter;
|
|
@@ -11806,5 +11840,5 @@ interface DataAdapters {
|
|
|
11806
11840
|
};
|
|
11807
11841
|
}
|
|
11808
11842
|
|
|
11809
|
-
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 };
|
|
11810
|
-
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
|
-
}),
|
|
2349
|
+
}), Mr = jr.extend({
|
|
2343
2350
|
tenant_id: e.string(),
|
|
2344
2351
|
created_at: e.string().optional()
|
|
2345
|
-
}),
|
|
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
|
-
}),
|
|
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
|
-
}),
|
|
2364
|
+
}), Lr = Ir.extend({
|
|
2358
2365
|
tenant_id: e.string(),
|
|
2359
2366
|
created_at: e.string().optional()
|
|
2360
|
-
}),
|
|
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
|
-
}),
|
|
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
|
-
}),
|
|
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(),
|
|
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
|
-
}),
|
|
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(),
|
|
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:
|
|
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(
|
|
2392
|
-
token_quota:
|
|
2393
|
-
}),
|
|
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
|
-
}),
|
|
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
|
-
}),
|
|
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
|
-
}),
|
|
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
|
-
}),
|
|
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
|
-
}),
|
|
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,10 +2519,10 @@ 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
|
-
}),
|
|
2522
|
+
}), ei = e.number().openapi({
|
|
2516
2523
|
description: "Number of active users in the last 30 days",
|
|
2517
2524
|
example: 1234
|
|
2518
|
-
}),
|
|
2525
|
+
}), ti = e.enum([
|
|
2519
2526
|
"active-users",
|
|
2520
2527
|
"logins",
|
|
2521
2528
|
"signups",
|
|
@@ -2526,46 +2533,46 @@ var tr = e.object({
|
|
|
2526
2533
|
"mfa",
|
|
2527
2534
|
"email-verifications",
|
|
2528
2535
|
"codes-sent"
|
|
2529
|
-
]),
|
|
2536
|
+
]), ni = e.enum([
|
|
2530
2537
|
"hour",
|
|
2531
2538
|
"day",
|
|
2532
2539
|
"week",
|
|
2533
2540
|
"month"
|
|
2534
|
-
]),
|
|
2541
|
+
]), ri = e.enum([
|
|
2535
2542
|
"time",
|
|
2536
2543
|
"connection",
|
|
2537
2544
|
"client_id",
|
|
2538
2545
|
"user_type",
|
|
2539
2546
|
"event"
|
|
2540
|
-
]),
|
|
2547
|
+
]), ii = e.enum([
|
|
2541
2548
|
"password",
|
|
2542
2549
|
"social",
|
|
2543
2550
|
"passwordless",
|
|
2544
2551
|
"enterprise"
|
|
2545
|
-
]),
|
|
2552
|
+
]), ai = e.object({
|
|
2546
2553
|
name: e.string(),
|
|
2547
2554
|
type: e.string()
|
|
2548
|
-
}),
|
|
2555
|
+
}), oi = e.object({
|
|
2549
2556
|
elapsed: e.number(),
|
|
2550
2557
|
rows_read: e.number().optional(),
|
|
2551
2558
|
bytes_read: e.number().optional()
|
|
2552
|
-
}),
|
|
2553
|
-
meta: e.array(
|
|
2559
|
+
}), si = e.object({
|
|
2560
|
+
meta: e.array(ai),
|
|
2554
2561
|
data: e.array(e.record(e.string(), e.any())),
|
|
2555
2562
|
rows: e.number(),
|
|
2556
2563
|
rows_before_limit_at_least: e.number().optional(),
|
|
2557
|
-
statistics:
|
|
2558
|
-
}),
|
|
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({
|
|
2559
2566
|
type: "object",
|
|
2560
2567
|
additionalProperties: {
|
|
2561
2568
|
type: "object",
|
|
2562
2569
|
additionalProperties: { type: "string" }
|
|
2563
2570
|
}
|
|
2564
|
-
}),
|
|
2565
|
-
prompt:
|
|
2571
|
+
}), ui = e.object({
|
|
2572
|
+
prompt: ci,
|
|
2566
2573
|
language: e.string(),
|
|
2567
|
-
custom_text:
|
|
2568
|
-
}),
|
|
2574
|
+
custom_text: li
|
|
2575
|
+
}), di = {
|
|
2569
2576
|
EMAIL: "email",
|
|
2570
2577
|
SMS: "sms",
|
|
2571
2578
|
USERNAME_PASSWORD: "Username-Password-Authentication",
|
|
@@ -2581,11 +2588,11 @@ var tr = e.object({
|
|
|
2581
2588
|
WAAD: "waad",
|
|
2582
2589
|
ADFS: "adfs",
|
|
2583
2590
|
OKTA: "okta"
|
|
2584
|
-
},
|
|
2591
|
+
}, fi = {
|
|
2585
2592
|
DATABASE: "database",
|
|
2586
2593
|
SOCIAL: "social",
|
|
2587
2594
|
PASSWORDLESS: "passwordless"
|
|
2588
|
-
},
|
|
2595
|
+
}, pi = e.enum([
|
|
2589
2596
|
"phone",
|
|
2590
2597
|
"totp",
|
|
2591
2598
|
"email",
|
|
@@ -2593,9 +2600,9 @@ var tr = e.object({
|
|
|
2593
2600
|
"webauthn-roaming",
|
|
2594
2601
|
"webauthn-platform",
|
|
2595
2602
|
"passkey"
|
|
2596
|
-
]),
|
|
2603
|
+
]), mi = e.object({
|
|
2597
2604
|
user_id: e.string(),
|
|
2598
|
-
type:
|
|
2605
|
+
type: pi,
|
|
2599
2606
|
phone_number: e.string().optional(),
|
|
2600
2607
|
totp_secret: e.string().optional(),
|
|
2601
2608
|
credential_id: e.string().optional(),
|
|
@@ -2606,7 +2613,7 @@ var tr = e.object({
|
|
|
2606
2613
|
friendly_name: e.string().optional(),
|
|
2607
2614
|
confirmed: e.boolean().default(!1)
|
|
2608
2615
|
});
|
|
2609
|
-
function
|
|
2616
|
+
function hi(t, n) {
|
|
2610
2617
|
t.type === "phone" && !t.phone_number && n.addIssue({
|
|
2611
2618
|
code: e.ZodIssueCode.custom,
|
|
2612
2619
|
message: "phone_number is required when type is 'phone'",
|
|
@@ -2629,18 +2636,18 @@ function mi(t, n) {
|
|
|
2629
2636
|
path: ["public_key"]
|
|
2630
2637
|
}));
|
|
2631
2638
|
}
|
|
2632
|
-
var
|
|
2639
|
+
var gi = mi.superRefine(hi), _i = mi.extend({
|
|
2633
2640
|
id: e.string(),
|
|
2634
2641
|
created_at: e.string(),
|
|
2635
2642
|
updated_at: e.string()
|
|
2636
|
-
}).superRefine(
|
|
2643
|
+
}).superRefine(hi), vi = e.object({
|
|
2637
2644
|
id: e.string().optional(),
|
|
2638
2645
|
created_at: e.string().datetime({ offset: !0 }).optional(),
|
|
2639
2646
|
updated_at: e.string().datetime({ offset: !0 }).optional()
|
|
2640
2647
|
});
|
|
2641
2648
|
//#endregion
|
|
2642
2649
|
//#region src/utils/user-id.ts
|
|
2643
|
-
function
|
|
2650
|
+
function yi(e) {
|
|
2644
2651
|
let [t, n] = e.split("|");
|
|
2645
2652
|
if (!t || !n) throw Error(`Invalid user_id: ${e}`);
|
|
2646
2653
|
return {
|
|
@@ -2650,7 +2657,7 @@ function vi(e) {
|
|
|
2650
2657
|
}
|
|
2651
2658
|
//#endregion
|
|
2652
2659
|
//#region src/utils/passthrough.ts
|
|
2653
|
-
function
|
|
2660
|
+
function bi(e) {
|
|
2654
2661
|
let { primary: t, secondaries: n, syncMethods: r = [
|
|
2655
2662
|
"create",
|
|
2656
2663
|
"rawCreate",
|
|
@@ -2684,12 +2691,12 @@ function yi(e) {
|
|
|
2684
2691
|
} : i.bind(e) : i;
|
|
2685
2692
|
} });
|
|
2686
2693
|
}
|
|
2687
|
-
function
|
|
2694
|
+
function xi(e) {
|
|
2688
2695
|
return e;
|
|
2689
2696
|
}
|
|
2690
2697
|
//#endregion
|
|
2691
2698
|
//#region src/utils/connection-attributes.ts
|
|
2692
|
-
function
|
|
2699
|
+
function Si(e) {
|
|
2693
2700
|
let t = e?.options;
|
|
2694
2701
|
if (!t) return {
|
|
2695
2702
|
usernameIdentifierActive: !1,
|
|
@@ -2712,8 +2719,8 @@ function xi(e) {
|
|
|
2712
2719
|
}
|
|
2713
2720
|
//#endregion
|
|
2714
2721
|
//#region src/utils/guards.ts
|
|
2715
|
-
function
|
|
2722
|
+
function Ci(e) {
|
|
2716
2723
|
return typeof e == "object" && !!e && !Array.isArray(e);
|
|
2717
2724
|
}
|
|
2718
2725
|
//#endregion
|
|
2719
|
-
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,
|
|
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 };
|