@authhero/adapter-interfaces 4.2.1 → 4.4.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/LICENSE +1 -1
- package/dist/adapter-interfaces.cjs +1 -1
- package/dist/adapter-interfaces.d.ts +184 -6
- package/dist/adapter-interfaces.mjs +358 -311
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/adapters/ScimConfigurations.d.ts +7 -0
- package/dist/types/adapters/ScimExternalIds.d.ts +7 -0
- package/dist/types/adapters/ScimTokens.d.ts +9 -0
- package/dist/types/adapters/UserRoles.d.ts +13 -0
- package/dist/types/adapters/index.d.ts +16 -0
- package/dist/types/types/AuditEvent.d.ts +3 -0
- package/dist/types/types/Connection.d.ts +4 -4
- package/dist/types/types/Forms.d.ts +16 -0
- package/dist/types/types/PromptSetting.d.ts +1 -0
- package/dist/types/types/ScimConfiguration.d.ts +30 -0
- package/dist/types/types/ScimExternalId.d.ts +21 -0
- package/dist/types/types/ScimToken.d.ts +19 -0
- package/dist/types/types/User.d.ts +3 -0
- package/dist/types/types/auth0/UserResponse.d.ts +1 -0
- package/dist/types/types/codeHookApiShapes.d.ts +37 -0
- package/dist/types/types/index.d.ts +4 -0
- package/package.json +2 -1
|
@@ -301,6 +301,7 @@ declare const requestContextSchema: z.ZodObject<{
|
|
|
301
301
|
ip: z.ZodString;
|
|
302
302
|
user_agent: z.ZodOptional<z.ZodString>;
|
|
303
303
|
correlation_id: z.ZodOptional<z.ZodString>;
|
|
304
|
+
redirect_uri: z.ZodOptional<z.ZodString>;
|
|
304
305
|
}, z.core.$strip>;
|
|
305
306
|
type RequestContext = z.infer<typeof requestContextSchema>;
|
|
306
307
|
declare const responseContextSchema: z.ZodObject<{
|
|
@@ -365,6 +366,7 @@ declare const auditEventInsertSchema: z.ZodObject<{
|
|
|
365
366
|
ip: z.ZodString;
|
|
366
367
|
user_agent: z.ZodOptional<z.ZodString>;
|
|
367
368
|
correlation_id: z.ZodOptional<z.ZodString>;
|
|
369
|
+
redirect_uri: z.ZodOptional<z.ZodString>;
|
|
368
370
|
}, z.core.$strip>;
|
|
369
371
|
response: z.ZodOptional<z.ZodObject<{
|
|
370
372
|
status_code: z.ZodNumber;
|
|
@@ -439,6 +441,7 @@ declare const auditEventSchema: z.ZodObject<{
|
|
|
439
441
|
ip: z.ZodString;
|
|
440
442
|
user_agent: z.ZodOptional<z.ZodString>;
|
|
441
443
|
correlation_id: z.ZodOptional<z.ZodString>;
|
|
444
|
+
redirect_uri: z.ZodOptional<z.ZodString>;
|
|
442
445
|
}, z.core.$strip>;
|
|
443
446
|
response: z.ZodOptional<z.ZodObject<{
|
|
444
447
|
status_code: z.ZodNumber;
|
|
@@ -846,6 +849,7 @@ declare const userInsertSchema: z.ZodObject<{
|
|
|
846
849
|
provider: z.ZodOptional<z.ZodString>;
|
|
847
850
|
connection: z.ZodString;
|
|
848
851
|
is_social: z.ZodOptional<z.ZodBoolean>;
|
|
852
|
+
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
849
853
|
registration_completed_at: z.ZodOptional<z.ZodString>;
|
|
850
854
|
password: z.ZodOptional<z.ZodObject<{
|
|
851
855
|
hash: z.ZodString;
|
|
@@ -887,6 +891,7 @@ declare const userSchema: z.ZodObject<{
|
|
|
887
891
|
verify_email: z.ZodOptional<z.ZodBoolean>;
|
|
888
892
|
last_ip: z.ZodOptional<z.ZodString>;
|
|
889
893
|
last_login: z.ZodOptional<z.ZodString>;
|
|
894
|
+
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
890
895
|
registration_completed_at: z.ZodOptional<z.ZodString>;
|
|
891
896
|
created_at: z.ZodString;
|
|
892
897
|
updated_at: z.ZodString;
|
|
@@ -961,6 +966,7 @@ declare const auth0UserResponseSchema: z.ZodObject<{
|
|
|
961
966
|
last_ip: z.ZodOptional<z.ZodString>;
|
|
962
967
|
last_login: z.ZodOptional<z.ZodString>;
|
|
963
968
|
is_social: z.ZodBoolean;
|
|
969
|
+
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
964
970
|
login_count: z.ZodDefault<z.ZodNumber>;
|
|
965
971
|
identities: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
966
972
|
connection: z.ZodString;
|
|
@@ -994,6 +1000,7 @@ interface PostUsersBody extends BaseUser {
|
|
|
994
1000
|
username?: string;
|
|
995
1001
|
connection?: string;
|
|
996
1002
|
email_verified?: boolean;
|
|
1003
|
+
blocked?: boolean;
|
|
997
1004
|
}
|
|
998
1005
|
declare const userResponseSchema: z.ZodObject<{
|
|
999
1006
|
email: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
|
|
@@ -2427,8 +2434,8 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
2427
2434
|
}>>;
|
|
2428
2435
|
}, z.core.$strip>>>;
|
|
2429
2436
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
2430
|
-
response_type: z.ZodOptional<z.
|
|
2431
|
-
response_mode: z.ZodOptional<z.
|
|
2437
|
+
response_type: z.ZodOptional<z.ZodEnum<typeof AuthorizationResponseType>>;
|
|
2438
|
+
response_mode: z.ZodOptional<z.ZodEnum<typeof AuthorizationResponseMode>>;
|
|
2432
2439
|
is_domain_connection: z.ZodOptional<z.ZodBoolean>;
|
|
2433
2440
|
show_as_button: z.ZodOptional<z.ZodBoolean>;
|
|
2434
2441
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -2589,8 +2596,8 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
2589
2596
|
}>>;
|
|
2590
2597
|
}, z.core.$strip>>>;
|
|
2591
2598
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
2592
|
-
response_type: z.ZodOptional<z.
|
|
2593
|
-
response_mode: z.ZodOptional<z.
|
|
2599
|
+
response_type: z.ZodOptional<z.ZodEnum<typeof AuthorizationResponseType>>;
|
|
2600
|
+
response_mode: z.ZodOptional<z.ZodEnum<typeof AuthorizationResponseMode>>;
|
|
2594
2601
|
is_domain_connection: z.ZodOptional<z.ZodBoolean>;
|
|
2595
2602
|
show_as_button: z.ZodOptional<z.ZodBoolean>;
|
|
2596
2603
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -3246,6 +3253,8 @@ declare const socialField: z.ZodObject<{
|
|
|
3246
3253
|
display_name: z.ZodOptional<z.ZodString>;
|
|
3247
3254
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
3248
3255
|
href: z.ZodOptional<z.ZodString>;
|
|
3256
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
3257
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
3249
3258
|
}, z.core.$strip>>>;
|
|
3250
3259
|
}, z.core.$strip>>;
|
|
3251
3260
|
}, z.core.$strip>;
|
|
@@ -3881,6 +3890,8 @@ declare const fieldComponentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
3881
3890
|
display_name: z.ZodOptional<z.ZodString>;
|
|
3882
3891
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
3883
3892
|
href: z.ZodOptional<z.ZodString>;
|
|
3893
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
3894
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
3884
3895
|
}, z.core.$strip>>>;
|
|
3885
3896
|
}, z.core.$strip>>;
|
|
3886
3897
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -4480,6 +4491,8 @@ declare const formNodeComponentDefinition: z.ZodUnion<readonly [z.ZodDiscriminat
|
|
|
4480
4491
|
display_name: z.ZodOptional<z.ZodString>;
|
|
4481
4492
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
4482
4493
|
href: z.ZodOptional<z.ZodString>;
|
|
4494
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
4495
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
4483
4496
|
}, z.core.$strip>>>;
|
|
4484
4497
|
}, z.core.$strip>>;
|
|
4485
4498
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -5169,6 +5182,8 @@ declare const stepNodeSchema: z.ZodObject<{
|
|
|
5169
5182
|
display_name: z.ZodOptional<z.ZodString>;
|
|
5170
5183
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
5171
5184
|
href: z.ZodOptional<z.ZodString>;
|
|
5185
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
5186
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
5172
5187
|
}, z.core.$strip>>>;
|
|
5173
5188
|
}, z.core.$strip>>;
|
|
5174
5189
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -5806,6 +5821,8 @@ declare const formNodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5806
5821
|
display_name: z.ZodOptional<z.ZodString>;
|
|
5807
5822
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
5808
5823
|
href: z.ZodOptional<z.ZodString>;
|
|
5824
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
5825
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
5809
5826
|
}, z.core.$strip>>>;
|
|
5810
5827
|
}, z.core.$strip>>;
|
|
5811
5828
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -6461,6 +6478,8 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6461
6478
|
display_name: z.ZodOptional<z.ZodString>;
|
|
6462
6479
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
6463
6480
|
href: z.ZodOptional<z.ZodString>;
|
|
6481
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
6482
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
6464
6483
|
}, z.core.$strip>>>;
|
|
6465
6484
|
}, z.core.$strip>>;
|
|
6466
6485
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -7148,6 +7167,8 @@ declare const formSchema: z.ZodObject<{
|
|
|
7148
7167
|
display_name: z.ZodOptional<z.ZodString>;
|
|
7149
7168
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
7150
7169
|
href: z.ZodOptional<z.ZodString>;
|
|
7170
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
7171
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
7151
7172
|
}, z.core.$strip>>>;
|
|
7152
7173
|
}, z.core.$strip>>;
|
|
7153
7174
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -7826,6 +7847,8 @@ declare const uiScreenSchema: z.ZodObject<{
|
|
|
7826
7847
|
display_name: z.ZodOptional<z.ZodString>;
|
|
7827
7848
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
7828
7849
|
href: z.ZodOptional<z.ZodString>;
|
|
7850
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
7851
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
7829
7852
|
}, z.core.$strip>>>;
|
|
7830
7853
|
}, z.core.$strip>>;
|
|
7831
7854
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -9994,6 +10017,7 @@ declare const promptSettingSchema: z.ZodObject<{
|
|
|
9994
10017
|
}>>;
|
|
9995
10018
|
identifier_first: z.ZodDefault<z.ZodBoolean>;
|
|
9996
10019
|
password_first: z.ZodDefault<z.ZodBoolean>;
|
|
10020
|
+
show_last_used_connection: z.ZodDefault<z.ZodBoolean>;
|
|
9997
10021
|
webauthn_platform_first_factor: z.ZodBoolean;
|
|
9998
10022
|
}, z.core.$strip>;
|
|
9999
10023
|
type PromptSetting = z.infer<typeof promptSettingSchema>;
|
|
@@ -10064,6 +10088,76 @@ declare const proxyRouteUpdateSchema: z.ZodObject<{
|
|
|
10064
10088
|
}, z.core.$strip>;
|
|
10065
10089
|
type ProxyRouteUpdate = z.infer<typeof proxyRouteUpdateSchema>;
|
|
10066
10090
|
|
|
10091
|
+
/**
|
|
10092
|
+
* One attribute-mapping entry translating a SCIM resource attribute to an
|
|
10093
|
+
* AuthHero user field. Mirrors Auth0's SCIM `mapping` shape (`{ scim, auth0 }`).
|
|
10094
|
+
*/
|
|
10095
|
+
declare const scimMappingEntrySchema: z.ZodObject<{
|
|
10096
|
+
scim: z.ZodString;
|
|
10097
|
+
auth0: z.ZodString;
|
|
10098
|
+
}, z.core.$strip>;
|
|
10099
|
+
type ScimMappingEntry = z.infer<typeof scimMappingEntrySchema>;
|
|
10100
|
+
declare const scimConfigurationInsertSchema: z.ZodObject<{
|
|
10101
|
+
connection_id: z.ZodString;
|
|
10102
|
+
user_id_attribute: z.ZodDefault<z.ZodString>;
|
|
10103
|
+
mapping: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
10104
|
+
scim: z.ZodString;
|
|
10105
|
+
auth0: z.ZodString;
|
|
10106
|
+
}, z.core.$strip>>>;
|
|
10107
|
+
}, z.core.$strip>;
|
|
10108
|
+
type ScimConfigurationInsert = z.infer<typeof scimConfigurationInsertSchema>;
|
|
10109
|
+
declare const scimConfigurationSchema: z.ZodObject<{
|
|
10110
|
+
created_at: z.ZodString;
|
|
10111
|
+
updated_at: z.ZodString;
|
|
10112
|
+
connection_id: z.ZodString;
|
|
10113
|
+
user_id_attribute: z.ZodDefault<z.ZodString>;
|
|
10114
|
+
mapping: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
10115
|
+
scim: z.ZodString;
|
|
10116
|
+
auth0: z.ZodString;
|
|
10117
|
+
}, z.core.$strip>>>;
|
|
10118
|
+
}, z.core.$strip>;
|
|
10119
|
+
type ScimConfiguration = z.infer<typeof scimConfigurationSchema>;
|
|
10120
|
+
|
|
10121
|
+
declare const scimTokenInsertSchema: z.ZodObject<{
|
|
10122
|
+
token_id: z.ZodString;
|
|
10123
|
+
connection_id: z.ZodString;
|
|
10124
|
+
token_hash: z.ZodString;
|
|
10125
|
+
scopes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
10126
|
+
valid_until: z.ZodOptional<z.ZodString>;
|
|
10127
|
+
}, z.core.$strip>;
|
|
10128
|
+
type ScimTokenInsert = z.infer<typeof scimTokenInsertSchema>;
|
|
10129
|
+
declare const scimTokenSchema: z.ZodObject<{
|
|
10130
|
+
created_at: z.ZodString;
|
|
10131
|
+
last_used_at: z.ZodOptional<z.ZodString>;
|
|
10132
|
+
token_id: z.ZodString;
|
|
10133
|
+
connection_id: z.ZodString;
|
|
10134
|
+
token_hash: z.ZodString;
|
|
10135
|
+
scopes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
10136
|
+
valid_until: z.ZodOptional<z.ZodString>;
|
|
10137
|
+
}, z.core.$strip>;
|
|
10138
|
+
type ScimToken = z.infer<typeof scimTokenSchema>;
|
|
10139
|
+
|
|
10140
|
+
/**
|
|
10141
|
+
* Maps an IdP-assigned SCIM `externalId` to an AuthHero `user_id`, scoped to a
|
|
10142
|
+
* connection. Kept out of the shared user schema so the (per-connection) SCIM
|
|
10143
|
+
* concern stays isolated and a linked user can carry external ids from more
|
|
10144
|
+
* than one SCIM connection. IdPs look users up by `externalId eq "…"` before
|
|
10145
|
+
* creating, so this must be queryable by (connection_id, external_id).
|
|
10146
|
+
*/
|
|
10147
|
+
declare const scimExternalIdInsertSchema: z.ZodObject<{
|
|
10148
|
+
connection_id: z.ZodString;
|
|
10149
|
+
external_id: z.ZodString;
|
|
10150
|
+
user_id: z.ZodString;
|
|
10151
|
+
}, z.core.$strip>;
|
|
10152
|
+
type ScimExternalIdInsert = z.infer<typeof scimExternalIdInsertSchema>;
|
|
10153
|
+
declare const scimExternalIdSchema: z.ZodObject<{
|
|
10154
|
+
created_at: z.ZodString;
|
|
10155
|
+
connection_id: z.ZodString;
|
|
10156
|
+
external_id: z.ZodString;
|
|
10157
|
+
user_id: z.ZodString;
|
|
10158
|
+
}, z.core.$strip>;
|
|
10159
|
+
type ScimExternalId = z.infer<typeof scimExternalIdSchema>;
|
|
10160
|
+
|
|
10067
10161
|
declare const emailProviderSchema: z.ZodObject<{
|
|
10068
10162
|
name: z.ZodString;
|
|
10069
10163
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -10997,6 +11091,44 @@ interface CreateOptions {
|
|
|
10997
11091
|
importMetadata?: ImportMetadata;
|
|
10998
11092
|
}
|
|
10999
11093
|
|
|
11094
|
+
/**
|
|
11095
|
+
* The per-trigger allowlist of namespaced API methods exposed to user-authored
|
|
11096
|
+
* code hooks. Each entry maps a trigger id to `{ namespace: [method, ...] }`.
|
|
11097
|
+
*
|
|
11098
|
+
* Code hooks run in an isolate with a **recording** `api` proxy: user code calls
|
|
11099
|
+
* `api.<namespace>.<method>(...)`, the call is captured as
|
|
11100
|
+
* `{ method: "<namespace>.<method>", args }`, and the host replays it against
|
|
11101
|
+
* the real API objects after the isolate returns. This shape is what the proxy
|
|
11102
|
+
* is built from, so it is the single source of truth for *which* verbs a trigger
|
|
11103
|
+
* exposes.
|
|
11104
|
+
*
|
|
11105
|
+
* It lives here (not in an executor) because both executors need an identical
|
|
11106
|
+
* copy: the local `LocalCodeExecutor` builds the proxy in-process, and the
|
|
11107
|
+
* Cloudflare `WorkerLoaderCodeExecutor` serializes this object into the
|
|
11108
|
+
* generated worker script. Duplicating it risked the two drifting; importing
|
|
11109
|
+
* this const keeps them byte-identical by construction.
|
|
11110
|
+
*/
|
|
11111
|
+
declare const TRIGGER_API_SHAPES: Readonly<Record<string, Readonly<Record<string, readonly string[]>>>>;
|
|
11112
|
+
/**
|
|
11113
|
+
* A single candidate primary the built-in email-based linking policy would
|
|
11114
|
+
* consider, pre-resolved into a `post-user-login` code-hook event as
|
|
11115
|
+
* `event.link_candidates`. Code hooks have no return channel and no data
|
|
11116
|
+
* adapter, so link targets must be pushed *into* the event rather than looked
|
|
11117
|
+
* up from user code. The shape is intentionally minimal and JSON-serializable.
|
|
11118
|
+
*/
|
|
11119
|
+
interface LinkCandidate {
|
|
11120
|
+
user_id: string;
|
|
11121
|
+
email: string;
|
|
11122
|
+
email_verified: boolean;
|
|
11123
|
+
provider: string;
|
|
11124
|
+
connection: string;
|
|
11125
|
+
created_at: string;
|
|
11126
|
+
/** No `linked_to` set — this user is itself a primary. */
|
|
11127
|
+
is_primary: boolean;
|
|
11128
|
+
/** The candidate the built-in "oldest account wins" policy would pick. */
|
|
11129
|
+
is_oldest: boolean;
|
|
11130
|
+
}
|
|
11131
|
+
|
|
11000
11132
|
declare function parseUserId(user_id: string): {
|
|
11001
11133
|
connection: string;
|
|
11002
11134
|
id: string;
|
|
@@ -11651,6 +11783,29 @@ interface ProxyRoutesAdapter {
|
|
|
11651
11783
|
remove(tenant_id: string, id: string): Promise<boolean>;
|
|
11652
11784
|
}
|
|
11653
11785
|
|
|
11786
|
+
interface ScimConfigurationsAdapter {
|
|
11787
|
+
create: (tenant_id: string, configuration: ScimConfigurationInsert) => Promise<ScimConfiguration>;
|
|
11788
|
+
get: (tenant_id: string, connection_id: string) => Promise<ScimConfiguration | null>;
|
|
11789
|
+
update: (tenant_id: string, connection_id: string, configuration: Partial<ScimConfigurationInsert>) => Promise<boolean>;
|
|
11790
|
+
remove: (tenant_id: string, connection_id: string) => Promise<boolean>;
|
|
11791
|
+
}
|
|
11792
|
+
|
|
11793
|
+
interface ScimTokensAdapter {
|
|
11794
|
+
create: (tenant_id: string, token: ScimTokenInsert) => Promise<ScimToken>;
|
|
11795
|
+
get: (tenant_id: string, token_id: string) => Promise<ScimToken | null>;
|
|
11796
|
+
getByHash: (tenant_id: string, token_hash: string) => Promise<ScimToken | null>;
|
|
11797
|
+
listByConnection: (tenant_id: string, connection_id: string) => Promise<ScimToken[]>;
|
|
11798
|
+
markUsed: (tenant_id: string, token_id: string, last_used_at: string) => Promise<boolean>;
|
|
11799
|
+
remove: (tenant_id: string, token_id: string) => Promise<boolean>;
|
|
11800
|
+
}
|
|
11801
|
+
|
|
11802
|
+
interface ScimExternalIdsAdapter {
|
|
11803
|
+
create: (tenant_id: string, externalId: ScimExternalIdInsert) => Promise<ScimExternalId>;
|
|
11804
|
+
getByExternalId: (tenant_id: string, connection_id: string, external_id: string) => Promise<ScimExternalId | null>;
|
|
11805
|
+
getByUserId: (tenant_id: string, connection_id: string, user_id: string) => Promise<ScimExternalId | null>;
|
|
11806
|
+
remove: (tenant_id: string, connection_id: string, user_id: string) => Promise<boolean>;
|
|
11807
|
+
}
|
|
11808
|
+
|
|
11654
11809
|
interface EmailProvidersAdapter {
|
|
11655
11810
|
update: (tenant_id: string, emailProvider: Partial<EmailProvider>) => Promise<void>;
|
|
11656
11811
|
create: (tenant_id: string, emailProvider: EmailProvider, options?: CreateOptions) => Promise<void>;
|
|
@@ -11792,6 +11947,19 @@ interface ListRoleUsersResponse {
|
|
|
11792
11947
|
next?: string;
|
|
11793
11948
|
}
|
|
11794
11949
|
interface UserRolesAdapter {
|
|
11950
|
+
/**
|
|
11951
|
+
* List the roles assigned to a user, returned as a flat array.
|
|
11952
|
+
*
|
|
11953
|
+
* `organizationId` selects the scope and adapters MUST honor it exactly:
|
|
11954
|
+
* - `undefined` — roles across every organization scope (no filter)
|
|
11955
|
+
* - `""` — global / tenant-level roles only
|
|
11956
|
+
* - `"<id>"` — that organization's roles only
|
|
11957
|
+
*
|
|
11958
|
+
* The empty-string case is load-bearing: callers pass `""` to read a user's
|
|
11959
|
+
* global roles (e.g. the org-membership `admin:organizations` bypass), so an
|
|
11960
|
+
* adapter that treats `""` as "all scopes" leaks org-scoped roles into global
|
|
11961
|
+
* lookups (see #1198).
|
|
11962
|
+
*/
|
|
11795
11963
|
list(tenantId: string, userId: string, params?: ListParams, organizationId?: string): Promise<Role[]>;
|
|
11796
11964
|
/**
|
|
11797
11965
|
* List the distinct users assigned to a role, across all organization
|
|
@@ -12229,6 +12397,16 @@ interface DataAdapters {
|
|
|
12229
12397
|
* directly from the database or by calling this management API.
|
|
12230
12398
|
*/
|
|
12231
12399
|
proxyRoutes?: ProxyRoutesAdapter;
|
|
12400
|
+
/**
|
|
12401
|
+
* Optional SCIM 2.0 inbound-provisioning adapters (issue #1191). When all
|
|
12402
|
+
* three are set, AuthHero exposes the SCIM configuration management API and
|
|
12403
|
+
* (Phase 2) the `/scim/v2` provisioning endpoints. `scimConfigurations`
|
|
12404
|
+
* holds one config per connection, `scimTokens` the hashed bearer tokens,
|
|
12405
|
+
* and `scimExternalIds` the IdP `externalId` → `user_id` lookup table.
|
|
12406
|
+
*/
|
|
12407
|
+
scimConfigurations?: ScimConfigurationsAdapter;
|
|
12408
|
+
scimTokens?: ScimTokensAdapter;
|
|
12409
|
+
scimExternalIds?: ScimExternalIdsAdapter;
|
|
12232
12410
|
refreshTokens: RefreshTokensAdapter;
|
|
12233
12411
|
resourceServers: ResourceServersAdapter;
|
|
12234
12412
|
rolePermissions: RolePermissionsAdapter;
|
|
@@ -12343,5 +12521,5 @@ interface DataAdapters {
|
|
|
12343
12521
|
};
|
|
12344
12522
|
}
|
|
12345
12523
|
|
|
12346
|
-
export { Auth0ActionEnum, Auth0Client, AuthorizationResponseMode, AuthorizationResponseType, CodeChallengeMethod, ComponentCategory, ComponentType, DATABASE_CONNECTION_STRATEGY, 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, 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, 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 };
|
|
12347
|
-
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, 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, 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 };
|
|
12524
|
+
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 };
|
|
12525
|
+
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 };
|