@lcdp/api-react-rest-client 3.0.2-develop.20429327699 → 3.0.2-develop.20437820570

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": "@lcdp/api-react-rest-client",
3
- "version": "3.0.2-develop.20429327699",
3
+ "version": "3.0.2-develop.20437820570",
4
4
  "scripts": {
5
5
  "build": "tsc"
6
6
  },
@@ -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) {