@masters-union/outbound-sdk 0.4.13 → 0.4.15
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.d.mts +11 -0
- package/dist/index.d.ts +11 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1132,6 +1132,17 @@ interface ListSendResponse {
|
|
|
1132
1132
|
status: 'expanding';
|
|
1133
1133
|
statusUrl: string;
|
|
1134
1134
|
usingSesTemplate?: boolean;
|
|
1135
|
+
/** The campaign this send was filed under, auto-named unless you supplied one. */
|
|
1136
|
+
campaignId?: string;
|
|
1137
|
+
/** True when the server named the campaign because you did not. */
|
|
1138
|
+
campaignAutoNamed?: boolean;
|
|
1139
|
+
/**
|
|
1140
|
+
* `true` when an `idempotencyKey` was replayed: NOTHING new was sent and this is
|
|
1141
|
+
* the response the original call received, replayed verbatim. `status` therefore
|
|
1142
|
+
* still reads `'expanding'` even if that send has long since finished, so read
|
|
1143
|
+
* live state from `statusUrl` (or `email.status(jobId)`), never from this field.
|
|
1144
|
+
*/
|
|
1145
|
+
duplicate?: boolean;
|
|
1135
1146
|
}
|
|
1136
1147
|
|
|
1137
1148
|
declare class HttpClient {
|
package/dist/index.d.ts
CHANGED
|
@@ -1132,6 +1132,17 @@ interface ListSendResponse {
|
|
|
1132
1132
|
status: 'expanding';
|
|
1133
1133
|
statusUrl: string;
|
|
1134
1134
|
usingSesTemplate?: boolean;
|
|
1135
|
+
/** The campaign this send was filed under, auto-named unless you supplied one. */
|
|
1136
|
+
campaignId?: string;
|
|
1137
|
+
/** True when the server named the campaign because you did not. */
|
|
1138
|
+
campaignAutoNamed?: boolean;
|
|
1139
|
+
/**
|
|
1140
|
+
* `true` when an `idempotencyKey` was replayed: NOTHING new was sent and this is
|
|
1141
|
+
* the response the original call received, replayed verbatim. `status` therefore
|
|
1142
|
+
* still reads `'expanding'` even if that send has long since finished, so read
|
|
1143
|
+
* live state from `statusUrl` (or `email.status(jobId)`), never from this field.
|
|
1144
|
+
*/
|
|
1145
|
+
duplicate?: boolean;
|
|
1135
1146
|
}
|
|
1136
1147
|
|
|
1137
1148
|
declare class HttpClient {
|