@faable/auth-sdk 1.3.25 → 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.25",
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.0",
6
+ "version": "1.10.2",
7
7
  "license": {
8
8
  "name": "private",
9
9
  "url": "https://faable.com/docs/platform/privacy-policy"
@@ -17,6 +17,11 @@
17
17
  "in": "query",
18
18
  "name": "api_key"
19
19
  },
20
+ "bearerAuth": {
21
+ "type": "http",
22
+ "scheme": "bearer",
23
+ "bearerFormat": "JWT"
24
+ },
20
25
  "faableauth": {
21
26
  "type": "oauth2",
22
27
  "flows": {
@@ -958,6 +963,11 @@
958
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.",
959
964
  "nullable": true
960
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
+ },
961
971
  "phone": {
962
972
  "type": "string",
963
973
  "description": "contact phone number",
@@ -3955,6 +3965,15 @@
3955
3965
  }
3956
3966
  },
3957
3967
  "paths": {
3968
+ "/webhooks/postmark": {
3969
+ "post": {
3970
+ "responses": {
3971
+ "200": {
3972
+ "description": "Default Response"
3973
+ }
3974
+ }
3975
+ }
3976
+ },
3958
3977
  "/account/current": {
3959
3978
  "get": {
3960
3979
  "operationId": "account/current",
@@ -3978,6 +3997,11 @@
3978
3997
  "description": "Expand id-only fields in the response. Pass one path per entry (e.g. `expand=user&expand=team`)."
3979
3998
  }
3980
3999
  ],
4000
+ "security": [
4001
+ {
4002
+ "bearerAuth": []
4003
+ }
4004
+ ],
3981
4005
  "responses": {
3982
4006
  "200": {
3983
4007
  "description": "AuthAccount",
@@ -4186,6 +4210,11 @@
4186
4210
  },
4187
4211
  "description": "AuthAccountCreate"
4188
4212
  },
4213
+ "security": [
4214
+ {
4215
+ "bearerAuth": []
4216
+ }
4217
+ ],
4189
4218
  "responses": {
4190
4219
  "201": {
4191
4220
  "description": "AuthAccount",
@@ -4388,6 +4417,11 @@
4388
4417
  "description": "Expand id-only fields in the response. Pass one path per entry (e.g. `expand=user&expand=team`)."
4389
4418
  }
4390
4419
  ],
4420
+ "security": [
4421
+ {
4422
+ "bearerAuth": []
4423
+ }
4424
+ ],
4391
4425
  "responses": {
4392
4426
  "200": {
4393
4427
  "description": "PaginatedResponse",
@@ -4453,6 +4487,11 @@
4453
4487
  "required": true
4454
4488
  }
4455
4489
  ],
4490
+ "security": [
4491
+ {
4492
+ "bearerAuth": []
4493
+ }
4494
+ ],
4456
4495
  "responses": {
4457
4496
  "200": {
4458
4497
  "description": "AuthAccount",
@@ -4677,6 +4716,11 @@
4677
4716
  "required": true
4678
4717
  }
4679
4718
  ],
4719
+ "security": [
4720
+ {
4721
+ "bearerAuth": []
4722
+ }
4723
+ ],
4680
4724
  "responses": {
4681
4725
  "200": {
4682
4726
  "description": "AuthAccount",
@@ -4847,6 +4891,11 @@
4847
4891
  "required": true
4848
4892
  }
4849
4893
  ],
4894
+ "security": [
4895
+ {
4896
+ "bearerAuth": []
4897
+ }
4898
+ ],
4850
4899
  "responses": {}
4851
4900
  }
4852
4901
  },
@@ -5081,6 +5130,11 @@
5081
5130
  "description": "Full-text search across: `connection_name`, `connection_type`."
5082
5131
  }
5083
5132
  ],
5133
+ "security": [
5134
+ {
5135
+ "bearerAuth": []
5136
+ }
5137
+ ],
5084
5138
  "responses": {
5085
5139
  "200": {
5086
5140
  "description": "Default Response",
@@ -5218,6 +5272,11 @@
5218
5272
  },
5219
5273
  "description": "ConnectionCreate"
5220
5274
  },
