reach-api-sdk 1.0.230 → 1.0.231

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.
@@ -1780,6 +1780,14 @@ type CustomerStats = {
1780
1780
  * Gets or sets the total amount refunded to the customer.
1781
1781
  */
1782
1782
  totalRefunded: number;
1783
+ /**
1784
+ * Gets or sets the earliest date a wallet credit period account invite is scheduled to send, if any are pending.
1785
+ */
1786
+ pendingAccountInviteScheduledDate?: string | null;
1787
+ /**
1788
+ * Gets or sets a value indicating whether a scheduled account invite failed to send and still needs attention.
1789
+ */
1790
+ hasErroredAccountInviteSchedule?: boolean;
1783
1791
  };
1784
1792
 
1785
1793
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reach-api-sdk",
3
- "version": "1.0.230",
3
+ "version": "1.0.231",
4
4
  "description": "sdk for reach api",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -162717,6 +162717,15 @@ components:
162717
162717
  type: number
162718
162718
  description: Gets or sets the total amount refunded to the customer.
162719
162719
  format: double
162720
+ pendingAccountInviteScheduledDate:
162721
+ type: string
162722
+ description: 'Gets or sets the earliest date a wallet credit period account invite is scheduled to send, if any are pending.'
162723
+ format: date-time
162724
+ nullable: true
162725
+ hasErroredAccountInviteSchedule:
162726
+ type: boolean
162727
+ description: Gets or sets a value indicating whether a scheduled account invite failed to send and still needs attention.
162728
+ default: false
162720
162729
  additionalProperties: false
162721
162730
  description: Model for customer stats.
162722
162731
  CustomerType:
@@ -23,4 +23,12 @@ export type CustomerStats = {
23
23
  * Gets or sets the total amount refunded to the customer.
24
24
  */
25
25
  totalRefunded: number;
26
+ /**
27
+ * Gets or sets the earliest date a wallet credit period account invite is scheduled to send, if any are pending.
28
+ */
29
+ pendingAccountInviteScheduledDate?: string | null;
30
+ /**
31
+ * Gets or sets a value indicating whether a scheduled account invite failed to send and still needs attention.
32
+ */
33
+ hasErroredAccountInviteSchedule?: boolean;
26
34
  };