@parra/parra-js-sdk 0.3.174 → 0.3.175
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 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -2331,6 +2331,7 @@ export interface MailTemplateVersionStub {
|
|
|
2331
2331
|
updated_at: string;
|
|
2332
2332
|
deleted_at?: string | null;
|
|
2333
2333
|
tenant_id: string;
|
|
2334
|
+
mail_template_id: string;
|
|
2334
2335
|
status: MailTemplateVersionStatus;
|
|
2335
2336
|
version: string;
|
|
2336
2337
|
title: string | null;
|
|
@@ -2388,12 +2389,12 @@ export interface MailTemplateVersion {
|
|
|
2388
2389
|
updated_at: string;
|
|
2389
2390
|
deleted_at?: string | null;
|
|
2390
2391
|
tenant_id: string;
|
|
2392
|
+
mail_template_id: string;
|
|
2391
2393
|
status: MailTemplateVersionStatus;
|
|
2392
2394
|
version: string;
|
|
2393
2395
|
title: string | null;
|
|
2394
2396
|
description?: string | null;
|
|
2395
2397
|
slug?: string | null;
|
|
2396
|
-
mail_template_id: string;
|
|
2397
2398
|
text_content?: string | null;
|
|
2398
2399
|
json_content?: string | null;
|
|
2399
2400
|
html_content?: string | null;
|