rerobe-js-orm 4.3.5 → 4.3.6
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.
|
@@ -16,7 +16,6 @@ export namespace ADMIN_DRIVEN_STATES {
|
|
|
16
16
|
const pendingPublication: string;
|
|
17
17
|
const listed: string;
|
|
18
18
|
const availableInStore: string;
|
|
19
|
-
const merchantDonated: string;
|
|
20
19
|
}
|
|
21
20
|
export namespace ADMIN_ACTION_DRIVEN_STATES {
|
|
22
21
|
const accepted: string;
|
|
@@ -26,6 +25,7 @@ export namespace ADMIN_ACTION_DRIVEN_STATES {
|
|
|
26
25
|
const soldSellerPaid: string;
|
|
27
26
|
const liquidationReady: string;
|
|
28
27
|
const sellerLiquidated: string;
|
|
28
|
+
const merchantDonated: string;
|
|
29
29
|
}
|
|
30
30
|
export namespace SYSTEM_DRIVEN_STATES {
|
|
31
31
|
const sold: string;
|
|
@@ -19,8 +19,7 @@ exports.ADMIN_DRIVEN_STATES = {
|
|
|
19
19
|
pendingPublication: 'PENDING_PUBLICATION',
|
|
20
20
|
listed: 'LISTED',
|
|
21
21
|
availableInStore: 'AVAILABLE_IN_STORE',
|
|
22
|
-
|
|
23
|
-
}; // 8
|
|
22
|
+
}; // 7
|
|
24
23
|
exports.ADMIN_ACTION_DRIVEN_STATES = {
|
|
25
24
|
accepted: 'ACCEPTED',
|
|
26
25
|
rejected: 'REJECTED',
|
|
@@ -29,7 +28,8 @@ exports.ADMIN_ACTION_DRIVEN_STATES = {
|
|
|
29
28
|
soldSellerPaid: 'SOLD_SELLER_PAID',
|
|
30
29
|
liquidationReady: 'LIQUIDATION_READY',
|
|
31
30
|
sellerLiquidated: 'SELLER_LIQUIDATED',
|
|
32
|
-
|
|
31
|
+
merchantDonated: 'MERCHANT_DONATED',
|
|
32
|
+
}; // 8
|
|
33
33
|
exports.SYSTEM_DRIVEN_STATES = {
|
|
34
34
|
sold: 'SOLD',
|
|
35
35
|
soldSellerSelfPay: 'SOLD_SELLER_SELF_PAY',
|
|
@@ -93,7 +93,7 @@ exports.PRODUCT_STATE_LABELS = {
|
|
|
93
93
|
qualityControl: 'In quality control',
|
|
94
94
|
pendingPublication: 'Pending publication',
|
|
95
95
|
listed: 'Published for sale',
|
|
96
|
-
hold: '
|
|
96
|
+
hold: 'Hold for now',
|
|
97
97
|
clearance: 'On clearance',
|
|
98
98
|
reserved: 'In a shopping cart',
|
|
99
99
|
sold: 'Sold—return period open',
|
|
@@ -127,7 +127,7 @@ exports.PRODUCT_STATE_LABELS_ADMIN_VIEW = {
|
|
|
127
127
|
qualityControl: 'In quality control',
|
|
128
128
|
pendingPublication: 'Pending publication',
|
|
129
129
|
listed: 'Published for sale',
|
|
130
|
-
hold: '
|
|
130
|
+
hold: 'On hold',
|
|
131
131
|
clearance: 'On clearance',
|
|
132
132
|
reserved: 'In a shopping cart',
|
|
133
133
|
sold: 'Sold—return period open',
|