@parra/parra-js-sdk 0.3.184 → 0.3.185
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 +3 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -2367,6 +2367,7 @@ export interface MailTemplateStub {
|
|
|
2367
2367
|
tenant_id: string;
|
|
2368
2368
|
sender_id: string;
|
|
2369
2369
|
connected_app_connection_id: string;
|
|
2370
|
+
active_version_id?: string | null;
|
|
2370
2371
|
type?: MailTemplateType | null;
|
|
2371
2372
|
title: string;
|
|
2372
2373
|
description?: string | null;
|
|
@@ -2383,6 +2384,7 @@ export interface MailTemplateCollectionStub {
|
|
|
2383
2384
|
tenant_id: string;
|
|
2384
2385
|
sender_id: string;
|
|
2385
2386
|
connected_app_connection_id: string;
|
|
2387
|
+
active_version_id?: string | null;
|
|
2386
2388
|
type?: MailTemplateType | null;
|
|
2387
2389
|
title: string;
|
|
2388
2390
|
description?: string | null;
|
|
@@ -2400,6 +2402,7 @@ export interface MailTemplate {
|
|
|
2400
2402
|
tenant_id: string;
|
|
2401
2403
|
sender_id: string;
|
|
2402
2404
|
connected_app_connection_id: string;
|
|
2405
|
+
active_version_id?: string | null;
|
|
2403
2406
|
type?: MailTemplateType | null;
|
|
2404
2407
|
title: string;
|
|
2405
2408
|
description?: string | null;
|