5275
+ "security": [
5276
+ {
5277
+ "bearerAuth": []
5278
+ }
5279
+ ],
5221
5280
  "responses": {
5222
5281
  "200": {
5223
5282
  "description": "Connection",
@@ -5396,6 +5455,11 @@
5396
5455
  "required": true
5397
5456
  }
5398
5457
  ],
5458
+ "security": [
5459
+ {
5460
+ "bearerAuth": []
5461
+ }
5462
+ ],
5399
5463
  "responses": {
5400
5464
  "200": {
5401
5465
  "description": "Connection",
@@ -5662,6 +5726,11 @@
5662
5726
  "required": true
5663
5727
  }
5664
5728
  ],
5729
+ "security": [
5730
+ {
5731
+ "bearerAuth": []
5732
+ }
5733
+ ],
5665
5734
  "responses": {
5666
5735
  "200": {
5667
5736
  "description": "Connection",
@@ -5838,6 +5907,11 @@
5838
5907
  "required": true
5839
5908
  }
5840
5909
  ],
5910
+ "security": [
5911
+ {
5912
+ "bearerAuth": []
5913
+ }
5914
+ ],
5841
5915
  "responses": {
5842
5916
  "200": {
5843
5917
  "description": "Connection",
@@ -6057,6 +6131,11 @@
6057
6131
  "description": "Full-text search across: `name`, `description`, `client_id`."
6058
6132
  }
6059
6133
  ],
6134
+ "security": [
6135
+ {
6136
+ "bearerAuth": []
6137
+ }
6138
+ ],
6060
6139
  "responses": {
6061
6140
  "200": {
6062
6141
  "description": "Default Response",
@@ -6142,6 +6221,11 @@
6142
6221
  },
6143
6222
  "description": "ClientCreate"
6144
6223
  },
6224
+ "security": [
6225
+ {
6226
+ "bearerAuth": []
6227
+ }
6228
+ ],
6145
6229
  "responses": {
6146
6230
  "200": {
6147
6231
  "description": "Client",
@@ -6313,6 +6397,11 @@
6313
6397
  "required": true
6314
6398
  }
6315
6399
  ],
6400
+ "security": [
6401
+ {
6402
+ "bearerAuth": []
6403
+ }
6404
+ ],
6316
6405
  "responses": {
6317
6406
  "200": {
6318
6407
  "description": "Client",
@@ -6596,6 +6685,11 @@
6596
6685
  "required": true
6597
6686
  }
6598
6687
  ],
6688
+ "security": [
6689
+ {
6690
+ "bearerAuth": []
6691
+ }
6692
+ ],
6599
6693
  "responses": {
6600
6694
  "200": {
6601
6695
  "description": "Client",
@@ -6765,6 +6859,11 @@
6765
6859
  "required": true
6766
6860
  }
6767
6861
  ],
6862
+ "security": [
6863
+ {
6864
+ "bearerAuth": []
6865
+ }
6866
+ ],
6768
6867
  "responses": {
6769
6868
  "200": {
6770
6869
  "description": "Client",
@@ -6936,6 +7035,11 @@
6936
7035
  "required": true
6937
7036
  }
6938
7037
  ],
7038
+ "security": [
7039
+ {
7040
+ "bearerAuth": []
7041
+ }
7042
+ ],
6939
7043
  "responses": {
6940
7044
  "200": {
6941
7045
  "description": "Client",
@@ -7148,6 +7252,11 @@
7148
7252
  "description": "Full-text search across: `name`, `email`, `phone`."
7149
7253
  }
7150
7254
  ],
7255
+ "security": [
7256
+ {
7257
+ "bearerAuth": []
7258
+ }
7259
+ ],
7151
7260
  "responses": {
7152
7261
  "200": {
7153
7262
  "description": "Default Response",
@@ -7250,6 +7359,11 @@
7250
7359
  },
7251
7360
  "description": "UserCreate"
7252
7361
  },
