@wix/ecom 1.0.856 → 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"
|
|
@@ -39,7 +39,7 @@
|
|
|
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
|
}
|
|
@@ -20688,7 +20688,13 @@ declare enum PaymentStatus$2 {
|
|
|
20688
20688
|
/** Payments received but not yet confirmed by the payment provider */
|
|
20689
20689
|
PENDING = "PENDING",
|
|
20690
20690
|
/** At least one payment was received and approved, covering less than total price amount */
|
|
20691
|
-
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"
|
|
20692
20698
|
}
|
|
20693
20699
|
declare enum FulfillmentStatus$3 {
|
|
20694
20700
|
/** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
|
|
@@ -20704,7 +20710,9 @@ declare enum FulfillmentStatus$3 {
|
|
|
20704
20710
|
declare enum OrderStatus$1 {
|
|
20705
20711
|
INITIALIZED = "INITIALIZED",
|
|
20706
20712
|
APPROVED = "APPROVED",
|
|
20707
|
-
CANCELED = "CANCELED"
|
|
20713
|
+
CANCELED = "CANCELED",
|
|
20714
|
+
PENDING = "PENDING",
|
|
20715
|
+
REJECTED = "REJECTED"
|
|
20708
20716
|
}
|
|
20709
20717
|
interface Activity$2 extends ActivityContentOneOf$1 {
|
|
20710
20718
|
/** Custom activity details (optional). `activity.type` must be `CUSTOM_ACTIVITY`. */
|
|
@@ -21079,7 +21087,12 @@ declare enum ActivityType$2 {
|
|
|
21079
21087
|
NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
|
|
21080
21088
|
ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
|
|
21081
21089
|
DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
|
|
21082
|
-
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"
|
|
21083
21096
|
}
|
|
21084
21097
|
declare enum AttributionSource$1 {
|
|
21085
21098
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -21169,6 +21182,11 @@ interface V1BalanceSummary {
|
|
|
21169
21182
|
* @readonly
|
|
21170
21183
|
*/
|
|
21171
21184
|
authorized?: Price$4;
|
|
21185
|
+
/**
|
|
21186
|
+
* Sum of all pending transactions.
|
|
21187
|
+
* @readonly
|
|
21188
|
+
*/
|
|
21189
|
+
pending?: Price$4;
|
|
21172
21190
|
}
|
|
21173
21191
|
interface FulfillmentStatusesAggregate$1 {
|
|
21174
21192
|
/** Unique string values based on Fulfillment entities statuses */
|
|
@@ -24767,7 +24785,13 @@ declare enum PaymentStatus$1 {
|
|
|
24767
24785
|
/** Payments received but not yet confirmed by the payment provider */
|
|
24768
24786
|
PENDING = "PENDING",
|
|
24769
24787
|
/** At least one payment was received and approved, covering less than total price amount */
|
|
24770
|
-
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"
|
|
24771
24795
|
}
|
|
24772
24796
|
declare enum FulfillmentStatus$1 {
|
|
24773
24797
|
/** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
|
|
@@ -24974,7 +24998,9 @@ interface ShippingRegion$1 {
|
|
|
24974
24998
|
declare enum OrderStatus {
|
|
24975
24999
|
INITIALIZED = "INITIALIZED",
|
|
24976
25000
|
APPROVED = "APPROVED",
|
|
24977
|
-
CANCELED = "CANCELED"
|
|
25001
|
+
CANCELED = "CANCELED",
|
|
25002
|
+
PENDING = "PENDING",
|
|
25003
|
+
REJECTED = "REJECTED"
|
|
24978
25004
|
}
|
|
24979
25005
|
interface TaxSummary$1 {
|
|
24980
25006
|
/**
|
|
@@ -25483,7 +25509,12 @@ declare enum ActivityType$1 {
|
|
|
25483
25509
|
NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
|
|
25484
25510
|
ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
|
|
25485
25511
|
DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
|
|
25486
|
-
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"
|
|
25487
25518
|
}
|
|
25488
25519
|
declare enum AttributionSource {
|
|
25489
25520
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -25573,6 +25604,11 @@ interface BalanceSummary {
|
|
|
25573
25604
|
* @readonly
|
|
25574
25605
|
*/
|
|
25575
25606
|
authorized?: Price$3;
|
|
25607
|
+
/**
|
|
25608
|
+
* Sum of all pending transactions.
|
|
25609
|
+
* @readonly
|
|
25610
|
+
*/
|
|
25611
|
+
pending?: Price$3;
|
|
25576
25612
|
}
|
|
25577
25613
|
/**
|
|
25578
25614
|
* Order balance. Reflects amount left to be paid on order and is calculated dynamically. Can be negative per balance definition.
|
|
@@ -25941,7 +25977,9 @@ declare enum Namespace {
|
|
|
25941
25977
|
*/
|
|
25942
25978
|
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
25943
25979
|
/** Codux Headless Sites */
|
|
25944
|
-
CODUX = "CODUX"
|
|
25980
|
+
CODUX = "CODUX",
|
|
25981
|
+
/** Bobb - AI Design Creator. */
|
|
25982
|
+
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
|
|
25945
25983
|
}
|
|
25946
25984
|
interface SeoData {
|
|
25947
25985
|
/** A title. */
|
|
@@ -27751,6 +27789,16 @@ interface InternalActivity extends InternalActivityContentOneOf {
|
|
|
27751
27789
|
draftOrderChangesApplied?: DraftOrderChangesApplied;
|
|
27752
27790
|
/** Payment method is saved for order */
|
|
27753
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;
|
|
27754
27802
|
/**
|
|
27755
27803
|
* Internal activity ID.
|
|
27756
27804
|
* @readonly
|
|
@@ -27813,6 +27861,16 @@ interface InternalActivityContentOneOf {
|
|
|
27813
27861
|
draftOrderChangesApplied?: DraftOrderChangesApplied;
|
|
27814
27862
|
/** Payment method is saved for order */
|
|
27815
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;
|
|
27816
27874
|
}
|
|
27817
27875
|
/** Order placed */
|
|
27818
27876
|
interface OrderPlaced {
|
|
@@ -20688,7 +20688,13 @@ declare enum PaymentStatus$2 {
|
|
|
20688
20688
|
/** Payments received but not yet confirmed by the payment provider */
|
|
20689
20689
|
PENDING = "PENDING",
|
|
20690
20690
|
/** At least one payment was received and approved, covering less than total price amount */
|
|
20691
|
-
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"
|
|
20692
20698
|
}
|
|
20693
20699
|
declare enum FulfillmentStatus$3 {
|
|
20694
20700
|
/** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
|
|
@@ -20704,7 +20710,9 @@ declare enum FulfillmentStatus$3 {
|
|
|
20704
20710
|
declare enum OrderStatus$1 {
|
|
20705
20711
|
INITIALIZED = "INITIALIZED",
|
|
20706
20712
|
APPROVED = "APPROVED",
|
|
20707
|
-
CANCELED = "CANCELED"
|
|
20713
|
+
CANCELED = "CANCELED",
|
|
20714
|
+
PENDING = "PENDING",
|
|
20715
|
+
REJECTED = "REJECTED"
|
|
20708
20716
|
}
|
|
20709
20717
|
interface Activity$2 extends ActivityContentOneOf$1 {
|
|
20710
20718
|
/** Custom activity details (optional). `activity.type` must be `CUSTOM_ACTIVITY`. */
|
|
@@ -21079,7 +21087,12 @@ declare enum ActivityType$2 {
|
|
|
21079
21087
|
NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
|
|
21080
21088
|
ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
|
|
21081
21089
|
DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
|
|
21082
|
-
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"
|
|
21083
21096
|
}
|
|
21084
21097
|
declare enum AttributionSource$1 {
|
|
21085
21098
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -21169,6 +21182,11 @@ interface V1BalanceSummary {
|
|
|
21169
21182
|
* @readonly
|
|
21170
21183
|
*/
|
|
21171
21184
|
authorized?: Price$4;
|
|
21185
|
+
/**
|
|
21186
|
+
* Sum of all pending transactions.
|
|
21187
|
+
* @readonly
|
|
21188
|
+
*/
|
|
21189
|
+
pending?: Price$4;
|
|
21172
21190
|
}
|
|
21173
21191
|
interface FulfillmentStatusesAggregate$1 {
|
|
21174
21192
|
/** Unique string values based on Fulfillment entities statuses */
|
|
@@ -24767,7 +24785,13 @@ declare enum PaymentStatus$1 {
|
|
|
24767
24785
|
/** Payments received but not yet confirmed by the payment provider */
|
|
24768
24786
|
PENDING = "PENDING",
|
|
24769
24787
|
/** At least one payment was received and approved, covering less than total price amount */
|
|
24770
|
-
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"
|
|
24771
24795
|
}
|
|
24772
24796
|
declare enum FulfillmentStatus$1 {
|
|
24773
24797
|
/** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
|
|
@@ -24974,7 +24998,9 @@ interface ShippingRegion$1 {
|
|
|
24974
24998
|
declare enum OrderStatus {
|
|
24975
24999
|
INITIALIZED = "INITIALIZED",
|
|
24976
25000
|
APPROVED = "APPROVED",
|
|
24977
|
-
CANCELED = "CANCELED"
|
|
25001
|
+
CANCELED = "CANCELED",
|
|
25002
|
+
PENDING = "PENDING",
|
|
25003
|
+
REJECTED = "REJECTED"
|
|
24978
25004
|
}
|
|
24979
25005
|
interface TaxSummary$1 {
|
|
24980
25006
|
/**
|
|
@@ -25483,7 +25509,12 @@ declare enum ActivityType$1 {
|
|
|
25483
25509
|
NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
|
|
25484
25510
|
ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
|
|
25485
25511
|
DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
|
|
25486
|
-
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"
|
|
25487
25518
|
}
|
|
25488
25519
|
declare enum AttributionSource {
|
|
25489
25520
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -25573,6 +25604,11 @@ interface BalanceSummary {
|
|
|
25573
25604
|
* @readonly
|
|
25574
25605
|
*/
|
|
25575
25606
|
authorized?: Price$3;
|
|
25607
|
+
/**
|
|
25608
|
+
* Sum of all pending transactions.
|
|
25609
|
+
* @readonly
|
|
25610
|
+
*/
|
|
25611
|
+
pending?: Price$3;
|
|
25576
25612
|
}
|
|
25577
25613
|
/**
|
|
25578
25614
|
* Order balance. Reflects amount left to be paid on order and is calculated dynamically. Can be negative per balance definition.
|
|
@@ -25941,7 +25977,9 @@ declare enum Namespace {
|
|
|
25941
25977
|
*/
|
|
25942
25978
|
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
25943
25979
|
/** Codux Headless Sites */
|
|
25944
|
-
CODUX = "CODUX"
|
|
25980
|
+
CODUX = "CODUX",
|
|
25981
|
+
/** Bobb - AI Design Creator. */
|
|
25982
|
+
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
|
|
25945
25983
|
}
|
|
25946
25984
|
interface SeoData {
|
|
25947
25985
|
/** A title. */
|
|
@@ -27751,6 +27789,16 @@ interface InternalActivity extends InternalActivityContentOneOf {
|
|
|
27751
27789
|
draftOrderChangesApplied?: DraftOrderChangesApplied;
|
|
27752
27790
|
/** Payment method is saved for order */
|
|
27753
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;
|
|
27754
27802
|
/**
|
|
27755
27803
|
* Internal activity ID.
|
|
27756
27804
|
* @readonly
|
|
@@ -27813,6 +27861,16 @@ interface InternalActivityContentOneOf {
|
|
|
27813
27861
|
draftOrderChangesApplied?: DraftOrderChangesApplied;
|
|
27814
27862
|
/** Payment method is saved for order */
|
|
27815
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;
|
|
27816
27874
|
}
|
|
27817
27875
|
/** Order placed */
|
|
27818
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.
|