@faable/auth-sdk 1.3.11 → 1.3.13
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/FaableAuthApi.d.ts +14 -5
- package/dist/api/types.d.ts +1173 -101
- package/package.json +1 -1
package/dist/FaableAuthApi.d.ts
CHANGED
|
@@ -22,12 +22,15 @@ export declare class FaableAuthApi extends FaableApi {
|
|
|
22
22
|
icon_src?: string | null | undefined;
|
|
23
23
|
callback_hostnames: string[];
|
|
24
24
|
token_signature: string;
|
|
25
|
+
token_signing_alg: "RS256";
|
|
25
26
|
default_connection?: unknown;
|
|
26
27
|
enabled_locales: string[];
|
|
27
28
|
team?: string | null | undefined;
|
|
28
29
|
notification_settings: {
|
|
29
30
|
welcome_email_enabled: boolean;
|
|
30
31
|
};
|
|
32
|
+
email_change_verification_mode?: "new_only" | "old_and_new" | undefined;
|
|
33
|
+
email_oauth_sync_policy?: "preserve_manual" | "always_sync" | undefined;
|
|
31
34
|
createdAt: string;
|
|
32
35
|
updatedAt?: string | undefined;
|
|
33
36
|
}>;
|
|
@@ -44,6 +47,7 @@ export declare class FaableAuthApi extends FaableApi {
|
|
|
44
47
|
nickname?: string | null | undefined;
|
|
45
48
|
email?: string | null | undefined;
|
|
46
49
|
email_verified: boolean;
|
|
50
|
+
email_change_locked_at?: string | null | undefined;
|
|
47
51
|
phone?: string | null | undefined;
|
|
48
52
|
phone_verified: boolean;
|
|
49
53
|
country_iso?: string | null | undefined;
|
|
@@ -88,6 +92,7 @@ export declare class FaableAuthApi extends FaableApi {
|
|
|
88
92
|
nickname?: string | null | undefined;
|
|
89
93
|
email?: string | null | undefined;
|
|
90
94
|
email_verified: boolean;
|
|
95
|
+
email_change_locked_at?: string | null | undefined;
|
|
91
96
|
phone?: string | null | undefined;
|
|
92
97
|
phone_verified: boolean;
|
|
93
98
|
country_iso?: string | null | undefined;
|
|
@@ -135,6 +140,7 @@ export declare class FaableAuthApi extends FaableApi {
|
|
|
135
140
|
nickname?: string | null | undefined;
|
|
136
141
|
email?: string | null | undefined;
|
|
137
142
|
email_verified: boolean;
|
|
143
|
+
email_change_locked_at?: string | null | undefined;
|
|
138
144
|
phone?: string | null | undefined;
|
|
139
145
|
phone_verified: boolean;
|
|
140
146
|
country_iso?: string | null | undefined;
|
|
@@ -180,6 +186,7 @@ export declare class FaableAuthApi extends FaableApi {
|
|
|
180
186
|
nickname?: string | null | undefined;
|
|
181
187
|
email?: string | null | undefined;
|
|
182
188
|
email_verified: boolean;
|
|
189
|
+
email_change_locked_at?: string | null | undefined;
|
|
183
190
|
phone?: string | null | undefined;
|
|
184
191
|
phone_verified: boolean;
|
|
185
192
|
country_iso?: string | null | undefined;
|
|
@@ -224,6 +231,7 @@ export declare class FaableAuthApi extends FaableApi {
|
|
|
224
231
|
nickname?: string | null | undefined;
|
|
225
232
|
email?: string | null | undefined;
|
|
226
233
|
email_verified: boolean;
|
|
234
|
+
email_change_locked_at?: string | null | undefined;
|
|
227
235
|
phone?: string | null | undefined;
|
|
228
236
|
phone_verified: boolean;
|
|
229
237
|
country_iso?: string | null | undefined;
|
|
@@ -268,6 +276,7 @@ export declare class FaableAuthApi extends FaableApi {
|
|
|
268
276
|
nickname?: string | null | undefined;
|
|
269
277
|
email?: string | null | undefined;
|
|
270
278
|
email_verified: boolean;
|
|
279
|
+
email_change_locked_at?: string | null | undefined;
|
|
271
280
|
phone?: string | null | undefined;
|
|
272
281
|
phone_verified: boolean;
|
|
273
282
|
country_iso?: string | null | undefined;
|
|
@@ -423,7 +432,7 @@ export declare class FaableAuthApi extends FaableApi {
|
|
|
423
432
|
all: () => Promise<{
|
|
424
433
|
id: string;
|
|
425
434
|
connection_name: string;
|
|
426
|
-
connection_type: "custom" | "database" | "github" | "figma" | "google_oauth2" | "oidc";
|
|
435
|
+
connection_type: "custom" | "database" | "github" | "figma" | "google_oauth2" | "oidc" | "passwordless_email";
|
|
427
436
|
authorize_url: string;
|
|
428
437
|
token_url: string;
|
|
429
438
|
userinfo_url: string;
|
|
@@ -448,7 +457,7 @@ export declare class FaableAuthApi extends FaableApi {
|
|
|
448
457
|
first: () => Promise<import("@faable/sdk-base/dist/helpers/paginator.js").Page<{
|
|
449
458
|
id: string;
|
|
450
459
|
connection_name: string;
|
|
451
|
-
connection_type: "custom" | "database" | "github" | "figma" | "google_oauth2" | "oidc";
|
|
460
|
+
connection_type: "custom" | "database" | "github" | "figma" | "google_oauth2" | "oidc" | "passwordless_email";
|
|
452
461
|
authorize_url: string;
|
|
453
462
|
token_url: string;
|
|
454
463
|
userinfo_url: string;
|
|
@@ -476,7 +485,7 @@ export declare class FaableAuthApi extends FaableApi {
|
|
|
476
485
|
} | undefined) => Promise<import("@faable/sdk-base/dist/helpers/paginator.js").Page<{
|
|
477
486
|
id: string;
|
|
478
487
|
connection_name: string;
|
|
479
|
-
connection_type: "custom" | "database" | "github" | "figma" | "google_oauth2" | "oidc";
|
|
488
|
+
connection_type: "custom" | "database" | "github" | "figma" | "google_oauth2" | "oidc" | "passwordless_email";
|
|
480
489
|
authorize_url: string;
|
|
481
490
|
token_url: string;
|
|
482
491
|
userinfo_url: string;
|
|
@@ -502,7 +511,7 @@ export declare class FaableAuthApi extends FaableApi {
|
|
|
502
511
|
getConection(connection_id: string): Promise<{
|
|
503
512
|
id: string;
|
|
504
513
|
connection_name: string;
|
|
505
|
-
connection_type: "custom" | "database" | "github" | "figma" | "google_oauth2" | "oidc";
|
|
514
|
+
connection_type: "custom" | "database" | "github" | "figma" | "google_oauth2" | "oidc" | "passwordless_email";
|
|
506
515
|
authorize_url: string;
|
|
507
516
|
token_url: string;
|
|
508
517
|
userinfo_url: string;
|
|
@@ -633,7 +642,7 @@ export declare class FaableAuthApi extends FaableApi {
|
|
|
633
642
|
getClient(client_id: string): Promise<{
|
|
634
643
|
id: string;
|
|
635
644
|
connection_name: string;
|
|
636
|
-
connection_type: "custom" | "database" | "github" | "figma" | "google_oauth2" | "oidc";
|
|
645
|
+
connection_type: "custom" | "database" | "github" | "figma" | "google_oauth2" | "oidc" | "passwordless_email";
|
|
637
646
|
authorize_url: string;
|
|
638
647
|
token_url: string;
|
|
639
648
|
userinfo_url: string;
|