7362
+ "security": [
7363
+ {
7364
+ "bearerAuth": []
7365
+ }
7366
+ ],
7253
7367
  "responses": {
7254
7368
  "200": {
7255
7369
  "description": "User",
@@ -7366,6 +7480,11 @@
7366
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.",
7367
7481
  "nullable": true
7368
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
+ },
7369
7488
  "phone": {
7370
7489
  "type": "string",
7371
7490
  "description": "contact phone number",
@@ -7572,6 +7691,11 @@
7572
7691
  "required": true
7573
7692
  }
7574
7693
  ],
7694
+ "security": [
7695
+ {
7696
+ "bearerAuth": []
7697
+ }
7698
+ ],
7575
7699
  "responses": {
7576
7700
  "200": {
7577
7701
  "description": "User",
@@ -7688,6 +7812,11 @@
7688
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.",
7689
7813
  "nullable": true
7690
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
+ },
7691
7820
  "phone": {
7692
7821
  "type": "string",
7693
7822
  "description": "contact phone number",
@@ -7963,6 +8092,11 @@
7963
8092
  "required": true
7964
8093
  }
7965
8094
  ],
8095
+ "security": [
8096
+ {
8097
+ "bearerAuth": []
8098
+ }
8099
+ ],
7966
8100
  "responses": {
7967
8101
  "200": {
7968
8102
  "description": "User",
@@ -8079,6 +8213,11 @@
8079
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.",
8080
8214
  "nullable": true
8081
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
+ },
8082
8221
  "phone": {
8083
8222
  "type": "string",
8084
8223
  "description": "contact phone number",
@@ -8283,6 +8422,11 @@
8283
8422
  "required": true
8284
8423
  }
8285
8424
  ],
8425
+ "security": [
8426
+ {
8427
+ "bearerAuth": []
8428
+ }
8429
+ ],
8286
8430
  "responses": {
8287
8431
  "200": {
8288
8432
  "description": "User",
@@ -8399,6 +8543,11 @@
8399
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.",
8400
8544
  "nullable": true
8401
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
+ },
8402
8551
  "phone": {
8403
8552
  "type": "string",
8404
8553
  "description": "contact phone number",
@@ -8885,6 +9034,11 @@
8885
9034
  "description": "Expand id-only fields in the response. Pass one path per entry (e.g. `?expand=user`)."
8886
9035
  }
8887
9036
  ],
9037
+ "security": [
9038
+ {
9039
+ "bearerAuth": []
9040
+ }
9041
+ ],
8888
9042
  "responses": {
8889
9043
  "200": {
8890
9044
  "description": "Default Response",
@@ -8969,6 +9123,11 @@
8969
9123
  }
8970
9124
  }
8971
9125
  },
9126
+ "security": [
9127
+ {
9128
+ "bearerAuth": []
9129
+ }
9130
+ ],
8972
9131
  "responses": {
8973
9132
  "200": {
8974
9133
  "description": "Identity",
@@ -9093,6 +9252,11 @@
9093
9252
  "required": true
9094
9253
  }
9095
9254
  ],
9255
+ "security": [
9256
+ {
9257
+ "bearerAuth": []
9258
+ }
9259
+ ],
9096
9260
  "responses": {
9097
9261
  "200": {
9098
9262
  "description": "Identity",
@@ -9197,6 +9361,11 @@
9197
9361
  "required": true
9198
9362
  }
9199
9363
  ],
9364
+ "security": [
9365
+ {
9366
+ "bearerAuth": []
9367
+ }
9368
+ ],
9200
9369
  "responses": {
9201
9370
  "200": {
9202
9371
  "description": "Identity",
@@ -9312,6 +9481,11 @@
9312
9481
  "required": true
9313
9482
  }
9314
9483
  ],
9484
+ "security": [
9485
+ {
9486
+ "bearerAuth": []
9487
+ }
9488
+ ],
9315
9489
  "responses": {
9316
9490
  "200": {
9317
9491
  "description": "Default Response",
@@ -9418,6 +9592,11 @@
9418
9592
  "description": "Full-text search across: `email`, `username`."
9419
9593
  }
9420
9594
  ],
