@wix/auto_sdk_pricing-plans_orders 1.0.76 → 1.0.77

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.
@@ -20,6 +20,18 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
20
20
  // meta.ts
21
21
  var meta_exports = {};
22
22
  __export(meta_exports, {
23
+ CancellationCauseOriginal: () => CancellationCause,
24
+ CancellationEffectiveAtOriginal: () => CancellationEffectiveAt,
25
+ OrderMethodOriginal: () => OrderMethod,
26
+ OrderStatusOriginal: () => OrderStatus,
27
+ OrderTypeOriginal: () => OrderType,
28
+ PaymentStatusOriginal: () => PaymentStatus,
29
+ PeriodUnitOriginal: () => PeriodUnit,
30
+ ReasonNotSuspendableOriginal: () => ReasonNotSuspendable,
31
+ SetOriginal: () => Set,
32
+ SortOrderOriginal: () => SortOrder,
33
+ StatusOriginal: () => Status,
34
+ WebhookIdentityTypeOriginal: () => WebhookIdentityType,
23
35
  cancelOrder: () => cancelOrder2,
24
36
  createOfflineOrder: () => createOfflineOrder2,
25
37
  createOnlineOrder: () => createOnlineOrder2,
@@ -810,6 +822,100 @@ function getPricePreview(payload) {
810
822
  return __getPricePreview;
811
823
  }
812
824
 
825
+ // src/pricing-plans-v2-order-orders.types.ts
826
+ var PeriodUnit = /* @__PURE__ */ ((PeriodUnit2) => {
827
+ PeriodUnit2["UNDEFINED"] = "UNDEFINED";
828
+ PeriodUnit2["DAY"] = "DAY";
829
+ PeriodUnit2["WEEK"] = "WEEK";
830
+ PeriodUnit2["MONTH"] = "MONTH";
831
+ PeriodUnit2["YEAR"] = "YEAR";
832
+ return PeriodUnit2;
833
+ })(PeriodUnit || {});
834
+ var OrderType = /* @__PURE__ */ ((OrderType2) => {
835
+ OrderType2["UNDEFINED"] = "UNDEFINED";
836
+ OrderType2["ONLINE"] = "ONLINE";
837
+ OrderType2["OFFLINE"] = "OFFLINE";
838
+ OrderType2["EXTERNAL"] = "EXTERNAL";
839
+ return OrderType2;
840
+ })(OrderType || {});
841
+ var OrderMethod = /* @__PURE__ */ ((OrderMethod2) => {
842
+ OrderMethod2["UNKNOWN"] = "UNKNOWN";
843
+ OrderMethod2["MOTO"] = "MOTO";
844
+ OrderMethod2["POS"] = "POS";
845
+ return OrderMethod2;
846
+ })(OrderMethod || {});
847
+ var OrderStatus = /* @__PURE__ */ ((OrderStatus2) => {
848
+ OrderStatus2["UNDEFINED"] = "UNDEFINED";
849
+ OrderStatus2["DRAFT"] = "DRAFT";
850
+ OrderStatus2["PENDING"] = "PENDING";
851
+ OrderStatus2["ACTIVE"] = "ACTIVE";
852
+ OrderStatus2["PAUSED"] = "PAUSED";
853
+ OrderStatus2["ENDED"] = "ENDED";
854
+ OrderStatus2["CANCELED"] = "CANCELED";
855
+ return OrderStatus2;
856
+ })(OrderStatus || {});
857
+ var CancellationCause = /* @__PURE__ */ ((CancellationCause2) => {
858
+ CancellationCause2["UNDEFINED"] = "UNDEFINED";
859
+ CancellationCause2["OWNER_ACTION"] = "OWNER_ACTION";
860
+ CancellationCause2["MEMBER_ACTION"] = "MEMBER_ACTION";
861
+ CancellationCause2["PAYMENT_FAILURE"] = "PAYMENT_FAILURE";
862
+ CancellationCause2["PAYMENT_SETUP_FAILURE"] = "PAYMENT_SETUP_FAILURE";
863
+ CancellationCause2["UNKNOWN"] = "UNKNOWN";
864
+ return CancellationCause2;
865
+ })(CancellationCause || {});
866
+ var CancellationEffectiveAt = /* @__PURE__ */ ((CancellationEffectiveAt2) => {
867
+ CancellationEffectiveAt2["UNDEFINED"] = "UNDEFINED";
868
+ CancellationEffectiveAt2["IMMEDIATELY"] = "IMMEDIATELY";
869
+ CancellationEffectiveAt2["NEXT_PAYMENT_DATE"] = "NEXT_PAYMENT_DATE";
870
+ return CancellationEffectiveAt2;
871
+ })(CancellationEffectiveAt || {});
872
+ var PaymentStatus = /* @__PURE__ */ ((PaymentStatus2) => {
873
+ PaymentStatus2["UNDEFINED"] = "UNDEFINED";
874
+ PaymentStatus2["PAID"] = "PAID";
875
+ PaymentStatus2["REFUNDED"] = "REFUNDED";
876
+ PaymentStatus2["FAILED"] = "FAILED";
877
+ PaymentStatus2["UNPAID"] = "UNPAID";
878
+ PaymentStatus2["PENDING"] = "PENDING";
879
+ PaymentStatus2["NOT_APPLICABLE"] = "NOT_APPLICABLE";
880
+ return PaymentStatus2;
881
+ })(PaymentStatus || {});
882
+ var Status = /* @__PURE__ */ ((Status2) => {
883
+ Status2["UNDEFINED"] = "UNDEFINED";
884
+ Status2["ACTIVE"] = "ACTIVE";
885
+ Status2["ENDED"] = "ENDED";
886
+ return Status2;
887
+ })(Status || {});
888
+ var Set = /* @__PURE__ */ ((Set2) => {
889
+ Set2["UNKNOWN_SET"] = "UNKNOWN_SET";
890
+ Set2["BASIC"] = "BASIC";
891
+ Set2["FULL"] = "FULL";
892
+ return Set2;
893
+ })(Set || {});
894
+ var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
895
+ SortOrder2["ASC"] = "ASC";
896
+ SortOrder2["DESC"] = "DESC";
897
+ return SortOrder2;
898
+ })(SortOrder || {});
899
+ var ReasonNotSuspendable = /* @__PURE__ */ ((ReasonNotSuspendable2) => {
900
+ ReasonNotSuspendable2["UNDEFINED"] = "UNDEFINED";
901
+ ReasonNotSuspendable2["PENDING"] = "PENDING";
902
+ ReasonNotSuspendable2["TRIAL"] = "TRIAL";
903
+ ReasonNotSuspendable2["CANCELED"] = "CANCELED";
904
+ ReasonNotSuspendable2["ENDED"] = "ENDED";
905
+ ReasonNotSuspendable2["NOT_STARTED"] = "NOT_STARTED";
906
+ ReasonNotSuspendable2["ALREADY_SUSPENDED"] = "ALREADY_SUSPENDED";
907
+ ReasonNotSuspendable2["OLD_STRIPE"] = "OLD_STRIPE";
908
+ return ReasonNotSuspendable2;
909
+ })(ReasonNotSuspendable || {});
910
+ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
911
+ WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
912
+ WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
913
+ WebhookIdentityType2["MEMBER"] = "MEMBER";
914
+ WebhookIdentityType2["WIX_USER"] = "WIX_USER";
915
+ WebhookIdentityType2["APP"] = "APP";
916
+ return WebhookIdentityType2;
917
+ })(WebhookIdentityType || {});
918
+
813
919
  // src/pricing-plans-v2-order-orders.meta.ts
814
920
  function managementGetOrder2() {
815
921
  const payload = { id: ":id" };
@@ -1083,6 +1189,18 @@ function getPricePreview2() {
1083
1189
  }
1084
1190
  // Annotate the CommonJS export names for ESM import in node:
1085
1191
  0 && (module.exports = {
1192
+ CancellationCauseOriginal,
1193
+ CancellationEffectiveAtOriginal,
1194
+ OrderMethodOriginal,
1195
+ OrderStatusOriginal,
1196
+ OrderTypeOriginal,
1197
+ PaymentStatusOriginal,
1198
+ PeriodUnitOriginal,
1199
+ ReasonNotSuspendableOriginal,
1200
+ SetOriginal,
1201
+ SortOrderOriginal,
1202
+ StatusOriginal,
1203
+ WebhookIdentityTypeOriginal,
1086
1204
  cancelOrder,
1087
1205
  createOfflineOrder,
1088
1206
  createOnlineOrder,