@wix/ecom 1.0.856 → 1.0.858

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.856",
3
+ "version": "1.0.858",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -34,12 +34,12 @@
34
34
  "@wix/ecom_currencies": "1.0.45",
35
35
  "@wix/ecom_current-cart": "1.0.110",
36
36
  "@wix/ecom_custom-triggers": "1.0.31",
37
- "@wix/ecom_delivery-profile": "1.0.35",
37
+ "@wix/ecom_delivery-profile": "1.0.36",
38
38
  "@wix/ecom_delivery-solutions": "1.0.13",
39
39
  "@wix/ecom_discount-rules": "1.0.63",
40
40
  "@wix/ecom_discounts": "1.0.14",
41
41
  "@wix/ecom_discounts-custom-trigger": "1.0.17",
42
- "@wix/ecom_draft-orders": "1.0.47",
42
+ "@wix/ecom_draft-orders": "1.0.48",
43
43
  "@wix/ecom_gift-vouchers": "1.0.13",
44
44
  "@wix/ecom_gift-vouchers-provider": "1.0.12",
45
45
  "@wix/ecom_local-delivery-options": "1.0.21",
@@ -48,9 +48,9 @@
48
48
  "@wix/ecom_order-invoices": "1.0.48",
49
49
  "@wix/ecom_order-payment-requests": "1.0.20",
50
50
  "@wix/ecom_order-transactions": "1.0.80",
51
- "@wix/ecom_orders": "1.0.155",
51
+ "@wix/ecom_orders": "1.0.156",
52
52
  "@wix/ecom_orders-settings": "1.0.55",
53
- "@wix/ecom_payment-settings": "1.0.81",
53
+ "@wix/ecom_payment-settings": "1.0.82",
54
54
  "@wix/ecom_pickup-locations": "1.0.18",
55
55
  "@wix/ecom_recommendations": "1.0.52",
56
56
  "@wix/ecom_recommendations-provider": "1.0.12",
@@ -87,5 +87,5 @@
87
87
  "fqdn": ""
88
88
  }
89
89
  },
90
- "falconPackageHash": "9f6ff1b12b1ea6455825aa8a7f60f92e7354d1fb9f5566525cfd2726"
90
+ "falconPackageHash": "f097bc7dea71e673087c759cee4a62bd5de63ef906e195f46b04f72b"
91
91
  }
@@ -18202,7 +18202,9 @@ declare enum Namespace$1 {
18202
18202
  */
18203
18203
  UGC_TEMPLATE = "UGC_TEMPLATE",
18204
18204
  /** Codux Headless Sites */
18205
- CODUX = "CODUX"
18205
+ CODUX = "CODUX",
18206
+ /** Bobb - AI Design Creator. */
18207
+ MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
18206
18208
  }
18207
18209
  /** Site transferred to another user. */
