@indigina/myseko-api 0.0.34 → 0.0.36

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.36",
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
 
@@ -841,6 +841,9 @@ interface ExceptionManagementRow {
841
841
  criticality?: Criticality | null;
842
842
  plannedDate?: string | null;
843
843
  latestProjectedDate?: string | null;
844
+ actualDate?: string | null;
845
+ daysOfDelay?: number | null;
846
+ reportedBy?: string | null;
844
847
  description?: string | null;
845
848
  createdDateUtc: string;
846
849
  lastUpdatedUtc: string;
@@ -883,6 +886,11 @@ interface ShipmentException {
883
886
  exceptionType?: ExceptionType | null;
884
887
  exceptionStatus?: ExceptionStatus | null;
885
888
  criticality?: Criticality | null;
889
+ plannedDate?: string | null;
890
+ latestProjectedDate?: string | null;
891
+ actualDate?: string | null;
892
+ daysOfDelay?: number | null;
893
+ reportedBy?: string | null;
886
894
  /**
887
895
  * Formerly Reason.
888
896
  */
@@ -1307,8 +1315,9 @@ interface IntlOuterPieceDetail {
1307
1315
  pieces?: number | null;
1308
1316
  type?: string | null;
1309
1317
  weight?: number | null;
1310
- chargeableWeight?: number | null;
1311
1318
  uow?: string | null;
1319
+ chargeableWeight?: number | null;
1320
+ chargeableWeightUOW?: string | null;
1312
1321
  length?: number | null;
1313
1322
  width?: number | null;
1314
1323
  height?: number | null;
@@ -1453,9 +1462,6 @@ interface ShipmentRouting {
1453
1462
  legOrder?: number | null;
1454
1463
  atd?: string | null;
1455
1464
  ata?: string | null;
1456
- purchaseOrder?: string | null;
1457
- mySEKOReference?: string | null;
1458
- consigneeReference?: string | null;
1459
1465
  }
1460
1466
 
1461
1467
  /**
@@ -1706,7 +1712,6 @@ interface Shipment {
1706
1712
  consState?: string | null;
1707
1713
  consZip?: string | null;
1708
1714
  consCountry?: string | null;
1709
- podName?: string | null;
1710
1715
  /**
1711
1716
  * POD
1712
1717
  */
@@ -1732,6 +1737,7 @@ interface Shipment {
1732
1737
  shipDate?: string | null;
1733
1738
  description?: string | null;
1734
1739
  poNumber?: string | null;
1740
+ arrivalDate?: string | null;
1735
1741
  houseBill?: string | null;
1736
1742
  mode?: string | null;
1737
1743
  containerType?: string | null;