9595
+ "security": [
9596
+ {
9597
+ "bearerAuth": []
9598
+ }
9599
+ ],
9421
9600
  "responses": {
9422
9601
  "200": {
9423
9602
  "description": "Default Response",
@@ -9489,6 +9668,11 @@
9489
9668
  }
9490
9669
  }
9491
9670
  },
9671
+ "security": [
9672
+ {
9673
+ "bearerAuth": []
9674
+ }
9675
+ ],
9492
9676
  "responses": {
9493
9677
  "200": {
9494
9678
  "description": "Credential",
@@ -9602,6 +9786,11 @@
9602
9786
  "required": true
9603
9787
  }
9604
9788
  ],
9789
+ "security": [
9790
+ {
9791
+ "bearerAuth": []
9792
+ }
9793
+ ],
9605
9794
  "responses": {
9606
9795
  "200": {
9607
9796
  "description": "Credential",
@@ -9714,6 +9903,11 @@
9714
9903
  "required": true
9715
9904
  }
9716
9905
  ],
9906
+ "security": [
9907
+ {
9908
+ "bearerAuth": []
9909
+ }
9910
+ ],
9717
9911
  "responses": {
9718
9912
  "200": {
9719
9913
  "description": "Credential",
@@ -9807,6 +10001,11 @@
9807
10001
  "required": true
9808
10002
  }
9809
10003
  ],
10004
+ "security": [
10005
+ {
10006
+ "bearerAuth": []
10007
+ }
10008
+ ],
9810
10009
  "responses": {
9811
10010
  "200": {
9812
10011
  "description": "Credential",
@@ -9922,6 +10121,11 @@
9922
10121
  "required": true
9923
10122
  }
9924
10123
  ],
10124
+ "security": [
10125
+ {
10126
+ "bearerAuth": []
10127
+ }
10128
+ ],
9925
10129
  "responses": {
9926
10130
  "200": {
9927
10131
  "description": "Credential",
@@ -10058,6 +10262,11 @@
10058
10262
  "description": "Full-text search across: `name`, `description`."
10059
10263
  }
10060
10264
  ],
10265
+ "security": [
10266
+ {
10267
+ "bearerAuth": []
10268
+ }
10269
+ ],
10061
10270
  "responses": {
10062
10271
  "200": {
10063
10272
  "description": "Default Response",
@@ -10134,6 +10343,11 @@
10134
10343
  },
10135
10344
  "description": "RoleCreate"
10136
10345
  },
10346
+ "security": [
10347
+ {
10348
+ "bearerAuth": []
10349
+ }
10350
+ ],
10137
10351
  "responses": {
10138
10352
  "200": {
10139
10353
  "description": "Role",
@@ -10208,6 +10422,11 @@
10208
10422
  "required": true
10209
10423
  }
10210
10424
  ],
10425
+ "security": [
10426
+ {
10427
+ "bearerAuth": []
10428
+ }
10429
+ ],
10211
10430
  "responses": {
10212
10431
  "200": {
10213
10432
  "description": "Role",
@@ -10303,6 +10522,11 @@
10303
10522
  "required": true
10304
10523
  }
10305
10524
  ],
10525
+ "security": [
10526
+ {
10527
+ "bearerAuth": []
10528
+ }
10529
+ ],
10306
10530
  "responses": {
10307
10531
  "200": {
10308
10532
  "description": "Role",
@@ -10375,6 +10599,11 @@
10375
10599
  "required": true
10376
10600
  }
10377
10601
  ],
10602
+ "security": [
10603
+ {
10604
+ "bearerAuth": []
10605
+ }
10606
+ ],
10378
10607
  "responses": {
10379
10608
  "200": {
10380
10609
  "description": "Role",
@@ -10476,6 +10705,11 @@
10476
10705
  "required": true
10477
10706
  }
10478
10707
  ],
10708
+ "security": [
10709
+ {
10710
+ "bearerAuth": []
10711
+ }
10712
+ ],
10479
10713
  "responses": {
10480
10714
  "200": {
10481
10715
  "description": "PaginatedResponse",
@@ -10554,6 +10788,11 @@
10554
10788
  "required": true
10555
10789
  }
10556
10790
  ],
