@indigina/myseko-api 0.0.32 → 0.0.34
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
|
@@ -760,11 +760,74 @@ declare class DocumentService extends BaseService {
|
|
|
760
760
|
* https://openapi-generator.tech
|
|
761
761
|
* Do not edit the class manually.
|
|
762
762
|
*/
|
|
763
|
+
/**
|
|
764
|
+
* Type of exception
|
|
765
|
+
*/
|
|
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;
|
|
776
|
+
};
|
|
777
|
+
type ExceptionType = typeof ExceptionType[keyof typeof ExceptionType];
|
|
778
|
+
|
|
779
|
+
/**
|
|
780
|
+
* MySeko.API.Client
|
|
781
|
+
*
|
|
782
|
+
*
|
|
783
|
+
*
|
|
784
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
785
|
+
* https://openapi-generator.tech
|
|
786
|
+
* Do not edit the class manually.
|
|
787
|
+
*/
|
|
788
|
+
/**
|
|
789
|
+
* Status of exception
|
|
790
|
+
*/
|
|
791
|
+
declare const ExceptionStatus: {
|
|
792
|
+
readonly Active: 0;
|
|
793
|
+
readonly Closed: 1;
|
|
794
|
+
};
|
|
795
|
+
type ExceptionStatus = typeof ExceptionStatus[keyof typeof ExceptionStatus];
|
|
796
|
+
|
|
797
|
+
/**
|
|
798
|
+
* MySeko.API.Client
|
|
799
|
+
*
|
|
800
|
+
*
|
|
801
|
+
*
|
|
802
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
803
|
+
* https://openapi-generator.tech
|
|
804
|
+
* Do not edit the class manually.
|
|
805
|
+
*/
|
|
806
|
+
/**
|
|
807
|
+
* Criticality level of exception
|
|
808
|
+
*/
|
|
809
|
+
declare const Criticality: {
|
|
810
|
+
readonly Low: 0;
|
|
811
|
+
readonly Medium: 1;
|
|
812
|
+
readonly High: 2;
|
|
813
|
+
};
|
|
814
|
+
type Criticality = typeof Criticality[keyof typeof Criticality];
|
|
815
|
+
|
|
816
|
+
/**
|
|
817
|
+
* MySeko.API.Client
|
|
818
|
+
*
|
|
819
|
+
*
|
|
820
|
+
*
|
|
821
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
822
|
+
* https://openapi-generator.tech
|
|
823
|
+
* Do not edit the class manually.
|
|
824
|
+
*/
|
|
825
|
+
|
|
763
826
|
/**
|
|
764
827
|
* Grid row returned to the client by the Exception Management endpoint.
|
|
765
828
|
*/
|
|
766
829
|
interface ExceptionManagementRow {
|
|
767
|
-
|
|
830
|
+
exceptionServiceLogID: number;
|
|
768
831
|
ordOrderID: string;
|
|
769
832
|
number?: string | null;
|
|
770
833
|
status?: string | null;
|
|
@@ -773,18 +836,17 @@ interface ExceptionManagementRow {
|
|
|
773
836
|
destination?: string | null;
|
|
774
837
|
shipName?: string | null;
|
|
775
838
|
consName?: string | null;
|
|
776
|
-
exceptionType?:
|
|
777
|
-
exceptionStatus?:
|
|
778
|
-
criticality?:
|
|
839
|
+
exceptionType?: ExceptionType | null;
|
|
840
|
+
exceptionStatus?: ExceptionStatus | null;
|
|
841
|
+
criticality?: Criticality | null;
|
|
779
842
|
plannedDate?: string | null;
|
|
780
843
|
latestProjectedDate?: string | null;
|
|
781
|
-
|
|
782
|
-
daysOfDelay?: number | null;
|
|
783
|
-
reason?: string | null;
|
|
784
|
-
reportedBy?: string | null;
|
|
844
|
+
description?: string | null;
|
|
785
845
|
createdDateUtc: string;
|
|
786
846
|
lastUpdatedUtc: string;
|
|
787
847
|
}
|
|
848
|
+
declare namespace ExceptionManagementRow {
|
|
849
|
+
}
|
|
788
850
|
|
|
789
851
|
/**
|
|
790
852
|
* MySeko.API.Client
|
|
@@ -810,18 +872,26 @@ interface ExceptionManagementList {
|
|
|
810
872
|
* https://openapi-generator.tech
|
|
811
873
|
* Do not edit the class manually.
|
|
812
874
|
*/
|
|
875
|
+
|
|
876
|
+
/**
|
|
877
|
+
* Represents a single ExceptionLog row returned for a specific shipment order.
|
|
878
|
+
*/
|
|
813
879
|
interface ShipmentException {
|
|
814
|
-
|
|
880
|
+
exceptionServiceLogID: number;
|
|
815
881
|
ordOrderID: string;
|
|
816
|
-
eventType?: string | null;
|
|
817
882
|
sourceType?: string | null;
|
|
818
|
-
exceptionType?:
|
|
819
|
-
|
|
820
|
-
criticality?:
|
|
821
|
-
|
|
883
|
+
exceptionType?: ExceptionType | null;
|
|
884
|
+
exceptionStatus?: ExceptionStatus | null;
|
|
885
|
+
criticality?: Criticality | null;
|
|
886
|
+
/**
|
|
887
|
+
* Formerly Reason.
|
|
888
|
+
*/
|
|
889
|
+
description?: string | null;
|
|
822
890
|
createdDateUtc: string;
|
|
823
891
|
lastUpdatedUtc: string;
|
|
824
892
|
}
|
|
893
|
+
declare namespace ShipmentException {
|
|
894
|
+
}
|
|
825
895
|
|
|
826
896
|
declare class ExceptionsService extends BaseService {
|
|
827
897
|
protected httpClient: HttpClient;
|
|
@@ -2247,5 +2317,5 @@ declare class ApiModule {
|
|
|
2247
2317
|
|
|
2248
2318
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
2249
2319
|
|
|
2250
|
-
export { APIS, AddDocumentRequest, ApiModule, AuthService, BASE_PATH, COLLECTION_FORMATS, CalendarService, CalendarViewBy, Configuration, DashboardService, DocumentCategoryType, DocumentService, ExceptionsService, HealthService, SettingsService, ShipmentService, ShipmentStage, TimelineEvent, UserService, UsergroupService, provideApi };
|
|
2251
|
-
export type { ActiveShipment, Address, BaseShipmentSummary, ConfigurationParameters, Contact, CreateIssueRequest, CreateIssueResponse, DataFormat, DataType, DeliveriesToday, Document, DocumentCategory, DocumentInfo, DocumentInfoList, EntityList, ExceptionManagementList,
|
|
2320
|
+
export { APIS, AddDocumentRequest, ApiModule, AuthService, BASE_PATH, COLLECTION_FORMATS, CalendarService, CalendarViewBy, Configuration, Criticality, DashboardService, DocumentCategoryType, DocumentService, ExceptionManagementRow, ExceptionStatus, ExceptionType, ExceptionsService, HealthService, SettingsService, ShipmentException, ShipmentService, ShipmentStage, TimelineEvent, UserService, UsergroupService, provideApi };
|
|
2321
|
+
export type { ActiveShipment, Address, BaseShipmentSummary, ConfigurationParameters, Contact, CreateIssueRequest, CreateIssueResponse, DataFormat, DataType, DeliveriesToday, Document, DocumentCategory, DocumentInfo, DocumentInfoList, EntityList, ExceptionManagementList, IntlInnerPieceDetail, IntlOuterPieceDetail, IntlPackageDetails, IntlShipmentSummary, Issue, IssueLog, IssueLogEntry, Issues, ModelError, PackageDetails, Param, ParamLocation, ParamStyle, RegGroup, SekonaPackageDetails, SekonaPieceDetail, SekonaShipmentSummary, SettingValue, SettingView, Shipment, ShipmentCalendarDateGroup, ShipmentCalendarDates, ShipmentCalendarItem, ShipmentContainer, ShipmentExceptionStats, ShipmentParty, ShipmentPurchaseOrder, ShipmentPurchaseOrderDetails, ShipmentRouting, ShipmentSummary, ShipmentTimeline, Shipments, StandardDataFormat, StandardDataType, StandardParamStyle, UpdateIssueRequest, User, UserAccount };
|