@lcdp/api-react-rest-client 3.0.4 → 3.0.5-LDS-5142-abr-proposal.20455955155
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 +1 -1
- package/sale-offer/src/models/SaleOfferStatusReason.d.ts +1 -0
- package/sale-offer/src/models/SaleOfferStatusReason.js +1 -0
- package/shipment/src/models/ShipmentParcelStatus.d.ts +1 -0
- package/shipment/src/models/ShipmentParcelStatus.js +2 -1
- package/user/src/models/OffisanteStatus.d.ts +3 -1
- package/user/src/models/OffisanteStatus.js +4 -2
package/package.json
CHANGED
|
@@ -19,6 +19,7 @@ export declare const SaleOfferStatusReason: {
|
|
|
19
19
|
readonly PRODUCT_PROSCRIPTION: "PRODUCT_PROSCRIPTION";
|
|
20
20
|
readonly OWNER_SELLING_CAPABILITY: "OWNER_SELLING_CAPABILITY";
|
|
21
21
|
readonly PRODUCT_STATUS: "PRODUCT_STATUS";
|
|
22
|
+
readonly ORDER_ITEM_QUANTITY_REDUCED: "ORDER_ITEM_QUANTITY_REDUCED";
|
|
22
23
|
readonly OTHER: "OTHER";
|
|
23
24
|
};
|
|
24
25
|
export declare type SaleOfferStatusReason = typeof SaleOfferStatusReason[keyof typeof SaleOfferStatusReason];
|
|
@@ -24,6 +24,7 @@ exports.SaleOfferStatusReason = {
|
|
|
24
24
|
PRODUCT_PROSCRIPTION: 'PRODUCT_PROSCRIPTION',
|
|
25
25
|
OWNER_SELLING_CAPABILITY: 'OWNER_SELLING_CAPABILITY',
|
|
26
26
|
PRODUCT_STATUS: 'PRODUCT_STATUS',
|
|
27
|
+
ORDER_ITEM_QUANTITY_REDUCED: 'ORDER_ITEM_QUANTITY_REDUCED',
|
|
27
28
|
OTHER: 'OTHER'
|
|
28
29
|
};
|
|
29
30
|
function instanceOfSaleOfferStatusReason(value) {
|
|
@@ -17,6 +17,7 @@ export declare const ShipmentParcelStatus: {
|
|
|
17
17
|
readonly WAITING_FOR_SENDING: "WAITING_FOR_SENDING";
|
|
18
18
|
readonly DELIVERY_ON_GOING: "DELIVERY_ON_GOING";
|
|
19
19
|
readonly DELIVERED: "DELIVERED";
|
|
20
|
+
readonly EXPIRED: "EXPIRED";
|
|
20
21
|
};
|
|
21
22
|
export declare type ShipmentParcelStatus = typeof ShipmentParcelStatus[keyof typeof ShipmentParcelStatus];
|
|
22
23
|
export declare function instanceOfShipmentParcelStatus(value: any): boolean;
|
|
@@ -21,7 +21,8 @@ exports.ShipmentParcelStatusToJSON = exports.ShipmentParcelStatusFromJSONTyped =
|
|
|
21
21
|
exports.ShipmentParcelStatus = {
|
|
22
22
|
WAITING_FOR_SENDING: 'WAITING_FOR_SENDING',
|
|
23
23
|
DELIVERY_ON_GOING: 'DELIVERY_ON_GOING',
|
|
24
|
-
DELIVERED: 'DELIVERED'
|
|
24
|
+
DELIVERED: 'DELIVERED',
|
|
25
|
+
EXPIRED: 'EXPIRED'
|
|
25
26
|
};
|
|
26
27
|
function instanceOfShipmentParcelStatus(value) {
|
|
27
28
|
for (var key in exports.ShipmentParcelStatus) {
|
|
@@ -10,11 +10,12 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
|
-
* Status of company in our system against Offisante system
|
|
13
|
+
* Status of company in our system against Offisante system
|
|
14
14
|
* SET : Offisante know this resource but not yet its stock
|
|
15
15
|
* NOT_SET : Offisante do not know this resource
|
|
16
16
|
* IN_PROGRESS : Offisante is going to know this resource in the future
|
|
17
17
|
* ACTIVE : Offisante know this resource and its stock
|
|
18
|
+
* UNSET : Offisante no longer knows about this resource
|
|
18
19
|
*
|
|
19
20
|
* @export
|
|
20
21
|
*/
|
|
@@ -23,6 +24,7 @@ export declare const OffisanteStatus: {
|
|
|
23
24
|
readonly NOT_SET: "NOT_SET";
|
|
24
25
|
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
25
26
|
readonly ACTIVE: "ACTIVE";
|
|
27
|
+
readonly UNSET: "UNSET";
|
|
26
28
|
};
|
|
27
29
|
export declare type OffisanteStatus = typeof OffisanteStatus[keyof typeof OffisanteStatus];
|
|
28
30
|
export declare function instanceOfOffisanteStatus(value: any): boolean;
|
|
@@ -15,11 +15,12 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.OffisanteStatusToJSON = exports.OffisanteStatusFromJSONTyped = exports.OffisanteStatusFromJSON = exports.instanceOfOffisanteStatus = exports.OffisanteStatus = void 0;
|
|
17
17
|
/**
|
|
18
|
-
* Status of company in our system against Offisante system
|
|
18
|
+
* Status of company in our system against Offisante system
|
|
19
19
|
* SET : Offisante know this resource but not yet its stock
|
|
20
20
|
* NOT_SET : Offisante do not know this resource
|
|
21
21
|
* IN_PROGRESS : Offisante is going to know this resource in the future
|
|
22
22
|
* ACTIVE : Offisante know this resource and its stock
|
|
23
|
+
* UNSET : Offisante no longer knows about this resource
|
|
23
24
|
*
|
|
24
25
|
* @export
|
|
25
26
|
*/
|
|
@@ -27,7 +28,8 @@ exports.OffisanteStatus = {
|
|
|
27
28
|
SET: 'SET',
|
|
28
29
|
NOT_SET: 'NOT_SET',
|
|
29
30
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
30
|
-
ACTIVE: 'ACTIVE'
|
|
31
|
+
ACTIVE: 'ACTIVE',
|
|
32
|
+
UNSET: 'UNSET'
|
|
31
33
|
};
|
|
32
34
|
function instanceOfOffisanteStatus(value) {
|
|
33
35
|
for (var key in exports.OffisanteStatus) {
|