10791
+ "security": [
10792
+ {
10793
+ "bearerAuth": []
10794
+ }
10795
+ ],
10557
10796
  "responses": {
10558
10797
  "200": {
10559
10798
  "description": "Default Response"
@@ -10627,6 +10866,11 @@
10627
10866
  "description": "Expand id-only fields in the response. Pass one path per entry (e.g. `?expand=user`)."
10628
10867
  }
10629
10868
  ],
10869
+ "security": [
10870
+ {
10871
+ "bearerAuth": []
10872
+ }
10873
+ ],
10630
10874
  "responses": {
10631
10875
  "200": {
10632
10876
  "description": "Default Response",
@@ -10698,6 +10942,11 @@
10698
10942
  },
10699
10943
  "description": "Payload for granting a role to one or more users in a single call. Posted to `POST /role/:role_id/users`."
10700
10944
  },
10945
+ "security": [
10946
+ {
10947
+ "bearerAuth": []
10948
+ }
10949
+ ],
10701
10950
  "responses": {
10702
10951
  "200": {
10703
10952
  "description": "RoleMember",
@@ -10805,6 +11054,11 @@
10805
11054
  "required": true
10806
11055
  }
10807
11056
  ],
11057
+ "security": [
11058
+ {
11059
+ "bearerAuth": []
11060
+ }
11061
+ ],
10808
11062
  "responses": {
10809
11063
  "200": {
10810
11064
  "description": "RoleMember",
@@ -10892,6 +11146,11 @@
10892
11146
  "required": true
10893
11147
  }
10894
11148
  ],
11149
+ "security": [
11150
+ {
11151
+ "bearerAuth": []
11152
+ }
11153
+ ],
10895
11154
  "responses": {
10896
11155
  "200": {
10897
11156
  "description": "RoleMember",
@@ -11022,6 +11281,11 @@
11022
11281
  "description": "Full-text search across: `name`, `slug`."
11023
11282
  }
11024
11283
  ],
11284
+ "security": [
11285
+ {
11286
+ "bearerAuth": []
11287
+ }
11288
+ ],
11025
11289
  "responses": {
11026
11290
  "200": {
11027
11291
  "description": "Default Response",
@@ -11098,6 +11362,11 @@
11098
11362
  },
11099
11363
  "description": "TeamCreate"
11100
11364
  },
11365
+ "security": [
11366
+ {
11367
+ "bearerAuth": []
11368
+ }
11369
+ ],
11101
11370
  "responses": {
11102
11371
  "200": {
11103
11372
  "description": "Team",
@@ -11185,6 +11454,11 @@
11185
11454
  "required": true
11186
11455
  }
11187
11456
  ],
11457
+ "security": [
11458
+ {
11459
+ "bearerAuth": []
11460
+ }
11461
+ ],
11188
11462
  "responses": {
11189
11463
  "200": {
11190
11464
  "description": "Team",
@@ -11299,6 +11573,11 @@
11299
11573
  "required": true
11300
11574
  }
11301
11575
  ],
11576
+ "security": [
11577
+ {
11578
+ "bearerAuth": []
11579
+ }
11580
+ ],
11302
11581
  "responses": {
11303
11582
  "200": {
11304
11583
  "description": "Team",
@@ -11384,6 +11663,11 @@
11384
11663
  "required": true
11385
11664
  }
11386
11665
  ],
11666
+ "security": [
11667
+ {
11668
+ "bearerAuth": []
11669
+ }
11670
+ ],
11387
11671
  "responses": {
11388
11672
  "200": {
11389
11673
  "description": "Team",
@@ -11520,6 +11804,11 @@
11520
11804
  "description": "Expand id-only fields in the response. Pass one path per entry (e.g. `?expand=user`)."
11521
11805
  }
11522
11806
  ],
