@outseta/api-client 0.3.19 → 0.3.20

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/index.js CHANGED
@@ -1779,7 +1779,8 @@ var SupportCaseSource = {
1779
1779
  // src/generated/models/supportCaseStatus.ts
1780
1780
  var SupportCaseStatus = {
1781
1781
  Open: 1,
1782
- Closed: 2
1782
+ Closed: 2,
1783
+ Spam: 3
1783
1784
  };
1784
1785
  // src/generated/models/tagColor.ts
1785
1786
  var TagColor = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@outseta/api-client",
3
- "version": "0.3.19",
3
+ "version": "0.3.20",
4
4
  "description": "Generated API client for the Outseta REST API",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -741,7 +741,7 @@ export const campaignGetBroadcastEmail = async (broadcastCampaignUid: string | n
741
741
 
742
742
  /**
743
743
  * Setting SendDateTime to a future UTC date schedules the broadcast for sending and its status
744
- changes to Pending. An account may only have 20 broadcasts scheduled or sending at one time;
744
+ changes to Pending. An account may only have 5 broadcasts scheduled or sending at one time;
745
745
  scheduling beyond that is rejected until one finishes sending or is unscheduled. There is no
746
746
  limit on the number of drafts. Clearing SendDateTime unschedules the broadcast. Recipients can be added
747
747
  with EmailListUids and SegmentUids (see the create endpoint): on update these are merged onto
@@ -23,7 +23,7 @@ export type CaseAllOf = {
23
23
  UserAgent?: string | null;
24
24
  /**
25
25
  * @minimum 1
26
- * @maximum 2
26
+ * @maximum 3
27
27
  */
28
28
  Status: SupportCaseStatus;
29
29
  /**
@@ -1,7 +1,7 @@
1
1
  // @ts-nocheck
2
2
 
3
3
  /**
4
- * `1` - Open, `2` - Closed
4
+ * `1` - Open, `2` - Closed, `3` - Spam
5
5
  */
6
6
  export type SupportCaseStatus = typeof SupportCaseStatus[keyof typeof SupportCaseStatus];
7
7
 
@@ -10,4 +10,5 @@ export type SupportCaseStatus = typeof SupportCaseStatus[keyof typeof SupportCas
10
10
  export const SupportCaseStatus = {
11
11
  Open: 1,
12
12
  Closed: 2,
13
+ Spam: 3,
13
14
  } as const;