@indigina/myseko-api 0.0.34 → 0.0.35

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @indigina/myseko-api@0.0.34
1
+ # @indigina/myseko-api@0.0.35
2
2
 
3
3
  MySeko API Client for Angular applications
4
4
 
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
24
24
  _published:_
25
25
 
26
26
  ```console
27
- npm install @indigina/myseko-api@0.0.34 --save
27
+ npm install @indigina/myseko-api@0.0.35 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
@@ -2105,9 +2105,9 @@ const CalendarViewBy = {
2105
2105
  * Criticality level of exception
2106
2106
  */
2107
2107
  const Criticality = {
2108
- Low: 0,
2109
- Medium: 1,
2110
- High: 2
2108
+ Low: 'Low',
2109
+ Medium: 'Medium',
2110
+ High: 'High'
2111
2111
  };
2112
2112
 
2113
2113
  /**
@@ -2243,8 +2243,8 @@ const DocumentCategoryType = {
2243
2243
  * Status of exception
2244
2244
  */
2245
2245
  const ExceptionStatus = {
2246
- Active: 0,
2247
- Closed: 1
2246
+ Active: 'Active',
2247
+ Closed: 'Closed'
2248
2248
  };
2249
2249
 
2250
2250
  /**
@@ -2260,15 +2260,15 @@ const ExceptionStatus = {
2260
2260
  * Type of exception
2261
2261
  */
2262
2262
  const ExceptionType = {
2263
- TransitDelay: 0,
2264
- ArrivalOverdue: 1,
2265
- DeliveryOverdue: 2,
2266
- DeliveryAppointmentOverdue: 3,
2267
- LateDelivery: 4,
2268
- ConsigneeUnreachable: 5,
2269
- FailedDelivery: 6,
2270
- PartialDelivery: 7,
2271
- IncompletePOD: 8
2263
+ TransitDelay: 'TransitDelay',
2264
+ ArrivalOverdue: 'ArrivalOverdue',
2265
+ DeliveryOverdue: 'DeliveryOverdue',
2266
+ DeliveryAppointmentOverdue: 'DeliveryAppointmentOverdue',
2267
+ LateDelivery: 'LateDelivery',
2268
+ ConsigneeUnreachable: 'ConsigneeUnreachable',
2269
+ FailedDelivery: 'FailedDelivery',
2270
+ PartialDelivery: 'PartialDelivery',
2271
+ IncompletePod: 'IncompletePOD'
2272
2272
  };
2273
2273
 
2274
2274
  /**