11807
+ "security": [
11808
+ {
11809
+ "bearerAuth": []
11810
+ }
11811
+ ],
11523
11812
  "responses": {
11524
11813
  "200": {
11525
11814
  "description": "Default Response",
@@ -11602,6 +11891,11 @@
11602
11891
  },
11603
11892
  "description": "Payload for adding one or more users to a team in a single call. Posted to `POST /team/:team_id/member`."
11604
11893
  },
11894
+ "security": [
11895
+ {
11896
+ "bearerAuth": []
11897
+ }
11898
+ ],
11605
11899
  "responses": {
11606
11900
  "200": {
11607
11901
  "description": "TeamMember",
@@ -11726,6 +12020,11 @@
11726
12020
  "required": true
11727
12021
  }
11728
12022
  ],
12023
+ "security": [
12024
+ {
12025
+ "bearerAuth": []
12026
+ }
12027
+ ],
11729
12028
  "responses": {
11730
12029
  "200": {
11731
12030
  "description": "TeamMember",
@@ -11829,6 +12128,11 @@
11829
12128
  "required": true
11830
12129
  }
11831
12130
  ],
12131
+ "security": [
12132
+ {
12133
+ "bearerAuth": []
12134
+ }
12135
+ ],
11832
12136
  "responses": {
11833
12137
  "200": {
11834
12138
  "description": "TeamMember",
@@ -11979,6 +12283,11 @@
11979
12283
  "required": true
11980
12284
  }
11981
12285
  ],
12286
+ "security": [
12287
+ {
12288
+ "bearerAuth": []
12289
+ }
12290
+ ],
11982
12291
  "responses": {
11983
12292
  "200": {
11984
12293
  "description": "PaginatedResponse",
@@ -12068,6 +12377,11 @@
12068
12377
  "required": true
12069
12378
  }
12070
12379
  ],
12380
+ "security": [
12381
+ {
12382
+ "bearerAuth": []
12383
+ }
12384
+ ],
12071
12385
  "responses": {
12072
12386
  "201": {
12073
12387
  "description": "TeamMember",
@@ -12208,6 +12522,11 @@
12208
12522
  "required": true
12209
12523
  }
12210
12524
  ],
12525
+ "security": [
12526
+ {
12527
+ "bearerAuth": []
12528
+ }
12529
+ ],
12211
12530
  "responses": {
12212
12531
  "200": {
12213
12532
  "description": "TeamMember",
@@ -12365,6 +12684,11 @@
12365
12684
  "required": true
12366
12685
  }
12367
12686
  ],
12687
+ "security": [
12688
+ {
12689
+ "bearerAuth": []
12690
+ }
12691
+ ],
12368
12692
  "responses": {
12369
12693
  "200": {
12370
12694
  "description": "Default Response",
@@ -12507,6 +12831,11 @@
12507
12831
  "required": true
12508
12832
  }
12509
12833
  ],
12834
+ "security": [
12835
+ {
12836
+ "bearerAuth": []
12837
+ }
12838
+ ],
12510
12839
  "responses": {
12511
12840
  "200": {
12512
12841
  "description": "Default Response",
@@ -12658,6 +12987,11 @@
12658
12987
  "required": true
12659
12988
  }
12660
12989
  ],
12990
+ "security": [
12991
+ {
12992
+ "bearerAuth": []
12993
+ }
12994
+ ],
12661
12995
  "responses": {
12662
12996
  "200": {
12663
12997
  "description": "Default Response",
@@ -12767,6 +13101,11 @@
12767
13101
  "description": "Full-text search across: `name`, `description`, `identifier`, `slug`."
12768
13102
  }
12769
13103
  ],
13104
+ "security": [
13105
+ {
13106
+ "bearerAuth": []
13107
+ }
13108
+ ],
12770
13109
  "responses": {
12771
13110
  "200": {
12772
13111
  "description": "Default Response",
@@ -12913,6 +13252,11 @@
12913
13252
  },
12914
13253
  "description": "Payload for creating an Api (a.k.a. Resource Server / Audience). The `identifier` becomes the `aud` claim in tokens issued for this API and cannot be changed after creation."
12915
13254
  },
