@authhero/adapter-interfaces 4.5.0 → 4.7.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.
@@ -2145,6 +2145,9 @@ declare const connectionOptionsSchema: z.ZodObject<{
2145
2145
  client_secret: z.ZodOptional<z.ZodString>;
2146
2146
  app_secret: z.ZodOptional<z.ZodString>;
2147
2147
  scope: z.ZodOptional<z.ZodString>;
2148
+ client_secret_hint: z.ZodOptional<z.ZodString>;
2149
+ app_secret_hint: z.ZodOptional<z.ZodString>;
2150
+ twilio_token_hint: z.ZodOptional<z.ZodString>;
2148
2151
  authorization_endpoint: z.ZodOptional<z.ZodString>;
2149
2152
  token_endpoint: z.ZodOptional<z.ZodString>;
2150
2153
  userinfo_endpoint: z.ZodOptional<z.ZodString>;
@@ -2191,6 +2194,7 @@ declare const connectionOptionsSchema: z.ZodObject<{
2191
2194
  userinfo_endpoint: z.ZodOptional<z.ZodString>;
2192
2195
  client_id: z.ZodOptional<z.ZodString>;
2193
2196
  client_secret: z.ZodOptional<z.ZodString>;
2197
+ client_secret_hint: z.ZodOptional<z.ZodString>;
2194
2198
  realm: z.ZodOptional<z.ZodString>;
2195
2199
  }, z.core.$strip>>;
2196
2200
  attributes: z.ZodOptional<z.ZodObject<{
@@ -2296,6 +2300,9 @@ declare const connectionInsertSchema: z.ZodObject<{
2296
2300
  client_secret: z.ZodOptional<z.ZodString>;
2297
2301
  app_secret: z.ZodOptional<z.ZodString>;
2298
2302
  scope: z.ZodOptional<z.ZodString>;
2303
+ client_secret_hint: z.ZodOptional<z.ZodString>;
2304
+ app_secret_hint: z.ZodOptional<z.ZodString>;
2305
+ twilio_token_hint: z.ZodOptional<z.ZodString>;
2299
2306
  authorization_endpoint: z.ZodOptional<z.ZodString>;
2300
2307
  token_endpoint: z.ZodOptional<z.ZodString>;
2301
2308
  userinfo_endpoint: z.ZodOptional<z.ZodString>;
@@ -2342,6 +2349,7 @@ declare const connectionInsertSchema: z.ZodObject<{
2342
2349
  userinfo_endpoint: z.ZodOptional<z.ZodString>;
2343
2350
  client_id: z.ZodOptional<z.ZodString>;
2344
2351
  client_secret: z.ZodOptional<z.ZodString>;
2352
+ client_secret_hint: z.ZodOptional<z.ZodString>;
2345
2353
  realm: z.ZodOptional<z.ZodString>;
2346
2354
  }, z.core.$strip>>;
2347
2355
  attributes: z.ZodOptional<z.ZodObject<{
@@ -2458,6 +2466,9 @@ declare const connectionSchema: z.ZodObject<{
2458
2466
  client_secret: z.ZodOptional<z.ZodString>;
2459
2467
  app_secret: z.ZodOptional<z.ZodString>;
2460
2468
  scope: z.ZodOptional<z.ZodString>;
2469
+ client_secret_hint: z.ZodOptional<z.ZodString>;
2470
+ app_secret_hint: z.ZodOptional<z.ZodString>;
2471
+ twilio_token_hint: z.ZodOptional<z.ZodString>;
2461
2472
  authorization_endpoint: z.ZodOptional<z.ZodString>;
2462
2473
  token_endpoint: z.ZodOptional<z.ZodString>;
2463
2474
  userinfo_endpoint: z.ZodOptional<z.ZodString>;
@@ -2504,6 +2515,7 @@ declare const connectionSchema: z.ZodObject<{
2504
2515
  userinfo_endpoint: z.ZodOptional<z.ZodString>;
2505
2516
  client_id: z.ZodOptional<z.ZodString>;
2506
2517
  client_secret: z.ZodOptional<z.ZodString>;
2518
+ client_secret_hint: z.ZodOptional<z.ZodString>;
2507
2519
  realm: z.ZodOptional<z.ZodString>;
2508
2520
  }, z.core.$strip>>;
2509
2521
  attributes: z.ZodOptional<z.ZodObject<{
@@ -7983,6 +7995,27 @@ declare function isBlockComponent(component: FormNodeComponent): component is Bl
7983
7995
  declare function isWidgetComponent(component: FormNodeComponent): component is WidgetComponent;
7984
7996
  declare function isFieldComponent(component: FormNodeComponent): component is FieldComponent;
7985
7997
 
7998
+ /**
7999
+ * Triggers the given stored hook is allowed to run on, or `undefined` when the
8000
+ * value isn't a recognisable hook.
8001
+ *
8002
+ * Needed because the update path validates a union of *partial* variant
8003
+ * schemas: a body carrying only `trigger_id` matches whichever member has no
8004
+ * other required field left, so the stored hook's type is invisible to the
8005
+ * request validator. Callers re-check the incoming trigger against the row
8006
+ * they're about to modify.
8007
+ */
8008
+ declare function allowedTriggersForHook(hook: unknown): readonly string[] | undefined;
8009
+ /**
8010
+ * Built-in universal-login pages a page hook can interrupt the login with.
8011
+ * The runtime redirects to `/u/{page_id}` (or `/u2/{page_id}`), so this enum
8012
+ * is the allowlist of interstitial screens — a free-form string would let a
8013
+ * misconfigured hook bounce logins to an arbitrary universal-login path.
8014
+ */
8015
+ declare const hookPageId: z.ZodEnum<{
8016
+ impersonate: "impersonate";
8017
+ }>;
8018
+ type HookPageId = z.infer<typeof hookPageId>;
7986
8019
  declare const hookTemplateId: z.ZodEnum<{
7987
8020
  "ensure-username": "ensure-username";
7988
8021
  "set-preferred-username": "set-preferred-username";
@@ -8018,12 +8051,7 @@ declare const hookInsertSchema: z.ZodUnion<readonly [z.ZodObject<{
8018
8051
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
8019
8052
  }, z.core.$strip>, z.ZodObject<{
8020
8053
  trigger_id: z.ZodEnum<{
8021
- "pre-user-registration": "pre-user-registration";
8022
- "post-user-registration": "post-user-registration";
8023
8054
  "post-user-login": "post-user-login";
8024
- "validate-registration-username": "validate-registration-username";
8025
- "pre-user-deletion": "pre-user-deletion";
8026
- "post-user-deletion": "post-user-deletion";
8027
8055
  }>;
8028
8056
  form_id: z.ZodString;
8029
8057
  enabled: z.ZodDefault<z.ZodBoolean>;
@@ -8061,6 +8089,19 @@ declare const hookInsertSchema: z.ZodUnion<readonly [z.ZodObject<{
8061
8089
  priority: z.ZodOptional<z.ZodNumber>;
8062
8090
  hook_id: z.ZodOptional<z.ZodString>;
8063
8091
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
8092
+ }, z.core.$strip>, z.ZodObject<{
8093
+ trigger_id: z.ZodEnum<{
8094
+ "post-user-login": "post-user-login";
8095
+ }>;
8096
+ page_id: z.ZodEnum<{
8097
+ impersonate: "impersonate";
8098
+ }>;
8099
+ permission_required: z.ZodOptional<z.ZodString>;
8100
+ enabled: z.ZodDefault<z.ZodBoolean>;
8101
+ synchronous: z.ZodDefault<z.ZodBoolean>;
8102
+ priority: z.ZodOptional<z.ZodNumber>;
8103
+ hook_id: z.ZodOptional<z.ZodString>;
8104
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
8064
8105
  }, z.core.$strip>]>;
8065
8106
  type HookInsert = z.infer<typeof hookInsertSchema>;
8066
8107
  declare const hookSchema: z.ZodUnion<readonly [z.ZodObject<{
@@ -8083,12 +8124,7 @@ declare const hookSchema: z.ZodUnion<readonly [z.ZodObject<{
8083
8124
  url: z.ZodString;
8084
8125
  }, z.core.$strip>, z.ZodObject<{
8085
8126
  trigger_id: z.ZodEnum<{
8086
- "pre-user-registration": "pre-user-registration";
8087
- "post-user-registration": "post-user-registration";
8088
8127
  "post-user-login": "post-user-login";
8089
- "validate-registration-username": "validate-registration-username";
8090
- "pre-user-deletion": "pre-user-deletion";
8091
- "post-user-deletion": "post-user-deletion";
8092
8128
  }>;
8093
8129
  enabled: z.ZodDefault<z.ZodBoolean>;
8094
8130
  synchronous: z.ZodDefault<z.ZodBoolean>;
@@ -8132,6 +8168,21 @@ declare const hookSchema: z.ZodUnion<readonly [z.ZodObject<{
8132
8168
  updated_at: z.ZodString;
8133
8169
  hook_id: z.ZodString;
8134
8170
  code_id: z.ZodString;
8171
+ }, z.core.$strip>, z.ZodObject<{
8172
+ trigger_id: z.ZodEnum<{
8173
+ "post-user-login": "post-user-login";
8174
+ }>;
8175
+ enabled: z.ZodDefault<z.ZodBoolean>;
8176
+ synchronous: z.ZodDefault<z.ZodBoolean>;
8177
+ priority: z.ZodOptional<z.ZodNumber>;
8178
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
8179
+ created_at: z.ZodString;
8180
+ updated_at: z.ZodString;
8181
+ hook_id: z.ZodString;
8182
+ page_id: z.ZodEnum<{
8183
+ impersonate: "impersonate";
8184
+ }>;
8185
+ permission_required: z.ZodOptional<z.ZodString>;
8135
8186
  }, z.core.$strip>]>;
8136
8187
  type Hook = z.infer<typeof hookSchema>;
8137
8188
 
@@ -10892,6 +10943,45 @@ interface AnalyticsQueryResponse {
10892
10943
  bytes_read?: number;
10893
10944
  };
10894
10945
  }
10946
+ interface SessionRetentionParams {
10947
+ /** Number of weekly cohorts to include, counting back from the current week */
10948
+ weeks: number;
10949
+ }
10950
+ interface SessionRetentionCohort {
10951
+ /** ISO date (UTC Monday) the cohort week starts on */
10952
+ cohort: string;
10953
+ /** Sessions created during the cohort week */
10954
+ sessions: number;
10955
+ /**
10956
+ * active[k] = sessions still active k weeks after the cohort week, i.e.
10957
+ * last used during week k or later. active[0] === sessions. The array is
10958
+ * truncated at the current week, so recent cohorts have fewer entries.
10959
+ */
10960
+ active: number[];
10961
+ }
10962
+ interface SessionRetentionResponse {
10963
+ interval: "week";
10964
+ /** Inclusive lower bound of the first cohort week */
10965
+ from: string;
10966
+ /** Timestamp the query ran at; the last cohort week is still in progress */
10967
+ to: string;
10968
+ cohorts: SessionRetentionCohort[];
10969
+ }
10970
+ declare const sessionRetentionCohortSchema: z.ZodObject<{
10971
+ cohort: z.ZodString;
10972
+ sessions: z.ZodNumber;
10973
+ active: z.ZodArray<z.ZodNumber>;
10974
+ }, z.core.$strip>;
10975
+ declare const sessionRetentionResponseSchema: z.ZodObject<{
10976
+ interval: z.ZodLiteral<"week">;
10977
+ from: z.ZodString;
10978
+ to: z.ZodString;
10979
+ cohorts: z.ZodArray<z.ZodObject<{
10980
+ cohort: z.ZodString;
10981
+ sessions: z.ZodNumber;
10982
+ active: z.ZodArray<z.ZodNumber>;
10983
+ }, z.core.$strip>>;
10984
+ }, z.core.$strip>;
10895
10985
  declare const analyticsColumnMetaSchema: z.ZodObject<{
10896
10986
  name: z.ZodString;
10897
10987
  type: z.ZodString;
@@ -11402,6 +11492,38 @@ declare function decodeCursor(token: string): CursorPayload | null;
11402
11492
  */
11403
11493
  declare function sanitizeLuceneQuery(query: string, allowedFields: string[]): string;
11404
11494
 
11495
+ declare const WEEK_MS: number;
11496
+ /**
11497
+ * The Unix epoch (1970-01-01) was a Thursday; adding 3 days before dividing
11498
+ * by a week aligns bucket boundaries to Monday 00:00 UTC.
11499
+ */
11500
+ declare const MONDAY_EPOCH_SHIFT_MS: number;
11501
+ /** Monday-aligned week index for an epoch-ms timestamp. */
11502
+ declare function weekIndex(epochMs: number): number;
11503
+ /** Epoch ms of the UTC Monday a week index starts on. */
11504
+ declare function weekStartMs(week: number): number;
11505
+ interface SessionRetentionWindow {
11506
+ currentWeek: number;
11507
+ firstWeek: number;
11508
+ /** Epoch ms lower bound for created_at_ts — the start of the first cohort week */
11509
+ sinceMs: number;
11510
+ }
11511
+ declare function sessionRetentionWindow(weeks: number, now?: number): SessionRetentionWindow;
11512
+ interface SessionRetentionRawRow {
11513
+ /** Monday-aligned week index the session was created in */
11514
+ created_week: number;
11515
+ /** Monday-aligned week index the session was last used in */
11516
+ used_week: number;
11517
+ count: number;
11518
+ }
11519
+ /**
11520
+ * Fold raw (created-week × last-used-week) counts into per-cohort retention.
11521
+ * A session counts as active k weeks after its cohort week when it was last
11522
+ * used during that week or any later one, so a single last-used timestamp is
11523
+ * enough to reconstruct the whole retention triangle.
11524
+ */
11525
+ declare function buildSessionRetention(rows: SessionRetentionRawRow[], weeks: number, now?: number): SessionRetentionResponse;
11526
+
11405
11527
  interface ListActionsResponse extends Totals {
11406
11528
  actions: Action[];
11407
11529
  }
@@ -12113,6 +12235,13 @@ interface AnalyticsAdapter {
12113
12235
  * tenant value from a client-controlled source.
12114
12236
  */
12115
12237
  query(tenantId: string, resource: AnalyticsResource, params: AnalyticsQueryParams): Promise<AnalyticsQueryResponse>;
12238
+ /**
12239
+ * Weekly session cohort retention, computed from the sessions table
12240
+ * (created_at_ts × used_at_ts) rather than logs. Optional: adapters that
12241
+ * only see log events (e.g. Analytics Engine) cannot implement it, and the
12242
+ * route responds 501 when it is absent.
12243
+ */
12244
+ sessionRetention?(tenantId: string, params: SessionRetentionParams): Promise<SessionRetentionResponse>;
12116
12245
  }
12117
12246
 
12118
12247
  interface UniversalLoginTemplate {
@@ -12561,5 +12690,5 @@ interface DataAdapters {
12561
12690
  };
12562
12691
  }
12563
12692
 
12564
- export { Auth0ActionEnum, Auth0Client, AuthorizationResponseMode, AuthorizationResponseType, CodeChallengeMethod, ComponentCategory, ComponentType, DATABASE_CONNECTION_STRATEGY, EmailActionEnum, FORM_FIELD_TYPES, FlowActionTypeEnum, GrantType, LocationInfo, LogTypes, LoginSessionState, NodeType, RedirectTargetEnum, Strategy, StrategyType, TRIGGER_API_SHAPES, 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, decodeBase32, decodeBase64, decodeBase64Url, decodeBase64UrlString, decodeCursor, emailProviderSchema, emailTemplateNameSchema, emailTemplateSchema, emailVerificationRulesSchema, emailVerifyActionSchema, encodeBase32, encodeBase64, encodeBase64Url, encodeBase64UrlString, encodeCursor, encodeHex, 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, isDatabaseConnectionStrategy, 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, rolloutInsertSchema, rolloutKindSchema, rolloutSchema, rolloutStatusSchema, rolloutUpdateSchema, sanitizeLuceneQuery, scimConfigurationInsertSchema, scimConfigurationSchema, scimExternalIdInsertSchema, scimExternalIdSchema, scimMappingEntrySchema, scimTokenInsertSchema, scimTokenSchema, screenLinkSchema, sessionInsertSchema, sessionSchema, signingKeySchema, smsProviderSchema, smsSendParamsSchema, startSchema, suspiciousIpThrottlingSchema, targetSchema, tenantInsertSchema, tenantOperationEngineSchema, tenantOperationEventInsertSchema, tenantOperationEventOutcomeSchema, tenantOperationEventSchema, tenantOperationInsertSchema, tenantOperationKindSchema, tenantOperationSchema, tenantOperationStatusSchema, tenantOperationUpdateSchema, tenantSchema, tenantSettingsSchema, themeInsertSchema, themeSchema, tokenResponseSchema, totalsSchema, uiScreenSchema, userActivitySchema, userInsertSchema, userOrganizationInsertSchema, userOrganizationSchema, userPermissionInsertSchema, userPermissionListSchema, userPermissionSchema, userPermissionWithDetailsListSchema, userPermissionWithDetailsSchema, userResponseSchema, userRoleInsertSchema, userRoleListSchema, userRoleSchema, userSchema, verificationMethodsSchema, widgetComponentSchema, widgetSchema };
12565
- 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, CursorPayload, 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, LinkCandidate, ListActionVersionsResponse, ListActionsResponse, ListClientGrantsResponse, ListCodesResponse, ListConnectionsResponse, ListFailedEventsResponse, ListFlowsResponse, ListFormsResponse, ListGrantsResponse, ListHooksResponse, ListInvitesResponse, ListKeysResponse, ListOrganizationsResponse, ListParams, ListProxyRoutesParams, ListProxyRoutesResult, ListRefreshTokenResponse, ListResourceServersResponse, ListRoleUsersResponse, ListRolesResponse, ListRolloutsResult, ListSesssionsResponse, ListTenantOperationEventsResult, ListTenantOperationsParams, ListTenantOperationsResult, 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, OutboxEventInsert, 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, Rollout, RolloutInsert, RolloutKind, RolloutStatus, RolloutUpdate, RolloutsAdapter, RouteMatch, RouterNode, RuntimeComponent, ScimConfiguration, ScimConfigurationInsert, ScimConfigurationsAdapter, ScimExternalId, ScimExternalIdInsert, ScimExternalIdsAdapter, ScimMappingEntry, ScimToken, ScimTokenInsert, ScimTokensAdapter, ScreenLink, SecondaryAdapterConfig, Session, SessionCleanupParams, SessionInsert, SessionsAdapter, SigningKey, SmsProvider, SmsSendParams, SmsServiceAdapter, SmsServiceSendParams, SocialField, Start, StatsAdapter, StatsListParams, StepNode, SuspiciousIpThrottling, Target, TelField, Tenant, TenantOperation, TenantOperationEngine, TenantOperationEvent, TenantOperationEventInsert, TenantOperationEventOutcome, TenantOperationEventsAdapter, TenantOperationInsert, TenantOperationKind, TenantOperationStatus, TenantOperationUpdate, TenantOperationsAdapter, 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, WriteOptions };
12693
+ export { Auth0ActionEnum, Auth0Client, AuthorizationResponseMode, AuthorizationResponseType, CodeChallengeMethod, ComponentCategory, ComponentType, DATABASE_CONNECTION_STRATEGY, EmailActionEnum, FORM_FIELD_TYPES, FlowActionTypeEnum, GrantType, LocationInfo, LogTypes, LoginSessionState, MONDAY_EPOCH_SHIFT_MS, NodeType, RedirectTargetEnum, Strategy, StrategyType, TRIGGER_API_SHAPES, WEEK_MS, actionDependencySchema, actionExecutionErrorSchema, actionExecutionInsertSchema, actionExecutionLogEntrySchema, actionExecutionLogsSchema, actionExecutionResultSchema, actionExecutionSchema, actionExecutionStatusSchema, actionExecutionTriggerIdSchema, actionInsertSchema, actionNodeSchema, actionSchema, actionSecretSchema, actionTriggerSchema, actionUpdateSchema, actionVersionInsertSchema, actionVersionSchema, activeUsersResponseSchema, actorSchema, addressSchema, allowedTriggersForHook, 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, buildSessionRetention, 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, decodeBase32, decodeBase64, decodeBase64Url, decodeBase64UrlString, decodeCursor, emailProviderSchema, emailTemplateNameSchema, emailTemplateSchema, emailVerificationRulesSchema, emailVerifyActionSchema, encodeBase32, encodeBase64, encodeBase64Url, encodeBase64UrlString, encodeCursor, encodeHex, 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, hookPageId, hookSchema, hookTemplateId, hookTemplates, identitySchema, importMetadataSchema, inviteInsertSchema, inviteSchema, inviteeSchema, inviterSchema, isBlockComponent, isDatabaseConnectionStrategy, 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, rolloutInsertSchema, rolloutKindSchema, rolloutSchema, rolloutStatusSchema, rolloutUpdateSchema, sanitizeLuceneQuery, scimConfigurationInsertSchema, scimConfigurationSchema, scimExternalIdInsertSchema, scimExternalIdSchema, scimMappingEntrySchema, scimTokenInsertSchema, scimTokenSchema, screenLinkSchema, sessionInsertSchema, sessionRetentionCohortSchema, sessionRetentionResponseSchema, sessionRetentionWindow, sessionSchema, signingKeySchema, smsProviderSchema, smsSendParamsSchema, startSchema, suspiciousIpThrottlingSchema, targetSchema, tenantInsertSchema, tenantOperationEngineSchema, tenantOperationEventInsertSchema, tenantOperationEventOutcomeSchema, tenantOperationEventSchema, tenantOperationInsertSchema, tenantOperationKindSchema, tenantOperationSchema, tenantOperationStatusSchema, tenantOperationUpdateSchema, tenantSchema, tenantSettingsSchema, themeInsertSchema, themeSchema, tokenResponseSchema, totalsSchema, uiScreenSchema, userActivitySchema, userInsertSchema, userOrganizationInsertSchema, userOrganizationSchema, userPermissionInsertSchema, userPermissionListSchema, userPermissionSchema, userPermissionWithDetailsListSchema, userPermissionWithDetailsSchema, userResponseSchema, userRoleInsertSchema, userRoleListSchema, userRoleSchema, userSchema, verificationMethodsSchema, weekIndex, weekStartMs, widgetComponentSchema, widgetSchema };
12694
+ 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, CursorPayload, 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, HookPageId, HookTemplateId, HooksAdapter, HtmlComponent, Identity, ImageComponent, ImportMetadata, Invite, InviteInsert, Invitee, Inviter, InvitesAdapter, JumpButtonComponent, Jwk, Jwks, KeysAdapter, LegalComponent, LegalField, LinkCandidate, ListActionVersionsResponse, ListActionsResponse, ListClientGrantsResponse, ListCodesResponse, ListConnectionsResponse, ListFailedEventsResponse, ListFlowsResponse, ListFormsResponse, ListGrantsResponse, ListHooksResponse, ListInvitesResponse, ListKeysResponse, ListOrganizationsResponse, ListParams, ListProxyRoutesParams, ListProxyRoutesResult, ListRefreshTokenResponse, ListResourceServersResponse, ListRoleUsersResponse, ListRolesResponse, ListRolloutsResult, ListSesssionsResponse, ListTenantOperationEventsResult, ListTenantOperationsParams, ListTenantOperationsResult, 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, OutboxEventInsert, 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, Rollout, RolloutInsert, RolloutKind, RolloutStatus, RolloutUpdate, RolloutsAdapter, RouteMatch, RouterNode, RuntimeComponent, ScimConfiguration, ScimConfigurationInsert, ScimConfigurationsAdapter, ScimExternalId, ScimExternalIdInsert, ScimExternalIdsAdapter, ScimMappingEntry, ScimToken, ScimTokenInsert, ScimTokensAdapter, ScreenLink, SecondaryAdapterConfig, Session, SessionCleanupParams, SessionInsert, SessionRetentionCohort, SessionRetentionParams, SessionRetentionRawRow, SessionRetentionResponse, SessionRetentionWindow, SessionsAdapter, SigningKey, SmsProvider, SmsSendParams, SmsServiceAdapter, SmsServiceSendParams, SocialField, Start, StatsAdapter, StatsListParams, StepNode, SuspiciousIpThrottling, Target, TelField, Tenant, TenantOperation, TenantOperationEngine, TenantOperationEvent, TenantOperationEventInsert, TenantOperationEventOutcome, TenantOperationEventsAdapter, TenantOperationInsert, TenantOperationKind, TenantOperationStatus, TenantOperationUpdate, TenantOperationsAdapter, 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, WriteOptions };