@wix/ecom 1.0.855 → 1.0.857
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.
|
|
3
|
+
"version": "1.0.857",
|
|
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.
|
|
37
|
+
"@wix/ecom_delivery-profile": "1.0.35",
|
|
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.
|
|
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.
|
|
51
|
+
"@wix/ecom_orders": "1.0.156",
|
|
52
52
|
"@wix/ecom_orders-settings": "1.0.55",
|
|
53
|
-
"@wix/ecom_payment-settings": "1.0.
|
|
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": "
|
|
90
|
+
"falconPackageHash": "f0b09323ec2e51b711bcd622296ba924e34e58cfa2df78b91fea53c1"
|
|
91
91
|
}
|
|
@@ -18202,9 +18202,7 @@ declare enum Namespace$1 {
|
|
|
18202
18202
|
*/
|
|
18203
18203
|
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
18204
18204
|
/** Codux Headless Sites */
|
|
18205
|
-
CODUX = "CODUX"
|
|
18206
|
-
/** Bobb - AI Design Creator. */
|
|
18207
|
-
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
|
|
18205
|
+
CODUX = "CODUX"
|
|
18208
18206
|
}
|
|
18209
18207
|
/** Site transferred to another user. */
|
|
18210
18208
|
interface SiteTransferred {
|
|
@@ -20690,7 +20688,13 @@ declare enum PaymentStatus$2 {
|
|
|
20690
20688
|
/** Payments received but not yet confirmed by the payment provider */
|
|
20691
20689
|
PENDING = "PENDING",
|
|
20692
20690
|
/** At least one payment was received and approved, covering less than total price amount */
|
|
20693
|
-
PARTIALLY_PAID = "PARTIALLY_PAID"
|
|
20691
|
+
PARTIALLY_PAID = "PARTIALLY_PAID",
|
|
20692
|
+
/** Payment received but not yet confirmed by the payment provider and waits for some user action */
|
|
20693
|
+
PENDING_MERCHANT = "PENDING_MERCHANT",
|
|
20694
|
+
/** Payment was canceled by user on payment provider side */
|
|
20695
|
+
CANCELED = "CANCELED",
|
|
20696
|
+
/** Payment was declined by payment provider */
|
|
20697
|
+
DECLINED = "DECLINED"
|
|
20694
20698
|
}
|
|
20695
20699
|
declare enum FulfillmentStatus$3 {
|
|
20696
20700
|
/** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
|
|
@@ -20706,7 +20710,9 @@ declare enum FulfillmentStatus$3 {
|
|
|
20706
20710
|
declare enum OrderStatus$1 {
|
|
20707
20711
|
INITIALIZED = "INITIALIZED",
|
|
20708
20712
|
APPROVED = "APPROVED",
|
|
20709
|
-
CANCELED = "CANCELED"
|
|
20713
|
+
CANCELED = "CANCELED",
|
|
20714
|
+
PENDING = "PENDING",
|
|
20715
|
+
REJECTED = "REJECTED"
|
|
20710
20716
|
}
|
|
20711
20717
|
interface Activity$2 extends ActivityContentOneOf$1 {
|
|
20712
20718
|
/** Custom activity details (optional). `activity.type` must be `CUSTOM_ACTIVITY`. */
|
|
@@ -21081,7 +21087,12 @@ declare enum ActivityType$2 {
|
|
|
21081
21087
|
NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
|
|
21082
21088
|
ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
|
|
21083
21089
|
DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
|
|
21084
|
-
SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD"
|
|
21090
|
+
SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
|
|
21091
|
+
PAYMENT_PENDING = "PAYMENT_PENDING",
|
|
21092
|
+
PAYMENT_CANCELED = "PAYMENT_CANCELED",
|
|
21093
|
+
PAYMENT_DECLINED = "PAYMENT_DECLINED",
|
|
21094
|
+
ORDER_PENDING = "ORDER_PENDING",
|
|
21095
|
+
ORDER_REJECTED = "ORDER_REJECTED"
|
|
21085
21096
|
}
|
|
21086
21097
|
declare enum AttributionSource$1 {
|
|
21087
21098
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -21171,6 +21182,11 @@ interface V1BalanceSummary {
|
|
|
21171
21182
|
* @readonly
|
|
21172
21183
|
*/
|
|
21173
21184
|
authorized?: Price$4;
|
|
21185
|
+
/**
|
|
21186
|
+
* Sum of all pending transactions.
|
|
21187
|
+
* @readonly
|
|
21188
|
+
*/
|
|
21189
|
+
pending?: Price$4;
|
|
21174
21190
|
}
|
|
21175
21191
|
interface FulfillmentStatusesAggregate$1 {
|
|
21176
21192
|
/** Unique string values based on Fulfillment entities statuses */
|
|
@@ -24769,7 +24785,13 @@ declare enum PaymentStatus$1 {
|
|
|
24769
24785
|
/** Payments received but not yet confirmed by the payment provider */
|
|
24770
24786
|
PENDING = "PENDING",
|
|
24771
24787
|
/** At least one payment was received and approved, covering less than total price amount */
|
|
24772
|
-
PARTIALLY_PAID = "PARTIALLY_PAID"
|
|
24788
|
+
PARTIALLY_PAID = "PARTIALLY_PAID",
|
|
24789
|
+
/** Payment received but not yet confirmed by the payment provider and waits for some user action */
|
|
24790
|
+
PENDING_MERCHANT = "PENDING_MERCHANT",
|
|
24791
|
+
/** Payment was canceled by user on payment provider side */
|
|
24792
|
+
CANCELED = "CANCELED",
|
|
24793
|
+
/** Payment was declined by payment provider */
|
|
24794
|
+
DECLINED = "DECLINED"
|
|
24773
24795
|
}
|
|
24774
24796
|
declare enum FulfillmentStatus$1 {
|
|
24775
24797
|
/** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
|
|
@@ -24976,7 +24998,9 @@ interface ShippingRegion$1 {
|
|
|
24976
24998
|
declare enum OrderStatus {
|
|
24977
24999
|
INITIALIZED = "INITIALIZED",
|
|
24978
25000
|
APPROVED = "APPROVED",
|
|
24979
|
-
CANCELED = "CANCELED"
|
|
25001
|
+
CANCELED = "CANCELED",
|
|
25002
|
+
PENDING = "PENDING",
|
|
25003
|
+
REJECTED = "REJECTED"
|
|
24980
25004
|
}
|
|
24981
25005
|
interface TaxSummary$1 {
|
|
24982
25006
|
/**
|
|
@@ -25485,7 +25509,12 @@ declare enum ActivityType$1 {
|
|
|
25485
25509
|
NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
|
|
25486
25510
|
ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
|
|
25487
25511
|
DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
|
|
25488
|
-
SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD"
|
|
25512
|
+
SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
|
|
25513
|
+
PAYMENT_PENDING = "PAYMENT_PENDING",
|
|
25514
|
+
PAYMENT_CANCELED = "PAYMENT_CANCELED",
|
|
25515
|
+
PAYMENT_DECLINED = "PAYMENT_DECLINED",
|
|
25516
|
+
ORDER_PENDING = "ORDER_PENDING",
|
|
25517
|
+
ORDER_REJECTED = "ORDER_REJECTED"
|
|
25489
25518
|
}
|
|
25490
25519
|
declare enum AttributionSource {
|
|
25491
25520
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -25575,6 +25604,11 @@ interface BalanceSummary {
|
|
|
25575
25604
|
* @readonly
|
|
25576
25605
|
*/
|
|
25577
25606
|
authorized?: Price$3;
|
|
25607
|
+
/**
|
|
25608
|
+
* Sum of all pending transactions.
|
|
25609
|
+
* @readonly
|
|
25610
|
+
*/
|
|
25611
|
+
pending?: Price$3;
|
|
25578
25612
|
}
|
|
25579
25613
|
/**
|
|
25580
25614
|
* Order balance. Reflects amount left to be paid on order and is calculated dynamically. Can be negative per balance definition.
|
|
@@ -27755,6 +27789,16 @@ interface InternalActivity extends InternalActivityContentOneOf {
|
|
|
27755
27789
|
draftOrderChangesApplied?: DraftOrderChangesApplied;
|
|
27756
27790
|
/** Payment method is saved for order */
|
|
27757
27791
|
savedPaymentMethod?: SavedPaymentMethod;
|
|
27792
|
+
/** Details of a pending payment */
|
|
27793
|
+
paymentPending?: PaymentPending;
|
|
27794
|
+
/** Details of a canceled payment */
|
|
27795
|
+
paymentCanceled?: PaymentCanceled;
|
|
27796
|
+
/** Details of a declined payment */
|
|
27797
|
+
paymentDeclined?: PaymentDeclined;
|
|
27798
|
+
/** Order pending */
|
|
27799
|
+
orderPending?: OrderPending;
|
|
27800
|
+
/** Order rejected */
|
|
27801
|
+
orderRejected?: OrderRejected;
|
|
27758
27802
|
/**
|
|
27759
27803
|
* Internal activity ID.
|
|
27760
27804
|
* @readonly
|
|
@@ -27817,6 +27861,16 @@ interface InternalActivityContentOneOf {
|
|
|
27817
27861
|
draftOrderChangesApplied?: DraftOrderChangesApplied;
|
|
27818
27862
|
/** Payment method is saved for order */
|
|
27819
27863
|
savedPaymentMethod?: SavedPaymentMethod;
|
|
27864
|
+
/** Details of a pending payment */
|
|
27865
|
+
paymentPending?: PaymentPending;
|
|
27866
|
+
/** Details of a canceled payment */
|
|
27867
|
+
paymentCanceled?: PaymentCanceled;
|
|
27868
|
+
/** Details of a declined payment */
|
|
27869
|
+
paymentDeclined?: PaymentDeclined;
|
|
27870
|
+
/** Order pending */
|
|
27871
|
+
orderPending?: OrderPending;
|
|
27872
|
+
/** Order rejected */
|
|
27873
|
+
orderRejected?: OrderRejected;
|
|
27820
27874
|
}
|
|
27821
27875
|
/** Order placed */
|
|
27822
27876
|
interface OrderPlaced {
|
|
@@ -18202,9 +18202,7 @@ declare enum Namespace$1 {
|
|
|
18202
18202
|
*/
|
|
18203
18203
|
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
18204
18204
|
/** Codux Headless Sites */
|
|
18205
|
-
CODUX = "CODUX"
|
|
18206
|
-
/** Bobb - AI Design Creator. */
|
|
18207
|
-
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
|
|
18205
|
+
CODUX = "CODUX"
|
|
18208
18206
|
}
|
|
18209
18207
|
/** Site transferred to another user. */
|
|
18210
18208
|
interface SiteTransferred {
|
|
@@ -20690,7 +20688,13 @@ declare enum PaymentStatus$2 {
|
|
|
20690
20688
|
/** Payments received but not yet confirmed by the payment provider */
|
|
20691
20689
|
PENDING = "PENDING",
|
|
20692
20690
|
/** At least one payment was received and approved, covering less than total price amount */
|
|
20693
|
-
PARTIALLY_PAID = "PARTIALLY_PAID"
|
|
20691
|
+
PARTIALLY_PAID = "PARTIALLY_PAID",
|
|
20692
|
+
/** Payment received but not yet confirmed by the payment provider and waits for some user action */
|
|
20693
|
+
PENDING_MERCHANT = "PENDING_MERCHANT",
|
|
20694
|
+
/** Payment was canceled by user on payment provider side */
|
|
20695
|
+
CANCELED = "CANCELED",
|
|
20696
|
+
/** Payment was declined by payment provider */
|
|
20697
|
+
DECLINED = "DECLINED"
|
|
20694
20698
|
}
|
|
20695
20699
|
declare enum FulfillmentStatus$3 {
|
|
20696
20700
|
/** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
|
|
@@ -20706,7 +20710,9 @@ declare enum FulfillmentStatus$3 {
|
|
|
20706
20710
|
declare enum OrderStatus$1 {
|
|
20707
20711
|
INITIALIZED = "INITIALIZED",
|
|
20708
20712
|
APPROVED = "APPROVED",
|
|
20709
|
-
CANCELED = "CANCELED"
|
|
20713
|
+
CANCELED = "CANCELED",
|
|
20714
|
+
PENDING = "PENDING",
|
|
20715
|
+
REJECTED = "REJECTED"
|
|
20710
20716
|
}
|
|
20711
20717
|
interface Activity$2 extends ActivityContentOneOf$1 {
|
|
20712
20718
|
/** Custom activity details (optional). `activity.type` must be `CUSTOM_ACTIVITY`. */
|
|
@@ -21081,7 +21087,12 @@ declare enum ActivityType$2 {
|
|
|
21081
21087
|
NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
|
|
21082
21088
|
ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
|
|
21083
21089
|
DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
|
|
21084
|
-
SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD"
|
|
21090
|
+
SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
|
|
21091
|
+
PAYMENT_PENDING = "PAYMENT_PENDING",
|
|
21092
|
+
PAYMENT_CANCELED = "PAYMENT_CANCELED",
|
|
21093
|
+
PAYMENT_DECLINED = "PAYMENT_DECLINED",
|
|
21094
|
+
ORDER_PENDING = "ORDER_PENDING",
|
|
21095
|
+
ORDER_REJECTED = "ORDER_REJECTED"
|
|
21085
21096
|
}
|
|
21086
21097
|
declare enum AttributionSource$1 {
|
|
21087
21098
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -21171,6 +21182,11 @@ interface V1BalanceSummary {
|
|
|
21171
21182
|
* @readonly
|
|
21172
21183
|
*/
|
|
21173
21184
|
authorized?: Price$4;
|
|
21185
|
+
/**
|
|
21186
|
+
* Sum of all pending transactions.
|
|
21187
|
+
* @readonly
|
|
21188
|
+
*/
|
|
21189
|
+
pending?: Price$4;
|
|
21174
21190
|
}
|
|
21175
21191
|
interface FulfillmentStatusesAggregate$1 {
|
|
21176
21192
|
/** Unique string values based on Fulfillment entities statuses */
|
|
@@ -24769,7 +24785,13 @@ declare enum PaymentStatus$1 {
|
|
|
24769
24785
|
/** Payments received but not yet confirmed by the payment provider */
|
|
24770
24786
|
PENDING = "PENDING",
|
|
24771
24787
|
/** At least one payment was received and approved, covering less than total price amount */
|
|
24772
|
-
PARTIALLY_PAID = "PARTIALLY_PAID"
|
|
24788
|
+
PARTIALLY_PAID = "PARTIALLY_PAID",
|
|
24789
|
+
/** Payment received but not yet confirmed by the payment provider and waits for some user action */
|
|
24790
|
+
PENDING_MERCHANT = "PENDING_MERCHANT",
|
|
24791
|
+
/** Payment was canceled by user on payment provider side */
|
|
24792
|
+
CANCELED = "CANCELED",
|
|
24793
|
+
/** Payment was declined by payment provider */
|
|
24794
|
+
DECLINED = "DECLINED"
|
|
24773
24795
|
}
|
|
24774
24796
|
declare enum FulfillmentStatus$1 {
|
|
24775
24797
|
/** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
|
|
@@ -24976,7 +24998,9 @@ interface ShippingRegion$1 {
|
|
|
24976
24998
|
declare enum OrderStatus {
|
|
24977
24999
|
INITIALIZED = "INITIALIZED",
|
|
24978
25000
|
APPROVED = "APPROVED",
|
|
24979
|
-
CANCELED = "CANCELED"
|
|
25001
|
+
CANCELED = "CANCELED",
|
|
25002
|
+
PENDING = "PENDING",
|
|
25003
|
+
REJECTED = "REJECTED"
|
|
24980
25004
|
}
|
|
24981
25005
|
interface TaxSummary$1 {
|
|
24982
25006
|
/**
|
|
@@ -25485,7 +25509,12 @@ declare enum ActivityType$1 {
|
|
|
25485
25509
|
NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
|
|
25486
25510
|
ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
|
|
25487
25511
|
DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
|
|
25488
|
-
SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD"
|
|
25512
|
+
SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
|
|
25513
|
+
PAYMENT_PENDING = "PAYMENT_PENDING",
|
|
25514
|
+
PAYMENT_CANCELED = "PAYMENT_CANCELED",
|
|
25515
|
+
PAYMENT_DECLINED = "PAYMENT_DECLINED",
|
|
25516
|
+
ORDER_PENDING = "ORDER_PENDING",
|
|
25517
|
+
ORDER_REJECTED = "ORDER_REJECTED"
|
|
25489
25518
|
}
|
|
25490
25519
|
declare enum AttributionSource {
|
|
25491
25520
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -25575,6 +25604,11 @@ interface BalanceSummary {
|
|
|
25575
25604
|
* @readonly
|
|
25576
25605
|
*/
|
|
25577
25606
|
authorized?: Price$3;
|
|
25607
|
+
/**
|
|
25608
|
+
* Sum of all pending transactions.
|
|
25609
|
+
* @readonly
|
|
25610
|
+
*/
|
|
25611
|
+
pending?: Price$3;
|
|
25578
25612
|
}
|
|
25579
25613
|
/**
|
|
25580
25614
|
* Order balance. Reflects amount left to be paid on order and is calculated dynamically. Can be negative per balance definition.
|
|
@@ -27755,6 +27789,16 @@ interface InternalActivity extends InternalActivityContentOneOf {
|
|
|
27755
27789
|
draftOrderChangesApplied?: DraftOrderChangesApplied;
|
|
27756
27790
|
/** Payment method is saved for order */
|
|
27757
27791
|
savedPaymentMethod?: SavedPaymentMethod;
|
|
27792
|
+
/** Details of a pending payment */
|
|
27793
|
+
paymentPending?: PaymentPending;
|
|
27794
|
+
/** Details of a canceled payment */
|
|
27795
|
+
paymentCanceled?: PaymentCanceled;
|
|
27796
|
+
/** Details of a declined payment */
|
|
27797
|
+
paymentDeclined?: PaymentDeclined;
|
|
27798
|
+
/** Order pending */
|
|
27799
|
+
orderPending?: OrderPending;
|
|
27800
|
+
/** Order rejected */
|
|
27801
|
+
orderRejected?: OrderRejected;
|
|
27758
27802
|
/**
|
|
27759
27803
|
* Internal activity ID.
|
|
27760
27804
|
* @readonly
|
|
@@ -27817,6 +27861,16 @@ interface InternalActivityContentOneOf {
|
|
|
27817
27861
|
draftOrderChangesApplied?: DraftOrderChangesApplied;
|
|
27818
27862
|
/** Payment method is saved for order */
|
|
27819
27863
|
savedPaymentMethod?: SavedPaymentMethod;
|
|
27864
|
+
/** Details of a pending payment */
|
|
27865
|
+
paymentPending?: PaymentPending;
|
|
27866
|
+
/** Details of a canceled payment */
|
|
27867
|
+
paymentCanceled?: PaymentCanceled;
|
|
27868
|
+
/** Details of a declined payment */
|
|
27869
|
+
paymentDeclined?: PaymentDeclined;
|
|
27870
|
+
/** Order pending */
|
|
27871
|
+
orderPending?: OrderPending;
|
|
27872
|
+
/** Order rejected */
|
|
27873
|
+
orderRejected?: OrderRejected;
|
|
27820
27874
|
}
|
|
27821
27875
|
/** Order placed */
|
|
27822
27876
|
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.
|