@indigina/myseko-api 0.0.22 → 0.0.23
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
|
@@ -752,7 +752,7 @@ interface Issues {
|
|
|
752
752
|
* https://openapi-generator.tech
|
|
753
753
|
* Do not edit the class manually.
|
|
754
754
|
*/
|
|
755
|
-
interface
|
|
755
|
+
interface SekonaPieceDetail {
|
|
756
756
|
id?: number | null;
|
|
757
757
|
pieces?: number | null;
|
|
758
758
|
innerPieces?: number | null;
|
|
@@ -775,10 +775,94 @@ interface PieceDetail {
|
|
|
775
775
|
* Do not edit the class manually.
|
|
776
776
|
*/
|
|
777
777
|
|
|
778
|
-
interface
|
|
779
|
-
pieceDetails?: Array<
|
|
778
|
+
interface SekonaPackageDetails {
|
|
779
|
+
pieceDetails?: Array<SekonaPieceDetail> | null;
|
|
780
780
|
}
|
|
781
781
|
|
|
782
|
+
/**
|
|
783
|
+
* MySeko.API.Client
|
|
784
|
+
*
|
|
785
|
+
*
|
|
786
|
+
*
|
|
787
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
788
|
+
* https://openapi-generator.tech
|
|
789
|
+
* Do not edit the class manually.
|
|
790
|
+
*/
|
|
791
|
+
interface IntlOuterPieceDetail {
|
|
792
|
+
pieces?: number | null;
|
|
793
|
+
type?: string | null;
|
|
794
|
+
weight?: number | null;
|
|
795
|
+
chargeableWeight?: number | null;
|
|
796
|
+
uow?: string | null;
|
|
797
|
+
length?: number | null;
|
|
798
|
+
width?: number | null;
|
|
799
|
+
height?: number | null;
|
|
800
|
+
dimUnit?: string | null;
|
|
801
|
+
volume?: number | null;
|
|
802
|
+
uv?: string | null;
|
|
803
|
+
description?: string | null;
|
|
804
|
+
unnaNumber?: string | null;
|
|
805
|
+
hazardClass?: string | null;
|
|
806
|
+
ref1?: string | null;
|
|
807
|
+
ref2?: string | null;
|
|
808
|
+
ref3?: string | null;
|
|
809
|
+
ref4?: string | null;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
/**
|
|
813
|
+
* MySeko.API.Client
|
|
814
|
+
*
|
|
815
|
+
*
|
|
816
|
+
*
|
|
817
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
818
|
+
* https://openapi-generator.tech
|
|
819
|
+
* Do not edit the class manually.
|
|
820
|
+
*/
|
|
821
|
+
interface IntlInnerPieceDetail {
|
|
822
|
+
pieces?: number | null;
|
|
823
|
+
type?: string | null;
|
|
824
|
+
weight?: number | null;
|
|
825
|
+
weightKgs?: string | null;
|
|
826
|
+
length?: number | null;
|
|
827
|
+
width?: number | null;
|
|
828
|
+
height?: number | null;
|
|
829
|
+
dimUnit?: string | null;
|
|
830
|
+
volume?: number | null;
|
|
831
|
+
uv?: string | null;
|
|
832
|
+
description?: string | null;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
/**
|
|
836
|
+
* MySeko.API.Client
|
|
837
|
+
*
|
|
838
|
+
*
|
|
839
|
+
*
|
|
840
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
841
|
+
* https://openapi-generator.tech
|
|
842
|
+
* Do not edit the class manually.
|
|
843
|
+
*/
|
|
844
|
+
|
|
845
|
+
interface IntlPackageDetails {
|
|
846
|
+
outerPieces?: Array<IntlOuterPieceDetail> | null;
|
|
847
|
+
innerPieces?: Array<IntlInnerPieceDetail> | null;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
/**
|
|
851
|
+
* MySeko.API.Client
|
|
852
|
+
*
|
|
853
|
+
*
|
|
854
|
+
*
|
|
855
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
856
|
+
* https://openapi-generator.tech
|
|
857
|
+
* Do not edit the class manually.
|
|
858
|
+
*/
|
|
859
|
+
|
|
860
|
+
/**
|
|
861
|
+
* @type PackageDetails
|
|
862
|
+
* @export
|
|
863
|
+
*/
|
|
864
|
+
type PackageDetails = IntlPackageDetails | SekonaPackageDetails;
|
|
865
|
+
|
|
782
866
|
/**
|
|
783
867
|
* MySeko.API.Client
|
|
784
868
|
*
|
|
@@ -906,7 +990,7 @@ interface ShipmentParty {
|
|
|
906
990
|
* Do not edit the class manually.
|
|
907
991
|
*/
|
|
908
992
|
|
|
909
|
-
interface
|
|
993
|
+
interface SekonaShipmentSummary {
|
|
910
994
|
ordOrderID: string;
|
|
911
995
|
typeOrderID?: string | null;
|
|
912
996
|
number?: string | null;
|
|
@@ -941,6 +1025,33 @@ interface ShipmentSummary {
|
|
|
941
1025
|
shipperApptStartTime?: string | null;
|
|
942
1026
|
shipperApptEndTime?: string | null;
|
|
943
1027
|
appointmentRequired?: boolean | null;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
/**
|
|
1031
|
+
* MySeko.API.Client
|
|
1032
|
+
*
|
|
1033
|
+
*
|
|
1034
|
+
*
|
|
1035
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1036
|
+
* https://openapi-generator.tech
|
|
1037
|
+
* Do not edit the class manually.
|
|
1038
|
+
*/
|
|
1039
|
+
|
|
1040
|
+
interface IntlShipmentSummary {
|
|
1041
|
+
ordOrderID: string;
|
|
1042
|
+
typeOrderID?: string | null;
|
|
1043
|
+
number?: string | null;
|
|
1044
|
+
status?: string | null;
|
|
1045
|
+
serviceLevel?: string | null;
|
|
1046
|
+
description?: string | null;
|
|
1047
|
+
shipper?: ShipmentParty;
|
|
1048
|
+
consignee?: ShipmentParty;
|
|
1049
|
+
pieces?: number | null;
|
|
1050
|
+
podName?: string | null;
|
|
1051
|
+
pod?: string | null;
|
|
1052
|
+
podTime?: string | null;
|
|
1053
|
+
pickupDate?: string | null;
|
|
1054
|
+
dueDate?: string | null;
|
|
944
1055
|
originPort?: string | null;
|
|
945
1056
|
destPort?: string | null;
|
|
946
1057
|
originPortName?: string | null;
|
|
@@ -957,6 +1068,12 @@ interface ShipmentSummary {
|
|
|
957
1068
|
finalDelivery?: Address;
|
|
958
1069
|
}
|
|
959
1070
|
|
|
1071
|
+
/**
|
|
1072
|
+
* @type ShipmentSummary
|
|
1073
|
+
* @export
|
|
1074
|
+
*/
|
|
1075
|
+
type ShipmentSummary = IntlShipmentSummary | SekonaShipmentSummary;
|
|
1076
|
+
|
|
960
1077
|
/**
|
|
961
1078
|
* MySeko.API.Client
|
|
962
1079
|
*
|
|
@@ -1602,47 +1719,6 @@ interface EntityList {
|
|
|
1602
1719
|
data: Array<object>;
|
|
1603
1720
|
}
|
|
1604
1721
|
|
|
1605
|
-
/**
|
|
1606
|
-
* MySeko.API.Client
|
|
1607
|
-
*
|
|
1608
|
-
*
|
|
1609
|
-
*
|
|
1610
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1611
|
-
* https://openapi-generator.tech
|
|
1612
|
-
* Do not edit the class manually.
|
|
1613
|
-
*/
|
|
1614
|
-
|
|
1615
|
-
interface IntlShipmentSummary {
|
|
1616
|
-
ordOrderID: string;
|
|
1617
|
-
typeOrderID?: string | null;
|
|
1618
|
-
number?: string | null;
|
|
1619
|
-
status?: string | null;
|
|
1620
|
-
serviceLevel?: string | null;
|
|
1621
|
-
description?: string | null;
|
|
1622
|
-
shipper?: ShipmentParty;
|
|
1623
|
-
consignee?: ShipmentParty;
|
|
1624
|
-
pieces?: number | null;
|
|
1625
|
-
podName?: string | null;
|
|
1626
|
-
pod?: string | null;
|
|
1627
|
-
podTime?: string | null;
|
|
1628
|
-
pickupDate?: string | null;
|
|
1629
|
-
dueDate?: string | null;
|
|
1630
|
-
originPort?: string | null;
|
|
1631
|
-
destPort?: string | null;
|
|
1632
|
-
originPortName?: string | null;
|
|
1633
|
-
destPortName?: string | null;
|
|
1634
|
-
mode?: string | null;
|
|
1635
|
-
containerType?: string | null;
|
|
1636
|
-
volume?: number | null;
|
|
1637
|
-
volumeUOM?: string | null;
|
|
1638
|
-
addlShipmentRef?: string | null;
|
|
1639
|
-
bookedDate?: string | null;
|
|
1640
|
-
etdSailDate?: string | null;
|
|
1641
|
-
etaDueDate?: string | null;
|
|
1642
|
-
delivery?: Address;
|
|
1643
|
-
finalDelivery?: Address;
|
|
1644
|
-
}
|
|
1645
|
-
|
|
1646
1722
|
/**
|
|
1647
1723
|
* MySeko.API.Client
|
|
1648
1724
|
*
|
|
@@ -1660,53 +1736,6 @@ interface ModelError {
|
|
|
1660
1736
|
} | null;
|
|
1661
1737
|
}
|
|
1662
1738
|
|
|
1663
|
-
/**
|
|
1664
|
-
* MySeko.API.Client
|
|
1665
|
-
*
|
|
1666
|
-
*
|
|
1667
|
-
*
|
|
1668
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1669
|
-
* https://openapi-generator.tech
|
|
1670
|
-
* Do not edit the class manually.
|
|
1671
|
-
*/
|
|
1672
|
-
|
|
1673
|
-
interface SekonaShipmentSummary {
|
|
1674
|
-
ordOrderID: string;
|
|
1675
|
-
typeOrderID?: string | null;
|
|
1676
|
-
number?: string | null;
|
|
1677
|
-
status?: string | null;
|
|
1678
|
-
serviceLevel?: string | null;
|
|
1679
|
-
description?: string | null;
|
|
1680
|
-
shipper?: ShipmentParty;
|
|
1681
|
-
consignee?: ShipmentParty;
|
|
1682
|
-
pieces?: number | null;
|
|
1683
|
-
podName?: string | null;
|
|
1684
|
-
pod?: string | null;
|
|
1685
|
-
podTime?: string | null;
|
|
1686
|
-
pickupDate?: string | null;
|
|
1687
|
-
dueDate?: string | null;
|
|
1688
|
-
origin?: string | null;
|
|
1689
|
-
destination?: string | null;
|
|
1690
|
-
originName?: string | null;
|
|
1691
|
-
destinationName?: string | null;
|
|
1692
|
-
secondaryPUServiceLevel?: string | null;
|
|
1693
|
-
secondaryDelServiceLevel?: string | null;
|
|
1694
|
-
podTimeIn?: string | null;
|
|
1695
|
-
dueTime?: string | null;
|
|
1696
|
-
dueDateReady?: string | null;
|
|
1697
|
-
dueDateClose?: string | null;
|
|
1698
|
-
apptDate?: string | null;
|
|
1699
|
-
apptStartTime?: string | null;
|
|
1700
|
-
apptEndTime?: string | null;
|
|
1701
|
-
shipDate?: string | null;
|
|
1702
|
-
readyTime?: string | null;
|
|
1703
|
-
closeTime?: string | null;
|
|
1704
|
-
shipperApptDate?: string | null;
|
|
1705
|
-
shipperApptStartTime?: string | null;
|
|
1706
|
-
shipperApptEndTime?: string | null;
|
|
1707
|
-
appointmentRequired?: boolean | null;
|
|
1708
|
-
}
|
|
1709
|
-
|
|
1710
1739
|
declare const BASE_PATH: InjectionToken<string>;
|
|
1711
1740
|
declare const COLLECTION_FORMATS: {
|
|
1712
1741
|
csv: string;
|
|
@@ -1726,4 +1755,4 @@ declare class ApiModule {
|
|
|
1726
1755
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
1727
1756
|
|
|
1728
1757
|
export { APIS, ApiModule, AuthService, BASE_PATH, COLLECTION_FORMATS, CalendarService, CalendarViewBy, Configuration, DashboardService, HealthService, SettingsService, ShipmentService, ShipmentStage, TimelineEvent, UserService, UsergroupService, provideApi };
|
|
1729
|
-
export type { ActiveShipment, Address, BaseShipmentSummary, ConfigurationParameters, Contact, CreateIssueRequest, CreateIssueResponse, DataFormat, DataType, DeliveriesToday, EntityList, IntlShipmentSummary, Issue, IssueLog, IssueLogEntry, Issues, ModelError, PackageDetails, Param, ParamLocation, ParamStyle,
|
|
1758
|
+
export type { ActiveShipment, Address, BaseShipmentSummary, ConfigurationParameters, Contact, CreateIssueRequest, CreateIssueResponse, DataFormat, DataType, DeliveriesToday, EntityList, IntlInnerPieceDetail, IntlOuterPieceDetail, IntlPackageDetails, IntlShipmentSummary, Issue, IssueLog, IssueLogEntry, Issues, ModelError, PackageDetails, Param, ParamLocation, ParamStyle, RegGroup, SekonaPackageDetails, SekonaPieceDetail, SekonaShipmentSummary, SettingValue, SettingView, Shipment, ShipmentCalendarDateGroup, ShipmentCalendarDates, ShipmentCalendarItem, ShipmentParty, ShipmentPurchaseOrder, ShipmentPurchaseOrderDetails, ShipmentRouting, ShipmentSummary, ShipmentTimeline, Shipments, StandardDataFormat, StandardDataType, StandardParamStyle, UpdateIssueRequest, User, UserAccount };
|