authhero 0.286.0 → 0.288.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/authhero.cjs +34 -34
- package/dist/authhero.d.ts +155 -45
- package/dist/authhero.mjs +6582 -6359
- package/dist/stats.html +1 -1
- package/package.json +3 -3
package/dist/authhero.d.ts
CHANGED
|
@@ -8715,6 +8715,7 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
8715
8715
|
} & {
|
|
8716
8716
|
id: z.ZodOptional<z.ZodString>;
|
|
8717
8717
|
name: z.ZodString;
|
|
8718
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
8718
8719
|
strategy: z.ZodString;
|
|
8719
8720
|
options: z.ZodDefault<z.ZodObject<{
|
|
8720
8721
|
kid: z.ZodOptional<z.ZodString>;
|
|
@@ -8735,6 +8736,7 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
8735
8736
|
from: z.ZodOptional<z.ZodString>;
|
|
8736
8737
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
8737
8738
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
8739
|
+
icon_url: z.ZodOptional<z.ZodString>;
|
|
8738
8740
|
}, "strip", z.ZodTypeAny, {
|
|
8739
8741
|
provider?: string | undefined;
|
|
8740
8742
|
client_id?: string | undefined;
|
|
@@ -8754,6 +8756,7 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
8754
8756
|
from?: string | undefined;
|
|
8755
8757
|
twilio_sid?: string | undefined;
|
|
8756
8758
|
twilio_token?: string | undefined;
|
|
8759
|
+
icon_url?: string | undefined;
|
|
8757
8760
|
}, {
|
|
8758
8761
|
provider?: string | undefined;
|
|
8759
8762
|
client_id?: string | undefined;
|
|
@@ -8773,10 +8776,14 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
8773
8776
|
from?: string | undefined;
|
|
8774
8777
|
twilio_sid?: string | undefined;
|
|
8775
8778
|
twilio_token?: string | undefined;
|
|
8779
|
+
icon_url?: string | undefined;
|
|
8776
8780
|
}>>;
|
|
8777
8781
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
8778
8782
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
8779
8783
|
response_mode: z.ZodOptional<z.ZodType<AuthorizationResponseMode, z.ZodTypeDef, AuthorizationResponseMode>>;
|
|
8784
|
+
is_domain_connection: z.ZodOptional<z.ZodBoolean>;
|
|
8785
|
+
show_as_button: z.ZodOptional<z.ZodBoolean>;
|
|
8786
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8780
8787
|
}, "strip", z.ZodTypeAny, {
|
|
8781
8788
|
options: {
|
|
8782
8789
|
provider?: string | undefined;
|
|
@@ -8797,6 +8804,7 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
8797
8804
|
from?: string | undefined;
|
|
8798
8805
|
twilio_sid?: string | undefined;
|
|
8799
8806
|
twilio_token?: string | undefined;
|
|
8807
|
+
icon_url?: string | undefined;
|
|
8800
8808
|
};
|
|
8801
8809
|
created_at: string;
|
|
8802
8810
|
updated_at: string;
|
|
@@ -8805,7 +8813,11 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
8805
8813
|
id?: string | undefined;
|
|
8806
8814
|
response_type?: AuthorizationResponseType | undefined;
|
|
8807
8815
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
8816
|
+
display_name?: string | undefined;
|
|
8808
8817
|
enabled_clients?: string[] | undefined;
|
|
8818
|
+
is_domain_connection?: boolean | undefined;
|
|
8819
|
+
show_as_button?: boolean | undefined;
|
|
8820
|
+
metadata?: Record<string, any> | undefined;
|
|
8809
8821
|
}, {
|
|
8810
8822
|
created_at: string;
|
|
8811
8823
|
updated_at: string;
|
|
@@ -8830,11 +8842,16 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
8830
8842
|
from?: string | undefined;
|
|
8831
8843
|
twilio_sid?: string | undefined;
|
|
8832
8844
|
twilio_token?: string | undefined;
|
|
8845
|
+
icon_url?: string | undefined;
|
|
8833
8846
|
} | undefined;
|
|
8834
8847
|
id?: string | undefined;
|
|
8835
8848
|
response_type?: AuthorizationResponseType | undefined;
|
|
8836
8849
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
8850
|
+
display_name?: string | undefined;
|
|
8837
8851
|
enabled_clients?: string[] | undefined;
|
|
8852
|
+
is_domain_connection?: boolean | undefined;
|
|
8853
|
+
show_as_button?: boolean | undefined;
|
|
8854
|
+
metadata?: Record<string, any> | undefined;
|
|
8838
8855
|
}>, "many">;
|
|
8839
8856
|
client_id: z.ZodString;
|
|
8840
8857
|
name: z.ZodString;
|
|
@@ -9063,6 +9080,7 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
9063
9080
|
from?: string | undefined;
|
|
9064
9081
|
twilio_sid?: string | undefined;
|
|
9065
9082
|
twilio_token?: string | undefined;
|
|
9083
|
+
icon_url?: string | undefined;
|
|
9066
9084
|
};
|
|
9067
9085
|
created_at: string;
|
|
9068
9086
|
updated_at: string;
|
|
@@ -9071,7 +9089,11 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
9071
9089
|
id?: string | undefined;
|
|
9072
9090
|
response_type?: AuthorizationResponseType | undefined;
|
|
9073
9091
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
9092
|
+
display_name?: string | undefined;
|
|
9074
9093
|
enabled_clients?: string[] | undefined;
|
|
9094
|
+
is_domain_connection?: boolean | undefined;
|
|
9095
|
+
show_as_button?: boolean | undefined;
|
|
9096
|
+
metadata?: Record<string, any> | undefined;
|
|
9075
9097
|
}[];
|
|
9076
9098
|
description?: string | undefined;
|
|
9077
9099
|
refresh_token?: Record<string, any> | undefined;
|
|
@@ -9238,11 +9260,16 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
9238
9260
|
from?: string | undefined;
|
|
9239
9261
|
twilio_sid?: string | undefined;
|
|
9240
9262
|
twilio_token?: string | undefined;
|
|
9263
|
+
icon_url?: string | undefined;
|
|
9241
9264
|
} | undefined;
|
|
9242
9265
|
id?: string | undefined;
|
|
9243
9266
|
response_type?: AuthorizationResponseType | undefined;
|
|
9244
9267
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
9268
|
+
display_name?: string | undefined;
|
|
9245
9269
|
enabled_clients?: string[] | undefined;
|
|
9270
|
+
is_domain_connection?: boolean | undefined;
|
|
9271
|
+
show_as_button?: boolean | undefined;
|
|
9272
|
+
metadata?: Record<string, any> | undefined;
|
|
9246
9273
|
}[];
|
|
9247
9274
|
description?: string | undefined;
|
|
9248
9275
|
refresh_token?: Record<string, any> | undefined;
|
|
@@ -9429,6 +9456,7 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
9429
9456
|
from: z.ZodOptional<z.ZodString>;
|
|
9430
9457
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
9431
9458
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
9459
|
+
icon_url: z.ZodOptional<z.ZodString>;
|
|
9432
9460
|
}, "strip", z.ZodTypeAny, {
|
|
9433
9461
|
provider?: string | undefined;
|
|
9434
9462
|
client_id?: string | undefined;
|
|
@@ -9448,6 +9476,7 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
9448
9476
|
from?: string | undefined;
|
|
9449
9477
|
twilio_sid?: string | undefined;
|
|
9450
9478
|
twilio_token?: string | undefined;
|
|
9479
|
+
icon_url?: string | undefined;
|
|
9451
9480
|
}, {
|
|
9452
9481
|
provider?: string | undefined;
|
|
9453
9482
|
client_id?: string | undefined;
|
|
@@ -9467,10 +9496,12 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
9467
9496
|
from?: string | undefined;
|
|
9468
9497
|
twilio_sid?: string | undefined;
|
|
9469
9498
|
twilio_token?: string | undefined;
|
|
9499
|
+
icon_url?: string | undefined;
|
|
9470
9500
|
}>;
|
|
9471
9501
|
export declare const connectionInsertSchema: z.ZodObject<{
|
|
9472
9502
|
id: z.ZodOptional<z.ZodString>;
|
|
9473
9503
|
name: z.ZodString;
|
|
9504
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
9474
9505
|
strategy: z.ZodString;
|
|
9475
9506
|
options: z.ZodDefault<z.ZodObject<{
|
|
9476
9507
|
kid: z.ZodOptional<z.ZodString>;
|
|
@@ -9491,6 +9522,7 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
9491
9522
|
from: z.ZodOptional<z.ZodString>;
|
|
9492
9523
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
9493
9524
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
9525
|
+
icon_url: z.ZodOptional<z.ZodString>;
|
|
9494
9526
|
}, "strip", z.ZodTypeAny, {
|
|
9495
9527
|
provider?: string | undefined;
|
|
9496
9528
|
client_id?: string | undefined;
|
|
@@ -9510,6 +9542,7 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
9510
9542
|
from?: string | undefined;
|
|
9511
9543
|
twilio_sid?: string | undefined;
|
|
9512
9544
|
twilio_token?: string | undefined;
|
|
9545
|
+
icon_url?: string | undefined;
|
|
9513
9546
|
}, {
|
|
9514
9547
|
provider?: string | undefined;
|
|
9515
9548
|
client_id?: string | undefined;
|
|
@@ -9529,10 +9562,14 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
9529
9562
|
from?: string | undefined;
|
|
9530
9563
|
twilio_sid?: string | undefined;
|
|
9531
9564
|
twilio_token?: string | undefined;
|
|
9565
|
+
icon_url?: string | undefined;
|
|
9532
9566
|
}>>;
|
|
9533
9567
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
9534
9568
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
9535
9569
|
response_mode: z.ZodOptional<z.ZodType<AuthorizationResponseMode, z.ZodTypeDef, AuthorizationResponseMode>>;
|
|
9570
|
+
is_domain_connection: z.ZodOptional<z.ZodBoolean>;
|
|
9571
|
+
show_as_button: z.ZodOptional<z.ZodBoolean>;
|
|
9572
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9536
9573
|
}, "strip", z.ZodTypeAny, {
|
|
9537
9574
|
options: {
|
|
9538
9575
|
provider?: string | undefined;
|
|
@@ -9553,13 +9590,18 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
9553
9590
|
from?: string | undefined;
|
|
9554
9591
|
twilio_sid?: string | undefined;
|
|
9555
9592
|
twilio_token?: string | undefined;
|
|
9593
|
+
icon_url?: string | undefined;
|
|
9556
9594
|
};
|
|
9557
9595
|
name: string;
|
|
9558
9596
|
strategy: string;
|
|
9559
9597
|
id?: string | undefined;
|
|
9560
9598
|
response_type?: AuthorizationResponseType | undefined;
|
|
9561
9599
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
9600
|
+
display_name?: string | undefined;
|
|
9562
9601
|
enabled_clients?: string[] | undefined;
|
|
9602
|
+
is_domain_connection?: boolean | undefined;
|
|
9603
|
+
show_as_button?: boolean | undefined;
|
|
9604
|
+
metadata?: Record<string, any> | undefined;
|
|
9563
9605
|
}, {
|
|
9564
9606
|
name: string;
|
|
9565
9607
|
strategy: string;
|
|
@@ -9582,11 +9624,16 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
9582
9624
|
from?: string | undefined;
|
|
9583
9625
|
twilio_sid?: string | undefined;
|
|
9584
9626
|
twilio_token?: string | undefined;
|
|
9627
|
+
icon_url?: string | undefined;
|
|
9585
9628
|
} | undefined;
|
|
9586
9629
|
id?: string | undefined;
|
|
9587
9630
|
response_type?: AuthorizationResponseType | undefined;
|
|
9588
9631
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
9632
|
+
display_name?: string | undefined;
|
|
9589
9633
|
enabled_clients?: string[] | undefined;
|
|
9634
|
+
is_domain_connection?: boolean | undefined;
|
|
9635
|
+
show_as_button?: boolean | undefined;
|
|
9636
|
+
metadata?: Record<string, any> | undefined;
|
|
9590
9637
|
}>;
|
|
9591
9638
|
export type ConnectionInsert = z.infer<typeof connectionInsertSchema>;
|
|
9592
9639
|
export declare const connectionSchema: z.ZodObject<{
|
|
@@ -9595,6 +9642,7 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
9595
9642
|
} & {
|
|
9596
9643
|
id: z.ZodOptional<z.ZodString>;
|
|
9597
9644
|
name: z.ZodString;
|
|
9645
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
9598
9646
|
strategy: z.ZodString;
|
|
9599
9647
|
options: z.ZodDefault<z.ZodObject<{
|
|
9600
9648
|
kid: z.ZodOptional<z.ZodString>;
|
|
@@ -9615,6 +9663,7 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
9615
9663
|
from: z.ZodOptional<z.ZodString>;
|
|
9616
9664
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
9617
9665
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
9666
|
+
icon_url: z.ZodOptional<z.ZodString>;
|
|
9618
9667
|
}, "strip", z.ZodTypeAny, {
|
|
9619
9668
|
provider?: string | undefined;
|
|
9620
9669
|
client_id?: string | undefined;
|
|
@@ -9634,6 +9683,7 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
9634
9683
|
from?: string | undefined;
|
|
9635
9684
|
twilio_sid?: string | undefined;
|
|
9636
9685
|
twilio_token?: string | undefined;
|
|
9686
|
+
icon_url?: string | undefined;
|
|
9637
9687
|
}, {
|
|
9638
9688
|
provider?: string | undefined;
|
|
9639
9689
|
client_id?: string | undefined;
|
|
@@ -9653,10 +9703,14 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
9653
9703
|
from?: string | undefined;
|
|
9654
9704
|
twilio_sid?: string | undefined;
|
|
9655
9705
|
twilio_token?: string | undefined;
|
|
9706
|
+
icon_url?: string | undefined;
|
|
9656
9707
|
}>>;
|
|
9657
9708
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
9658
9709
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
9659
9710
|
response_mode: z.ZodOptional<z.ZodType<AuthorizationResponseMode, z.ZodTypeDef, AuthorizationResponseMode>>;
|
|
9711
|
+
is_domain_connection: z.ZodOptional<z.ZodBoolean>;
|
|
9712
|
+
show_as_button: z.ZodOptional<z.ZodBoolean>;
|
|
9713
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9660
9714
|
}, "strip", z.ZodTypeAny, {
|
|
9661
9715
|
options: {
|
|
9662
9716
|
provider?: string | undefined;
|
|
@@ -9677,6 +9731,7 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
9677
9731
|
from?: string | undefined;
|
|
9678
9732
|
twilio_sid?: string | undefined;
|
|
9679
9733
|
twilio_token?: string | undefined;
|
|
9734
|
+
icon_url?: string | undefined;
|
|
9680
9735
|
};
|
|
9681
9736
|
created_at: string;
|
|
9682
9737
|
updated_at: string;
|
|
@@ -9685,7 +9740,11 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
9685
9740
|
id?: string | undefined;
|
|
9686
9741
|
response_type?: AuthorizationResponseType | undefined;
|
|
9687
9742
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
9743
|
+
display_name?: string | undefined;
|
|
9688
9744
|
enabled_clients?: string[] | undefined;
|
|
9745
|
+
is_domain_connection?: boolean | undefined;
|
|
9746
|
+
show_as_button?: boolean | undefined;
|
|
9747
|
+
metadata?: Record<string, any> | undefined;
|
|
9689
9748
|
}, {
|
|
9690
9749
|
created_at: string;
|
|
9691
9750
|
updated_at: string;
|
|
@@ -9710,11 +9769,16 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
9710
9769
|
from?: string | undefined;
|
|
9711
9770
|
twilio_sid?: string | undefined;
|
|
9712
9771
|
twilio_token?: string | undefined;
|
|
9772
|
+
icon_url?: string | undefined;
|
|
9713
9773
|
} | undefined;
|
|
9714
9774
|
id?: string | undefined;
|
|
9715
9775
|
response_type?: AuthorizationResponseType | undefined;
|
|
9716
9776
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
9777
|
+
display_name?: string | undefined;
|
|
9717
9778
|
enabled_clients?: string[] | undefined;
|
|
9779
|
+
is_domain_connection?: boolean | undefined;
|
|
9780
|
+
show_as_button?: boolean | undefined;
|
|
9781
|
+
metadata?: Record<string, any> | undefined;
|
|
9718
9782
|
}>;
|
|
9719
9783
|
export type Connection = z.infer<typeof connectionSchema>;
|
|
9720
9784
|
export declare const customDomainInsertSchema: z.ZodObject<{
|
|
@@ -16447,14 +16511,14 @@ export declare const organizationEnabledConnectionSchema: z.ZodObject<{
|
|
|
16447
16511
|
show_as_button: z.ZodDefault<z.ZodBoolean>;
|
|
16448
16512
|
is_signup_enabled: z.ZodDefault<z.ZodBoolean>;
|
|
16449
16513
|
}, "strip", z.ZodTypeAny, {
|
|
16514
|
+
show_as_button: boolean;
|
|
16450
16515
|
connection_id: string;
|
|
16451
16516
|
assign_membership_on_login: boolean;
|
|
16452
|
-
show_as_button: boolean;
|
|
16453
16517
|
is_signup_enabled: boolean;
|
|
16454
16518
|
}, {
|
|
16455
16519
|
connection_id: string;
|
|
16456
|
-
assign_membership_on_login?: boolean | undefined;
|
|
16457
16520
|
show_as_button?: boolean | undefined;
|
|
16521
|
+
assign_membership_on_login?: boolean | undefined;
|
|
16458
16522
|
is_signup_enabled?: boolean | undefined;
|
|
16459
16523
|
}>;
|
|
16460
16524
|
export declare const organizationTokenQuotaSchema: z.ZodOptional<z.ZodObject<{
|
|
@@ -16520,14 +16584,14 @@ export declare const organizationInsertSchema: z.ZodObject<{
|
|
|
16520
16584
|
show_as_button: z.ZodDefault<z.ZodBoolean>;
|
|
16521
16585
|
is_signup_enabled: z.ZodDefault<z.ZodBoolean>;
|
|
16522
16586
|
}, "strip", z.ZodTypeAny, {
|
|
16587
|
+
show_as_button: boolean;
|
|
16523
16588
|
connection_id: string;
|
|
16524
16589
|
assign_membership_on_login: boolean;
|
|
16525
|
-
show_as_button: boolean;
|
|
16526
16590
|
is_signup_enabled: boolean;
|
|
16527
16591
|
}, {
|
|
16528
16592
|
connection_id: string;
|
|
16529
|
-
assign_membership_on_login?: boolean | undefined;
|
|
16530
16593
|
show_as_button?: boolean | undefined;
|
|
16594
|
+
assign_membership_on_login?: boolean | undefined;
|
|
16531
16595
|
is_signup_enabled?: boolean | undefined;
|
|
16532
16596
|
}>, "many">>>;
|
|
16533
16597
|
token_quota: z.ZodOptional<z.ZodObject<{
|
|
@@ -16568,6 +16632,7 @@ export declare const organizationInsertSchema: z.ZodObject<{
|
|
|
16568
16632
|
} | undefined;
|
|
16569
16633
|
id?: string | undefined;
|
|
16570
16634
|
display_name?: string | undefined;
|
|
16635
|
+
metadata?: Record<string, any> | undefined;
|
|
16571
16636
|
branding?: {
|
|
16572
16637
|
colors?: {
|
|
16573
16638
|
primary?: string | undefined;
|
|
@@ -16575,11 +16640,10 @@ export declare const organizationInsertSchema: z.ZodObject<{
|
|
|
16575
16640
|
} | undefined;
|
|
16576
16641
|
logo_url?: string | undefined;
|
|
16577
16642
|
} | undefined;
|
|
16578
|
-
metadata?: Record<string, any> | undefined;
|
|
16579
16643
|
enabled_connections?: {
|
|
16644
|
+
show_as_button: boolean;
|
|
16580
16645
|
connection_id: string;
|
|
16581
16646
|
assign_membership_on_login: boolean;
|
|
16582
|
-
show_as_button: boolean;
|
|
16583
16647
|
is_signup_enabled: boolean;
|
|
16584
16648
|
}[] | undefined;
|
|
16585
16649
|
}, {
|
|
@@ -16593,6 +16657,7 @@ export declare const organizationInsertSchema: z.ZodObject<{
|
|
|
16593
16657
|
} | undefined;
|
|
16594
16658
|
id?: string | undefined;
|
|
16595
16659
|
display_name?: string | undefined;
|
|
16660
|
+
metadata?: Record<string, any> | undefined;
|
|
16596
16661
|
branding?: {
|
|
16597
16662
|
colors?: {
|
|
16598
16663
|
primary?: string | undefined;
|
|
@@ -16600,11 +16665,10 @@ export declare const organizationInsertSchema: z.ZodObject<{
|
|
|
16600
16665
|
} | undefined;
|
|
16601
16666
|
logo_url?: string | undefined;
|
|
16602
16667
|
} | undefined;
|
|
16603
|
-
metadata?: Record<string, any> | undefined;
|
|
16604
16668
|
enabled_connections?: {
|
|
16605
16669
|
connection_id: string;
|
|
16606
|
-
assign_membership_on_login?: boolean | undefined;
|
|
16607
16670
|
show_as_button?: boolean | undefined;
|
|
16671
|
+
assign_membership_on_login?: boolean | undefined;
|
|
16608
16672
|
is_signup_enabled?: boolean | undefined;
|
|
16609
16673
|
}[] | undefined;
|
|
16610
16674
|
}>;
|
|
@@ -16647,14 +16711,14 @@ export declare const organizationSchema: z.ZodObject<{
|
|
|
16647
16711
|
show_as_button: z.ZodDefault<z.ZodBoolean>;
|
|
16648
16712
|
is_signup_enabled: z.ZodDefault<z.ZodBoolean>;
|
|
16649
16713
|
}, "strip", z.ZodTypeAny, {
|
|
16714
|
+
show_as_button: boolean;
|
|
16650
16715
|
connection_id: string;
|
|
16651
16716
|
assign_membership_on_login: boolean;
|
|
16652
|
-
show_as_button: boolean;
|
|
16653
16717
|
is_signup_enabled: boolean;
|
|
16654
16718
|
}, {
|
|
16655
16719
|
connection_id: string;
|
|
16656
|
-
assign_membership_on_login?: boolean | undefined;
|
|
16657
16720
|
show_as_button?: boolean | undefined;
|
|
16721
|
+
assign_membership_on_login?: boolean | undefined;
|
|
16658
16722
|
is_signup_enabled?: boolean | undefined;
|
|
16659
16723
|
}>, "many">>>;
|
|
16660
16724
|
token_quota: z.ZodOptional<z.ZodObject<{
|
|
@@ -16697,6 +16761,7 @@ export declare const organizationSchema: z.ZodObject<{
|
|
|
16697
16761
|
} | undefined;
|
|
16698
16762
|
} | undefined;
|
|
16699
16763
|
display_name?: string | undefined;
|
|
16764
|
+
metadata?: Record<string, any> | undefined;
|
|
16700
16765
|
branding?: {
|
|
16701
16766
|
colors?: {
|
|
16702
16767
|
primary?: string | undefined;
|
|
@@ -16704,11 +16769,10 @@ export declare const organizationSchema: z.ZodObject<{
|
|
|
16704
16769
|
} | undefined;
|
|
16705
16770
|
logo_url?: string | undefined;
|
|
16706
16771
|
} | undefined;
|
|
16707
|
-
metadata?: Record<string, any> | undefined;
|
|
16708
16772
|
enabled_connections?: {
|
|
16773
|
+
show_as_button: boolean;
|
|
16709
16774
|
connection_id: string;
|
|
16710
16775
|
assign_membership_on_login: boolean;
|
|
16711
|
-
show_as_button: boolean;
|
|
16712
16776
|
is_signup_enabled: boolean;
|
|
16713
16777
|
}[] | undefined;
|
|
16714
16778
|
}, {
|
|
@@ -16724,6 +16788,7 @@ export declare const organizationSchema: z.ZodObject<{
|
|
|
16724
16788
|
} | undefined;
|
|
16725
16789
|
} | undefined;
|
|
16726
16790
|
display_name?: string | undefined;
|
|
16791
|
+
metadata?: Record<string, any> | undefined;
|
|
16727
16792
|
branding?: {
|
|
16728
16793
|
colors?: {
|
|
16729
16794
|
primary?: string | undefined;
|
|
@@ -16731,11 +16796,10 @@ export declare const organizationSchema: z.ZodObject<{
|
|
|
16731
16796
|
} | undefined;
|
|
16732
16797
|
logo_url?: string | undefined;
|
|
16733
16798
|
} | undefined;
|
|
16734
|
-
metadata?: Record<string, any> | undefined;
|
|
16735
16799
|
enabled_connections?: {
|
|
16736
16800
|
connection_id: string;
|
|
16737
|
-
assign_membership_on_login?: boolean | undefined;
|
|
16738
16801
|
show_as_button?: boolean | undefined;
|
|
16802
|
+
assign_membership_on_login?: boolean | undefined;
|
|
16739
16803
|
is_signup_enabled?: boolean | undefined;
|
|
16740
16804
|
}[] | undefined;
|
|
16741
16805
|
}>;
|
|
@@ -17621,6 +17685,7 @@ export type Strategy = {
|
|
|
17621
17685
|
displayName: string;
|
|
17622
17686
|
logo: FC<{
|
|
17623
17687
|
className?: string;
|
|
17688
|
+
iconUrl?: string;
|
|
17624
17689
|
}>;
|
|
17625
17690
|
getRedirect: (ctx: Context<{
|
|
17626
17691
|
Bindings: Bindings;
|
|
@@ -18069,6 +18134,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18069
18134
|
} | undefined;
|
|
18070
18135
|
} | undefined;
|
|
18071
18136
|
display_name?: string | undefined | undefined;
|
|
18137
|
+
metadata?: {
|
|
18138
|
+
[x: string]: any;
|
|
18139
|
+
} | undefined;
|
|
18072
18140
|
branding?: {
|
|
18073
18141
|
colors?: {
|
|
18074
18142
|
primary?: string | undefined | undefined;
|
|
@@ -18076,13 +18144,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18076
18144
|
} | undefined;
|
|
18077
18145
|
logo_url?: string | undefined | undefined;
|
|
18078
18146
|
} | undefined;
|
|
18079
|
-
metadata?: {
|
|
18080
|
-
[x: string]: any;
|
|
18081
|
-
} | undefined;
|
|
18082
18147
|
enabled_connections?: {
|
|
18148
|
+
show_as_button: boolean;
|
|
18083
18149
|
connection_id: string;
|
|
18084
18150
|
assign_membership_on_login: boolean;
|
|
18085
|
-
show_as_button: boolean;
|
|
18086
18151
|
is_signup_enabled: boolean;
|
|
18087
18152
|
}[] | undefined;
|
|
18088
18153
|
}[] | {
|
|
@@ -18102,6 +18167,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18102
18167
|
} | undefined;
|
|
18103
18168
|
} | undefined;
|
|
18104
18169
|
display_name?: string | undefined | undefined;
|
|
18170
|
+
metadata?: {
|
|
18171
|
+
[x: string]: any;
|
|
18172
|
+
} | undefined;
|
|
18105
18173
|
branding?: {
|
|
18106
18174
|
colors?: {
|
|
18107
18175
|
primary?: string | undefined | undefined;
|
|
@@ -18109,13 +18177,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18109
18177
|
} | undefined;
|
|
18110
18178
|
logo_url?: string | undefined | undefined;
|
|
18111
18179
|
} | undefined;
|
|
18112
|
-
metadata?: {
|
|
18113
|
-
[x: string]: any;
|
|
18114
|
-
} | undefined;
|
|
18115
18180
|
enabled_connections?: {
|
|
18181
|
+
show_as_button: boolean;
|
|
18116
18182
|
connection_id: string;
|
|
18117
18183
|
assign_membership_on_login: boolean;
|
|
18118
|
-
show_as_button: boolean;
|
|
18119
18184
|
is_signup_enabled: boolean;
|
|
18120
18185
|
}[] | undefined;
|
|
18121
18186
|
}[];
|
|
@@ -18149,6 +18214,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18149
18214
|
} | undefined;
|
|
18150
18215
|
} | undefined;
|
|
18151
18216
|
display_name?: string | undefined | undefined;
|
|
18217
|
+
metadata?: {
|
|
18218
|
+
[x: string]: any;
|
|
18219
|
+
} | undefined;
|
|
18152
18220
|
branding?: {
|
|
18153
18221
|
colors?: {
|
|
18154
18222
|
primary?: string | undefined | undefined;
|
|
@@ -18156,13 +18224,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18156
18224
|
} | undefined;
|
|
18157
18225
|
logo_url?: string | undefined | undefined;
|
|
18158
18226
|
} | undefined;
|
|
18159
|
-
metadata?: {
|
|
18160
|
-
[x: string]: any;
|
|
18161
|
-
} | undefined;
|
|
18162
18227
|
enabled_connections?: {
|
|
18228
|
+
show_as_button: boolean;
|
|
18163
18229
|
connection_id: string;
|
|
18164
18230
|
assign_membership_on_login: boolean;
|
|
18165
|
-
show_as_button: boolean;
|
|
18166
18231
|
is_signup_enabled: boolean;
|
|
18167
18232
|
}[] | undefined;
|
|
18168
18233
|
};
|
|
@@ -18220,8 +18285,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18220
18285
|
metadata?: Record<string, any> | undefined;
|
|
18221
18286
|
enabled_connections?: {
|
|
18222
18287
|
connection_id: string;
|
|
18223
|
-
assign_membership_on_login?: boolean | undefined;
|
|
18224
18288
|
show_as_button?: boolean | undefined;
|
|
18289
|
+
assign_membership_on_login?: boolean | undefined;
|
|
18225
18290
|
is_signup_enabled?: boolean | undefined;
|
|
18226
18291
|
}[] | undefined;
|
|
18227
18292
|
};
|
|
@@ -18239,6 +18304,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18239
18304
|
} | undefined;
|
|
18240
18305
|
} | undefined;
|
|
18241
18306
|
display_name?: string | undefined | undefined;
|
|
18307
|
+
metadata?: {
|
|
18308
|
+
[x: string]: any;
|
|
18309
|
+
} | undefined;
|
|
18242
18310
|
branding?: {
|
|
18243
18311
|
colors?: {
|
|
18244
18312
|
primary?: string | undefined | undefined;
|
|
@@ -18246,13 +18314,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18246
18314
|
} | undefined;
|
|
18247
18315
|
logo_url?: string | undefined | undefined;
|
|
18248
18316
|
} | undefined;
|
|
18249
|
-
metadata?: {
|
|
18250
|
-
[x: string]: any;
|
|
18251
|
-
} | undefined;
|
|
18252
18317
|
enabled_connections?: {
|
|
18318
|
+
show_as_button: boolean;
|
|
18253
18319
|
connection_id: string;
|
|
18254
18320
|
assign_membership_on_login: boolean;
|
|
18255
|
-
show_as_button: boolean;
|
|
18256
18321
|
is_signup_enabled: boolean;
|
|
18257
18322
|
}[] | undefined;
|
|
18258
18323
|
};
|
|
@@ -18279,6 +18344,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18279
18344
|
} | undefined;
|
|
18280
18345
|
id?: string | undefined;
|
|
18281
18346
|
display_name?: string | undefined;
|
|
18347
|
+
metadata?: Record<string, any> | undefined;
|
|
18282
18348
|
branding?: {
|
|
18283
18349
|
colors?: {
|
|
18284
18350
|
primary?: string | undefined;
|
|
@@ -18286,11 +18352,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18286
18352
|
} | undefined;
|
|
18287
18353
|
logo_url?: string | undefined;
|
|
18288
18354
|
} | undefined;
|
|
18289
|
-
metadata?: Record<string, any> | undefined;
|
|
18290
18355
|
enabled_connections?: {
|
|
18291
18356
|
connection_id: string;
|
|
18292
|
-
assign_membership_on_login?: boolean | undefined;
|
|
18293
18357
|
show_as_button?: boolean | undefined;
|
|
18358
|
+
assign_membership_on_login?: boolean | undefined;
|
|
18294
18359
|
is_signup_enabled?: boolean | undefined;
|
|
18295
18360
|
}[] | undefined;
|
|
18296
18361
|
};
|
|
@@ -18308,6 +18373,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18308
18373
|
} | undefined;
|
|
18309
18374
|
} | undefined;
|
|
18310
18375
|
display_name?: string | undefined | undefined;
|
|
18376
|
+
metadata?: {
|
|
18377
|
+
[x: string]: any;
|
|
18378
|
+
} | undefined;
|
|
18311
18379
|
branding?: {
|
|
18312
18380
|
colors?: {
|
|
18313
18381
|
primary?: string | undefined | undefined;
|
|
@@ -18315,13 +18383,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18315
18383
|
} | undefined;
|
|
18316
18384
|
logo_url?: string | undefined | undefined;
|
|
18317
18385
|
} | undefined;
|
|
18318
|
-
metadata?: {
|
|
18319
|
-
[x: string]: any;
|
|
18320
|
-
} | undefined;
|
|
18321
18386
|
enabled_connections?: {
|
|
18387
|
+
show_as_button: boolean;
|
|
18322
18388
|
connection_id: string;
|
|
18323
18389
|
assign_membership_on_login: boolean;
|
|
18324
|
-
show_as_button: boolean;
|
|
18325
18390
|
is_signup_enabled: boolean;
|
|
18326
18391
|
}[] | undefined;
|
|
18327
18392
|
};
|
|
@@ -20405,6 +20470,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20405
20470
|
from?: string | undefined | undefined;
|
|
20406
20471
|
twilio_sid?: string | undefined | undefined;
|
|
20407
20472
|
twilio_token?: string | undefined | undefined;
|
|
20473
|
+
icon_url?: string | undefined | undefined;
|
|
20408
20474
|
};
|
|
20409
20475
|
created_at: string;
|
|
20410
20476
|
updated_at: string;
|
|
@@ -20413,7 +20479,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20413
20479
|
id?: string | undefined | undefined;
|
|
20414
20480
|
response_type?: AuthorizationResponseType | undefined;
|
|
20415
20481
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
20482
|
+
display_name?: string | undefined | undefined;
|
|
20416
20483
|
enabled_clients?: string[] | undefined | undefined;
|
|
20484
|
+
is_domain_connection?: boolean | undefined | undefined;
|
|
20485
|
+
show_as_button?: boolean | undefined | undefined;
|
|
20486
|
+
metadata?: {
|
|
20487
|
+
[x: string]: any;
|
|
20488
|
+
} | undefined;
|
|
20417
20489
|
}[] | {
|
|
20418
20490
|
length: number;
|
|
20419
20491
|
start: number;
|
|
@@ -20438,6 +20510,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20438
20510
|
from?: string | undefined | undefined;
|
|
20439
20511
|
twilio_sid?: string | undefined | undefined;
|
|
20440
20512
|
twilio_token?: string | undefined | undefined;
|
|
20513
|
+
icon_url?: string | undefined | undefined;
|
|
20441
20514
|
};
|
|
20442
20515
|
created_at: string;
|
|
20443
20516
|
updated_at: string;
|
|
@@ -20446,7 +20519,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20446
20519
|
id?: string | undefined | undefined;
|
|
20447
20520
|
response_type?: AuthorizationResponseType | undefined;
|
|
20448
20521
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
20522
|
+
display_name?: string | undefined | undefined;
|
|
20449
20523
|
enabled_clients?: string[] | undefined | undefined;
|
|
20524
|
+
is_domain_connection?: boolean | undefined | undefined;
|
|
20525
|
+
show_as_button?: boolean | undefined | undefined;
|
|
20526
|
+
metadata?: {
|
|
20527
|
+
[x: string]: any;
|
|
20528
|
+
} | undefined;
|
|
20450
20529
|
}[];
|
|
20451
20530
|
};
|
|
20452
20531
|
outputFormat: "json";
|
|
@@ -20485,6 +20564,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20485
20564
|
from?: string | undefined | undefined;
|
|
20486
20565
|
twilio_sid?: string | undefined | undefined;
|
|
20487
20566
|
twilio_token?: string | undefined | undefined;
|
|
20567
|
+
icon_url?: string | undefined | undefined;
|
|
20488
20568
|
};
|
|
20489
20569
|
created_at: string;
|
|
20490
20570
|
updated_at: string;
|
|
@@ -20493,7 +20573,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20493
20573
|
id?: string | undefined | undefined;
|
|
20494
20574
|
response_type?: AuthorizationResponseType | undefined;
|
|
20495
20575
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
20576
|
+
display_name?: string | undefined | undefined;
|
|
20496
20577
|
enabled_clients?: string[] | undefined | undefined;
|
|
20578
|
+
is_domain_connection?: boolean | undefined | undefined;
|
|
20579
|
+
show_as_button?: boolean | undefined | undefined;
|
|
20580
|
+
metadata?: {
|
|
20581
|
+
[x: string]: any;
|
|
20582
|
+
} | undefined;
|
|
20497
20583
|
};
|
|
20498
20584
|
outputFormat: "json";
|
|
20499
20585
|
status: 200;
|
|
@@ -20549,12 +20635,17 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20549
20635
|
from?: string | undefined;
|
|
20550
20636
|
twilio_sid?: string | undefined;
|
|
20551
20637
|
twilio_token?: string | undefined;
|
|
20638
|
+
icon_url?: string | undefined;
|
|
20552
20639
|
} | undefined;
|
|
20553
20640
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
20554
20641
|
response_type?: AuthorizationResponseType | undefined;
|
|
20555
20642
|
id?: string | undefined;
|
|
20556
20643
|
strategy?: string | undefined;
|
|
20644
|
+
display_name?: string | undefined;
|
|
20645
|
+
metadata?: Record<string, any> | undefined;
|
|
20557
20646
|
enabled_clients?: string[] | undefined;
|
|
20647
|
+
is_domain_connection?: boolean | undefined;
|
|
20648
|
+
show_as_button?: boolean | undefined;
|
|
20558
20649
|
};
|
|
20559
20650
|
};
|
|
20560
20651
|
output: {
|
|
@@ -20577,6 +20668,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20577
20668
|
from?: string | undefined | undefined;
|
|
20578
20669
|
twilio_sid?: string | undefined | undefined;
|
|
20579
20670
|
twilio_token?: string | undefined | undefined;
|
|
20671
|
+
icon_url?: string | undefined | undefined;
|
|
20580
20672
|
};
|
|
20581
20673
|
created_at: string;
|
|
20582
20674
|
updated_at: string;
|
|
@@ -20585,7 +20677,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20585
20677
|
id?: string | undefined | undefined;
|
|
20586
20678
|
response_type?: AuthorizationResponseType | undefined;
|
|
20587
20679
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
20680
|
+
display_name?: string | undefined | undefined;
|
|
20588
20681
|
enabled_clients?: string[] | undefined | undefined;
|
|
20682
|
+
is_domain_connection?: boolean | undefined | undefined;
|
|
20683
|
+
show_as_button?: boolean | undefined | undefined;
|
|
20684
|
+
metadata?: {
|
|
20685
|
+
[x: string]: any;
|
|
20686
|
+
} | undefined;
|
|
20589
20687
|
};
|
|
20590
20688
|
outputFormat: "json";
|
|
20591
20689
|
status: 200;
|
|
@@ -20621,11 +20719,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20621
20719
|
from?: string | undefined;
|
|
20622
20720
|
twilio_sid?: string | undefined;
|
|
20623
20721
|
twilio_token?: string | undefined;
|
|
20722
|
+
icon_url?: string | undefined;
|
|
20624
20723
|
} | undefined;
|
|
20625
20724
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
20626
20725
|
response_type?: AuthorizationResponseType | undefined;
|
|
20627
20726
|
id?: string | undefined;
|
|
20727
|
+
display_name?: string | undefined;
|
|
20728
|
+
metadata?: Record<string, any> | undefined;
|
|
20628
20729
|
enabled_clients?: string[] | undefined;
|
|
20730
|
+
is_domain_connection?: boolean | undefined;
|
|
20731
|
+
show_as_button?: boolean | undefined;
|
|
20629
20732
|
};
|
|
20630
20733
|
};
|
|
20631
20734
|
output: {
|
|
@@ -20648,6 +20751,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20648
20751
|
from?: string | undefined | undefined;
|
|
20649
20752
|
twilio_sid?: string | undefined | undefined;
|
|
20650
20753
|
twilio_token?: string | undefined | undefined;
|
|
20754
|
+
icon_url?: string | undefined | undefined;
|
|
20651
20755
|
};
|
|
20652
20756
|
created_at: string;
|
|
20653
20757
|
updated_at: string;
|
|
@@ -20656,7 +20760,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20656
20760
|
id?: string | undefined | undefined;
|
|
20657
20761
|
response_type?: AuthorizationResponseType | undefined;
|
|
20658
20762
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
20763
|
+
display_name?: string | undefined | undefined;
|
|
20659
20764
|
enabled_clients?: string[] | undefined | undefined;
|
|
20765
|
+
is_domain_connection?: boolean | undefined | undefined;
|
|
20766
|
+
show_as_button?: boolean | undefined | undefined;
|
|
20767
|
+
metadata?: {
|
|
20768
|
+
[x: string]: any;
|
|
20769
|
+
} | undefined;
|
|
20660
20770
|
};
|
|
20661
20771
|
outputFormat: "json";
|
|
20662
20772
|
status: 201;
|
|
@@ -23180,6 +23290,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
23180
23290
|
} | undefined;
|
|
23181
23291
|
} | undefined;
|
|
23182
23292
|
display_name?: string | undefined | undefined;
|
|
23293
|
+
metadata?: {
|
|
23294
|
+
[x: string]: any;
|
|
23295
|
+
} | undefined;
|
|
23183
23296
|
branding?: {
|
|
23184
23297
|
colors?: {
|
|
23185
23298
|
primary?: string | undefined | undefined;
|
|
@@ -23187,13 +23300,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
23187
23300
|
} | undefined;
|
|
23188
23301
|
logo_url?: string | undefined | undefined;
|
|
23189
23302
|
} | undefined;
|
|
23190
|
-
metadata?: {
|
|
23191
|
-
[x: string]: any;
|
|
23192
|
-
} | undefined;
|
|
23193
23303
|
enabled_connections?: {
|
|
23304
|
+
show_as_button: boolean;
|
|
23194
23305
|
connection_id: string;
|
|
23195
23306
|
assign_membership_on_login: boolean;
|
|
23196
|
-
show_as_button: boolean;
|
|
23197
23307
|
is_signup_enabled: boolean;
|
|
23198
23308
|
}[] | undefined;
|
|
23199
23309
|
}[] | {
|
|
@@ -23213,6 +23323,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
23213
23323
|
} | undefined;
|
|
23214
23324
|
} | undefined;
|
|
23215
23325
|
display_name?: string | undefined | undefined;
|
|
23326
|
+
metadata?: {
|
|
23327
|
+
[x: string]: any;
|
|
23328
|
+
} | undefined;
|
|
23216
23329
|
branding?: {
|
|
23217
23330
|
colors?: {
|
|
23218
23331
|
primary?: string | undefined | undefined;
|
|
@@ -23220,13 +23333,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
23220
23333
|
} | undefined;
|
|
23221
23334
|
logo_url?: string | undefined | undefined;
|
|
23222
23335
|
} | undefined;
|
|
23223
|
-
metadata?: {
|
|
23224
|
-
[x: string]: any;
|
|
23225
|
-
} | undefined;
|
|
23226
23336
|
enabled_connections?: {
|
|
23337
|
+
show_as_button: boolean;
|
|
23227
23338
|
connection_id: string;
|
|
23228
23339
|
assign_membership_on_login: boolean;
|
|
23229
|
-
show_as_button: boolean;
|
|
23230
23340
|
is_signup_enabled: boolean;
|
|
23231
23341
|
}[] | undefined;
|
|
23232
23342
|
}[];
|