@faable/auth-sdk 1.3.26 → 1.3.27

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.
@@ -51,6 +51,7 @@ export declare class FaableAuthApi extends FaableApi {
51
51
  email_verified_method?: "manual" | "verification_flow" | "passwordless_otp" | "team_invite" | "email_change" | "federated" | null | undefined;
52
52
  email_verified_at?: string | null | undefined;
53
53
  email_change_locked_at?: string | null | undefined;
54
+ email_bounced_at?: string | null | undefined;
54
55
  phone?: string | null | undefined;
55
56
  phone_verified: boolean;
56
57
  phone_verified_method?: "manual" | "verification_flow" | "passwordless_otp" | "team_invite" | "email_change" | "federated" | null | undefined;
@@ -100,6 +101,7 @@ export declare class FaableAuthApi extends FaableApi {
100
101
  email_verified_method?: "manual" | "verification_flow" | "passwordless_otp" | "team_invite" | "email_change" | "federated" | null | undefined;
101
102
  email_verified_at?: string | null | undefined;
102
103
  email_change_locked_at?: string | null | undefined;
104
+ email_bounced_at?: string | null | undefined;
103
105
  phone?: string | null | undefined;
104
106
  phone_verified: boolean;
105
107
  phone_verified_method?: "manual" | "verification_flow" | "passwordless_otp" | "team_invite" | "email_change" | "federated" | null | undefined;
@@ -152,6 +154,7 @@ export declare class FaableAuthApi extends FaableApi {
152
154
  email_verified_method?: "manual" | "verification_flow" | "passwordless_otp" | "team_invite" | "email_change" | "federated" | null | undefined;
153
155
  email_verified_at?: string | null | undefined;
154
156
  email_change_locked_at?: string | null | undefined;
157
+ email_bounced_at?: string | null | undefined;
155
158
  phone?: string | null | undefined;
156
159
  phone_verified: boolean;
157
160
  phone_verified_method?: "manual" | "verification_flow" | "passwordless_otp" | "team_invite" | "email_change" | "federated" | null | undefined;
@@ -202,6 +205,7 @@ export declare class FaableAuthApi extends FaableApi {
202
205
  email_verified_method?: "manual" | "verification_flow" | "passwordless_otp" | "team_invite" | "email_change" | "federated" | null | undefined;
203
206
  email_verified_at?: string | null | undefined;
204
207
  email_change_locked_at?: string | null | undefined;
208
+ email_bounced_at?: string | null | undefined;
205
209
  phone?: string | null | undefined;
206
210
  phone_verified: boolean;
207
211
  phone_verified_method?: "manual" | "verification_flow" | "passwordless_otp" | "team_invite" | "email_change" | "federated" | null | undefined;
@@ -251,6 +255,7 @@ export declare class FaableAuthApi extends FaableApi {
251
255
  email_verified_method?: "manual" | "verification_flow" | "passwordless_otp" | "team_invite" | "email_change" | "federated" | null | undefined;
252
256
  email_verified_at?: string | null | undefined;
253
257
  email_change_locked_at?: string | null | undefined;
258
+ email_bounced_at?: string | null | undefined;
254
259
  phone?: string | null | undefined;
255
260
  phone_verified: boolean;
256
261
  phone_verified_method?: "manual" | "verification_flow" | "passwordless_otp" | "team_invite" | "email_change" | "federated" | null | undefined;
@@ -300,6 +305,7 @@ export declare class FaableAuthApi extends FaableApi {
300
305
  email_verified_method?: "manual" | "verification_flow" | "passwordless_otp" | "team_invite" | "email_change" | "federated" | null | undefined;
301
306
  email_verified_at?: string | null | undefined;
302
307
  email_change_locked_at?: string | null | undefined;
308
+ email_bounced_at?: string | null | undefined;
303
309
  phone?: string | null | undefined;
304
310
  phone_verified: boolean;
305
311
  phone_verified_method?: "manual" | "verification_flow" | "passwordless_otp" | "team_invite" | "email_change" | "federated" | null | undefined;
@@ -3,6 +3,39 @@
3
3
  * Do not make direct changes to the file.
4
4
  */
5
5
  export interface paths {
6
+ "/webhooks/postmark": {
7
+ parameters: {
8
+ query?: never;
9
+ header?: never;
10
+ path?: never;
11
+ cookie?: never;
12
+ };
13
+ get?: never;
14
+ put?: never;
15
+ post: {
16
+ parameters: {
17
+ query?: never;
18
+ header?: never;
19
+ path?: never;
20
+ cookie?: never;
21
+ };
22
+ requestBody?: never;
23
+ responses: {
24
+ /** @description Default Response */
25
+ 200: {
26
+ headers: {
27
+ [name: string]: unknown;
28
+ };
29
+ content?: never;
30
+ };
31
+ };
32
+ };
33
+ delete?: never;
34
+ options?: never;
35
+ head?: never;
36
+ patch?: never;
37
+ trace?: never;
38
+ };
6
39
  "/account/current": {
7
40
  parameters: {
8
41
  query?: never;
@@ -1885,6 +1918,8 @@ export interface components {
1885
1918
  email_verified_at?: string | null;
1886
1919
  /** @description ISO 8601 timestamp of the user's last verified email change. When set, OAuth callbacks will not overwrite `email`/`email_verified` from the federated provider — the manually-chosen email wins. */
1887
1920
  email_change_locked_at?: string | null;
1921
+ /** @description ISO 8601 timestamp of the last Postmark hard bounce / spam complaint for this address. When set, the email is treated as undeliverable and no further emails are sent to the user until the address changes. */
1922
+ email_bounced_at?: string | null;
1888
1923
  /** @description contact phone number */
1889
1924
  phone?: string | null;
1890
1925
  /** @description phone is verified */
@@ -4419,6 +4454,8 @@ export interface operations {
4419
4454
  email_verified_at?: string | null;
4420
4455
  /** @description ISO 8601 timestamp of the user's last verified email change. When set, OAuth callbacks will not overwrite `email`/`email_verified` from the federated provider — the manually-chosen email wins. */
4421
4456
  email_change_locked_at?: string | null;
4457
+ /** @description ISO 8601 timestamp of the last Postmark hard bounce / spam complaint for this address. When set, the email is treated as undeliverable and no further emails are sent to the user until the address changes. */
4458
+ email_bounced_at?: string | null;
4422
4459
  /** @description contact phone number */
4423
4460
  phone?: string | null;
4424
4461
  /** @description phone is verified */
@@ -4538,6 +4575,8 @@ export interface operations {
4538
4575
  email_verified_at?: string | null;
4539
4576
  /** @description ISO 8601 timestamp of the user's last verified email change. When set, OAuth callbacks will not overwrite `email`/`email_verified` from the federated provider — the manually-chosen email wins. */
4540
4577
  email_change_locked_at?: string | null;
4578
+ /** @description ISO 8601 timestamp of the last Postmark hard bounce / spam complaint for this address. When set, the email is treated as undeliverable and no further emails are sent to the user until the address changes. */
4579
+ email_bounced_at?: string | null;
4541
4580
  /** @description contact phone number */
4542
4581
  phone?: string | null;
4543
4582
  /** @description phone is verified */
@@ -4693,6 +4732,8 @@ export interface operations {
4693
4732
  email_verified_at?: string | null;
4694
4733
  /** @description ISO 8601 timestamp of the user's last verified email change. When set, OAuth callbacks will not overwrite `email`/`email_verified` from the federated provider — the manually-chosen email wins. */
4695
4734
  email_change_locked_at?: string | null;
4735
+ /** @description ISO 8601 timestamp of the last Postmark hard bounce / spam complaint for this address. When set, the email is treated as undeliverable and no further emails are sent to the user until the address changes. */
4736
+ email_bounced_at?: string | null;
4696
4737
  /** @description contact phone number */
4697
4738
  phone?: string | null;
4698
4739
  /** @description phone is verified */
@@ -4812,6 +4853,8 @@ export interface operations {
4812
4853
  email_verified_at?: string | null;
4813
4854
  /** @description ISO 8601 timestamp of the user's last verified email change. When set, OAuth callbacks will not overwrite `email`/`email_verified` from the federated provider — the manually-chosen email wins. */
4814
4855
  email_change_locked_at?: string | null;
4856
+ /** @description ISO 8601 timestamp of the last Postmark hard bounce / spam complaint for this address. When set, the email is treated as undeliverable and no further emails are sent to the user until the address changes. */
4857
+ email_bounced_at?: string | null;
4815
4858
  /** @description contact phone number */
4816
4859
  phone?: string | null;
4817
4860
  /** @description phone is verified */
@@ -8268,6 +8311,8 @@ export interface operations {
8268
8311
  email_verified_at?: string | null;
8269
8312
  /** @description ISO 8601 timestamp of the user's last verified email change. When set, OAuth callbacks will not overwrite `email`/`email_verified` from the federated provider — the manually-chosen email wins. */
8270
8313
  email_change_locked_at?: string | null;
8314
+ /** @description ISO 8601 timestamp of the last Postmark hard bounce / spam complaint for this address. When set, the email is treated as undeliverable and no further emails are sent to the user until the address changes. */
8315
+ email_bounced_at?: string | null;
8271
8316
  /** @description contact phone number */
8272
8317
  phone?: string | null;
8273
8318
  /** @description phone is verified */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faable/auth-sdk",
3
- "version": "1.3.26",
3
+ "version": "1.3.27",
4
4
  "author": "Marc Pomar <marc@faable.com>",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/spec/openapi.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "info": {
4
4
  "title": "@faablecloud/auth",
5
5
  "description": "Auth Platform made by Faable. Manage Users and Roles",
6
- "version": "1.10.1",
6
+ "version": "1.10.2",
7
7
  "license": {
8
8
  "name": "private",
9
9
  "url": "https://faable.com/docs/platform/privacy-policy"
@@ -963,6 +963,11 @@
963
963
  "description": "ISO 8601 timestamp of the user's last verified email change. When set, OAuth callbacks will not overwrite `email`/`email_verified` from the federated provider — the manually-chosen email wins.",
964
964
  "nullable": true
965
965
  },
966
+ "email_bounced_at": {
967
+ "type": "string",
968
+ "description": "ISO 8601 timestamp of the last Postmark hard bounce / spam complaint for this address. When set, the email is treated as undeliverable and no further emails are sent to the user until the address changes.",
969
+ "nullable": true
970
+ },
966
971
  "phone": {
967
972
  "type": "string",
968
973
  "description": "contact phone number",
@@ -3960,6 +3965,15 @@
3960
3965
  }
3961
3966
  },
3962
3967
  "paths": {
3968
+ "/webhooks/postmark": {
3969
+ "post": {
3970
+ "responses": {
3971
+ "200": {
3972
+ "description": "Default Response"
3973
+ }
3974
+ }
3975
+ }
3976
+ },
3963
3977
  "/account/current": {
3964
3978
  "get": {
3965
3979
  "operationId": "account/current",
@@ -7466,6 +7480,11 @@
7466
7480
  "description": "ISO 8601 timestamp of the user's last verified email change. When set, OAuth callbacks will not overwrite `email`/`email_verified` from the federated provider — the manually-chosen email wins.",
7467
7481
  "nullable": true
7468
7482
  },
7483
+ "email_bounced_at": {
7484
+ "type": "string",
7485
+ "description": "ISO 8601 timestamp of the last Postmark hard bounce / spam complaint for this address. When set, the email is treated as undeliverable and no further emails are sent to the user until the address changes.",
7486
+ "nullable": true
7487
+ },
7469
7488
  "phone": {
7470
7489
  "type": "string",
7471
7490
  "description": "contact phone number",
@@ -7793,6 +7812,11 @@
7793
7812
  "description": "ISO 8601 timestamp of the user's last verified email change. When set, OAuth callbacks will not overwrite `email`/`email_verified` from the federated provider — the manually-chosen email wins.",
7794
7813
  "nullable": true
7795
7814
  },
7815
+ "email_bounced_at": {
7816
+ "type": "string",
7817
+ "description": "ISO 8601 timestamp of the last Postmark hard bounce / spam complaint for this address. When set, the email is treated as undeliverable and no further emails are sent to the user until the address changes.",
7818
+ "nullable": true
7819
+ },
7796
7820
  "phone": {
7797
7821
  "type": "string",
7798
7822
  "description": "contact phone number",
@@ -8189,6 +8213,11 @@
8189
8213
  "description": "ISO 8601 timestamp of the user's last verified email change. When set, OAuth callbacks will not overwrite `email`/`email_verified` from the federated provider — the manually-chosen email wins.",
8190
8214
  "nullable": true
8191
8215
  },
8216
+ "email_bounced_at": {
8217
+ "type": "string",
8218
+ "description": "ISO 8601 timestamp of the last Postmark hard bounce / spam complaint for this address. When set, the email is treated as undeliverable and no further emails are sent to the user until the address changes.",
8219
+ "nullable": true
8220
+ },
8192
8221
  "phone": {
8193
8222
  "type": "string",
8194
8223
  "description": "contact phone number",
@@ -8514,6 +8543,11 @@
8514
8543
  "description": "ISO 8601 timestamp of the user's last verified email change. When set, OAuth callbacks will not overwrite `email`/`email_verified` from the federated provider — the manually-chosen email wins.",
8515
8544
  "nullable": true
8516
8545
  },
8546
+ "email_bounced_at": {
8547
+ "type": "string",
8548
+ "description": "ISO 8601 timestamp of the last Postmark hard bounce / spam complaint for this address. When set, the email is treated as undeliverable and no further emails are sent to the user until the address changes.",
8549
+ "nullable": true
8550
+ },
8517
8551
  "phone": {
8518
8552
  "type": "string",
8519
8553
  "description": "contact phone number",
@@ -16505,6 +16539,11 @@
16505
16539
  "description": "ISO 8601 timestamp of the user's last verified email change. When set, OAuth callbacks will not overwrite `email`/`email_verified` from the federated provider — the manually-chosen email wins.",
16506
16540
  "nullable": true
16507
16541
  },
16542
+ "email_bounced_at": {
16543
+ "type": "string",
16544
+ "description": "ISO 8601 timestamp of the last Postmark hard bounce / spam complaint for this address. When set, the email is treated as undeliverable and no further emails are sent to the user until the address changes.",
16545
+ "nullable": true
16546
+ },
16508
16547
  "phone": {
16509
16548
  "type": "string",
16510
16549
  "description": "contact phone number",