@parra/parra-js-sdk 0.3.181 → 0.3.183
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 +4 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -2340,6 +2340,7 @@ export interface MailTemplateVersionStub {
|
|
|
2340
2340
|
mail_template_id: string;
|
|
2341
2341
|
status: MailTemplateVersionStatus;
|
|
2342
2342
|
version: string;
|
|
2343
|
+
subject: string;
|
|
2343
2344
|
title: string | null;
|
|
2344
2345
|
automatically_generate_text_content: boolean;
|
|
2345
2346
|
description?: string | null;
|
|
@@ -2429,6 +2430,7 @@ export interface MailTemplateVersion {
|
|
|
2429
2430
|
mail_template_id: string;
|
|
2430
2431
|
status: MailTemplateVersionStatus;
|
|
2431
2432
|
version: string;
|
|
2433
|
+
subject: string;
|
|
2432
2434
|
title: string | null;
|
|
2433
2435
|
automatically_generate_text_content: boolean;
|
|
2434
2436
|
description?: string | null;
|
|
@@ -2454,9 +2456,9 @@ export interface UpdateMailTemplateVersionRequestBody {
|
|
|
2454
2456
|
export interface TestMailTemplateVersionRequestBody {
|
|
2455
2457
|
title?: string;
|
|
2456
2458
|
version?: string;
|
|
2457
|
-
subject
|
|
2459
|
+
subject?: string;
|
|
2458
2460
|
automatically_generate_text_content?: boolean;
|
|
2459
|
-
test_data
|
|
2461
|
+
test_data?: object | null;
|
|
2460
2462
|
test_subject?: string | null;
|
|
2461
2463
|
test_recipient?: string | null;
|
|
2462
2464
|
text_content?: string | null;
|