18208
18210
  interface SiteTransferred {
@@ -20688,7 +20690,13 @@ declare enum PaymentStatus$2 {
20688
20690
  /** Payments received but not yet confirmed by the payment provider */
20689
20691
  PENDING = "PENDING",
20690
20692
  /** At least one payment was received and approved, covering less than total price amount */
20691
- PARTIALLY_PAID = "PARTIALLY_PAID"
20693
+ PARTIALLY_PAID = "PARTIALLY_PAID",
20694
+ /** Payment received but not yet confirmed by the payment provider and waits for some user action */
20695
+ PENDING_MERCHANT = "PENDING_MERCHANT",
20696
+ /** Payment was canceled by user on payment provider side */
20697
+ CANCELED = "CANCELED",
20698
+ /** Payment was declined by payment provider */
20699
+ DECLINED = "DECLINED"
20692
20700
  }
20693
20701
  declare enum FulfillmentStatus$3 {
20694
20702
  /** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
@@ -20704,7 +20712,9 @@ declare enum FulfillmentStatus$3 {
20704
20712
  declare enum OrderStatus$1 {
20705
20713
  INITIALIZED = "INITIALIZED",
20706
20714
  APPROVED = "APPROVED",
20707
- CANCELED = "CANCELED"
20715
+ CANCELED = "CANCELED",
20716
+ PENDING = "PENDING",
20717
+ REJECTED = "REJECTED"
20708
20718
  }
20709
20719
  interface Activity$2 extends ActivityContentOneOf$1 {
20710
20720
  /** Custom activity details (optional). `activity.type` must be `CUSTOM_ACTIVITY`. */
@@ -21079,7 +21089,12 @@ declare enum ActivityType$2 {
21079
21089
  NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
21080
21090
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
21081
21091
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
21082
- SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD"
21092
+ SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
21093
+ PAYMENT_PENDING = "PAYMENT_PENDING",
21094
+ PAYMENT_CANCELED = "PAYMENT_CANCELED",
21095
+ PAYMENT_DECLINED = "PAYMENT_DECLINED",
21096
+ ORDER_PENDING = "ORDER_PENDING",
21097
+ ORDER_REJECTED = "ORDER_REJECTED"
21083
21098
  }
21084
21099
  declare enum AttributionSource$1 {
21085
21100
  UNSPECIFIED = "UNSPECIFIED",
@@ -21169,6 +21184,11 @@ interface V1BalanceSummary {
21169
21184
  * @readonly
21170
21185
  */
21171
21186
  authorized?: Price$4;
21187
+ /**
21188
+ * Sum of all pending transactions.
21189
+ * @readonly
21190
+ */
21191
+ pending?: Price$4;
21172
21192
  }
21173
21193
  interface FulfillmentStatusesAggregate$1 {
21174
21194
  /** Unique string values based on Fulfillment entities statuses */
@@ -24767,7 +24787,13 @@ declare enum PaymentStatus$1 {
24767
24787
  /** Payments received but not yet confirmed by the payment provider */
24768
24788
  PENDING = "PENDING",
24769
24789
  /** At least one payment was received and approved, covering less than total price amount */
24770
- PARTIALLY_PAID = "PARTIALLY_PAID"
24790
+ PARTIALLY_PAID = "PARTIALLY_PAID",
24791
+ /** Payment received but not yet confirmed by the payment provider and waits for some user action */
24792
+ PENDING_MERCHANT = "PENDING_MERCHANT",
24793
+ /** Payment was canceled by user on payment provider side */
24794
+ CANCELED = "CANCELED",
24795
+ /** Payment was declined by payment provider */
24796
+ DECLINED = "DECLINED"
24771
24797
  }
24772
24798
  declare enum FulfillmentStatus$1 {
24773
24799
  /** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
@@ -24974,7 +25000,9 @@ interface ShippingRegion$1 {
24974
25000
  declare enum OrderStatus {
24975
25001
  INITIALIZED = "INITIALIZED",
24976
25002
  APPROVED = "APPROVED",
24977
- CANCELED = "CANCELED"
25003
+ CANCELED = "CANCELED",
25004
+ PENDING = "PENDING",
25005
+ REJECTED = "REJECTED"
24978
25006
  }
24979
25007
  interface TaxSummary$1 {
24980
25008
  /**
@@ -25483,7 +25511,12 @@ declare enum ActivityType$1 {
25483
25511
  NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
25484
25512
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
25485
25513
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
25486
- SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD"
25514
+ SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
25515
+ PAYMENT_PENDING = "PAYMENT_PENDING",
25516
+ PAYMENT_CANCELED = "PAYMENT_CANCELED",
25517
+ PAYMENT_DECLINED = "PAYMENT_DECLINED",
25518
+ ORDER_PENDING = "ORDER_PENDING",
25519
+ ORDER_REJECTED = "ORDER_REJECTED"
25487
25520
  }
25488
25521
  declare enum AttributionSource {
25489
25522
  UNSPECIFIED = "UNSPECIFIED",
@@ -25573,6 +25606,11 @@ interface BalanceSummary {
25573
25606
  * @readonly
25574
25607
  */
25575
25608
  authorized?: Price$3;
25609
+ /**
25610
+ * Sum of all pending transactions.
25611
+ * @readonly
25612
+ */
25613
+ pending?: Price$3;
25576
25614
  }
25577
25615
  /**
25578
25616
  * Order balance. Reflects amount left to be paid on order and is calculated dynamically. Can be negative per balance definition.
@@ -25941,7 +25979,9 @@ declare enum Namespace {
25941
25979
  */
25942
25980
  UGC_TEMPLATE = "UGC_TEMPLATE",
25943
25981
  /** Codux Headless Sites */
25944
- CODUX = "CODUX"
25982
+ CODUX = "CODUX",
25983
+ /** Bobb - AI Design Creator. */
25984
+ MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
25945
25985
  }
25946
25986
  interface SeoData {
25947
25987
  /** A title. */
@@ -27751,6 +27791,16 @@ interface InternalActivity extends InternalActivityContentOneOf {
27751
27791
  draftOrderChangesApplied?: DraftOrderChangesApplied;
27752
27792
  /** Payment method is saved for order */
27753
27793
  savedPaymentMethod?: SavedPaymentMethod;
27794
+ /** Details of a pending payment */
27795
+ paymentPending?: PaymentPending;
27796
+ /** Details of a canceled payment */
27797
+ paymentCanceled?: PaymentCanceled;
27798
+ /** Details of a declined payment */
27799
+ paymentDeclined?: PaymentDeclined;
27800
+ /** Order pending */
27801
+ orderPending?: OrderPending;
27802
+ /** Order rejected */
27803
+ orderRejected?: OrderRejected;
27754
27804
  /**
27755
27805
  * Internal activity ID.
27756
27806
  * @readonly
@@ -27813,6 +27863,16 @@ interface InternalActivityContentOneOf {
27813
27863
  draftOrderChangesApplied?: DraftOrderChangesApplied;
27814
27864
  /** Payment method is saved for order */
27815
27865
  savedPaymentMethod?: SavedPaymentMethod;
27866
+ /** Details of a pending payment */
27867
+ paymentPending?: PaymentPending;
27868
+ /** Details of a canceled payment */
27869
+ paymentCanceled?: PaymentCanceled;
27870
+ /** Details of a declined payment */
27871
+ paymentDeclined?: PaymentDeclined;
27872
+ /** Order pending */
27873
+ orderPending?: OrderPending;
27874
+ /** Order rejected */
27875
+ orderRejected?: OrderRejected;
27816
27876
  }
27817
27877
  /** Order placed */
27818
27878
  interface OrderPlaced {
@@ -18202,7 +18202,9 @@ declare enum Namespace$1 {
18202
18202
  */
18203
18203
  UGC_TEMPLATE = "UGC_TEMPLATE",
18204
18204
  /** Codux Headless Sites */
18205
- CODUX = "CODUX"
18205
+ CODUX = "CODUX",
18206
+ /** Bobb - AI Design Creator. */
18207
+ MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
18206
18208
  }
18207
18209
  /** Site transferred to another user. */
18208
18210
  interface SiteTransferred {
@@ -20688,7 +20690,13 @@ declare enum PaymentStatus$2 {
20688
20690
  /** Payments received but not yet confirmed by the payment provider */
20689
20691
  PENDING = "PENDING",
20690
20692
  /** At least one payment was received and approved, covering less than total price amount */
20691
- PARTIALLY_PAID = "PARTIALLY_PAID"
20693
+ PARTIALLY_PAID = "PARTIALLY_PAID",
20694
+ /** Payment received but not yet confirmed by the payment provider and waits for some user action */
20695
+ PENDING_MERCHANT = "PENDING_MERCHANT",
20696
+ /** Payment was canceled by user on payment provider side */
20697
+ CANCELED = "CANCELED",
20698
+ /** Payment was declined by payment provider */
20699
+ DECLINED = "DECLINED"
20692
20700
  }
20693
20701
  declare enum FulfillmentStatus$3 {
20694
20702
  /** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
@@ -20704,7 +20712,9 @@ declare enum FulfillmentStatus$3 {
20704
20712
  declare enum OrderStatus$1 {
20705
20713
  INITIALIZED = "INITIALIZED",
20706
20714
  APPROVED = "APPROVED",
20707
- CANCELED = "CANCELED"
20715
+ CANCELED = "CANCELED",
20716
+ PENDING = "PENDING",
20717
+ REJECTED = "REJECTED"
20708
20718
  }
20709
20719
  interface Activity$2 extends ActivityContentOneOf$1 {
20710
20720
  /** Custom activity details (optional). `activity.type` must be `CUSTOM_ACTIVITY`. */
@@ -21079,7 +21089,12 @@ declare enum ActivityType$2 {
21079
21089
  NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
21080
21090
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
21081
21091
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
21082
- SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD"
21092
+ SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
21093
+ PAYMENT_PENDING = "PAYMENT_PENDING",
21094
+ PAYMENT_CANCELED = "PAYMENT_CANCELED",
21095
+ PAYMENT_DECLINED = "PAYMENT_DECLINED",
21096
+ ORDER_PENDING = "ORDER_PENDING",
21097
+ ORDER_REJECTED = "ORDER_REJECTED"
21083
21098
  }
21084
21099
  declare enum AttributionSource$1 {
21085
21100
  UNSPECIFIED = "UNSPECIFIED",
@@ -21169,6 +21184,11 @@ interface V1BalanceSummary {
21169
21184
  * @readonly
21170
21185
  */
21171
21186
  authorized?: Price$4;
21187
+ /**
21188
+ * Sum of all pending transactions.
21189
+ * @readonly
21190
+ */
21191
+ pending?: Price$4;
21172
21192
  }
21173
21193
  interface FulfillmentStatusesAggregate$1 {
21174
21194
  /** Unique string values based on Fulfillment entities statuses */
@@ -24767,7 +24787,13 @@ declare enum PaymentStatus$1 {
24767
24787
  /** Payments received but not yet confirmed by the payment provider */
24768
24788
  PENDING = "PENDING",
24769
24789
  /** At least one payment was received and approved, covering less than total price amount */
24770
- PARTIALLY_PAID = "PARTIALLY_PAID"
24790
+ PARTIALLY_PAID = "PARTIALLY_PAID",
24791
+ /** Payment received but not yet confirmed by the payment provider and waits for some user action */
24792
+ PENDING_MERCHANT = "PENDING_MERCHANT",
24793
+ /** Payment was canceled by user on payment provider side */
24794
+ CANCELED = "CANCELED",
24795
+ /** Payment was declined by payment provider */
24796
+ DECLINED = "DECLINED"
24771
24797
  }
24772
24798
  declare enum FulfillmentStatus$1 {
24773
24799
  /** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
@@ -24974,7 +25000,9 @@ interface ShippingRegion$1 {
24974
25000
  declare enum OrderStatus {
24975
25001
  INITIALIZED = "INITIALIZED",
24976
25002
  APPROVED = "APPROVED",
24977
- CANCELED = "CANCELED"
25003
+ CANCELED = "CANCELED",
25004
+ PENDING = "PENDING",
25005
+ REJECTED = "REJECTED"
24978
25006
  }
24979
25007
  interface TaxSummary$1 {
24980
25008
  /**
@@ -25483,7 +25511,12 @@ declare enum ActivityType$1 {
25483
25511
  NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
25484
25512
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
25485
25513
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
25486
- SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD"
25514
+ SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
25515
+ PAYMENT_PENDING = "PAYMENT_PENDING",
25516
+ PAYMENT_CANCELED = "PAYMENT_CANCELED",
25517
+ PAYMENT_DECLINED = "PAYMENT_DECLINED",
25518
+ ORDER_PENDING = "ORDER_PENDING",
25519
+ ORDER_REJECTED = "ORDER_REJECTED"
25487
25520
  }
25488
25521
  declare enum AttributionSource {
25489
25522
  UNSPECIFIED = "UNSPECIFIED",
@@ -25573,6 +25606,11 @@ interface BalanceSummary {
25573
25606
  * @readonly
25574
25607
  */
25575
25608
  authorized?: Price$3;
25609
+ /**
25610
+ * Sum of all pending transactions.
25611
+ * @readonly
25612
+ */
25613
+ pending?: Price$3;
25576
25614
  }
25577
25615
  /**
25578
25616
  * Order balance. Reflects amount left to be paid on order and is calculated dynamically. Can be negative per balance definition.
@@ -25941,7 +25979,9 @@ declare enum Namespace {
25941
25979
  */
25942
25980
  UGC_TEMPLATE = "UGC_TEMPLATE",
25943
25981
  /** Codux Headless Sites */
25944
- CODUX = "CODUX"
25982
+ CODUX = "CODUX",
25983
+ /** Bobb - AI Design Creator. */
25984
+ MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
25945
25985
  }
25946
25986
  interface SeoData {
25947
25987
  /** A title. */
@@ -27751,6 +27791,16 @@ interface InternalActivity extends InternalActivityContentOneOf {
27751
27791
  draftOrderChangesApplied?: DraftOrderChangesApplied;
27752
27792
  /** Payment method is saved for order */
27753
27793
  savedPaymentMethod?: SavedPaymentMethod;
27794
+ /** Details of a pending payment */
27795
+ paymentPending?: PaymentPending;
27796
+ /** Details of a canceled payment */
27797
+ paymentCanceled?: PaymentCanceled;
27798
+ /** Details of a declined payment */
27799
+ paymentDeclined?: PaymentDeclined;
27800
+ /** Order pending */
27801
+ orderPending?: OrderPending;
27802
+ /** Order rejected */
27803
+ orderRejected?: OrderRejected;
27754
27804
  /**
27755
27805
  * Internal activity ID.
27756
27806
  * @readonly
@@ -27813,6 +27863,16 @@ interface InternalActivityContentOneOf {
27813
27863
  draftOrderChangesApplied?: DraftOrderChangesApplied;
27814
27864
  /** Payment method is saved for order */
27815
27865
  savedPaymentMethod?: SavedPaymentMethod;
27866
+ /** Details of a pending payment */
27867
+ paymentPending?: PaymentPending;
27868
+ /** Details of a canceled payment */
27869
+ paymentCanceled?: PaymentCanceled;
27870
+ /** Details of a declined payment */
27871
+ paymentDeclined?: PaymentDeclined;
27872
+ /** Order pending */
27873
+ orderPending?: OrderPending;
27874
+ /** Order rejected */
27875
+ orderRejected?: OrderRejected;
27816
27876
  }
27817
27877
  /** Order placed */
27818
27878
  interface OrderPlaced {
@@ -22677,7 +22677,13 @@ declare enum PaymentStatus$3 {
22677
22677
  /** Payments received but not yet confirmed by the payment provider */
22678
22678
  PENDING = "PENDING",
22679
22679
  /** At least one payment was received and approved, covering less than total price amount */
22680
- PARTIALLY_PAID = "PARTIALLY_PAID"
22680
+ PARTIALLY_PAID = "PARTIALLY_PAID",
22681
+ /** Payment received but not yet confirmed by the payment provider and waits for some user action */
22682
+ PENDING_MERCHANT = "PENDING_MERCHANT",
22683
+ /** Payment was canceled by user on payment provider side */
22684
+ CANCELED = "CANCELED",
22685
+ /** Payment was declined by payment provider */
22686
+ DECLINED = "DECLINED"
22681
22687
  }
22682
22688
  declare enum FulfillmentStatus$3 {
22683
22689
  /** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
@@ -22693,7 +22699,9 @@ declare enum FulfillmentStatus$3 {
22693
22699
  declare enum OrderStatus$3 {
22694
22700
  INITIALIZED = "INITIALIZED",
22695
22701
  APPROVED = "APPROVED",
22696
- CANCELED = "CANCELED"
22702
+ CANCELED = "CANCELED",
22703
+ PENDING = "PENDING",
22704
+ REJECTED = "REJECTED"
22697
22705
  }
22698
22706
  interface Activity$3 extends ActivityContentOneOf$3 {
22699
22707
  /** Custom activity details (optional). `activity.type` must be `CUSTOM_ACTIVITY`. */
@@ -22781,7 +22789,12 @@ declare enum ActivityType$3 {
22781
22789
  NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
22782
22790
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
22783
22791
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
22784
- SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD"
22792
+ SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
22793
+ PAYMENT_PENDING = "PAYMENT_PENDING",
22794
+ PAYMENT_CANCELED = "PAYMENT_CANCELED",
22795
+ PAYMENT_DECLINED = "PAYMENT_DECLINED",
22796
+ ORDER_PENDING = "ORDER_PENDING",
22797
+ ORDER_REJECTED = "ORDER_REJECTED"
22785
22798
  }
22786
22799
  declare enum AttributionSource$3 {
22787
22800
  UNSPECIFIED = "UNSPECIFIED",
@@ -22871,6 +22884,11 @@ interface V1BalanceSummary$1 {
22871
22884
  * @readonly
22872
22885
  */
22873
22886
  authorized?: Price$9;
22887
+ /**
22888
+ * Sum of all pending transactions.
22889
+ * @readonly
22890
+ */
22891
+ pending?: Price$9;
22874
22892
  }
22875
22893
  interface CreateOrderFromDraftRequest$1 {
22876
22894
  }
@@ -25279,7 +25297,13 @@ declare enum PaymentStatus$2 {
25279
25297
  /** Payments received but not yet confirmed by the payment provider */
25280
25298
  PENDING = "PENDING",
25281
25299
  /** At least one payment was received and approved, covering less than total price amount */
25282
- PARTIALLY_PAID = "PARTIALLY_PAID"
25300
+ PARTIALLY_PAID = "PARTIALLY_PAID",
25301
+ /** Payment received but not yet confirmed by the payment provider and waits for some user action */
25302
+ PENDING_MERCHANT = "PENDING_MERCHANT",
25303
+ /** Payment was canceled by user on payment provider side */
25304
+ CANCELED = "CANCELED",
25305
+ /** Payment was declined by payment provider */
25306
+ DECLINED = "DECLINED"
25283
25307
  }
25284
25308
  declare enum FulfillmentStatus$2 {
25285
25309
  /** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
@@ -25295,7 +25319,9 @@ declare enum FulfillmentStatus$2 {
25295
25319
  declare enum OrderStatus$2 {
25296
25320
  INITIALIZED = "INITIALIZED",
25297
25321
  APPROVED = "APPROVED",
25298
- CANCELED = "CANCELED"
25322
+ CANCELED = "CANCELED",
25323
+ PENDING = "PENDING",
25324
+ REJECTED = "REJECTED"
25299
25325
  }
25300
25326
  interface Activity$2 extends ActivityContentOneOf$2 {
25301
25327
  /** Custom activity details (optional). `activity.type` must be `CUSTOM_ACTIVITY`. */
@@ -25383,7 +25409,12 @@ declare enum ActivityType$2 {
25383
25409
  NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
25384
25410
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
25385
25411
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
25386
- SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD"
25412
+ SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
25413
+ PAYMENT_PENDING = "PAYMENT_PENDING",
25414
+ PAYMENT_CANCELED = "PAYMENT_CANCELED",
25415
+ PAYMENT_DECLINED = "PAYMENT_DECLINED",
25416
+ ORDER_PENDING = "ORDER_PENDING",
25417
+ ORDER_REJECTED = "ORDER_REJECTED"
25387
25418
  }
25388
25419
  declare enum AttributionSource$2 {
25389
25420
  UNSPECIFIED = "UNSPECIFIED",
@@ -25473,6 +25504,11 @@ interface V1BalanceSummary {
25473
25504
  * @readonly
25474
25505
  */
25475
25506
  authorized?: Price$8;
25507
+ /**
25508
+ * Sum of all pending transactions.
25509
+ * @readonly
25510
+ */
25511
+ pending?: Price$8;
25476
25512
  }
25477
25513
  interface CreateOrderFromDraftRequest {
25478
25514
  }
@@ -28479,7 +28515,13 @@ declare enum PaymentStatus$1 {
28479
28515
  /** Payments received but not yet confirmed by the payment provider */
28480
28516
  PENDING = "PENDING",
28481
28517
  /** At least one payment was received and approved, covering less than total price amount */
28482
- PARTIALLY_PAID = "PARTIALLY_PAID"
28518
+ PARTIALLY_PAID = "PARTIALLY_PAID",
28519
+ /** Payment received but not yet confirmed by the payment provider and waits for some user action */
28520
+ PENDING_MERCHANT = "PENDING_MERCHANT",
28521
+ /** Payment was canceled by user on payment provider side */
28522
+ CANCELED = "CANCELED",
28523
+ /** Payment was declined by payment provider */
28524
+ DECLINED = "DECLINED"
28483
28525
  }
28484
28526
  declare enum FulfillmentStatus$1 {
28485
28527
  /** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
@@ -28700,7 +28742,9 @@ interface ShippingRegion$3 {
28700
28742
  declare enum OrderStatus$1 {
28701
28743
  INITIALIZED = "INITIALIZED",
28702
28744
  APPROVED = "APPROVED",
28703
- CANCELED = "CANCELED"
28745
+ CANCELED = "CANCELED",
28746
+ PENDING = "PENDING",
28747
+ REJECTED = "REJECTED"
28704
28748
  }
28705
28749
  interface TaxSummary$3 {
28706
28750
  /**
@@ -28916,7 +28960,12 @@ declare enum ActivityType$1 {
28916
28960
  NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
28917
28961
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
28918
28962
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
28919
- SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD"
28963
+ SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
28964
+ PAYMENT_PENDING = "PAYMENT_PENDING",
28965
+ PAYMENT_CANCELED = "PAYMENT_CANCELED",
28966
+ PAYMENT_DECLINED = "PAYMENT_DECLINED",
28967
+ ORDER_PENDING = "ORDER_PENDING",
28968
+ ORDER_REJECTED = "ORDER_REJECTED"
28920
28969
  }
28921
28970
  declare enum AttributionSource$1 {
28922
28971
  UNSPECIFIED = "UNSPECIFIED",
@@ -29006,6 +29055,11 @@ interface BalanceSummary$1 {
29006
29055
  * @readonly
29007
29056
  */
29008
29057
  authorized?: Price$7;
29058
+ /**
29059
+ * Sum of all pending transactions.
29060
+ * @readonly
29061
+ */
29062
+ pending?: Price$7;
29009
29063
  }
29010
29064
  /**
29011
29065
  * Order balance. Reflects amount left to be paid on order and is calculated dynamically. Can be negative per balance definition.
@@ -30780,7 +30834,13 @@ declare enum PaymentStatus {
30780
30834
  /** Payments received but not yet confirmed by the payment provider */
30781
30835
  PENDING = "PENDING",
30782
30836
  /** At least one payment was received and approved, covering less than total price amount */
30783
- PARTIALLY_PAID = "PARTIALLY_PAID"
30837
+ PARTIALLY_PAID = "PARTIALLY_PAID",
30838
+ /** Payment received but not yet confirmed by the payment provider and waits for some user action */
30839
+ PENDING_MERCHANT = "PENDING_MERCHANT",
30840
+ /** Payment was canceled by user on payment provider side */
30841
+ CANCELED = "CANCELED",
30842
+ /** Payment was declined by payment provider */
30843
+ DECLINED = "DECLINED"
30784
30844
  }
30785
30845
  declare enum FulfillmentStatus {
30786
30846
  /** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
@@ -30981,7 +31041,9 @@ interface ShippingRegion$2 {
30981
31041
  declare enum OrderStatus {
30982
31042
  INITIALIZED = "INITIALIZED",
30983
31043
  APPROVED = "APPROVED",
30984
- CANCELED = "CANCELED"
31044
+ CANCELED = "CANCELED",
31045
+ PENDING = "PENDING",
31046
+ REJECTED = "REJECTED"
30985
31047
  }
30986
31048
  interface TaxSummary$2 {
30987
31049
  /**
@@ -31197,7 +31259,12 @@ declare enum ActivityType {
31197
31259
  NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
31198
31260
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
31199
31261
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
31200
- SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD"
31262
+ SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
31263
+ PAYMENT_PENDING = "PAYMENT_PENDING",
31264
+ PAYMENT_CANCELED = "PAYMENT_CANCELED",
31265
+ PAYMENT_DECLINED = "PAYMENT_DECLINED",
31266
+ ORDER_PENDING = "ORDER_PENDING",
31267
+ ORDER_REJECTED = "ORDER_REJECTED"
31201
31268
  }
31202
31269
  declare enum AttributionSource {
31203
31270
  UNSPECIFIED = "UNSPECIFIED",
@@ -31287,6 +31354,11 @@ interface BalanceSummary {
31287
31354
  * @readonly
31288
31355
  */
31289
31356
  authorized?: Price$6;
31357
+ /**
31358
+ * Sum of all pending transactions.
31359
+ * @readonly
31360
+ */
31361
+ pending?: Price$6;
31290
31362
  }
31291
31363
  /**
31292
31364
  * Order balance. Reflects amount left to be paid on order and is calculated dynamically. Can be negative per balance definition.
@@ -3281,7 +3281,13 @@ declare enum PaymentStatus {
3281
3281
  /** Payments received but not yet confirmed by the payment provider */
3282
3282
  PENDING = "PENDING",
3283
3283
  /** At least one payment was received and approved, covering less than total price amount */
3284
- PARTIALLY_PAID = "PARTIALLY_PAID"
3284
+ PARTIALLY_PAID = "PARTIALLY_PAID",
3285
+ /** Payment received but not yet confirmed by the payment provider and waits for some user action */
3286
+ PENDING_MERCHANT = "PENDING_MERCHANT",
3287
+ /** Payment was canceled by user on payment provider side */
3288
+ CANCELED = "CANCELED",
3289
+ /** Payment was declined by payment provider */
3290
+ DECLINED = "DECLINED"
3285
3291
  }
3286
3292
  declare enum FulfillmentStatus {
3287
3293
  /** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
@@ -3488,7 +3494,9 @@ interface ShippingRegion {
3488
3494
  declare enum OrderStatus {
3489
3495
  INITIALIZED = "INITIALIZED",
3490
3496
  APPROVED = "APPROVED",
3491
- CANCELED = "CANCELED"
3497
+ CANCELED = "CANCELED",
3498
+ PENDING = "PENDING",
3499
+ REJECTED = "REJECTED"
3492
3500
  }
3493
3501
  interface TaxSummary {
3494
3502
  /**
@@ -3997,7 +4005,12 @@ declare enum ActivityType {
3997
4005
  NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
3998
4006
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
3999
4007
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
4000
- SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD"
4008
+ SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
4009
+ PAYMENT_PENDING = "PAYMENT_PENDING",
4010
+ PAYMENT_CANCELED = "PAYMENT_CANCELED",
4011
+ PAYMENT_DECLINED = "PAYMENT_DECLINED",
4012
+ ORDER_PENDING = "ORDER_PENDING",
4013
+ ORDER_REJECTED = "ORDER_REJECTED"
4001
4014
  }
4002
4015
  declare enum AttributionSource {
4003
4016
  UNSPECIFIED = "UNSPECIFIED",
@@ -4087,6 +4100,11 @@ interface BalanceSummary {
4087
4100
  * @readonly
4088
4101
  */
4089
4102
  authorized?: Price;
4103
+ /**
4104
+ * Sum of all pending transactions.
4105
+ * @readonly
4106
+ */
4107
+ pending?: Price;
4090
4108
  }
4091
4109
  /**
4092
4110
  * Order balance. Reflects amount left to be paid on order and is calculated dynamically. Can be negative per balance definition.
@@ -3281,7 +3281,13 @@ declare enum PaymentStatus {
3281
3281
  /** Payments received but not yet confirmed by the payment provider */
3282
3282
  PENDING = "PENDING",
3283
3283
  /** At least one payment was received and approved, covering less than total price amount */
3284
- PARTIALLY_PAID = "PARTIALLY_PAID"
3284
+ PARTIALLY_PAID = "PARTIALLY_PAID",
3285
+ /** Payment received but not yet confirmed by the payment provider and waits for some user action */
3286
+ PENDING_MERCHANT = "PENDING_MERCHANT",
3287
+ /** Payment was canceled by user on payment provider side */
3288
+ CANCELED = "CANCELED",
3289
+ /** Payment was declined by payment provider */
3290
+ DECLINED = "DECLINED"
3285
3291
  }
3286
3292
  declare enum FulfillmentStatus {
3287
3293
  /** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
@@ -3488,7 +3494,9 @@ interface ShippingRegion {
3488
3494
  declare enum OrderStatus {
3489
3495
  INITIALIZED = "INITIALIZED",
3490
3496
  APPROVED = "APPROVED",
3491
- CANCELED = "CANCELED"
3497
+ CANCELED = "CANCELED",
3498
+ PENDING = "PENDING",
3499
+ REJECTED = "REJECTED"
3492
3500
  }
3493
3501
  interface TaxSummary {
3494
3502
  /**
@@ -3997,7 +4005,12 @@ declare enum ActivityType {
3997
4005
  NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
3998
4006
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
3999
4007
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
4000
- SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD"
4008
+ SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
4009
+ PAYMENT_PENDING = "PAYMENT_PENDING",
4010
+ PAYMENT_CANCELED = "PAYMENT_CANCELED",
4011
+ PAYMENT_DECLINED = "PAYMENT_DECLINED",
4012
+ ORDER_PENDING = "ORDER_PENDING",
4013
+ ORDER_REJECTED = "ORDER_REJECTED"
4001
4014
  }
4002
4015
  declare enum AttributionSource {
4003
4016
  UNSPECIFIED = "UNSPECIFIED",
@@ -4087,6 +4100,11 @@ interface BalanceSummary {
4087
4100
  * @readonly
4088
4101
  */
4089
4102
  authorized?: Price;
4103
+ /**
4104
+ * Sum of all pending transactions.
4105
+ * @readonly
4106
+ */
4107
+ pending?: Price;
4090
4108
  }
4091
4109
  /**
4092
4110
  * Order balance. Reflects amount left to be paid on order and is calculated dynamically. Can be negative per balance definition.