@wix/auto_sdk_email-marketing_campaigns 1.0.41 → 1.0.43

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.
@@ -1455,7 +1455,15 @@ interface SubscribeFromLandingPageResponse {
1455
1455
  }
1456
1456
  /** @docsIgnore */
1457
1457
  type PublishCampaignApplicationErrors = {
1458
- code?: 'ALREADY_SENT';
1458
+ code?: 'ALREADY_PUBLISHED';
1459
+ description?: string;
1460
+ data?: Record<string, any>;
1461
+ } | {
1462
+ code?: 'SCHEDULING_FEATURE_UNAVAILABLE';
1463
+ description?: string;
1464
+ data?: Record<string, any>;
1465
+ } | {
1466
+ code?: 'INVALID_SEND_AT';
1459
1467
  description?: string;
1460
1468
  data?: Record<string, any>;
1461
1469
  };