@parra/parra-js-sdk 0.3.194 → 0.3.195
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 +11 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -2471,6 +2471,16 @@ export interface CreateMailTemplateVersionRequestBody {
|
|
|
2471
2471
|
text_content?: string | null;
|
|
2472
2472
|
html_content?: string | null;
|
|
2473
2473
|
}
|
|
2474
|
+
export interface Schema {
|
|
2475
|
+
id: string;
|
|
2476
|
+
created_at: string;
|
|
2477
|
+
updated_at: string;
|
|
2478
|
+
deleted_at?: string | null;
|
|
2479
|
+
name: string;
|
|
2480
|
+
type: string;
|
|
2481
|
+
content: object;
|
|
2482
|
+
description?: string | null;
|
|
2483
|
+
}
|
|
2474
2484
|
export interface MailTemplateVersion {
|
|
2475
2485
|
id: string;
|
|
2476
2486
|
created_at: string;
|
|
@@ -2494,6 +2504,7 @@ export interface MailTemplateVersion {
|
|
|
2494
2504
|
test_tenant?: object | null;
|
|
2495
2505
|
test_subject?: string | null;
|
|
2496
2506
|
test_recipient?: string | null;
|
|
2507
|
+
schema: Schema;
|
|
2497
2508
|
template: MailTemplateStub;
|
|
2498
2509
|
}
|
|
2499
2510
|
export interface UpdateMailTemplateVersionRequestBody {
|