13255
+ "security": [
13256
+ {
13257
+ "bearerAuth": []
13258
+ }
13259
+ ],
12916
13260
  "responses": {
12917
13261
  "200": {
12918
13262
  "description": "Api",
@@ -13077,6 +13421,11 @@
13077
13421
  "required": true
13078
13422
  }
13079
13423
  ],
13424
+ "security": [
13425
+ {
13426
+ "bearerAuth": []
13427
+ }
13428
+ ],
13080
13429
  "responses": {
13081
13430
  "200": {
13082
13431
  "description": "Api",
@@ -13331,6 +13680,11 @@
13331
13680
  "required": true
13332
13681
  }
13333
13682
  ],
13683
+ "security": [
13684
+ {
13685
+ "bearerAuth": []
13686
+ }
13687
+ ],
13334
13688
  "responses": {
13335
13689
  "200": {
13336
13690
  "description": "Api",
@@ -13493,6 +13847,11 @@
13493
13847
  "required": true
13494
13848
  }
13495
13849
  ],
13850
+ "security": [
13851
+ {
13852
+ "bearerAuth": []
13853
+ }
13854
+ ],
13496
13855
  "responses": {
13497
13856
  "200": {
13498
13857
  "description": "Api",
@@ -13647,6 +14006,11 @@
13647
14006
  "account"
13648
14007
  ],
13649
14008
  "description": "Returns metadata for the Account signing keys: the current production kid, the kid queued for next rotation, and all kids currently published in the JWK Set. Does not expose private key material.",
14009
+ "security": [
14010
+ {
14011
+ "bearerAuth": []
14012
+ }
14013
+ ],
13650
14014
  "responses": {
13651
14015
  "200": {
13652
14016
  "description": "Default Response",
@@ -13704,6 +14068,11 @@
13704
14068
  }
13705
14069
  }
13706
14070
  },
14071
+ "security": [
14072
+ {
14073
+ "bearerAuth": []
14074
+ }
14075
+ ],
13707
14076
  "responses": {
13708
14077
  "200": {
13709
14078
  "description": "Default Response",
@@ -13799,6 +14168,11 @@
13799
14168
  "description": "Filter using a FaableQL query"
13800
14169
  }
13801
14170
  ],
14171
+ "security": [
14172
+ {
14173
+ "bearerAuth": []
14174
+ }
14175
+ ],
13802
14176
  "responses": {
13803
14177
  "200": {
13804
14178
  "description": "Default Response",
@@ -13881,6 +14255,11 @@
13881
14255
  }
13882
14256
  }
13883
14257
  },
14258
+ "security": [
14259
+ {
14260
+ "bearerAuth": []
14261
+ }
14262
+ ],
13884
14263
  "responses": {
13885
14264
  "200": {
13886
14265
  "description": "Action",
@@ -13975,6 +14354,11 @@
13975
14354
  "required": true
13976
14355
  }
13977
14356
  ],
14357
+ "security": [
14358
+ {
14359
+ "bearerAuth": []
14360
+ }
14361
+ ],
13978
14362
  "responses": {
13979
14363
  "200": {
13980
14364
  "description": "Action",
@@ -14067,6 +14451,11 @@
14067
14451
  "required": true
14068
14452
  }
14069
14453
  ],
14454
+ "security": [
14455
+ {
14456
+ "bearerAuth": []
14457
+ }
14458
+ ],
14070
14459
  "responses": {
14071
14460
  "200": {
14072
14461
  "description": "Action",
@@ -14191,6 +14580,11 @@
14191
14580
  "description": "Filter using a FaableQL query"
14192
14581
  }
14193
14582
  ],
14583
+ "security": [
14584
+ {
14585
+ "bearerAuth": []
14586
+ }
14587
+ ],
14194
14588
  "responses": {
14195
14589
  "200": {
14196
14590
  "description": "Default Response",
@@ -14353,6 +14747,11 @@
14353
14747
  },
14354
14748
  "description": "NotificationSubscriptionCreate"
14355
14749
  },
