migma 1.0.9 → 1.1.0

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 CHANGED
@@ -1078,7 +1078,7 @@ declare class Images {
1078
1078
  updateLogos(projectId: string, params: UpdateLogosParams): Promise<MigmaResult<LogosResponse>>;
1079
1079
  }
1080
1080
 
1081
- type CampaignStatus = 'draft' | 'scheduled' | 'sending' | 'throttled' | 'sent' | 'failed' | 'cancelled';
1081
+ type CampaignStatus = 'draft' | 'scheduled' | 'sending' | 'throttled' | 'ab_testing' | 'sent' | 'failed' | 'cancelled';
1082
1082
  interface Campaign {
1083
1083
  id: string;
1084
1084
  projectId: string;
package/dist/index.d.ts CHANGED
@@ -1078,7 +1078,7 @@ declare class Images {
1078
1078
  updateLogos(projectId: string, params: UpdateLogosParams): Promise<MigmaResult<LogosResponse>>;
1079
1079
  }
1080
1080
 
1081
- type CampaignStatus = 'draft' | 'scheduled' | 'sending' | 'throttled' | 'sent' | 'failed' | 'cancelled';
1081
+ type CampaignStatus = 'draft' | 'scheduled' | 'sending' | 'throttled' | 'ab_testing' | 'sent' | 'failed' | 'cancelled';
1082
1082
  interface Campaign {
1083
1083
  id: string;
1084
1084
  projectId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "migma",
3
- "version": "1.0.9",
3
+ "version": "1.1.0",
4
4
  "description": "Official Node.js SDK for the Migma email platform API",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",