@parra/parra-js-sdk 0.3.165 → 0.3.166
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/ParraAPI.d.ts +2 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -2291,7 +2291,7 @@ export interface CreateMailSenderRequestBody {
|
|
|
2291
2291
|
name?: string | null;
|
|
2292
2292
|
description?: string | null;
|
|
2293
2293
|
from_name: string;
|
|
2294
|
-
from_address
|
|
2294
|
+
from_address: string;
|
|
2295
2295
|
reply_to?: string | null;
|
|
2296
2296
|
}
|
|
2297
2297
|
export interface MailSender {
|
|
@@ -2302,7 +2302,7 @@ export interface MailSender {
|
|
|
2302
2302
|
name?: string | null;
|
|
2303
2303
|
description?: string | null;
|
|
2304
2304
|
from_name: string;
|
|
2305
|
-
from_address
|
|
2305
|
+
from_address: string;
|
|
2306
2306
|
reply_to?: string | null;
|
|
2307
2307
|
tenant_id: string;
|
|
2308
2308
|
connected_app_connection_id?: string | null;
|