@authhero/adapter-interfaces 0.129.0 → 0.131.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 +596 -10
- package/dist/adapter-interfaces.mjs +178 -121
- package/package.json +1 -1
|
@@ -1223,9 +1223,23 @@ export declare const userInsertSchema: z.ZodObject<{
|
|
|
1223
1223
|
provider: z.ZodOptional<z.ZodString>;
|
|
1224
1224
|
connection: z.ZodString;
|
|
1225
1225
|
is_social: z.ZodOptional<z.ZodBoolean>;
|
|
1226
|
+
password: z.ZodOptional<z.ZodObject<{
|
|
1227
|
+
hash: z.ZodString;
|
|
1228
|
+
algorithm: z.ZodString;
|
|
1229
|
+
}, "strip", z.ZodTypeAny, {
|
|
1230
|
+
hash: string;
|
|
1231
|
+
algorithm: string;
|
|
1232
|
+
}, {
|
|
1233
|
+
hash: string;
|
|
1234
|
+
algorithm: string;
|
|
1235
|
+
}>>;
|
|
1226
1236
|
}, "strip", z.ZodTypeAny, {
|
|
1227
1237
|
email_verified: boolean;
|
|
1228
1238
|
connection: string;
|
|
1239
|
+
password?: {
|
|
1240
|
+
hash: string;
|
|
1241
|
+
algorithm: string;
|
|
1242
|
+
} | undefined;
|
|
1229
1243
|
name?: string | undefined;
|
|
1230
1244
|
user_id?: string | undefined;
|
|
1231
1245
|
email?: string | undefined;
|
|
@@ -1263,6 +1277,10 @@ export declare const userInsertSchema: z.ZodObject<{
|
|
|
1263
1277
|
is_social?: boolean | undefined;
|
|
1264
1278
|
}, {
|
|
1265
1279
|
connection: string;
|
|
1280
|
+
password?: {
|
|
1281
|
+
hash: string;
|
|
1282
|
+
algorithm: string;
|
|
1283
|
+
} | undefined;
|
|
1266
1284
|
name?: string | undefined;
|
|
1267
1285
|
user_id?: string | undefined;
|
|
1268
1286
|
email?: string | undefined;
|
|
@@ -1382,17 +1400,19 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1382
1400
|
}>, "many">>;
|
|
1383
1401
|
created_at: z.ZodString;
|
|
1384
1402
|
updated_at: z.ZodString;
|
|
1403
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1404
|
+
email_verified: z.ZodDefault<z.ZodBoolean>;
|
|
1385
1405
|
username: z.ZodOptional<z.ZodString>;
|
|
1406
|
+
given_name: z.ZodOptional<z.ZodString>;
|
|
1386
1407
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
1387
1408
|
phone_verified: z.ZodOptional<z.ZodBoolean>;
|
|
1388
|
-
given_name: z.ZodOptional<z.ZodString>;
|
|
1389
1409
|
family_name: z.ZodOptional<z.ZodString>;
|
|
1410
|
+
connection: z.ZodString;
|
|
1411
|
+
profileData: z.ZodOptional<z.ZodString>;
|
|
1390
1412
|
nickname: z.ZodOptional<z.ZodString>;
|
|
1391
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1392
1413
|
picture: z.ZodOptional<z.ZodString>;
|
|
1393
1414
|
locale: z.ZodOptional<z.ZodString>;
|
|
1394
1415
|
linked_to: z.ZodOptional<z.ZodString>;
|
|
1395
|
-
profileData: z.ZodOptional<z.ZodString>;
|
|
1396
1416
|
app_metadata: z.ZodOptional<z.ZodDefault<z.ZodAny>>;
|
|
1397
1417
|
user_metadata: z.ZodOptional<z.ZodDefault<z.ZodAny>>;
|
|
1398
1418
|
middle_name: z.ZodOptional<z.ZodString>;
|
|
@@ -1424,11 +1444,9 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1424
1444
|
postal_code?: string | undefined;
|
|
1425
1445
|
country?: string | undefined;
|
|
1426
1446
|
}>>;
|
|
1427
|
-
email_verified: z.ZodDefault<z.ZodBoolean>;
|
|
1428
1447
|
verify_email: z.ZodOptional<z.ZodBoolean>;
|
|
1429
1448
|
last_ip: z.ZodOptional<z.ZodString>;
|
|
1430
1449
|
last_login: z.ZodOptional<z.ZodString>;
|
|
1431
|
-
connection: z.ZodString;
|
|
1432
1450
|
}, "strip", z.ZodTypeAny, {
|
|
1433
1451
|
created_at: string;
|
|
1434
1452
|
updated_at: string;
|
|
@@ -1632,17 +1650,19 @@ export declare const auth0UserResponseSchema: z.ZodObject<{
|
|
|
1632
1650
|
}>, "many">>;
|
|
1633
1651
|
created_at: z.ZodString;
|
|
1634
1652
|
updated_at: z.ZodString;
|
|
1653
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1654
|
+
email_verified: z.ZodDefault<z.ZodBoolean>;
|
|
1635
1655
|
username: z.ZodOptional<z.ZodString>;
|
|
1656
|
+
given_name: z.ZodOptional<z.ZodString>;
|
|
1636
1657
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
1637
1658
|
phone_verified: z.ZodOptional<z.ZodBoolean>;
|
|
1638
|
-
given_name: z.ZodOptional<z.ZodString>;
|
|
1639
1659
|
family_name: z.ZodOptional<z.ZodString>;
|
|
1660
|
+
connection: z.ZodString;
|
|
1661
|
+
profileData: z.ZodOptional<z.ZodString>;
|
|
1640
1662
|
nickname: z.ZodOptional<z.ZodString>;
|
|
1641
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1642
1663
|
picture: z.ZodOptional<z.ZodString>;
|
|
1643
1664
|
locale: z.ZodOptional<z.ZodString>;
|
|
1644
1665
|
linked_to: z.ZodOptional<z.ZodString>;
|
|
1645
|
-
profileData: z.ZodOptional<z.ZodString>;
|
|
1646
1666
|
app_metadata: z.ZodOptional<z.ZodDefault<z.ZodAny>>;
|
|
1647
1667
|
user_metadata: z.ZodOptional<z.ZodDefault<z.ZodAny>>;
|
|
1648
1668
|
middle_name: z.ZodOptional<z.ZodString>;
|
|
@@ -1674,11 +1694,9 @@ export declare const auth0UserResponseSchema: z.ZodObject<{
|
|
|
1674
1694
|
postal_code?: string | undefined;
|
|
1675
1695
|
country?: string | undefined;
|
|
1676
1696
|
}>>;
|
|
1677
|
-
email_verified: z.ZodDefault<z.ZodBoolean>;
|
|
1678
1697
|
verify_email: z.ZodOptional<z.ZodBoolean>;
|
|
1679
1698
|
last_ip: z.ZodOptional<z.ZodString>;
|
|
1680
1699
|
last_login: z.ZodOptional<z.ZodString>;
|
|
1681
|
-
connection: z.ZodString;
|
|
1682
1700
|
}, "strip", z.ZodTypeAny, {
|
|
1683
1701
|
created_at: string;
|
|
1684
1702
|
updated_at: string;
|
|
@@ -12129,10 +12147,38 @@ declare const socialField: z.ZodObject<{
|
|
|
12129
12147
|
type: z.ZodLiteral<"SOCIAL">;
|
|
12130
12148
|
config: z.ZodOptional<z.ZodObject<{
|
|
12131
12149
|
providers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12150
|
+
provider_details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12151
|
+
name: z.ZodString;
|
|
12152
|
+
strategy: z.ZodOptional<z.ZodString>;
|
|
12153
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
12154
|
+
icon_url: z.ZodOptional<z.ZodString>;
|
|
12155
|
+
}, "strip", z.ZodTypeAny, {
|
|
12156
|
+
name: string;
|
|
12157
|
+
icon_url?: string | undefined;
|
|
12158
|
+
display_name?: string | undefined;
|
|
12159
|
+
strategy?: string | undefined;
|
|
12160
|
+
}, {
|
|
12161
|
+
name: string;
|
|
12162
|
+
icon_url?: string | undefined;
|
|
12163
|
+
display_name?: string | undefined;
|
|
12164
|
+
strategy?: string | undefined;
|
|
12165
|
+
}>, "many">>;
|
|
12132
12166
|
}, "strip", z.ZodTypeAny, {
|
|
12133
12167
|
providers?: string[] | undefined;
|
|
12168
|
+
provider_details?: {
|
|
12169
|
+
name: string;
|
|
12170
|
+
icon_url?: string | undefined;
|
|
12171
|
+
display_name?: string | undefined;
|
|
12172
|
+
strategy?: string | undefined;
|
|
12173
|
+
}[] | undefined;
|
|
12134
12174
|
}, {
|
|
12135
12175
|
providers?: string[] | undefined;
|
|
12176
|
+
provider_details?: {
|
|
12177
|
+
name: string;
|
|
12178
|
+
icon_url?: string | undefined;
|
|
12179
|
+
display_name?: string | undefined;
|
|
12180
|
+
strategy?: string | undefined;
|
|
12181
|
+
}[] | undefined;
|
|
12136
12182
|
}>>;
|
|
12137
12183
|
}, "strip", z.ZodTypeAny, {
|
|
12138
12184
|
type: "SOCIAL";
|
|
@@ -12142,6 +12188,12 @@ declare const socialField: z.ZodObject<{
|
|
|
12142
12188
|
category?: "FIELD" | undefined;
|
|
12143
12189
|
config?: {
|
|
12144
12190
|
providers?: string[] | undefined;
|
|
12191
|
+
provider_details?: {
|
|
12192
|
+
name: string;
|
|
12193
|
+
icon_url?: string | undefined;
|
|
12194
|
+
display_name?: string | undefined;
|
|
12195
|
+
strategy?: string | undefined;
|
|
12196
|
+
}[] | undefined;
|
|
12145
12197
|
} | undefined;
|
|
12146
12198
|
sensitive?: boolean | undefined;
|
|
12147
12199
|
label?: string | undefined;
|
|
@@ -12154,6 +12206,12 @@ declare const socialField: z.ZodObject<{
|
|
|
12154
12206
|
category?: "FIELD" | undefined;
|
|
12155
12207
|
config?: {
|
|
12156
12208
|
providers?: string[] | undefined;
|
|
12209
|
+
provider_details?: {
|
|
12210
|
+
name: string;
|
|
12211
|
+
icon_url?: string | undefined;
|
|
12212
|
+
display_name?: string | undefined;
|
|
12213
|
+
strategy?: string | undefined;
|
|
12214
|
+
}[] | undefined;
|
|
12157
12215
|
} | undefined;
|
|
12158
12216
|
sensitive?: boolean | undefined;
|
|
12159
12217
|
label?: string | undefined;
|
|
@@ -13484,10 +13542,38 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13484
13542
|
type: z.ZodLiteral<"SOCIAL">;
|
|
13485
13543
|
config: z.ZodOptional<z.ZodObject<{
|
|
13486
13544
|
providers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13545
|
+
provider_details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13546
|
+
name: z.ZodString;
|
|
13547
|
+
strategy: z.ZodOptional<z.ZodString>;
|
|
13548
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
13549
|
+
icon_url: z.ZodOptional<z.ZodString>;
|
|
13550
|
+
}, "strip", z.ZodTypeAny, {
|
|
13551
|
+
name: string;
|
|
13552
|
+
icon_url?: string | undefined;
|
|
13553
|
+
display_name?: string | undefined;
|
|
13554
|
+
strategy?: string | undefined;
|
|
13555
|
+
}, {
|
|
13556
|
+
name: string;
|
|
13557
|
+
icon_url?: string | undefined;
|
|
13558
|
+
display_name?: string | undefined;
|
|
13559
|
+
strategy?: string | undefined;
|
|
13560
|
+
}>, "many">>;
|
|
13487
13561
|
}, "strip", z.ZodTypeAny, {
|
|
13488
13562
|
providers?: string[] | undefined;
|
|
13563
|
+
provider_details?: {
|
|
13564
|
+
name: string;
|
|
13565
|
+
icon_url?: string | undefined;
|
|
13566
|
+
display_name?: string | undefined;
|
|
13567
|
+
strategy?: string | undefined;
|
|
13568
|
+
}[] | undefined;
|
|
13489
13569
|
}, {
|
|
13490
13570
|
providers?: string[] | undefined;
|
|
13571
|
+
provider_details?: {
|
|
13572
|
+
name: string;
|
|
13573
|
+
icon_url?: string | undefined;
|
|
13574
|
+
display_name?: string | undefined;
|
|
13575
|
+
strategy?: string | undefined;
|
|
13576
|
+
}[] | undefined;
|
|
13491
13577
|
}>>;
|
|
13492
13578
|
}, "strip", z.ZodTypeAny, {
|
|
13493
13579
|
type: "SOCIAL";
|
|
@@ -13497,6 +13583,12 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13497
13583
|
category?: "FIELD" | undefined;
|
|
13498
13584
|
config?: {
|
|
13499
13585
|
providers?: string[] | undefined;
|
|
13586
|
+
provider_details?: {
|
|
13587
|
+
name: string;
|
|
13588
|
+
icon_url?: string | undefined;
|
|
13589
|
+
display_name?: string | undefined;
|
|
13590
|
+
strategy?: string | undefined;
|
|
13591
|
+
}[] | undefined;
|
|
13500
13592
|
} | undefined;
|
|
13501
13593
|
sensitive?: boolean | undefined;
|
|
13502
13594
|
label?: string | undefined;
|
|
@@ -13509,6 +13601,12 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13509
13601
|
category?: "FIELD" | undefined;
|
|
13510
13602
|
config?: {
|
|
13511
13603
|
providers?: string[] | undefined;
|
|
13604
|
+
provider_details?: {
|
|
13605
|
+
name: string;
|
|
13606
|
+
icon_url?: string | undefined;
|
|
13607
|
+
display_name?: string | undefined;
|
|
13608
|
+
strategy?: string | undefined;
|
|
13609
|
+
}[] | undefined;
|
|
13512
13610
|
} | undefined;
|
|
13513
13611
|
sensitive?: boolean | undefined;
|
|
13514
13612
|
label?: string | undefined;
|
|
@@ -14835,10 +14933,38 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14835
14933
|
type: z.ZodLiteral<"SOCIAL">;
|
|
14836
14934
|
config: z.ZodOptional<z.ZodObject<{
|
|
14837
14935
|
providers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
14936
|
+
provider_details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14937
|
+
name: z.ZodString;
|
|
14938
|
+
strategy: z.ZodOptional<z.ZodString>;
|
|
14939
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
14940
|
+
icon_url: z.ZodOptional<z.ZodString>;
|
|
14941
|
+
}, "strip", z.ZodTypeAny, {
|
|
14942
|
+
name: string;
|
|
14943
|
+
icon_url?: string | undefined;
|
|
14944
|
+
display_name?: string | undefined;
|
|
14945
|
+
strategy?: string | undefined;
|
|
14946
|
+
}, {
|
|
14947
|
+
name: string;
|
|
14948
|
+
icon_url?: string | undefined;
|
|
14949
|
+
display_name?: string | undefined;
|
|
14950
|
+
strategy?: string | undefined;
|
|
14951
|
+
}>, "many">>;
|
|
14838
14952
|
}, "strip", z.ZodTypeAny, {
|
|
14839
14953
|
providers?: string[] | undefined;
|
|
14954
|
+
provider_details?: {
|
|
14955
|
+
name: string;
|
|
14956
|
+
icon_url?: string | undefined;
|
|
14957
|
+
display_name?: string | undefined;
|
|
14958
|
+
strategy?: string | undefined;
|
|
14959
|
+
}[] | undefined;
|
|
14840
14960
|
}, {
|
|
14841
14961
|
providers?: string[] | undefined;
|
|
14962
|
+
provider_details?: {
|
|
14963
|
+
name: string;
|
|
14964
|
+
icon_url?: string | undefined;
|
|
14965
|
+
display_name?: string | undefined;
|
|
14966
|
+
strategy?: string | undefined;
|
|
14967
|
+
}[] | undefined;
|
|
14842
14968
|
}>>;
|
|
14843
14969
|
}, "strip", z.ZodTypeAny, {
|
|
14844
14970
|
type: "SOCIAL";
|
|
@@ -14848,6 +14974,12 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14848
14974
|
category?: "FIELD" | undefined;
|
|
14849
14975
|
config?: {
|
|
14850
14976
|
providers?: string[] | undefined;
|
|
14977
|
+
provider_details?: {
|
|
14978
|
+
name: string;
|
|
14979
|
+
icon_url?: string | undefined;
|
|
14980
|
+
display_name?: string | undefined;
|
|
14981
|
+
strategy?: string | undefined;
|
|
14982
|
+
}[] | undefined;
|
|
14851
14983
|
} | undefined;
|
|
14852
14984
|
sensitive?: boolean | undefined;
|
|
14853
14985
|
label?: string | undefined;
|
|
@@ -14860,6 +14992,12 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14860
14992
|
category?: "FIELD" | undefined;
|
|
14861
14993
|
config?: {
|
|
14862
14994
|
providers?: string[] | undefined;
|
|
14995
|
+
provider_details?: {
|
|
14996
|
+
name: string;
|
|
14997
|
+
icon_url?: string | undefined;
|
|
14998
|
+
display_name?: string | undefined;
|
|
14999
|
+
strategy?: string | undefined;
|
|
15000
|
+
}[] | undefined;
|
|
14863
15001
|
} | undefined;
|
|
14864
15002
|
sensitive?: boolean | undefined;
|
|
14865
15003
|
label?: string | undefined;
|
|
@@ -16395,10 +16533,38 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16395
16533
|
type: z.ZodLiteral<"SOCIAL">;
|
|
16396
16534
|
config: z.ZodOptional<z.ZodObject<{
|
|
16397
16535
|
providers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16536
|
+
provider_details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16537
|
+
name: z.ZodString;
|
|
16538
|
+
strategy: z.ZodOptional<z.ZodString>;
|
|
16539
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
16540
|
+
icon_url: z.ZodOptional<z.ZodString>;
|
|
16541
|
+
}, "strip", z.ZodTypeAny, {
|
|
16542
|
+
name: string;
|
|
16543
|
+
icon_url?: string | undefined;
|
|
16544
|
+
display_name?: string | undefined;
|
|
16545
|
+
strategy?: string | undefined;
|
|
16546
|
+
}, {
|
|
16547
|
+
name: string;
|
|
16548
|
+
icon_url?: string | undefined;
|
|
16549
|
+
display_name?: string | undefined;
|
|
16550
|
+
strategy?: string | undefined;
|
|
16551
|
+
}>, "many">>;
|
|
16398
16552
|
}, "strip", z.ZodTypeAny, {
|
|
16399
16553
|
providers?: string[] | undefined;
|
|
16554
|
+
provider_details?: {
|
|
16555
|
+
name: string;
|
|
16556
|
+
icon_url?: string | undefined;
|
|
16557
|
+
display_name?: string | undefined;
|
|
16558
|
+
strategy?: string | undefined;
|
|
16559
|
+
}[] | undefined;
|
|
16400
16560
|
}, {
|
|
16401
16561
|
providers?: string[] | undefined;
|
|
16562
|
+
provider_details?: {
|
|
16563
|
+
name: string;
|
|
16564
|
+
icon_url?: string | undefined;
|
|
16565
|
+
display_name?: string | undefined;
|
|
16566
|
+
strategy?: string | undefined;
|
|
16567
|
+
}[] | undefined;
|
|
16402
16568
|
}>>;
|
|
16403
16569
|
}, "strip", z.ZodTypeAny, {
|
|
16404
16570
|
type: "SOCIAL";
|
|
@@ -16408,6 +16574,12 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16408
16574
|
category?: "FIELD" | undefined;
|
|
16409
16575
|
config?: {
|
|
16410
16576
|
providers?: string[] | undefined;
|
|
16577
|
+
provider_details?: {
|
|
16578
|
+
name: string;
|
|
16579
|
+
icon_url?: string | undefined;
|
|
16580
|
+
display_name?: string | undefined;
|
|
16581
|
+
strategy?: string | undefined;
|
|
16582
|
+
}[] | undefined;
|
|
16411
16583
|
} | undefined;
|
|
16412
16584
|
sensitive?: boolean | undefined;
|
|
16413
16585
|
label?: string | undefined;
|
|
@@ -16420,6 +16592,12 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16420
16592
|
category?: "FIELD" | undefined;
|
|
16421
16593
|
config?: {
|
|
16422
16594
|
providers?: string[] | undefined;
|
|
16595
|
+
provider_details?: {
|
|
16596
|
+
name: string;
|
|
16597
|
+
icon_url?: string | undefined;
|
|
16598
|
+
display_name?: string | undefined;
|
|
16599
|
+
strategy?: string | undefined;
|
|
16600
|
+
}[] | undefined;
|
|
16423
16601
|
} | undefined;
|
|
16424
16602
|
sensitive?: boolean | undefined;
|
|
16425
16603
|
label?: string | undefined;
|
|
@@ -16890,6 +17068,12 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16890
17068
|
category?: "FIELD" | undefined;
|
|
16891
17069
|
config?: {
|
|
16892
17070
|
providers?: string[] | undefined;
|
|
17071
|
+
provider_details?: {
|
|
17072
|
+
name: string;
|
|
17073
|
+
icon_url?: string | undefined;
|
|
17074
|
+
display_name?: string | undefined;
|
|
17075
|
+
strategy?: string | undefined;
|
|
17076
|
+
}[] | undefined;
|
|
16893
17077
|
} | undefined;
|
|
16894
17078
|
sensitive?: boolean | undefined;
|
|
16895
17079
|
label?: string | undefined;
|
|
@@ -17245,6 +17429,12 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17245
17429
|
category?: "FIELD" | undefined;
|
|
17246
17430
|
config?: {
|
|
17247
17431
|
providers?: string[] | undefined;
|
|
17432
|
+
provider_details?: {
|
|
17433
|
+
name: string;
|
|
17434
|
+
icon_url?: string | undefined;
|
|
17435
|
+
display_name?: string | undefined;
|
|
17436
|
+
strategy?: string | undefined;
|
|
17437
|
+
}[] | undefined;
|
|
17248
17438
|
} | undefined;
|
|
17249
17439
|
sensitive?: boolean | undefined;
|
|
17250
17440
|
label?: string | undefined;
|
|
@@ -17606,6 +17796,12 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17606
17796
|
category?: "FIELD" | undefined;
|
|
17607
17797
|
config?: {
|
|
17608
17798
|
providers?: string[] | undefined;
|
|
17799
|
+
provider_details?: {
|
|
17800
|
+
name: string;
|
|
17801
|
+
icon_url?: string | undefined;
|
|
17802
|
+
display_name?: string | undefined;
|
|
17803
|
+
strategy?: string | undefined;
|
|
17804
|
+
}[] | undefined;
|
|
17609
17805
|
} | undefined;
|
|
17610
17806
|
sensitive?: boolean | undefined;
|
|
17611
17807
|
label?: string | undefined;
|
|
@@ -17970,6 +18166,12 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17970
18166
|
category?: "FIELD" | undefined;
|
|
17971
18167
|
config?: {
|
|
17972
18168
|
providers?: string[] | undefined;
|
|
18169
|
+
provider_details?: {
|
|
18170
|
+
name: string;
|
|
18171
|
+
icon_url?: string | undefined;
|
|
18172
|
+
display_name?: string | undefined;
|
|
18173
|
+
strategy?: string | undefined;
|
|
18174
|
+
}[] | undefined;
|
|
17973
18175
|
} | undefined;
|
|
17974
18176
|
sensitive?: boolean | undefined;
|
|
17975
18177
|
label?: string | undefined;
|
|
@@ -19338,10 +19540,38 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19338
19540
|
type: z.ZodLiteral<"SOCIAL">;
|
|
19339
19541
|
config: z.ZodOptional<z.ZodObject<{
|
|
19340
19542
|
providers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
19543
|
+
provider_details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19544
|
+
name: z.ZodString;
|
|
19545
|
+
strategy: z.ZodOptional<z.ZodString>;
|
|
19546
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
19547
|
+
icon_url: z.ZodOptional<z.ZodString>;
|
|
19548
|
+
}, "strip", z.ZodTypeAny, {
|
|
19549
|
+
name: string;
|
|
19550
|
+
icon_url?: string | undefined;
|
|
19551
|
+
display_name?: string | undefined;
|
|
19552
|
+
strategy?: string | undefined;
|
|
19553
|
+
}, {
|
|
19554
|
+
name: string;
|
|
19555
|
+
icon_url?: string | undefined;
|
|
19556
|
+
display_name?: string | undefined;
|
|
19557
|
+
strategy?: string | undefined;
|
|
19558
|
+
}>, "many">>;
|
|
19341
19559
|
}, "strip", z.ZodTypeAny, {
|
|
19342
19560
|
providers?: string[] | undefined;
|
|
19561
|
+
provider_details?: {
|
|
19562
|
+
name: string;
|
|
19563
|
+
icon_url?: string | undefined;
|
|
19564
|
+
display_name?: string | undefined;
|
|
19565
|
+
strategy?: string | undefined;
|
|
19566
|
+
}[] | undefined;
|
|
19343
19567
|
}, {
|
|
19344
19568
|
providers?: string[] | undefined;
|
|
19569
|
+
provider_details?: {
|
|
19570
|
+
name: string;
|
|
19571
|
+
icon_url?: string | undefined;
|
|
19572
|
+
display_name?: string | undefined;
|
|
19573
|
+
strategy?: string | undefined;
|
|
19574
|
+
}[] | undefined;
|
|
19345
19575
|
}>>;
|
|
19346
19576
|
}, "strip", z.ZodTypeAny, {
|
|
19347
19577
|
type: "SOCIAL";
|
|
@@ -19351,6 +19581,12 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19351
19581
|
category?: "FIELD" | undefined;
|
|
19352
19582
|
config?: {
|
|
19353
19583
|
providers?: string[] | undefined;
|
|
19584
|
+
provider_details?: {
|
|
19585
|
+
name: string;
|
|
19586
|
+
icon_url?: string | undefined;
|
|
19587
|
+
display_name?: string | undefined;
|
|
19588
|
+
strategy?: string | undefined;
|
|
19589
|
+
}[] | undefined;
|
|
19354
19590
|
} | undefined;
|
|
19355
19591
|
sensitive?: boolean | undefined;
|
|
19356
19592
|
label?: string | undefined;
|
|
@@ -19363,6 +19599,12 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19363
19599
|
category?: "FIELD" | undefined;
|
|
19364
19600
|
config?: {
|
|
19365
19601
|
providers?: string[] | undefined;
|
|
19602
|
+
provider_details?: {
|
|
19603
|
+
name: string;
|
|
19604
|
+
icon_url?: string | undefined;
|
|
19605
|
+
display_name?: string | undefined;
|
|
19606
|
+
strategy?: string | undefined;
|
|
19607
|
+
}[] | undefined;
|
|
19366
19608
|
} | undefined;
|
|
19367
19609
|
sensitive?: boolean | undefined;
|
|
19368
19610
|
label?: string | undefined;
|
|
@@ -19833,6 +20075,12 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19833
20075
|
category?: "FIELD" | undefined;
|
|
19834
20076
|
config?: {
|
|
19835
20077
|
providers?: string[] | undefined;
|
|
20078
|
+
provider_details?: {
|
|
20079
|
+
name: string;
|
|
20080
|
+
icon_url?: string | undefined;
|
|
20081
|
+
display_name?: string | undefined;
|
|
20082
|
+
strategy?: string | undefined;
|
|
20083
|
+
}[] | undefined;
|
|
19836
20084
|
} | undefined;
|
|
19837
20085
|
sensitive?: boolean | undefined;
|
|
19838
20086
|
label?: string | undefined;
|
|
@@ -20188,6 +20436,12 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20188
20436
|
category?: "FIELD" | undefined;
|
|
20189
20437
|
config?: {
|
|
20190
20438
|
providers?: string[] | undefined;
|
|
20439
|
+
provider_details?: {
|
|
20440
|
+
name: string;
|
|
20441
|
+
icon_url?: string | undefined;
|
|
20442
|
+
display_name?: string | undefined;
|
|
20443
|
+
strategy?: string | undefined;
|
|
20444
|
+
}[] | undefined;
|
|
20191
20445
|
} | undefined;
|
|
20192
20446
|
sensitive?: boolean | undefined;
|
|
20193
20447
|
label?: string | undefined;
|
|
@@ -20549,6 +20803,12 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20549
20803
|
category?: "FIELD" | undefined;
|
|
20550
20804
|
config?: {
|
|
20551
20805
|
providers?: string[] | undefined;
|
|
20806
|
+
provider_details?: {
|
|
20807
|
+
name: string;
|
|
20808
|
+
icon_url?: string | undefined;
|
|
20809
|
+
display_name?: string | undefined;
|
|
20810
|
+
strategy?: string | undefined;
|
|
20811
|
+
}[] | undefined;
|
|
20552
20812
|
} | undefined;
|
|
20553
20813
|
sensitive?: boolean | undefined;
|
|
20554
20814
|
label?: string | undefined;
|
|
@@ -20913,6 +21173,12 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20913
21173
|
category?: "FIELD" | undefined;
|
|
20914
21174
|
config?: {
|
|
20915
21175
|
providers?: string[] | undefined;
|
|
21176
|
+
provider_details?: {
|
|
21177
|
+
name: string;
|
|
21178
|
+
icon_url?: string | undefined;
|
|
21179
|
+
display_name?: string | undefined;
|
|
21180
|
+
strategy?: string | undefined;
|
|
21181
|
+
}[] | undefined;
|
|
20916
21182
|
} | undefined;
|
|
20917
21183
|
sensitive?: boolean | undefined;
|
|
20918
21184
|
label?: string | undefined;
|
|
@@ -22312,10 +22578,38 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22312
22578
|
type: z.ZodLiteral<"SOCIAL">;
|
|
22313
22579
|
config: z.ZodOptional<z.ZodObject<{
|
|
22314
22580
|
providers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
22581
|
+
provider_details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22582
|
+
name: z.ZodString;
|
|
22583
|
+
strategy: z.ZodOptional<z.ZodString>;
|
|
22584
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
22585
|
+
icon_url: z.ZodOptional<z.ZodString>;
|
|
22586
|
+
}, "strip", z.ZodTypeAny, {
|
|
22587
|
+
name: string;
|
|
22588
|
+
icon_url?: string | undefined;
|
|
22589
|
+
display_name?: string | undefined;
|
|
22590
|
+
strategy?: string | undefined;
|
|
22591
|
+
}, {
|
|
22592
|
+
name: string;
|
|
22593
|
+
icon_url?: string | undefined;
|
|
22594
|
+
display_name?: string | undefined;
|
|
22595
|
+
strategy?: string | undefined;
|
|
22596
|
+
}>, "many">>;
|
|
22315
22597
|
}, "strip", z.ZodTypeAny, {
|
|
22316
22598
|
providers?: string[] | undefined;
|
|
22599
|
+
provider_details?: {
|
|
22600
|
+
name: string;
|
|
22601
|
+
icon_url?: string | undefined;
|
|
22602
|
+
display_name?: string | undefined;
|
|
22603
|
+
strategy?: string | undefined;
|
|
22604
|
+
}[] | undefined;
|
|
22317
22605
|
}, {
|
|
22318
22606
|
providers?: string[] | undefined;
|
|
22607
|
+
provider_details?: {
|
|
22608
|
+
name: string;
|
|
22609
|
+
icon_url?: string | undefined;
|
|
22610
|
+
display_name?: string | undefined;
|
|
22611
|
+
strategy?: string | undefined;
|
|
22612
|
+
}[] | undefined;
|
|
22319
22613
|
}>>;
|
|
22320
22614
|
}, "strip", z.ZodTypeAny, {
|
|
22321
22615
|
type: "SOCIAL";
|
|
@@ -22325,6 +22619,12 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22325
22619
|
category?: "FIELD" | undefined;
|
|
22326
22620
|
config?: {
|
|
22327
22621
|
providers?: string[] | undefined;
|
|
22622
|
+
provider_details?: {
|
|
22623
|
+
name: string;
|
|
22624
|
+
icon_url?: string | undefined;
|
|
22625
|
+
display_name?: string | undefined;
|
|
22626
|
+
strategy?: string | undefined;
|
|
22627
|
+
}[] | undefined;
|
|
22328
22628
|
} | undefined;
|
|
22329
22629
|
sensitive?: boolean | undefined;
|
|
22330
22630
|
label?: string | undefined;
|
|
@@ -22337,6 +22637,12 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22337
22637
|
category?: "FIELD" | undefined;
|
|
22338
22638
|
config?: {
|
|
22339
22639
|
providers?: string[] | undefined;
|
|
22640
|
+
provider_details?: {
|
|
22641
|
+
name: string;
|
|
22642
|
+
icon_url?: string | undefined;
|
|
22643
|
+
display_name?: string | undefined;
|
|
22644
|
+
strategy?: string | undefined;
|
|
22645
|
+
}[] | undefined;
|
|
22340
22646
|
} | undefined;
|
|
22341
22647
|
sensitive?: boolean | undefined;
|
|
22342
22648
|
label?: string | undefined;
|
|
@@ -22807,6 +23113,12 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22807
23113
|
category?: "FIELD" | undefined;
|
|
22808
23114
|
config?: {
|
|
22809
23115
|
providers?: string[] | undefined;
|
|
23116
|
+
provider_details?: {
|
|
23117
|
+
name: string;
|
|
23118
|
+
icon_url?: string | undefined;
|
|
23119
|
+
display_name?: string | undefined;
|
|
23120
|
+
strategy?: string | undefined;
|
|
23121
|
+
}[] | undefined;
|
|
22810
23122
|
} | undefined;
|
|
22811
23123
|
sensitive?: boolean | undefined;
|
|
22812
23124
|
label?: string | undefined;
|
|
@@ -23162,6 +23474,12 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23162
23474
|
category?: "FIELD" | undefined;
|
|
23163
23475
|
config?: {
|
|
23164
23476
|
providers?: string[] | undefined;
|
|
23477
|
+
provider_details?: {
|
|
23478
|
+
name: string;
|
|
23479
|
+
icon_url?: string | undefined;
|
|
23480
|
+
display_name?: string | undefined;
|
|
23481
|
+
strategy?: string | undefined;
|
|
23482
|
+
}[] | undefined;
|
|
23165
23483
|
} | undefined;
|
|
23166
23484
|
sensitive?: boolean | undefined;
|
|
23167
23485
|
label?: string | undefined;
|
|
@@ -23523,6 +23841,12 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23523
23841
|
category?: "FIELD" | undefined;
|
|
23524
23842
|
config?: {
|
|
23525
23843
|
providers?: string[] | undefined;
|
|
23844
|
+
provider_details?: {
|
|
23845
|
+
name: string;
|
|
23846
|
+
icon_url?: string | undefined;
|
|
23847
|
+
display_name?: string | undefined;
|
|
23848
|
+
strategy?: string | undefined;
|
|
23849
|
+
}[] | undefined;
|
|
23526
23850
|
} | undefined;
|
|
23527
23851
|
sensitive?: boolean | undefined;
|
|
23528
23852
|
label?: string | undefined;
|
|
@@ -23887,6 +24211,12 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23887
24211
|
category?: "FIELD" | undefined;
|
|
23888
24212
|
config?: {
|
|
23889
24213
|
providers?: string[] | undefined;
|
|
24214
|
+
provider_details?: {
|
|
24215
|
+
name: string;
|
|
24216
|
+
icon_url?: string | undefined;
|
|
24217
|
+
display_name?: string | undefined;
|
|
24218
|
+
strategy?: string | undefined;
|
|
24219
|
+
}[] | undefined;
|
|
23890
24220
|
} | undefined;
|
|
23891
24221
|
sensitive?: boolean | undefined;
|
|
23892
24222
|
label?: string | undefined;
|
|
@@ -24410,6 +24740,12 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24410
24740
|
category?: "FIELD" | undefined;
|
|
24411
24741
|
config?: {
|
|
24412
24742
|
providers?: string[] | undefined;
|
|
24743
|
+
provider_details?: {
|
|
24744
|
+
name: string;
|
|
24745
|
+
icon_url?: string | undefined;
|
|
24746
|
+
display_name?: string | undefined;
|
|
24747
|
+
strategy?: string | undefined;
|
|
24748
|
+
}[] | undefined;
|
|
24413
24749
|
} | undefined;
|
|
24414
24750
|
sensitive?: boolean | undefined;
|
|
24415
24751
|
label?: string | undefined;
|
|
@@ -24843,6 +25179,12 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24843
25179
|
category?: "FIELD" | undefined;
|
|
24844
25180
|
config?: {
|
|
24845
25181
|
providers?: string[] | undefined;
|
|
25182
|
+
provider_details?: {
|
|
25183
|
+
name: string;
|
|
25184
|
+
icon_url?: string | undefined;
|
|
25185
|
+
display_name?: string | undefined;
|
|
25186
|
+
strategy?: string | undefined;
|
|
25187
|
+
}[] | undefined;
|
|
24846
25188
|
} | undefined;
|
|
24847
25189
|
sensitive?: boolean | undefined;
|
|
24848
25190
|
label?: string | undefined;
|
|
@@ -26259,10 +26601,38 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26259
26601
|
type: z.ZodLiteral<"SOCIAL">;
|
|
26260
26602
|
config: z.ZodOptional<z.ZodObject<{
|
|
26261
26603
|
providers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
26604
|
+
provider_details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
26605
|
+
name: z.ZodString;
|
|
26606
|
+
strategy: z.ZodOptional<z.ZodString>;
|
|
26607
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
26608
|
+
icon_url: z.ZodOptional<z.ZodString>;
|
|
26609
|
+
}, "strip", z.ZodTypeAny, {
|
|
26610
|
+
name: string;
|
|
26611
|
+
icon_url?: string | undefined;
|
|
26612
|
+
display_name?: string | undefined;
|
|
26613
|
+
strategy?: string | undefined;
|
|
26614
|
+
}, {
|
|
26615
|
+
name: string;
|
|
26616
|
+
icon_url?: string | undefined;
|
|
26617
|
+
display_name?: string | undefined;
|
|
26618
|
+
strategy?: string | undefined;
|
|
26619
|
+
}>, "many">>;
|
|
26262
26620
|
}, "strip", z.ZodTypeAny, {
|
|
26263
26621
|
providers?: string[] | undefined;
|
|
26622
|
+
provider_details?: {
|
|
26623
|
+
name: string;
|
|
26624
|
+
icon_url?: string | undefined;
|
|
26625
|
+
display_name?: string | undefined;
|
|
26626
|
+
strategy?: string | undefined;
|
|
26627
|
+
}[] | undefined;
|
|
26264
26628
|
}, {
|
|
26265
26629
|
providers?: string[] | undefined;
|
|
26630
|
+
provider_details?: {
|
|
26631
|
+
name: string;
|
|
26632
|
+
icon_url?: string | undefined;
|
|
26633
|
+
display_name?: string | undefined;
|
|
26634
|
+
strategy?: string | undefined;
|
|
26635
|
+
}[] | undefined;
|
|
26266
26636
|
}>>;
|
|
26267
26637
|
}, "strip", z.ZodTypeAny, {
|
|
26268
26638
|
type: "SOCIAL";
|
|
@@ -26272,6 +26642,12 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26272
26642
|
category?: "FIELD" | undefined;
|
|
26273
26643
|
config?: {
|
|
26274
26644
|
providers?: string[] | undefined;
|
|
26645
|
+
provider_details?: {
|
|
26646
|
+
name: string;
|
|
26647
|
+
icon_url?: string | undefined;
|
|
26648
|
+
display_name?: string | undefined;
|
|
26649
|
+
strategy?: string | undefined;
|
|
26650
|
+
}[] | undefined;
|
|
26275
26651
|
} | undefined;
|
|
26276
26652
|
sensitive?: boolean | undefined;
|
|
26277
26653
|
label?: string | undefined;
|
|
@@ -26284,6 +26660,12 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26284
26660
|
category?: "FIELD" | undefined;
|
|
26285
26661
|
config?: {
|
|
26286
26662
|
providers?: string[] | undefined;
|
|
26663
|
+
provider_details?: {
|
|
26664
|
+
name: string;
|
|
26665
|
+
icon_url?: string | undefined;
|
|
26666
|
+
display_name?: string | undefined;
|
|
26667
|
+
strategy?: string | undefined;
|
|
26668
|
+
}[] | undefined;
|
|
26287
26669
|
} | undefined;
|
|
26288
26670
|
sensitive?: boolean | undefined;
|
|
26289
26671
|
label?: string | undefined;
|
|
@@ -26754,6 +27136,12 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26754
27136
|
category?: "FIELD" | undefined;
|
|
26755
27137
|
config?: {
|
|
26756
27138
|
providers?: string[] | undefined;
|
|
27139
|
+
provider_details?: {
|
|
27140
|
+
name: string;
|
|
27141
|
+
icon_url?: string | undefined;
|
|
27142
|
+
display_name?: string | undefined;
|
|
27143
|
+
strategy?: string | undefined;
|
|
27144
|
+
}[] | undefined;
|
|
26757
27145
|
} | undefined;
|
|
26758
27146
|
sensitive?: boolean | undefined;
|
|
26759
27147
|
label?: string | undefined;
|
|
@@ -27109,6 +27497,12 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27109
27497
|
category?: "FIELD" | undefined;
|
|
27110
27498
|
config?: {
|
|
27111
27499
|
providers?: string[] | undefined;
|
|
27500
|
+
provider_details?: {
|
|
27501
|
+
name: string;
|
|
27502
|
+
icon_url?: string | undefined;
|
|
27503
|
+
display_name?: string | undefined;
|
|
27504
|
+
strategy?: string | undefined;
|
|
27505
|
+
}[] | undefined;
|
|
27112
27506
|
} | undefined;
|
|
27113
27507
|
sensitive?: boolean | undefined;
|
|
27114
27508
|
label?: string | undefined;
|
|
@@ -27470,6 +27864,12 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27470
27864
|
category?: "FIELD" | undefined;
|
|
27471
27865
|
config?: {
|
|
27472
27866
|
providers?: string[] | undefined;
|
|
27867
|
+
provider_details?: {
|
|
27868
|
+
name: string;
|
|
27869
|
+
icon_url?: string | undefined;
|
|
27870
|
+
display_name?: string | undefined;
|
|
27871
|
+
strategy?: string | undefined;
|
|
27872
|
+
}[] | undefined;
|
|
27473
27873
|
} | undefined;
|
|
27474
27874
|
sensitive?: boolean | undefined;
|
|
27475
27875
|
label?: string | undefined;
|
|
@@ -27834,6 +28234,12 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27834
28234
|
category?: "FIELD" | undefined;
|
|
27835
28235
|
config?: {
|
|
27836
28236
|
providers?: string[] | undefined;
|
|
28237
|
+
provider_details?: {
|
|
28238
|
+
name: string;
|
|
28239
|
+
icon_url?: string | undefined;
|
|
28240
|
+
display_name?: string | undefined;
|
|
28241
|
+
strategy?: string | undefined;
|
|
28242
|
+
}[] | undefined;
|
|
27837
28243
|
} | undefined;
|
|
27838
28244
|
sensitive?: boolean | undefined;
|
|
27839
28245
|
label?: string | undefined;
|
|
@@ -28362,6 +28768,12 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28362
28768
|
category?: "FIELD" | undefined;
|
|
28363
28769
|
config?: {
|
|
28364
28770
|
providers?: string[] | undefined;
|
|
28771
|
+
provider_details?: {
|
|
28772
|
+
name: string;
|
|
28773
|
+
icon_url?: string | undefined;
|
|
28774
|
+
display_name?: string | undefined;
|
|
28775
|
+
strategy?: string | undefined;
|
|
28776
|
+
}[] | undefined;
|
|
28365
28777
|
} | undefined;
|
|
28366
28778
|
sensitive?: boolean | undefined;
|
|
28367
28779
|
label?: string | undefined;
|
|
@@ -28798,6 +29210,12 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28798
29210
|
category?: "FIELD" | undefined;
|
|
28799
29211
|
config?: {
|
|
28800
29212
|
providers?: string[] | undefined;
|
|
29213
|
+
provider_details?: {
|
|
29214
|
+
name: string;
|
|
29215
|
+
icon_url?: string | undefined;
|
|
29216
|
+
display_name?: string | undefined;
|
|
29217
|
+
strategy?: string | undefined;
|
|
29218
|
+
}[] | undefined;
|
|
28801
29219
|
} | undefined;
|
|
28802
29220
|
sensitive?: boolean | undefined;
|
|
28803
29221
|
label?: string | undefined;
|
|
@@ -28930,6 +29348,8 @@ export type ScreenLink = z.infer<typeof screenLinkSchema>;
|
|
|
28930
29348
|
* This is what the API returns to the widget - no flow routing logic
|
|
28931
29349
|
*/
|
|
28932
29350
|
export declare const uiScreenSchema: z.ZodObject<{
|
|
29351
|
+
/** Screen identifier for CSS targeting (e.g., 'identifier', 'enter-password', 'signup') */
|
|
29352
|
+
name: z.ZodOptional<z.ZodString>;
|
|
28933
29353
|
action: z.ZodString;
|
|
28934
29354
|
method: z.ZodEnum<[
|
|
28935
29355
|
"POST",
|
|
@@ -30099,10 +30519,38 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30099
30519
|
type: z.ZodLiteral<"SOCIAL">;
|
|
30100
30520
|
config: z.ZodOptional<z.ZodObject<{
|
|
30101
30521
|
providers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
30522
|
+
provider_details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
30523
|
+
name: z.ZodString;
|
|
30524
|
+
strategy: z.ZodOptional<z.ZodString>;
|
|
30525
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
30526
|
+
icon_url: z.ZodOptional<z.ZodString>;
|
|
30527
|
+
}, "strip", z.ZodTypeAny, {
|
|
30528
|
+
name: string;
|
|
30529
|
+
icon_url?: string | undefined;
|
|
30530
|
+
display_name?: string | undefined;
|
|
30531
|
+
strategy?: string | undefined;
|
|
30532
|
+
}, {
|
|
30533
|
+
name: string;
|
|
30534
|
+
icon_url?: string | undefined;
|
|
30535
|
+
display_name?: string | undefined;
|
|
30536
|
+
strategy?: string | undefined;
|
|
30537
|
+
}>, "many">>;
|
|
30102
30538
|
}, "strip", z.ZodTypeAny, {
|
|
30103
30539
|
providers?: string[] | undefined;
|
|
30540
|
+
provider_details?: {
|
|
30541
|
+
name: string;
|
|
30542
|
+
icon_url?: string | undefined;
|
|
30543
|
+
display_name?: string | undefined;
|
|
30544
|
+
strategy?: string | undefined;
|
|
30545
|
+
}[] | undefined;
|
|
30104
30546
|
}, {
|
|
30105
30547
|
providers?: string[] | undefined;
|
|
30548
|
+
provider_details?: {
|
|
30549
|
+
name: string;
|
|
30550
|
+
icon_url?: string | undefined;
|
|
30551
|
+
display_name?: string | undefined;
|
|
30552
|
+
strategy?: string | undefined;
|
|
30553
|
+
}[] | undefined;
|
|
30106
30554
|
}>>;
|
|
30107
30555
|
}, "strip", z.ZodTypeAny, {
|
|
30108
30556
|
type: "SOCIAL";
|
|
@@ -30112,6 +30560,12 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30112
30560
|
category?: "FIELD" | undefined;
|
|
30113
30561
|
config?: {
|
|
30114
30562
|
providers?: string[] | undefined;
|
|
30563
|
+
provider_details?: {
|
|
30564
|
+
name: string;
|
|
30565
|
+
icon_url?: string | undefined;
|
|
30566
|
+
display_name?: string | undefined;
|
|
30567
|
+
strategy?: string | undefined;
|
|
30568
|
+
}[] | undefined;
|
|
30115
30569
|
} | undefined;
|
|
30116
30570
|
sensitive?: boolean | undefined;
|
|
30117
30571
|
label?: string | undefined;
|
|
@@ -30124,6 +30578,12 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30124
30578
|
category?: "FIELD" | undefined;
|
|
30125
30579
|
config?: {
|
|
30126
30580
|
providers?: string[] | undefined;
|
|
30581
|
+
provider_details?: {
|
|
30582
|
+
name: string;
|
|
30583
|
+
icon_url?: string | undefined;
|
|
30584
|
+
display_name?: string | undefined;
|
|
30585
|
+
strategy?: string | undefined;
|
|
30586
|
+
}[] | undefined;
|
|
30127
30587
|
} | undefined;
|
|
30128
30588
|
sensitive?: boolean | undefined;
|
|
30129
30589
|
label?: string | undefined;
|
|
@@ -30320,6 +30780,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30320
30780
|
id?: string | undefined;
|
|
30321
30781
|
linkText?: string | undefined;
|
|
30322
30782
|
}>, "many">>;
|
|
30783
|
+
/** Footer HTML content displayed at the very bottom of the widget (e.g., terms and conditions) */
|
|
30784
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
30323
30785
|
}, "strip", z.ZodTypeAny, {
|
|
30324
30786
|
action: string;
|
|
30325
30787
|
components: ({
|
|
@@ -30628,6 +31090,12 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30628
31090
|
category?: "FIELD" | undefined;
|
|
30629
31091
|
config?: {
|
|
30630
31092
|
providers?: string[] | undefined;
|
|
31093
|
+
provider_details?: {
|
|
31094
|
+
name: string;
|
|
31095
|
+
icon_url?: string | undefined;
|
|
31096
|
+
display_name?: string | undefined;
|
|
31097
|
+
strategy?: string | undefined;
|
|
31098
|
+
}[] | undefined;
|
|
30631
31099
|
} | undefined;
|
|
30632
31100
|
sensitive?: boolean | undefined;
|
|
30633
31101
|
label?: string | undefined;
|
|
@@ -30679,6 +31147,7 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30679
31147
|
method: "POST" | "GET";
|
|
30680
31148
|
description?: string | undefined;
|
|
30681
31149
|
title?: string | undefined;
|
|
31150
|
+
name?: string | undefined;
|
|
30682
31151
|
links?: {
|
|
30683
31152
|
text: string;
|
|
30684
31153
|
href: string;
|
|
@@ -30690,6 +31159,7 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30690
31159
|
text: string;
|
|
30691
31160
|
id?: number | undefined;
|
|
30692
31161
|
}[] | undefined;
|
|
31162
|
+
footer?: string | undefined;
|
|
30693
31163
|
}, {
|
|
30694
31164
|
action: string;
|
|
30695
31165
|
components: ({
|
|
@@ -30997,6 +31467,12 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30997
31467
|
category?: "FIELD" | undefined;
|
|
30998
31468
|
config?: {
|
|
30999
31469
|
providers?: string[] | undefined;
|
|
31470
|
+
provider_details?: {
|
|
31471
|
+
name: string;
|
|
31472
|
+
icon_url?: string | undefined;
|
|
31473
|
+
display_name?: string | undefined;
|
|
31474
|
+
strategy?: string | undefined;
|
|
31475
|
+
}[] | undefined;
|
|
31000
31476
|
} | undefined;
|
|
31001
31477
|
sensitive?: boolean | undefined;
|
|
31002
31478
|
label?: string | undefined;
|
|
@@ -31049,6 +31525,7 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31049
31525
|
method: "POST" | "GET";
|
|
31050
31526
|
description?: string | undefined;
|
|
31051
31527
|
title?: string | undefined;
|
|
31528
|
+
name?: string | undefined;
|
|
31052
31529
|
links?: {
|
|
31053
31530
|
text: string;
|
|
31054
31531
|
href: string;
|
|
@@ -31060,6 +31537,7 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31060
31537
|
text: string;
|
|
31061
31538
|
id?: number | undefined;
|
|
31062
31539
|
}[] | undefined;
|
|
31540
|
+
footer?: string | undefined;
|
|
31063
31541
|
}>;
|
|
31064
31542
|
export type UiScreen = z.infer<typeof uiScreenSchema>;
|
|
31065
31543
|
export declare function isBlockComponent(component: FormNodeComponent): component is BlockComponent;
|
|
@@ -36410,6 +36888,92 @@ export declare const dailyStatsSchema: z.ZodObject<{
|
|
|
36410
36888
|
export type DailyStats = z.infer<typeof dailyStatsSchema>;
|
|
36411
36889
|
export declare const activeUsersResponseSchema: z.ZodNumber;
|
|
36412
36890
|
export type ActiveUsersResponse = z.infer<typeof activeUsersResponseSchema>;
|
|
36891
|
+
/**
|
|
36892
|
+
* Available prompt screens that can be customized
|
|
36893
|
+
* Based on Auth0's prompt customization options
|
|
36894
|
+
*/
|
|
36895
|
+
export declare const promptScreenSchema: z.ZodEnum<[
|
|
36896
|
+
"login",
|
|
36897
|
+
"login-id",
|
|
36898
|
+
"login-password",
|
|
36899
|
+
"signup",
|
|
36900
|
+
"signup-id",
|
|
36901
|
+
"signup-password",
|
|
36902
|
+
"reset-password",
|
|
36903
|
+
"consent",
|
|
36904
|
+
"mfa",
|
|
36905
|
+
"mfa-push",
|
|
36906
|
+
"mfa-otp",
|
|
36907
|
+
"mfa-voice",
|
|
36908
|
+
"mfa-phone",
|
|
36909
|
+
"mfa-webauthn",
|
|
36910
|
+
"mfa-sms",
|
|
36911
|
+
"mfa-email",
|
|
36912
|
+
"mfa-recovery-code",
|
|
36913
|
+
"status",
|
|
36914
|
+
"device-flow",
|
|
36915
|
+
"email-verification",
|
|
36916
|
+
"email-otp-challenge",
|
|
36917
|
+
"organizations",
|
|
36918
|
+
"invitation",
|
|
36919
|
+
"common",
|
|
36920
|
+
"passkeys",
|
|
36921
|
+
"captcha",
|
|
36922
|
+
"custom-form"
|
|
36923
|
+
]>;
|
|
36924
|
+
export type PromptScreen = z.infer<typeof promptScreenSchema>;
|
|
36925
|
+
/**
|
|
36926
|
+
* Custom text for a specific prompt screen and language
|
|
36927
|
+
* The values are key-value pairs where the key is the text identifier
|
|
36928
|
+
* and the value is the custom text to display
|
|
36929
|
+
*/
|
|
36930
|
+
export declare const customTextSchema: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
36931
|
+
export type CustomText = z.infer<typeof customTextSchema>;
|
|
36932
|
+
/**
|
|
36933
|
+
* Custom text entry for storage
|
|
36934
|
+
*/
|
|
36935
|
+
export declare const customTextEntrySchema: z.ZodObject<{
|
|
36936
|
+
prompt: z.ZodEnum<[
|
|
36937
|
+
"login",
|
|
36938
|
+
"login-id",
|
|
36939
|
+
"login-password",
|
|
36940
|
+
"signup",
|
|
36941
|
+
"signup-id",
|
|
36942
|
+
"signup-password",
|
|
36943
|
+
"reset-password",
|
|
36944
|
+
"consent",
|
|
36945
|
+
"mfa",
|
|
36946
|
+
"mfa-push",
|
|
36947
|
+
"mfa-otp",
|
|
36948
|
+
"mfa-voice",
|
|
36949
|
+
"mfa-phone",
|
|
36950
|
+
"mfa-webauthn",
|
|
36951
|
+
"mfa-sms",
|
|
36952
|
+
"mfa-email",
|
|
36953
|
+
"mfa-recovery-code",
|
|
36954
|
+
"status",
|
|
36955
|
+
"device-flow",
|
|
36956
|
+
"email-verification",
|
|
36957
|
+
"email-otp-challenge",
|
|
36958
|
+
"organizations",
|
|
36959
|
+
"invitation",
|
|
36960
|
+
"common",
|
|
36961
|
+
"passkeys",
|
|
36962
|
+
"captcha",
|
|
36963
|
+
"custom-form"
|
|
36964
|
+
]>;
|
|
36965
|
+
language: z.ZodString;
|
|
36966
|
+
custom_text: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
36967
|
+
}, "strip", z.ZodTypeAny, {
|
|
36968
|
+
prompt: "status" | "organizations" | "login" | "login-id" | "login-password" | "signup" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form";
|
|
36969
|
+
language: string;
|
|
36970
|
+
custom_text: Record<string, string>;
|
|
36971
|
+
}, {
|
|
36972
|
+
prompt: "status" | "organizations" | "login" | "login-id" | "login-password" | "signup" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form";
|
|
36973
|
+
language: string;
|
|
36974
|
+
custom_text: Record<string, string>;
|
|
36975
|
+
}>;
|
|
36976
|
+
export type CustomTextEntry = z.infer<typeof customTextEntrySchema>;
|
|
36413
36977
|
export declare function parseUserId(user_id: string): {
|
|
36414
36978
|
connection: string;
|
|
36415
36979
|
id: string;
|
|
@@ -36894,6 +37458,27 @@ export interface UniversalLoginTemplatesAdapter {
|
|
|
36894
37458
|
set: (tenant_id: string, template: UniversalLoginTemplate) => Promise<void>;
|
|
36895
37459
|
delete: (tenant_id: string) => Promise<void>;
|
|
36896
37460
|
}
|
|
37461
|
+
export interface CustomTextAdapter {
|
|
37462
|
+
/**
|
|
37463
|
+
* Get custom text for a specific prompt screen and language
|
|
37464
|
+
*/
|
|
37465
|
+
get: (tenant_id: string, prompt: PromptScreen, language: string) => Promise<CustomText | null>;
|
|
37466
|
+
/**
|
|
37467
|
+
* Set custom text for a specific prompt screen and language
|
|
37468
|
+
*/
|
|
37469
|
+
set: (tenant_id: string, prompt: PromptScreen, language: string, customText: CustomText) => Promise<void>;
|
|
37470
|
+
/**
|
|
37471
|
+
* Delete custom text for a specific prompt screen and language
|
|
37472
|
+
*/
|
|
37473
|
+
delete: (tenant_id: string, prompt: PromptScreen, language: string) => Promise<void>;
|
|
37474
|
+
/**
|
|
37475
|
+
* List all custom text entries for a tenant
|
|
37476
|
+
*/
|
|
37477
|
+
list: (tenant_id: string) => Promise<Array<{
|
|
37478
|
+
prompt: PromptScreen;
|
|
37479
|
+
language: string;
|
|
37480
|
+
}>>;
|
|
37481
|
+
}
|
|
36897
37482
|
/**
|
|
36898
37483
|
* Parameters for cleaning up expired sessions
|
|
36899
37484
|
*/
|
|
@@ -36933,6 +37518,7 @@ export interface DataAdapters {
|
|
|
36933
37518
|
tenants: TenantsDataAdapter;
|
|
36934
37519
|
themes: ThemesAdapter;
|
|
36935
37520
|
universalLoginTemplates: UniversalLoginTemplatesAdapter;
|
|
37521
|
+
customText: CustomTextAdapter;
|
|
36936
37522
|
users: UserDataAdapter;
|
|
36937
37523
|
userRoles: UserRolesAdapter;
|
|
36938
37524
|
organizations: OrganizationsAdapter;
|