@authhero/adapter-interfaces 4.3.0 → 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/dist/adapter-interfaces.cjs +1 -1
- package/dist/adapter-interfaces.d.ts +130 -6
- package/dist/adapter-interfaces.mjs +182 -155
- 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/index.d.ts +16 -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/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -849,6 +849,7 @@ declare const userInsertSchema: z.ZodObject<{
|
|
|
849
849
|
provider: z.ZodOptional<z.ZodString>;
|
|
850
850
|
connection: z.ZodString;
|
|
851
851
|
is_social: z.ZodOptional<z.ZodBoolean>;
|
|
852
|
+
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
852
853
|
registration_completed_at: z.ZodOptional<z.ZodString>;
|
|
853
854
|
password: z.ZodOptional<z.ZodObject<{
|
|
854
855
|
hash: z.ZodString;
|
|
@@ -890,6 +891,7 @@ declare const userSchema: z.ZodObject<{
|
|
|
890
891
|
verify_email: z.ZodOptional<z.ZodBoolean>;
|
|
891
892
|
last_ip: z.ZodOptional<z.ZodString>;
|
|
892
893
|
last_login: z.ZodOptional<z.ZodString>;
|
|
894
|
+
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
893
895
|
registration_completed_at: z.ZodOptional<z.ZodString>;
|
|
894
896
|
created_at: z.ZodString;
|
|
895
897
|
updated_at: z.ZodString;
|
|
@@ -964,6 +966,7 @@ declare const auth0UserResponseSchema: z.ZodObject<{
|
|
|
964
966
|
last_ip: z.ZodOptional<z.ZodString>;
|
|
965
967
|
last_login: z.ZodOptional<z.ZodString>;
|
|
966
968
|
is_social: z.ZodBoolean;
|
|
969
|
+
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
967
970
|
login_count: z.ZodDefault<z.ZodNumber>;
|
|
968
971
|
identities: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
969
972
|
connection: z.ZodString;
|
|
@@ -997,6 +1000,7 @@ interface PostUsersBody extends BaseUser {
|
|
|
997
1000
|
username?: string;
|
|
998
1001
|
connection?: string;
|
|
999
1002
|
email_verified?: boolean;
|
|
1003
|
+
blocked?: boolean;
|
|
1000
1004
|
}
|
|
1001
1005
|
declare const userResponseSchema: z.ZodObject<{
|
|
1002
1006
|
email: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
|
|
@@ -2430,8 +2434,8 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
2430
2434
|
}>>;
|
|
2431
2435
|
}, z.core.$strip>>>;
|
|
2432
2436
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
2433
|
-
response_type: z.ZodOptional<z.
|
|
2434
|
-
response_mode: z.ZodOptional<z.
|
|
2437
|
+
response_type: z.ZodOptional<z.ZodEnum<typeof AuthorizationResponseType>>;
|
|
2438
|
+
response_mode: z.ZodOptional<z.ZodEnum<typeof AuthorizationResponseMode>>;
|
|
2435
2439
|
is_domain_connection: z.ZodOptional<z.ZodBoolean>;
|
|
2436
2440
|
show_as_button: z.ZodOptional<z.ZodBoolean>;
|
|
2437
2441
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -2592,8 +2596,8 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
2592
2596
|
}>>;
|
|
2593
2597
|
}, z.core.$strip>>>;
|
|
2594
2598
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
2595
|
-
response_type: z.ZodOptional<z.
|
|
2596
|
-
response_mode: z.ZodOptional<z.
|
|
2599
|
+
response_type: z.ZodOptional<z.ZodEnum<typeof AuthorizationResponseType>>;
|
|
2600
|
+
response_mode: z.ZodOptional<z.ZodEnum<typeof AuthorizationResponseMode>>;
|
|
2597
2601
|
is_domain_connection: z.ZodOptional<z.ZodBoolean>;
|
|
2598
2602
|
show_as_button: z.ZodOptional<z.ZodBoolean>;
|
|
2599
2603
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -3249,6 +3253,8 @@ declare const socialField: z.ZodObject<{
|
|
|
3249
3253
|
display_name: z.ZodOptional<z.ZodString>;
|
|
3250
3254
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
3251
3255
|
href: z.ZodOptional<z.ZodString>;
|
|
3256
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
3257
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
3252
3258
|
}, z.core.$strip>>>;
|
|
3253
3259
|
}, z.core.$strip>>;
|
|
3254
3260
|
}, z.core.$strip>;
|
|
@@ -3884,6 +3890,8 @@ declare const fieldComponentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
3884
3890
|
display_name: z.ZodOptional<z.ZodString>;
|
|
3885
3891
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
3886
3892
|
href: z.ZodOptional<z.ZodString>;
|
|
3893
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
3894
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
3887
3895
|
}, z.core.$strip>>>;
|
|
3888
3896
|
}, z.core.$strip>>;
|
|
3889
3897
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -4483,6 +4491,8 @@ declare const formNodeComponentDefinition: z.ZodUnion<readonly [z.ZodDiscriminat
|
|
|
4483
4491
|
display_name: z.ZodOptional<z.ZodString>;
|
|
4484
4492
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
4485
4493
|
href: z.ZodOptional<z.ZodString>;
|
|
4494
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
4495
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
4486
4496
|
}, z.core.$strip>>>;
|
|
4487
4497
|
}, z.core.$strip>>;
|
|
4488
4498
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -5172,6 +5182,8 @@ declare const stepNodeSchema: z.ZodObject<{
|
|
|
5172
5182
|
display_name: z.ZodOptional<z.ZodString>;
|
|
5173
5183
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
5174
5184
|
href: z.ZodOptional<z.ZodString>;
|
|
5185
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
5186
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
5175
5187
|
}, z.core.$strip>>>;
|
|
5176
5188
|
}, z.core.$strip>>;
|
|
5177
5189
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -5809,6 +5821,8 @@ declare const formNodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5809
5821
|
display_name: z.ZodOptional<z.ZodString>;
|
|
5810
5822
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
5811
5823
|
href: z.ZodOptional<z.ZodString>;
|
|
5824
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
5825
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
5812
5826
|
}, z.core.$strip>>>;
|
|
5813
5827
|
}, z.core.$strip>>;
|
|
5814
5828
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -6464,6 +6478,8 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6464
6478
|
display_name: z.ZodOptional<z.ZodString>;
|
|
6465
6479
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
6466
6480
|
href: z.ZodOptional<z.ZodString>;
|
|
6481
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
6482
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
6467
6483
|
}, z.core.$strip>>>;
|
|
6468
6484
|
}, z.core.$strip>>;
|
|
6469
6485
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -7151,6 +7167,8 @@ declare const formSchema: z.ZodObject<{
|
|
|
7151
7167
|
display_name: z.ZodOptional<z.ZodString>;
|
|
7152
7168
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
7153
7169
|
href: z.ZodOptional<z.ZodString>;
|
|
7170
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
7171
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
7154
7172
|
}, z.core.$strip>>>;
|
|
7155
7173
|
}, z.core.$strip>>;
|
|
7156
7174
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -7829,6 +7847,8 @@ declare const uiScreenSchema: z.ZodObject<{
|
|
|
7829
7847
|
display_name: z.ZodOptional<z.ZodString>;
|
|
7830
7848
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
7831
7849
|
href: z.ZodOptional<z.ZodString>;
|
|
7850
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
7851
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
7832
7852
|
}, z.core.$strip>>>;
|
|
7833
7853
|
}, z.core.$strip>>;
|
|
7834
7854
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -9997,6 +10017,7 @@ declare const promptSettingSchema: z.ZodObject<{
|
|
|
9997
10017
|
}>>;
|
|
9998
10018
|
identifier_first: z.ZodDefault<z.ZodBoolean>;
|
|
9999
10019
|
password_first: z.ZodDefault<z.ZodBoolean>;
|
|
10020
|
+
show_last_used_connection: z.ZodDefault<z.ZodBoolean>;
|
|
10000
10021
|
webauthn_platform_first_factor: z.ZodBoolean;
|
|
10001
10022
|
}, z.core.$strip>;
|
|
10002
10023
|
type PromptSetting = z.infer<typeof promptSettingSchema>;
|
|
@@ -10067,6 +10088,76 @@ declare const proxyRouteUpdateSchema: z.ZodObject<{
|
|
|
10067
10088
|
}, z.core.$strip>;
|
|
10068
10089
|
type ProxyRouteUpdate = z.infer<typeof proxyRouteUpdateSchema>;
|
|
10069
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
|
+
|
|
10070
10161
|
declare const emailProviderSchema: z.ZodObject<{
|
|
10071
10162
|
name: z.ZodString;
|
|
10072
10163
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -11692,6 +11783,29 @@ interface ProxyRoutesAdapter {
|
|
|
11692
11783
|
remove(tenant_id: string, id: string): Promise<boolean>;
|
|
11693
11784
|
}
|
|
11694
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
|
+
|
|
11695
11809
|
interface EmailProvidersAdapter {
|
|
11696
11810
|
update: (tenant_id: string, emailProvider: Partial<EmailProvider>) => Promise<void>;
|
|
11697
11811
|
create: (tenant_id: string, emailProvider: EmailProvider, options?: CreateOptions) => Promise<void>;
|
|
@@ -12283,6 +12397,16 @@ interface DataAdapters {
|
|
|
12283
12397
|
* directly from the database or by calling this management API.
|
|
12284
12398
|
*/
|
|
12285
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;
|
|
12286
12410
|
refreshTokens: RefreshTokensAdapter;
|
|
12287
12411
|
resourceServers: ResourceServersAdapter;
|
|
12288
12412
|
rolePermissions: RolePermissionsAdapter;
|
|
@@ -12397,5 +12521,5 @@ interface DataAdapters {
|
|
|
12397
12521
|
};
|
|
12398
12522
|
}
|
|
12399
12523
|
|
|
12400
|
-
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, 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 };
|
|
12401
|
-
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, 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 };
|