@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/myseko-api",
3
- "version": "0.0.34",
3
+ "version": "0.0.35",
4
4
  "description": "OpenAPI client for @indigina/myseko-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -764,15 +764,15 @@ declare class DocumentService extends BaseService {
764
764
  * Type of exception
765
765
  */
766
766
  declare const ExceptionType: {
767
- readonly TransitDelay: 0;
768
- readonly ArrivalOverdue: 1;
769
- readonly DeliveryOverdue: 2;
770
- readonly DeliveryAppointmentOverdue: 3;
771
- readonly LateDelivery: 4;
772
- readonly ConsigneeUnreachable: 5;
773
- readonly FailedDelivery: 6;
774
- readonly PartialDelivery: 7;
775
- readonly IncompletePOD: 8;
767
+ readonly TransitDelay: "TransitDelay";
768
+ readonly ArrivalOverdue: "ArrivalOverdue";
769
+ readonly DeliveryOverdue: "DeliveryOverdue";
770
+ readonly DeliveryAppointmentOverdue: "DeliveryAppointmentOverdue";
771
+ readonly LateDelivery: "LateDelivery";
772
+ readonly ConsigneeUnreachable: "ConsigneeUnreachable";
773
+ readonly FailedDelivery: "FailedDelivery";
774
+ readonly PartialDelivery: "PartialDelivery";
775
+ readonly IncompletePod: "IncompletePOD";
776
776
  };
777
777
  type ExceptionType = typeof ExceptionType[keyof typeof ExceptionType];
778
778
 
@@ -789,8 +789,8 @@ type ExceptionType = typeof ExceptionType[keyof typeof ExceptionType];
789
789
  * Status of exception
790
790
  */
791
791
  declare const ExceptionStatus: {
792
- readonly Active: 0;
793
- readonly Closed: 1;
792
+ readonly Active: "Active";
793
+ readonly Closed: "Closed";
794
794
  };
795
795
  type ExceptionStatus = typeof ExceptionStatus[keyof typeof ExceptionStatus];
796
796
 
@@ -807,9 +807,9 @@ type ExceptionStatus = typeof ExceptionStatus[keyof typeof ExceptionStatus];
807
807
  * Criticality level of exception
808
808
  */
809
809
  declare const Criticality: {
810
- readonly Low: 0;
811
- readonly Medium: 1;
812
- readonly High: 2;
810
+ readonly Low: "Low";
811
+ readonly Medium: "Medium";
812
+ readonly High: "High";
813
813
  };
814
814
  type Criticality = typeof Criticality[keyof typeof Criticality];
815
815