@parra/parra-js-sdk 0.3.180 → 0.3.182

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.
@@ -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;
@@ -2365,7 +2366,7 @@ export interface MailTemplateStub {
2365
2366
  slug?: string | null;
2366
2367
  status: MailTemplateStatus;
2367
2368
  sender: MailSender;
2368
- connected_app_connection?: ConnectedAppConnectionStub;
2369
+ connected_app_connection: ConnectedAppConnectionStub;
2369
2370
  }
2370
2371
  export interface MailTemplateCollectionStub {
2371
2372
  id: string;
@@ -2380,7 +2381,7 @@ export interface MailTemplateCollectionStub {
2380
2381
  slug?: string | null;
2381
2382
  status: MailTemplateStatus;
2382
2383
  sender: MailSender;
2383
- connected_app_connection?: ConnectedAppConnectionStub;
2384
+ connected_app_connection: ConnectedAppConnectionStub;
2384
2385
  versions: Array<MailTemplateVersionStub>;
2385
2386
  }
2386
2387
  export interface MailTemplate {
@@ -2396,7 +2397,7 @@ export interface MailTemplate {
2396
2397
  slug?: string | null;
2397
2398
  status: MailTemplateStatus;
2398
2399
  sender: MailSender;
2399
- connected_app_connection?: ConnectedAppConnectionStub;
2400
+ connected_app_connection: ConnectedAppConnectionStub;
2400
2401
  versions: Array<MailTemplateVersionStub>;
2401
2402
  }
2402
2403
  export interface MailTemplateCollectionResponse {
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.180",
3
+ "version": "0.3.182",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",