@parra/parra-js-sdk 0.3.225 → 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",
@@ -1985,6 +1986,8 @@ export interface Application {
1985
1986
  tenant_id: string;
1986
1987
  privacy_policy_document_id?: string | null;
1987
1988
  terms_of_service_policy_document_id?: string | null;
1989
+ default_feedback_form_id?: string | null;
1990
+ error_feedback_form_id?: string | null;
1988
1991
  icon?: ImageAssetStub | null;
1989
1992
  ios?: ApplicationIosConfig | null;
1990
1993
  }
@@ -2042,6 +2045,7 @@ export interface UpdateApplicationRequestBody {
2042
2045
  privacy_policy_document_id?: string | null;
2043
2046
  terms_of_service_policy_document_id?: string | null;
2044
2047
  default_feedback_form_id?: string | null;
2048
+ error_feedback_form_id?: string | null;
2045
2049
  icon?: ImageAssetStub | null;
2046
2050
  }
2047
2051
  export interface LinkAppStoreConnectAppRequestBody {
@@ -2517,6 +2521,7 @@ export interface MailTemplateVersionStub {
2517
2521
  slug?: string | null;
2518
2522
  }
2519
2523
  export declare enum MailTemplateStatus {
2524
+ invalid = "invalid",
2520
2525
  live = "live",
2521
2526
  draft = "draft"
2522
2527
  }
@@ -2526,16 +2531,16 @@ export interface MailTemplateStub {
2526
2531
  updated_at: string;
2527
2532
  deleted_at?: string | null;
2528
2533
  tenant_id: string;
2529
- sender_id: string;
2530
- connected_app_connection_id: string;
2534
+ sender_id?: string | null;
2535
+ connected_app_connection_id?: string | null;
2531
2536
  active_version_id?: string | null;
2532
2537
  type?: MailTemplateType | null;
2533
2538
  title: string;
2534
2539
  description?: string | null;
2535
2540
  slug?: string | null;
2536
2541
  status: MailTemplateStatus;
2537
- sender: MailSender;
2538
- connected_app_connection: ConnectedAppConnectionStub;
2542
+ sender?: MailSender | null;
2543
+ connected_app_connection?: ConnectedAppConnectionStub | null;
2539
2544
  }
2540
2545
  export interface MailTemplateCollectionStub {
2541
2546
  id: string;
@@ -2543,16 +2548,16 @@ export interface MailTemplateCollectionStub {
2543
2548
  updated_at: string;
2544
2549
  deleted_at?: string | null;
2545
2550
  tenant_id: string;
2546
- sender_id: string;
2547
- connected_app_connection_id: string;
2551
+ sender_id?: string | null;
2552
+ connected_app_connection_id?: string | null;
2548
2553
  active_version_id?: string | null;
2549
2554
  type?: MailTemplateType | null;
2550
2555
  title: string;
2551
2556
  description?: string | null;
2552
2557
  slug?: string | null;
2553
2558
  status: MailTemplateStatus;
2554
- sender: MailSender;
2555
- connected_app_connection: ConnectedAppConnectionStub;
2559
+ sender?: MailSender | null;
2560
+ connected_app_connection?: ConnectedAppConnectionStub | null;
2556
2561
  versions: Array<MailTemplateVersionStub>;
2557
2562
  }
2558
2563
  export interface MailTemplate {
@@ -2561,16 +2566,16 @@ export interface MailTemplate {
2561
2566
  updated_at: string;
2562
2567
  deleted_at?: string | null;
2563
2568
  tenant_id: string;
2564
- sender_id: string;
2565
- connected_app_connection_id: string;
2569
+ sender_id?: string | null;
2570
+ connected_app_connection_id?: string | null;
2566
2571
  active_version_id?: string | null;
2567
2572
  type?: MailTemplateType | null;
2568
2573
  title: string;
2569
2574
  description?: string | null;
2570
2575
  slug?: string | null;
2571
2576
  status: MailTemplateStatus;
2572
- sender: MailSender;
2573
- connected_app_connection: ConnectedAppConnectionStub;
2577
+ sender?: MailSender | null;
2578
+ connected_app_connection?: ConnectedAppConnectionStub | null;
2574
2579
  versions: Array<MailTemplateVersionStub>;
2575
2580
  }
2576
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.225",
3
+ "version": "0.3.227",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",