@wix/ecom 1.0.648 → 1.0.649

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/ecom",
3
- "version": "1.0.648",
3
+ "version": "1.0.649",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -35,9 +35,9 @@
35
35
  "@wix/ecom_order-fulfillments": "1.0.31",
36
36
  "@wix/ecom_order-invoices": "1.0.26",
37
37
  "@wix/ecom_order-transactions": "1.0.42",
38
- "@wix/ecom_orders": "1.0.76",
38
+ "@wix/ecom_orders": "1.0.77",
39
39
  "@wix/ecom_orders-settings": "1.0.31",
40
- "@wix/ecom_payment-settings": "1.0.14",
40
+ "@wix/ecom_payment-settings": "1.0.15",
41
41
  "@wix/ecom_recommendations": "1.0.27",
42
42
  "@wix/ecom_shipping-rates": "1.0.19",
43
43
  "@wix/ecom_validations": "1.0.11"
@@ -64,5 +64,5 @@
64
64
  "fqdn": ""
65
65
  }
66
66
  },
67
- "falconPackageHash": "1c3093ad58848ea18e445487e41e891be5ddbb60f8bac65bdc9b332b"
67
+ "falconPackageHash": "d9c5c2dc63c44c9c3d575d48311e6a65c7166b9d3272a965dfb6bd5f"
68
68
  }
@@ -26880,9 +26880,9 @@ interface Order$1 {
26880
26880
  buyerNote?: string | null;
26881
26881
  /**
26882
26882
  * Order status.
26883
- * + `INITIALIZED` - Order was created, but not yet approved or declined.
26884
- * + `APPROVED` - Order was approved. This happens when either the online payment succeeded or the order is an offline order. Once an order is approved, many side effects are triggered. For example, holding of stock in the inventory and sending of notification emails.
26885
- * + `CANCELED` - Order was canceled by the user.
26883
+ * + `INITIALIZED`: Order created, but not yet approved or canceled.
26884
+ * + `APPROVED`: Order approved. This happens when either an online payment is received **or** when `order.priceSummary.total = 0` (a zero-total order). Offline orders (cash payment) are automatically approved.
26885
+ * + `CANCELED`: Order canceled by the user.
26886
26886
  */
26887
26887
  status?: OrderStatus;
26888
26888
  /** Whether order is archived. */
@@ -32832,9 +32832,9 @@ interface UpdateOrder {
32832
32832
  buyerNote?: string | null;
32833
32833
  /**
32834
32834
  * Order status.
32835
- * + `INITIALIZED` - Order was created, but not yet approved or declined.
32836
- * + `APPROVED` - Order was approved. This happens when either the online payment succeeded or the order is an offline order. Once an order is approved, many side effects are triggered. For example, holding of stock in the inventory and sending of notification emails.
32837
- * + `CANCELED` - Order was canceled by the user.
32835
+ * + `INITIALIZED`: Order created, but not yet approved or canceled.
32836
+ * + `APPROVED`: Order approved. This happens when either an online payment is received **or** when `order.priceSummary.total = 0` (a zero-total order). Offline orders (cash payment) are automatically approved.
32837
+ * + `CANCELED`: Order canceled by the user.
32838
32838
  */
32839
32839
  status?: OrderStatus;
32840
32840
  /** Whether order is archived. */
@@ -37683,9 +37683,9 @@ interface Order$1 {
37683
37683
  buyerNote?: string | null;
37684
37684
  /**
37685
37685
  * Order status.
37686
- * + `INITIALIZED` - Order was created, but not yet approved or declined.
37687
- * + `APPROVED` - Order was approved. This happens when either the online payment succeeded or the order is an offline order. Once an order is approved, many side effects are triggered. For example, holding of stock in the inventory and sending of notification emails.
37688
- * + `CANCELED` - Order was canceled by the user.
37686
+ * + `INITIALIZED`: Order created, but not yet approved or canceled.
37687
+ * + `APPROVED`: Order approved. This happens when either an online payment is received **or** when `order.priceSummary.total = 0` (a zero-total order). Offline orders (cash payment) are automatically approved.
37688
+ * + `CANCELED`: Order canceled by the user.
37689
37689
  */
37690
37690
  status?: OrderStatus$1;
37691
37691
  /** Whether order is archived. */
@@ -41989,9 +41989,9 @@ interface Order {
41989
41989
  buyerNote?: string | null;
41990
41990
  /**
41991
41991
  * Order status.
41992
- * + `INITIALIZED` - Order was created, but not yet approved or declined.
41993
- * + `APPROVED` - Order was approved. This happens when either the online payment succeeded or the order is an offline order. Once an order is approved, many side effects are triggered. For example, holding of stock in the inventory and sending of notification emails.
41994
- * + `CANCELED` - Order was canceled by the user.
41992
+ * + `INITIALIZED`: Order created, but not yet approved or canceled.
41993
+ * + `APPROVED`: Order approved. This happens when either an online payment is received **or** when `order.priceSummary.total = 0` (a zero-total order). Offline orders (cash payment) are automatically approved.
41994
+ * + `CANCELED`: Order canceled by the user.
41995
41995
  */
41996
41996
  status?: OrderStatus;
41997
41997
  /** Whether order is archived. */
@@ -1266,9 +1266,9 @@ interface Order {
1266
1266
  buyerNote?: string | null;
1267
1267
  /**
1268
1268
  * Order status.
1269
- * + `INITIALIZED` - Order was created, but not yet approved or declined.
1270
- * + `APPROVED` - Order was approved. This happens when either the online payment succeeded or the order is an offline order. Once an order is approved, many side effects are triggered. For example, holding of stock in the inventory and sending of notification emails.
1271
- * + `CANCELED` - Order was canceled by the user.
1269
+ * + `INITIALIZED`: Order created, but not yet approved or canceled.
1270
+ * + `APPROVED`: Order approved. This happens when either an online payment is received **or** when `order.priceSummary.total = 0` (a zero-total order). Offline orders (cash payment) are automatically approved.
1271
+ * + `CANCELED`: Order canceled by the user.
1272
1272
  */
1273
1273
  status?: OrderStatus;
1274
1274
  /** Whether order is archived. */
@@ -1261,9 +1261,9 @@ interface Order {
1261
1261
  buyerNote?: string | null;
1262
1262
  /**
1263
1263
  * Order status.
1264
- * + `INITIALIZED` - Order was created, but not yet approved or declined.
1265
- * + `APPROVED` - Order was approved. This happens when either the online payment succeeded or the order is an offline order. Once an order is approved, many side effects are triggered. For example, holding of stock in the inventory and sending of notification emails.
1266
- * + `CANCELED` - Order was canceled by the user.
1264
+ * + `INITIALIZED`: Order created, but not yet approved or canceled.
1265
+ * + `APPROVED`: Order approved. This happens when either an online payment is received **or** when `order.priceSummary.total = 0` (a zero-total order). Offline orders (cash payment) are automatically approved.
1266
+ * + `CANCELED`: Order canceled by the user.
1267
1267
  */
1268
1268
  status?: OrderStatus;
1269
1269
  /** Whether order is archived. */