@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
package/package.json
CHANGED
|
@@ -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
|
|
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
|
|
@@ -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;
|