@faable/auth-sdk 2.5.81 → 2.5.83
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 +1 -0
- package/dist/api/generated-client.d.ts +7 -0
- package/dist/api/types.d.ts +34 -0
- package/package.json +1 -1
- package/spec/openapi.json +55 -1
package/dist/FaableAuthApi.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ export declare class FaableAuthApi extends GeneratedFaableAuthApi {
|
|
|
45
45
|
welcome_email_enabled: boolean;
|
|
46
46
|
verify_email_auto_send: boolean;
|
|
47
47
|
};
|
|
48
|
+
email_reply_to?: string | null | undefined;
|
|
48
49
|
welcome_email?: {
|
|
49
50
|
cta_url?: string | null | undefined;
|
|
50
51
|
body?: string | null | undefined;
|
|
@@ -41,6 +41,7 @@ export declare abstract class GeneratedFaableAuthApi extends FaableApi {
|
|
|
41
41
|
welcome_email_enabled: boolean;
|
|
42
42
|
verify_email_auto_send: boolean;
|
|
43
43
|
};
|
|
44
|
+
email_reply_to?: string | null | undefined;
|
|
44
45
|
welcome_email?: {
|
|
45
46
|
cta_url?: string | null | undefined;
|
|
46
47
|
body?: string | null | undefined;
|
|
@@ -96,6 +97,7 @@ export declare abstract class GeneratedFaableAuthApi extends FaableApi {
|
|
|
96
97
|
welcome_email_enabled: boolean;
|
|
97
98
|
verify_email_auto_send: boolean;
|
|
98
99
|
};
|
|
100
|
+
email_reply_to?: string | null | undefined;
|
|
99
101
|
welcome_email?: {
|
|
100
102
|
cta_url?: string | null | undefined;
|
|
101
103
|
body?: string | null | undefined;
|
|
@@ -157,6 +159,7 @@ export declare abstract class GeneratedFaableAuthApi extends FaableApi {
|
|
|
157
159
|
welcome_email_enabled: boolean;
|
|
158
160
|
verify_email_auto_send: boolean;
|
|
159
161
|
};
|
|
162
|
+
email_reply_to?: string | null | undefined;
|
|
160
163
|
welcome_email?: {
|
|
161
164
|
cta_url?: string | null | undefined;
|
|
162
165
|
body?: string | null | undefined;
|
|
@@ -223,6 +226,7 @@ export declare abstract class GeneratedFaableAuthApi extends FaableApi {
|
|
|
223
226
|
welcome_email_enabled: boolean;
|
|
224
227
|
verify_email_auto_send: boolean;
|
|
225
228
|
};
|
|
229
|
+
email_reply_to?: string | null | undefined;
|
|
226
230
|
welcome_email?: {
|
|
227
231
|
cta_url?: string | null | undefined;
|
|
228
232
|
body?: string | null | undefined;
|
|
@@ -273,6 +277,7 @@ export declare abstract class GeneratedFaableAuthApi extends FaableApi {
|
|
|
273
277
|
welcome_email_enabled: boolean;
|
|
274
278
|
verify_email_auto_send: boolean;
|
|
275
279
|
};
|
|
280
|
+
email_reply_to?: string | null | undefined;
|
|
276
281
|
welcome_email?: {
|
|
277
282
|
cta_url?: string | null | undefined;
|
|
278
283
|
body?: string | null | undefined;
|
|
@@ -326,6 +331,7 @@ export declare abstract class GeneratedFaableAuthApi extends FaableApi {
|
|
|
326
331
|
welcome_email_enabled: boolean;
|
|
327
332
|
verify_email_auto_send: boolean;
|
|
328
333
|
};
|
|
334
|
+
email_reply_to?: string | null | undefined;
|
|
329
335
|
welcome_email?: {
|
|
330
336
|
cta_url?: string | null | undefined;
|
|
331
337
|
body?: string | null | undefined;
|
|
@@ -394,6 +400,7 @@ export declare abstract class GeneratedFaableAuthApi extends FaableApi {
|
|
|
394
400
|
welcome_email_enabled: boolean;
|
|
395
401
|
verify_email_auto_send: boolean;
|
|
396
402
|
};
|
|
403
|
+
email_reply_to?: string | null | undefined;
|
|
397
404
|
welcome_email?: {
|
|
398
405
|
cta_url?: string | null | undefined;
|
|
399
406
|
body?: string | null | undefined;
|
package/dist/api/types.d.ts
CHANGED
|
@@ -2728,6 +2728,11 @@ export interface components {
|
|
|
2728
2728
|
*/
|
|
2729
2729
|
verify_email_auto_send: boolean;
|
|
2730
2730
|
};
|
|
2731
|
+
/**
|
|
2732
|
+
* Format: email
|
|
2733
|
+
* @description Reply-To on every email this tenant sends to its users. Absent = no Reply-To, so a reply goes to the From address — which is a `no-reply@` mailbox nobody reads. Set it to your own support address if you want your users to be able to answer.
|
|
2734
|
+
*/
|
|
2735
|
+
email_reply_to?: string | null;
|
|
2731
2736
|
welcome_email?: {
|
|
2732
2737
|
/**
|
|
2733
2738
|
* Format: uri
|
|
@@ -4582,6 +4587,8 @@ export interface components {
|
|
|
4582
4587
|
*/
|
|
4583
4588
|
verify_email_auto_send: boolean;
|
|
4584
4589
|
};
|
|
4590
|
+
/** Format: email */
|
|
4591
|
+
email_reply_to?: string | null;
|
|
4585
4592
|
welcome_email?: {
|
|
4586
4593
|
/**
|
|
4587
4594
|
* Format: uri
|
|
@@ -4760,6 +4767,11 @@ export interface operations {
|
|
|
4760
4767
|
*/
|
|
4761
4768
|
verify_email_auto_send: boolean;
|
|
4762
4769
|
};
|
|
4770
|
+
/**
|
|
4771
|
+
* Format: email
|
|
4772
|
+
* @description Reply-To on every email this tenant sends to its users. Absent = no Reply-To, so a reply goes to the From address — which is a `no-reply@` mailbox nobody reads. Set it to your own support address if you want your users to be able to answer.
|
|
4773
|
+
*/
|
|
4774
|
+
email_reply_to?: string | null;
|
|
4763
4775
|
welcome_email?: {
|
|
4764
4776
|
/**
|
|
4765
4777
|
* Format: uri
|
|
@@ -4925,6 +4937,11 @@ export interface operations {
|
|
|
4925
4937
|
*/
|
|
4926
4938
|
verify_email_auto_send: boolean;
|
|
4927
4939
|
};
|
|
4940
|
+
/**
|
|
4941
|
+
* Format: email
|
|
4942
|
+
* @description Reply-To on every email this tenant sends to its users. Absent = no Reply-To, so a reply goes to the From address — which is a `no-reply@` mailbox nobody reads. Set it to your own support address if you want your users to be able to answer.
|
|
4943
|
+
*/
|
|
4944
|
+
email_reply_to?: string | null;
|
|
4928
4945
|
welcome_email?: {
|
|
4929
4946
|
/**
|
|
4930
4947
|
* Format: uri
|
|
@@ -5044,6 +5061,11 @@ export interface operations {
|
|
|
5044
5061
|
*/
|
|
5045
5062
|
verify_email_auto_send: boolean;
|
|
5046
5063
|
};
|
|
5064
|
+
/**
|
|
5065
|
+
* Format: email
|
|
5066
|
+
* @description Reply-To on every email this tenant sends to its users. Absent = no Reply-To, so a reply goes to the From address — which is a `no-reply@` mailbox nobody reads. Set it to your own support address if you want your users to be able to answer.
|
|
5067
|
+
*/
|
|
5068
|
+
email_reply_to?: string | null;
|
|
5047
5069
|
welcome_email?: {
|
|
5048
5070
|
/**
|
|
5049
5071
|
* Format: uri
|
|
@@ -5145,6 +5167,8 @@ export interface operations {
|
|
|
5145
5167
|
*/
|
|
5146
5168
|
verify_email_auto_send?: boolean;
|
|
5147
5169
|
};
|
|
5170
|
+
/** Format: email */
|
|
5171
|
+
email_reply_to?: string | null;
|
|
5148
5172
|
welcome_email?: {
|
|
5149
5173
|
/**
|
|
5150
5174
|
* Format: uri
|
|
@@ -5232,6 +5256,11 @@ export interface operations {
|
|
|
5232
5256
|
*/
|
|
5233
5257
|
verify_email_auto_send: boolean;
|
|
5234
5258
|
};
|
|
5259
|
+
/**
|
|
5260
|
+
* Format: email
|
|
5261
|
+
* @description Reply-To on every email this tenant sends to its users. Absent = no Reply-To, so a reply goes to the From address — which is a `no-reply@` mailbox nobody reads. Set it to your own support address if you want your users to be able to answer.
|
|
5262
|
+
*/
|
|
5263
|
+
email_reply_to?: string | null;
|
|
5235
5264
|
welcome_email?: {
|
|
5236
5265
|
/**
|
|
5237
5266
|
* Format: uri
|
|
@@ -5360,6 +5389,11 @@ export interface operations {
|
|
|
5360
5389
|
*/
|
|
5361
5390
|
verify_email_auto_send: boolean;
|
|
5362
5391
|
};
|
|
5392
|
+
/**
|
|
5393
|
+
* Format: email
|
|
5394
|
+
* @description Reply-To on every email this tenant sends to its users. Absent = no Reply-To, so a reply goes to the From address — which is a `no-reply@` mailbox nobody reads. Set it to your own support address if you want your users to be able to answer.
|
|
5395
|
+
*/
|
|
5396
|
+
email_reply_to?: string | null;
|
|
5363
5397
|
welcome_email?: {
|
|
5364
5398
|
/**
|
|
5365
5399
|
* Format: uri
|
package/package.json
CHANGED
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": "2.
|
|
6
|
+
"version": "2.7.0",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "private",
|
|
9
9
|
"url": "https://faable.com/docs/platform/privacy-policy"
|
|
@@ -141,6 +141,13 @@
|
|
|
141
141
|
},
|
|
142
142
|
"additionalProperties": false
|
|
143
143
|
},
|
|
144
|
+
"email_reply_to": {
|
|
145
|
+
"type": "string",
|
|
146
|
+
"format": "email",
|
|
147
|
+
"maxLength": 320,
|
|
148
|
+
"description": "Reply-To on every email this tenant sends to its users. Absent = no Reply-To, so a reply goes to the From address — which is a `no-reply@` mailbox nobody reads. Set it to your own support address if you want your users to be able to answer.",
|
|
149
|
+
"nullable": true
|
|
150
|
+
},
|
|
144
151
|
"welcome_email": {
|
|
145
152
|
"type": "object",
|
|
146
153
|
"properties": {
|
|
@@ -5811,6 +5818,12 @@
|
|
|
5811
5818
|
}
|
|
5812
5819
|
}
|
|
5813
5820
|
},
|
|
5821
|
+
"email_reply_to": {
|
|
5822
|
+
"type": "string",
|
|
5823
|
+
"format": "email",
|
|
5824
|
+
"maxLength": 320,
|
|
5825
|
+
"nullable": true
|
|
5826
|
+
},
|
|
5814
5827
|
"welcome_email": {
|
|
5815
5828
|
"anyOf": [
|
|
5816
5829
|
{
|
|
@@ -6478,6 +6491,13 @@
|
|
|
6478
6491
|
},
|
|
6479
6492
|
"additionalProperties": false
|
|
6480
6493
|
},
|
|
6494
|
+
"email_reply_to": {
|
|
6495
|
+
"type": "string",
|
|
6496
|
+
"format": "email",
|
|
6497
|
+
"maxLength": 320,
|
|
6498
|
+
"description": "Reply-To on every email this tenant sends to its users. Absent = no Reply-To, so a reply goes to the From address — which is a `no-reply@` mailbox nobody reads. Set it to your own support address if you want your users to be able to answer.",
|
|
6499
|
+
"nullable": true
|
|
6500
|
+
},
|
|
6481
6501
|
"welcome_email": {
|
|
6482
6502
|
"type": "object",
|
|
6483
6503
|
"properties": {
|
|
@@ -6909,6 +6929,13 @@
|
|
|
6909
6929
|
},
|
|
6910
6930
|
"additionalProperties": false
|
|
6911
6931
|
},
|
|
6932
|
+
"email_reply_to": {
|
|
6933
|
+
"type": "string",
|
|
6934
|
+
"format": "email",
|
|
6935
|
+
"maxLength": 320,
|
|
6936
|
+
"description": "Reply-To on every email this tenant sends to its users. Absent = no Reply-To, so a reply goes to the From address — which is a `no-reply@` mailbox nobody reads. Set it to your own support address if you want your users to be able to answer.",
|
|
6937
|
+
"nullable": true
|
|
6938
|
+
},
|
|
6912
6939
|
"welcome_email": {
|
|
6913
6940
|
"type": "object",
|
|
6914
6941
|
"properties": {
|
|
@@ -7394,6 +7421,13 @@
|
|
|
7394
7421
|
},
|
|
7395
7422
|
"additionalProperties": false
|
|
7396
7423
|
},
|
|
7424
|
+
"email_reply_to": {
|
|
7425
|
+
"type": "string",
|
|
7426
|
+
"format": "email",
|
|
7427
|
+
"maxLength": 320,
|
|
7428
|
+
"description": "Reply-To on every email this tenant sends to its users. Absent = no Reply-To, so a reply goes to the From address — which is a `no-reply@` mailbox nobody reads. Set it to your own support address if you want your users to be able to answer.",
|
|
7429
|
+
"nullable": true
|
|
7430
|
+
},
|
|
7397
7431
|
"welcome_email": {
|
|
7398
7432
|
"type": "object",
|
|
7399
7433
|
"properties": {
|
|
@@ -7711,6 +7745,12 @@
|
|
|
7711
7745
|
}
|
|
7712
7746
|
}
|
|
7713
7747
|
},
|
|
7748
|
+
"email_reply_to": {
|
|
7749
|
+
"type": "string",
|
|
7750
|
+
"format": "email",
|
|
7751
|
+
"maxLength": 320,
|
|
7752
|
+
"nullable": true
|
|
7753
|
+
},
|
|
7714
7754
|
"welcome_email": {
|
|
7715
7755
|
"anyOf": [
|
|
7716
7756
|
{
|
|
@@ -8063,6 +8103,13 @@
|
|
|
8063
8103
|
},
|
|
8064
8104
|
"additionalProperties": false
|
|
8065
8105
|
},
|
|
8106
|
+
"email_reply_to": {
|
|
8107
|
+
"type": "string",
|
|
8108
|
+
"format": "email",
|
|
8109
|
+
"maxLength": 320,
|
|
8110
|
+
"description": "Reply-To on every email this tenant sends to its users. Absent = no Reply-To, so a reply goes to the From address — which is a `no-reply@` mailbox nobody reads. Set it to your own support address if you want your users to be able to answer.",
|
|
8111
|
+
"nullable": true
|
|
8112
|
+
},
|
|
8066
8113
|
"welcome_email": {
|
|
8067
8114
|
"type": "object",
|
|
8068
8115
|
"properties": {
|
|
@@ -8467,6 +8514,13 @@
|
|
|
8467
8514
|
},
|
|
8468
8515
|
"additionalProperties": false
|
|
8469
8516
|
},
|
|
8517
|
+
"email_reply_to": {
|
|
8518
|
+
"type": "string",
|
|
8519
|
+
"format": "email",
|
|
8520
|
+
"maxLength": 320,
|
|
8521
|
+
"description": "Reply-To on every email this tenant sends to its users. Absent = no Reply-To, so a reply goes to the From address — which is a `no-reply@` mailbox nobody reads. Set it to your own support address if you want your users to be able to answer.",
|
|
8522
|
+
"nullable": true
|
|
8523
|
+
},
|
|
8470
8524
|
"welcome_email": {
|
|
8471
8525
|
"type": "object",
|
|
8472
8526
|
"properties": {
|