@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
package/build/cjs/meta.js CHANGED
@@ -3744,7 +3744,6 @@ var UpdateAction = /* @__PURE__ */ ((UpdateAction2) => {
3744
3744
  return UpdateAction2;
3745
3745
  })(UpdateAction || {});
3746
3746
  var RequestedFields = /* @__PURE__ */ ((RequestedFields2) => {
3747
- RequestedFields2["UNKNOWN_REQUESTED_FIELD"] = "UNKNOWN_REQUESTED_FIELD";
3748
3747
  RequestedFields2["UNSUPPORTED_ACTION"] = "UNSUPPORTED_ACTION";
3749
3748
  return RequestedFields2;
3750
3749
  })(RequestedFields || {});
@@ -3795,7 +3794,6 @@ var PriceAdjustmentReason = /* @__PURE__ */ ((PriceAdjustmentReason2) => {
3795
3794
  return PriceAdjustmentReason2;
3796
3795
  })(PriceAdjustmentReason || {});
3797
3796
  var RefundReason = /* @__PURE__ */ ((RefundReason2) => {
3798
- RefundReason2["UNKNOWN_REFUND_REASON"] = "UNKNOWN_REFUND_REASON";
3799
3797
  RefundReason2["DUPLICATE_CHARGE"] = "DUPLICATE_CHARGE";
3800
3798
  RefundReason2["FRAUDULENT"] = "FRAUDULENT";
3801
3799
  RefundReason2["CUSTOMER_REQUEST"] = "CUSTOMER_REQUEST";