@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
|
@@ -764,15 +764,15 @@ declare class DocumentService extends BaseService {
|
|
|
764
764
|
* Type of exception
|
|
765
765
|
*/
|
|
766
766
|
declare const ExceptionType: {
|
|
767
|
-
readonly TransitDelay:
|
|
768
|
-
readonly ArrivalOverdue:
|
|
769
|
-
readonly DeliveryOverdue:
|
|
770
|
-
readonly DeliveryAppointmentOverdue:
|
|
771
|
-
readonly LateDelivery:
|
|
772
|
-
readonly ConsigneeUnreachable:
|
|
773
|
-
readonly FailedDelivery:
|
|
774
|
-
readonly PartialDelivery:
|
|
775
|
-
readonly
|
|
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:
|
|
793
|
-
readonly Closed:
|
|
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:
|
|
811
|
-
readonly Medium:
|
|
812
|
-
readonly High:
|
|
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
|
|