@wix/auto_sdk_subscription_subscriptions 1.0.20 → 1.0.21

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.
@@ -853,7 +853,7 @@ interface PauseInfo {
853
853
  resumeDate?: Date | null;
854
854
  resumeCycle?: number | null;
855
855
  /** The type of pause applied to the subscription (e.g., traditional pause vs skip cycle) */
856
- type?: PauseTypeWithLiterals;
856
+ pauseType?: PauseTypeWithLiterals;
857
857
  }
858
858
  declare enum PausePolicy {
859
859
  NONE = "NONE",
@@ -2616,6 +2616,8 @@ interface PauseSubscriptionRequest {
2616
2616
  /** contains additional scheduling information for certain auto_resume_at either specific date */
2617
2617
  autoResumeAtSchedule?: ScheduleAdditionalInfo;
2618
2618
  actionContext: ActionContext;
2619
+ /** The type of pause to apply (PAUSE for traditional pause, SKIP_CYCLE for skip cycle). */
2620
+ pauseType?: PauseTypeWithLiterals;
2619
2621
  }
2620
2622
  interface PauseSubscriptionResponse {
2621
2623
  subscription?: Subscription;