@wix/auto_sdk_subscription_subscriptions 1.0.43 → 1.0.44

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.
@@ -3193,12 +3193,11 @@ interface AllowedActionsRequest {
3193
3193
  fields?: RequestedFieldsWithLiterals[];
3194
3194
  }
3195
3195
  declare enum RequestedFields {
3196
- UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
3197
3196
  /** Include unsupported action list, including the reasons for the lack of support */
3198
3197
  UNSUPPORTED_ACTION = "UNSUPPORTED_ACTION"
3199
3198
  }
3200
3199
  /** @enumType */
3201
- type RequestedFieldsWithLiterals = RequestedFields | 'UNKNOWN_REQUESTED_FIELD' | 'UNSUPPORTED_ACTION';
3200
+ type RequestedFieldsWithLiterals = RequestedFields | 'UNSUPPORTED_ACTION';
3202
3201
  interface AllowedActionsResponse {
3203
3202
  /** List of actions that are allowed. */
3204
3203
  actions?: Action[];
@@ -3746,7 +3745,6 @@ interface Refund {
3746
3745
  description?: string | null;
3747
3746
  }
3748
3747
  declare enum RefundReason {
3749
- UNKNOWN_REFUND_REASON = "UNKNOWN_REFUND_REASON",
3750
3748
  DUPLICATE_CHARGE = "DUPLICATE_CHARGE",
3751
3749
  FRAUDULENT = "FRAUDULENT",
3752
3750
  CUSTOMER_REQUEST = "CUSTOMER_REQUEST",
@@ -3754,7 +3752,7 @@ declare enum RefundReason {
3754
3752
  OTHER = "OTHER"
3755
3753
  }
3756
3754
  /** @enumType */
3757
- type RefundReasonWithLiterals = RefundReason | 'UNKNOWN_REFUND_REASON' | 'DUPLICATE_CHARGE' | 'FRAUDULENT' | 'CUSTOMER_REQUEST' | 'PROVISION_FAILED' | 'OTHER';
3755
+ type RefundReasonWithLiterals = RefundReason | 'DUPLICATE_CHARGE' | 'FRAUDULENT' | 'CUSTOMER_REQUEST' | 'PROVISION_FAILED' | 'OTHER';
3758
3756
  interface ChangeSubscriptionRequest {
3759
3757
  /**
3760
3758
  * ID of the subscription to change
@@ -3639,7 +3639,6 @@ var UpdateAction = /* @__PURE__ */ ((UpdateAction2) => {
3639
3639
  return UpdateAction2;
3640
3640
  })(UpdateAction || {});
3641
3641
  var RequestedFields = /* @__PURE__ */ ((RequestedFields2) => {
3642
- RequestedFields2["UNKNOWN_REQUESTED_FIELD"] = "UNKNOWN_REQUESTED_FIELD";
3643
3642
  RequestedFields2["UNSUPPORTED_ACTION"] = "UNSUPPORTED_ACTION";
3644
3643
  return RequestedFields2;
3645
3644
  })(RequestedFields || {});
@@ -3690,7 +3689,6 @@ var PriceAdjustmentReason = /* @__PURE__ */ ((PriceAdjustmentReason2) => {
3690
3689
  return PriceAdjustmentReason2;
3691
3690
  })(PriceAdjustmentReason || {});
3692
3691
  var RefundReason = /* @__PURE__ */ ((RefundReason2) => {
3693
- RefundReason2["UNKNOWN_REFUND_REASON"] = "UNKNOWN_REFUND_REASON";
3694
3692
  RefundReason2["DUPLICATE_CHARGE"] = "DUPLICATE_CHARGE";
3695
3693
  RefundReason2["FRAUDULENT"] = "FRAUDULENT";
3696
3694
  RefundReason2["CUSTOMER_REQUEST"] = "CUSTOMER_REQUEST";