@authhero/adapter-interfaces 4.4.0 → 4.6.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 +158 -2
- package/dist/adapter-interfaces.mjs +646 -578
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/adapters/ActionExecutions.d.ts +8 -0
- package/dist/types/adapters/Analytics.d.ts +8 -1
- package/dist/types/types/Analytics.d.ts +39 -0
- package/dist/types/types/Forms.d.ts +32 -0
- package/dist/types/types/Hook.d.ts +38 -0
- package/dist/types/utils/index.d.ts +1 -0
- package/dist/types/utils/session-retention.d.ts +32 -0
- package/package.json +1 -1
|
@@ -3091,6 +3091,8 @@ declare const emailField: z.ZodObject<{
|
|
|
3091
3091
|
config: z.ZodOptional<z.ZodObject<{
|
|
3092
3092
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3093
3093
|
default_value: z.ZodOptional<z.ZodString>;
|
|
3094
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
3095
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
3094
3096
|
}, z.core.$strip>>;
|
|
3095
3097
|
}, z.core.$strip>;
|
|
3096
3098
|
declare const fileField: z.ZodObject<{
|
|
@@ -3310,6 +3312,8 @@ declare const textField: z.ZodObject<{
|
|
|
3310
3312
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
3311
3313
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
3312
3314
|
default_value: z.ZodOptional<z.ZodString>;
|
|
3315
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
3316
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
3313
3317
|
}, z.core.$strip>>;
|
|
3314
3318
|
}, z.core.$strip>;
|
|
3315
3319
|
declare const countryField: z.ZodObject<{
|
|
@@ -3734,6 +3738,8 @@ declare const fieldComponentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
3734
3738
|
config: z.ZodOptional<z.ZodObject<{
|
|
3735
3739
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3736
3740
|
default_value: z.ZodOptional<z.ZodString>;
|
|
3741
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
3742
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
3737
3743
|
}, z.core.$strip>>;
|
|
3738
3744
|
}, z.core.$strip>, z.ZodObject<{
|
|
3739
3745
|
id: z.ZodString;
|
|
@@ -3945,6 +3951,8 @@ declare const fieldComponentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
3945
3951
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
3946
3952
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
3947
3953
|
default_value: z.ZodOptional<z.ZodString>;
|
|
3954
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
3955
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
3948
3956
|
}, z.core.$strip>>;
|
|
3949
3957
|
}, z.core.$strip>, z.ZodObject<{
|
|
3950
3958
|
id: z.ZodString;
|
|
@@ -4335,6 +4343,8 @@ declare const formNodeComponentDefinition: z.ZodUnion<readonly [z.ZodDiscriminat
|
|
|
4335
4343
|
config: z.ZodOptional<z.ZodObject<{
|
|
4336
4344
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
4337
4345
|
default_value: z.ZodOptional<z.ZodString>;
|
|
4346
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
4347
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
4338
4348
|
}, z.core.$strip>>;
|
|
4339
4349
|
}, z.core.$strip>, z.ZodObject<{
|
|
4340
4350
|
id: z.ZodString;
|
|
@@ -4546,6 +4556,8 @@ declare const formNodeComponentDefinition: z.ZodUnion<readonly [z.ZodDiscriminat
|
|
|
4546
4556
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
4547
4557
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
4548
4558
|
default_value: z.ZodOptional<z.ZodString>;
|
|
4559
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
4560
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
4549
4561
|
}, z.core.$strip>>;
|
|
4550
4562
|
}, z.core.$strip>, z.ZodObject<{
|
|
4551
4563
|
id: z.ZodString;
|
|
@@ -5026,6 +5038,8 @@ declare const stepNodeSchema: z.ZodObject<{
|
|
|
5026
5038
|
config: z.ZodOptional<z.ZodObject<{
|
|
5027
5039
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
5028
5040
|
default_value: z.ZodOptional<z.ZodString>;
|
|
5041
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
5042
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
5029
5043
|
}, z.core.$strip>>;
|
|
5030
5044
|
}, z.core.$strip>, z.ZodObject<{
|
|
5031
5045
|
id: z.ZodString;
|
|
@@ -5237,6 +5251,8 @@ declare const stepNodeSchema: z.ZodObject<{
|
|
|
5237
5251
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
5238
5252
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
5239
5253
|
default_value: z.ZodOptional<z.ZodString>;
|
|
5254
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
5255
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
5240
5256
|
}, z.core.$strip>>;
|
|
5241
5257
|
}, z.core.$strip>, z.ZodObject<{
|
|
5242
5258
|
id: z.ZodString;
|
|
@@ -5665,6 +5681,8 @@ declare const formNodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5665
5681
|
config: z.ZodOptional<z.ZodObject<{
|
|
5666
5682
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
5667
5683
|
default_value: z.ZodOptional<z.ZodString>;
|
|
5684
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
5685
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
5668
5686
|
}, z.core.$strip>>;
|
|
5669
5687
|
}, z.core.$strip>, z.ZodObject<{
|
|
5670
5688
|
id: z.ZodString;
|
|
@@ -5876,6 +5894,8 @@ declare const formNodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5876
5894
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
5877
5895
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
5878
5896
|
default_value: z.ZodOptional<z.ZodString>;
|
|
5897
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
5898
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
5879
5899
|
}, z.core.$strip>>;
|
|
5880
5900
|
}, z.core.$strip>, z.ZodObject<{
|
|
5881
5901
|
id: z.ZodString;
|
|
@@ -6322,6 +6342,8 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6322
6342
|
config: z.ZodOptional<z.ZodObject<{
|
|
6323
6343
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
6324
6344
|
default_value: z.ZodOptional<z.ZodString>;
|
|
6345
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
6346
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
6325
6347
|
}, z.core.$strip>>;
|
|
6326
6348
|
}, z.core.$strip>, z.ZodObject<{
|
|
6327
6349
|
id: z.ZodString;
|
|
@@ -6533,6 +6555,8 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6533
6555
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
6534
6556
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
6535
6557
|
default_value: z.ZodOptional<z.ZodString>;
|
|
6558
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
6559
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
6536
6560
|
}, z.core.$strip>>;
|
|
6537
6561
|
}, z.core.$strip>, z.ZodObject<{
|
|
6538
6562
|
id: z.ZodString;
|
|
@@ -7011,6 +7035,8 @@ declare const formSchema: z.ZodObject<{
|
|
|
7011
7035
|
config: z.ZodOptional<z.ZodObject<{
|
|
7012
7036
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
7013
7037
|
default_value: z.ZodOptional<z.ZodString>;
|
|
7038
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
7039
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
7014
7040
|
}, z.core.$strip>>;
|
|
7015
7041
|
}, z.core.$strip>, z.ZodObject<{
|
|
7016
7042
|
id: z.ZodString;
|
|
@@ -7222,6 +7248,8 @@ declare const formSchema: z.ZodObject<{
|
|
|
7222
7248
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
7223
7249
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
7224
7250
|
default_value: z.ZodOptional<z.ZodString>;
|
|
7251
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
7252
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
7225
7253
|
}, z.core.$strip>>;
|
|
7226
7254
|
}, z.core.$strip>, z.ZodObject<{
|
|
7227
7255
|
id: z.ZodString;
|
|
@@ -7691,6 +7719,8 @@ declare const uiScreenSchema: z.ZodObject<{
|
|
|
7691
7719
|
config: z.ZodOptional<z.ZodObject<{
|
|
7692
7720
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
7693
7721
|
default_value: z.ZodOptional<z.ZodString>;
|
|
7722
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
7723
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
7694
7724
|
}, z.core.$strip>>;
|
|
7695
7725
|
}, z.core.$strip>, z.ZodObject<{
|
|
7696
7726
|
id: z.ZodString;
|
|
@@ -7902,6 +7932,8 @@ declare const uiScreenSchema: z.ZodObject<{
|
|
|
7902
7932
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
7903
7933
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
7904
7934
|
default_value: z.ZodOptional<z.ZodString>;
|
|
7935
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
7936
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
7905
7937
|
}, z.core.$strip>>;
|
|
7906
7938
|
}, z.core.$strip>, z.ZodObject<{
|
|
7907
7939
|
id: z.ZodString;
|
|
@@ -7951,6 +7983,16 @@ declare function isBlockComponent(component: FormNodeComponent): component is Bl
|
|
|
7951
7983
|
declare function isWidgetComponent(component: FormNodeComponent): component is WidgetComponent;
|
|
7952
7984
|
declare function isFieldComponent(component: FormNodeComponent): component is FieldComponent;
|
|
7953
7985
|
|
|
7986
|
+
/**
|
|
7987
|
+
* Built-in universal-login pages a page hook can interrupt the login with.
|
|
7988
|
+
* The runtime redirects to `/u/{page_id}` (or `/u2/{page_id}`), so this enum
|
|
7989
|
+
* is the allowlist of interstitial screens — a free-form string would let a
|
|
7990
|
+
* misconfigured hook bounce logins to an arbitrary universal-login path.
|
|
7991
|
+
*/
|
|
7992
|
+
declare const hookPageId: z.ZodEnum<{
|
|
7993
|
+
impersonate: "impersonate";
|
|
7994
|
+
}>;
|
|
7995
|
+
type HookPageId = z.infer<typeof hookPageId>;
|
|
7954
7996
|
declare const hookTemplateId: z.ZodEnum<{
|
|
7955
7997
|
"ensure-username": "ensure-username";
|
|
7956
7998
|
"set-preferred-username": "set-preferred-username";
|
|
@@ -8029,6 +8071,19 @@ declare const hookInsertSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8029
8071
|
priority: z.ZodOptional<z.ZodNumber>;
|
|
8030
8072
|
hook_id: z.ZodOptional<z.ZodString>;
|
|
8031
8073
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8074
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8075
|
+
trigger_id: z.ZodEnum<{
|
|
8076
|
+
"post-user-login": "post-user-login";
|
|
8077
|
+
}>;
|
|
8078
|
+
page_id: z.ZodEnum<{
|
|
8079
|
+
impersonate: "impersonate";
|
|
8080
|
+
}>;
|
|
8081
|
+
permission_required: z.ZodOptional<z.ZodString>;
|
|
8082
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
8083
|
+
synchronous: z.ZodDefault<z.ZodBoolean>;
|
|
8084
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
8085
|
+
hook_id: z.ZodOptional<z.ZodString>;
|
|
8086
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8032
8087
|
}, z.core.$strip>]>;
|
|
8033
8088
|
type HookInsert = z.infer<typeof hookInsertSchema>;
|
|
8034
8089
|
declare const hookSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -8100,6 +8155,21 @@ declare const hookSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8100
8155
|
updated_at: z.ZodString;
|
|
8101
8156
|
hook_id: z.ZodString;
|
|
8102
8157
|
code_id: z.ZodString;
|
|
8158
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8159
|
+
trigger_id: z.ZodEnum<{
|
|
8160
|
+
"post-user-login": "post-user-login";
|
|
8161
|
+
}>;
|
|
8162
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
8163
|
+
synchronous: z.ZodDefault<z.ZodBoolean>;
|
|
8164
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
8165
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8166
|
+
created_at: z.ZodString;
|
|
8167
|
+
updated_at: z.ZodString;
|
|
8168
|
+
hook_id: z.ZodString;
|
|
8169
|
+
page_id: z.ZodEnum<{
|
|
8170
|
+
impersonate: "impersonate";
|
|
8171
|
+
}>;
|
|
8172
|
+
permission_required: z.ZodOptional<z.ZodString>;
|
|
8103
8173
|
}, z.core.$strip>]>;
|
|
8104
8174
|
type Hook = z.infer<typeof hookSchema>;
|
|
8105
8175
|
|
|
@@ -10860,6 +10930,45 @@ interface AnalyticsQueryResponse {
|
|
|
10860
10930
|
bytes_read?: number;
|
|
10861
10931
|
};
|
|
10862
10932
|
}
|
|
10933
|
+
interface SessionRetentionParams {
|
|
10934
|
+
/** Number of weekly cohorts to include, counting back from the current week */
|
|
10935
|
+
weeks: number;
|
|
10936
|
+
}
|
|
10937
|
+
interface SessionRetentionCohort {
|
|
10938
|
+
/** ISO date (UTC Monday) the cohort week starts on */
|
|
10939
|
+
cohort: string;
|
|
10940
|
+
/** Sessions created during the cohort week */
|
|
10941
|
+
sessions: number;
|
|
10942
|
+
/**
|
|
10943
|
+
* active[k] = sessions still active k weeks after the cohort week, i.e.
|
|
10944
|
+
* last used during week k or later. active[0] === sessions. The array is
|
|
10945
|
+
* truncated at the current week, so recent cohorts have fewer entries.
|
|
10946
|
+
*/
|
|
10947
|
+
active: number[];
|
|
10948
|
+
}
|
|
10949
|
+
interface SessionRetentionResponse {
|
|
10950
|
+
interval: "week";
|
|
10951
|
+
/** Inclusive lower bound of the first cohort week */
|
|
10952
|
+
from: string;
|
|
10953
|
+
/** Timestamp the query ran at; the last cohort week is still in progress */
|
|
10954
|
+
to: string;
|
|
10955
|
+
cohorts: SessionRetentionCohort[];
|
|
10956
|
+
}
|
|
10957
|
+
declare const sessionRetentionCohortSchema: z.ZodObject<{
|
|
10958
|
+
cohort: z.ZodString;
|
|
10959
|
+
sessions: z.ZodNumber;
|
|
10960
|
+
active: z.ZodArray<z.ZodNumber>;
|
|
10961
|
+
}, z.core.$strip>;
|
|
10962
|
+
declare const sessionRetentionResponseSchema: z.ZodObject<{
|
|
10963
|
+
interval: z.ZodLiteral<"week">;
|
|
10964
|
+
from: z.ZodString;
|
|
10965
|
+
to: z.ZodString;
|
|
10966
|
+
cohorts: z.ZodArray<z.ZodObject<{
|
|
10967
|
+
cohort: z.ZodString;
|
|
10968
|
+
sessions: z.ZodNumber;
|
|
10969
|
+
active: z.ZodArray<z.ZodNumber>;
|
|
10970
|
+
}, z.core.$strip>>;
|
|
10971
|
+
}, z.core.$strip>;
|
|
10863
10972
|
declare const analyticsColumnMetaSchema: z.ZodObject<{
|
|
10864
10973
|
name: z.ZodString;
|
|
10865
10974
|
type: z.ZodString;
|
|
@@ -11370,6 +11479,38 @@ declare function decodeCursor(token: string): CursorPayload | null;
|
|
|
11370
11479
|
*/
|
|
11371
11480
|
declare function sanitizeLuceneQuery(query: string, allowedFields: string[]): string;
|
|
11372
11481
|
|
|
11482
|
+
declare const WEEK_MS: number;
|
|
11483
|
+
/**
|
|
11484
|
+
* The Unix epoch (1970-01-01) was a Thursday; adding 3 days before dividing
|
|
11485
|
+
* by a week aligns bucket boundaries to Monday 00:00 UTC.
|
|
11486
|
+
*/
|
|
11487
|
+
declare const MONDAY_EPOCH_SHIFT_MS: number;
|
|
11488
|
+
/** Monday-aligned week index for an epoch-ms timestamp. */
|
|
11489
|
+
declare function weekIndex(epochMs: number): number;
|
|
11490
|
+
/** Epoch ms of the UTC Monday a week index starts on. */
|
|
11491
|
+
declare function weekStartMs(week: number): number;
|
|
11492
|
+
interface SessionRetentionWindow {
|
|
11493
|
+
currentWeek: number;
|
|
11494
|
+
firstWeek: number;
|
|
11495
|
+
/** Epoch ms lower bound for created_at_ts — the start of the first cohort week */
|
|
11496
|
+
sinceMs: number;
|
|
11497
|
+
}
|
|
11498
|
+
declare function sessionRetentionWindow(weeks: number, now?: number): SessionRetentionWindow;
|
|
11499
|
+
interface SessionRetentionRawRow {
|
|
11500
|
+
/** Monday-aligned week index the session was created in */
|
|
11501
|
+
created_week: number;
|
|
11502
|
+
/** Monday-aligned week index the session was last used in */
|
|
11503
|
+
used_week: number;
|
|
11504
|
+
count: number;
|
|
11505
|
+
}
|
|
11506
|
+
/**
|
|
11507
|
+
* Fold raw (created-week × last-used-week) counts into per-cohort retention.
|
|
11508
|
+
* A session counts as active k weeks after its cohort week when it was last
|
|
11509
|
+
* used during that week or any later one, so a single last-used timestamp is
|
|
11510
|
+
* enough to reconstruct the whole retention triangle.
|
|
11511
|
+
*/
|
|
11512
|
+
declare function buildSessionRetention(rows: SessionRetentionRawRow[], weeks: number, now?: number): SessionRetentionResponse;
|
|
11513
|
+
|
|
11373
11514
|
interface ListActionsResponse extends Totals {
|
|
11374
11515
|
actions: Action[];
|
|
11375
11516
|
}
|
|
@@ -11384,6 +11525,14 @@ interface ActionsAdapter {
|
|
|
11384
11525
|
interface ActionExecutionsAdapter {
|
|
11385
11526
|
create: (tenant_id: string, execution: ActionExecutionInsert) => Promise<ActionExecution>;
|
|
11386
11527
|
get: (tenant_id: string, execution_id: string) => Promise<ActionExecution | null>;
|
|
11528
|
+
/**
|
|
11529
|
+
* Delete executions created before `olderThan` (ISO-8601), across all
|
|
11530
|
+
* tenants. Returns the number of rows deleted.
|
|
11531
|
+
*
|
|
11532
|
+
* Optional because some backends expire rows themselves (DynamoDB TTL,
|
|
11533
|
+
* Analytics Engine dataset retention) and have nothing to sweep.
|
|
11534
|
+
*/
|
|
11535
|
+
cleanup?: (olderThan: string) => Promise<number>;
|
|
11387
11536
|
}
|
|
11388
11537
|
|
|
11389
11538
|
interface ListActionVersionsResponse extends Totals {
|
|
@@ -12073,6 +12222,13 @@ interface AnalyticsAdapter {
|
|
|
12073
12222
|
* tenant value from a client-controlled source.
|
|
12074
12223
|
*/
|
|
12075
12224
|
query(tenantId: string, resource: AnalyticsResource, params: AnalyticsQueryParams): Promise<AnalyticsQueryResponse>;
|
|
12225
|
+
/**
|
|
12226
|
+
* Weekly session cohort retention, computed from the sessions table
|
|
12227
|
+
* (created_at_ts × used_at_ts) rather than logs. Optional: adapters that
|
|
12228
|
+
* only see log events (e.g. Analytics Engine) cannot implement it, and the
|
|
12229
|
+
* route responds 501 when it is absent.
|
|
12230
|
+
*/
|
|
12231
|
+
sessionRetention?(tenantId: string, params: SessionRetentionParams): Promise<SessionRetentionResponse>;
|
|
12076
12232
|
}
|
|
12077
12233
|
|
|
12078
12234
|
interface UniversalLoginTemplate {
|
|
@@ -12521,5 +12677,5 @@ interface DataAdapters {
|
|
|
12521
12677
|
};
|
|
12522
12678
|
}
|
|
12523
12679
|
|
|
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 };
|
|
12680
|
+
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, 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 };
|
|
12681
|
+
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 };
|