@parra/parra-js-sdk 0.3.226 → 0.3.227

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.
@@ -216,6 +216,7 @@ export interface ApplicationAppInfoStub {
216
216
  type: ApplicationType;
217
217
  icon?: ImageAssetStub | null;
218
218
  default_feedback_form_id?: string | null;
219
+ error_feedback_form_id?: string | null;
219
220
  }
220
221
  export declare enum DomainType {
221
222
  managed = "managed",
@@ -1986,6 +1987,7 @@ export interface Application {
1986
1987
  privacy_policy_document_id?: string | null;
1987
1988
  terms_of_service_policy_document_id?: string | null;
1988
1989
  default_feedback_form_id?: string | null;
1990
+ error_feedback_form_id?: string | null;
1989
1991
  icon?: ImageAssetStub | null;
1990
1992
  ios?: ApplicationIosConfig | null;
1991
1993
  }
@@ -2043,6 +2045,7 @@ export interface UpdateApplicationRequestBody {
2043
2045
  privacy_policy_document_id?: string | null;
2044
2046
  terms_of_service_policy_document_id?: string | null;
2045
2047
  default_feedback_form_id?: string | null;
2048
+ error_feedback_form_id?: string | null;
2046
2049
  icon?: ImageAssetStub | null;
2047
2050
  }
2048
2051
  export interface LinkAppStoreConnectAppRequestBody {
@@ -2518,6 +2521,7 @@ export interface MailTemplateVersionStub {
2518
2521
  slug?: string | null;
2519
2522
  }
2520
2523
  export declare enum MailTemplateStatus {
2524
+ invalid = "invalid",
2521
2525
  live = "live",
2522
2526
  draft = "draft"
2523
2527
  }
@@ -2527,16 +2531,16 @@ export interface MailTemplateStub {
2527
2531
  updated_at: string;
2528
2532
  deleted_at?: string | null;
2529
2533
  tenant_id: string;
2530
- sender_id: string;
2531
- connected_app_connection_id: string;
2534
+ sender_id?: string | null;
2535
+ connected_app_connection_id?: string | null;
2532
2536
  active_version_id?: string | null;
2533
2537
  type?: MailTemplateType | null;
2534
2538
  title: string;
2535
2539
  description?: string | null;
2536
2540
  slug?: string | null;
2537
2541
  status: MailTemplateStatus;
2538
- sender: MailSender;
2539
- connected_app_connection: ConnectedAppConnectionStub;
2542
+ sender?: MailSender | null;
2543
+ connected_app_connection?: ConnectedAppConnectionStub | null;
2540
2544
  }
2541
2545
  export interface MailTemplateCollectionStub {
2542
2546
  id: string;
@@ -2544,16 +2548,16 @@ export interface MailTemplateCollectionStub {
2544
2548
  updated_at: string;
2545
2549
  deleted_at?: string | null;
2546
2550
  tenant_id: string;
2547
- sender_id: string;
2548
- connected_app_connection_id: string;
2551
+ sender_id?: string | null;
2552
+ connected_app_connection_id?: string | null;
2549
2553
  active_version_id?: string | null;
2550
2554
  type?: MailTemplateType | null;
2551
2555
  title: string;
2552
2556
  description?: string | null;
2553
2557
  slug?: string | null;
2554
2558
  status: MailTemplateStatus;
2555
- sender: MailSender;
2556
- connected_app_connection: ConnectedAppConnectionStub;
2559
+ sender?: MailSender | null;
2560
+ connected_app_connection?: ConnectedAppConnectionStub | null;
2557
2561
  versions: Array<MailTemplateVersionStub>;
2558
2562
  }
2559
2563
  export interface MailTemplate {
@@ -2562,16 +2566,16 @@ export interface MailTemplate {
2562
2566
  updated_at: string;
2563
2567
  deleted_at?: string | null;
2564
2568
  tenant_id: string;
2565
- sender_id: string;
2566
- connected_app_connection_id: string;
2569
+ sender_id?: string | null;
2570
+ connected_app_connection_id?: string | null;
2567
2571
  active_version_id?: string | null;
2568
2572
  type?: MailTemplateType | null;
2569
2573
  title: string;
2570
2574
  description?: string | null;
2571
2575
  slug?: string | null;
2572
2576
  status: MailTemplateStatus;
2573
- sender: MailSender;
2574
- connected_app_connection: ConnectedAppConnectionStub;
2577
+ sender?: MailSender | null;
2578
+ connected_app_connection?: ConnectedAppConnectionStub | null;
2575
2579
  versions: Array<MailTemplateVersionStub>;
2576
2580
  }
2577
2581
  export interface MailTemplateCollectionResponse {
package/dist/ParraAPI.js CHANGED
@@ -315,6 +315,7 @@ var MailTemplateVersionStatus;
315
315
  })(MailTemplateVersionStatus || (exports.MailTemplateVersionStatus = MailTemplateVersionStatus = {}));
316
316
  var MailTemplateStatus;
317
317
  (function (MailTemplateStatus) {
318
+ MailTemplateStatus["invalid"] = "invalid";
318
319
  MailTemplateStatus["live"] = "live";
319
320
  MailTemplateStatus["draft"] = "draft";
320
321
  })(MailTemplateStatus || (exports.MailTemplateStatus = MailTemplateStatus = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.226",
3
+ "version": "0.3.227",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",