14750
+ "security": [
14751
+ {
14752
+ "bearerAuth": []
14753
+ }
14754
+ ],
14356
14755
  "responses": {
14357
14756
  "200": {
14358
14757
  "description": "NotificationSubscription",
@@ -14533,6 +14932,11 @@
14533
14932
  "required": true
14534
14933
  }
14535
14934
  ],
14935
+ "security": [
14936
+ {
14937
+ "bearerAuth": []
14938
+ }
14939
+ ],
14536
14940
  "responses": {
14537
14941
  "200": {
14538
14942
  "description": "NotificationSubscription",
@@ -14807,6 +15211,11 @@
14807
15211
  "required": true
14808
15212
  }
14809
15213
  ],
15214
+ "security": [
15215
+ {
15216
+ "bearerAuth": []
15217
+ }
15218
+ ],
14810
15219
  "responses": {
14811
15220
  "200": {
14812
15221
  "description": "NotificationSubscription",
@@ -14985,6 +15394,11 @@
14985
15394
  "required": true
14986
15395
  }
14987
15396
  ],
15397
+ "security": [
15398
+ {
15399
+ "bearerAuth": []
15400
+ }
15401
+ ],
14988
15402
  "responses": {
14989
15403
  "200": {
14990
15404
  "description": "NotificationSubscription",
@@ -15227,6 +15641,11 @@
15227
15641
  "description": "Full-text search across: `message`."
15228
15642
  }
15229
15643
  ],
15644
+ "security": [
15645
+ {
15646
+ "bearerAuth": []
15647
+ }
15648
+ ],
15230
15649
  "responses": {
15231
15650
  "200": {
15232
15651
  "description": "Default Response",
@@ -15303,6 +15722,11 @@
15303
15722
  "required": true
15304
15723
  }
15305
15724
  ],
15725
+ "security": [
15726
+ {
15727
+ "bearerAuth": []
15728
+ }
15729
+ ],
15306
15730
  "responses": {
15307
15731
  "200": {
15308
15732
  "description": "Log",
@@ -15461,6 +15885,11 @@
15461
15885
  "customdomain"
15462
15886
  ],
15463
15887
  "description": "Forces a re-verification of a Custom Domain that is in FAILED, DEGRADED or VERIFYING state. Rate-limited to one retry per minute.",
15888
+ "security": [
15889
+ {
15890
+ "bearerAuth": []
15891
+ }
15892
+ ],
15464
15893
  "parameters": [
15465
15894
  {
15466
15895
  "schema": {
@@ -15537,6 +15966,11 @@
15537
15966
  "description": "Full-text search across: `domain`."
15538
15967
  }
15539
15968
  ],
15969
+ "security": [
15970
+ {
15971
+ "bearerAuth": []
15972
+ }
15973
+ ],
15540
15974
  "responses": {
15541
15975
  "200": {
15542
15976
  "description": "Default Response",
@@ -15607,6 +16041,11 @@
15607
16041
  },
15608
16042
  "description": "CustomdomainCreate"
15609
16043
  },
16044
+ "security": [
16045
+ {
16046
+ "bearerAuth": []
16047
+ }
16048
+ ],
15610
16049
  "responses": {
15611
16050
  "200": {
15612
16051
  "description": "Customdomain",
@@ -15708,6 +16147,11 @@
15708
16147
  "required": true
15709
16148
  }
15710
16149
  ],
16150
+ "security": [
16151
+ {
16152
+ "bearerAuth": []
16153
+ }
16154
+ ],
15711
16155
  "responses": {
15712
16156
  "200": {
15713
16157
  "description": "Customdomain",
@@ -15807,6 +16251,11 @@
15807
16251
  "required": true
15808
16252
  }
15809
16253
  ],
16254
+ "security": [
16255
+ {
16256
+ "bearerAuth": []
16257
+ }
16258
+ ],
15810
16259
  "responses": {
15811
16260
  "200": {
15812
16261
  "description": "Customdomain",
@@ -16090,6 +16539,11 @@
16090
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.",
16091
16540
  "nullable": true
16092
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
+ },
16093
16547
  "phone": {
16094
16548
  "type": "string",
16095
16549
  "description": "contact phone number",