@indigina/myseko-api 0.0.29 → 0.0.31
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
|
@@ -292,6 +292,8 @@ interface ShipmentCalendarItem {
|
|
|
292
292
|
consReference?: string | null;
|
|
293
293
|
isCalculatedScheduledDelivery?: boolean | null;
|
|
294
294
|
containerNumbers?: string | null;
|
|
295
|
+
mode?: string | null;
|
|
296
|
+
typeOrderID?: string | null;
|
|
295
297
|
}
|
|
296
298
|
|
|
297
299
|
/**
|
|
@@ -705,6 +707,161 @@ declare class DocumentService extends BaseService {
|
|
|
705
707
|
static ɵprov: i0.ɵɵInjectableDeclaration<DocumentService>;
|
|
706
708
|
}
|
|
707
709
|
|
|
710
|
+
/**
|
|
711
|
+
* MySeko.API.Client
|
|
712
|
+
*
|
|
713
|
+
*
|
|
714
|
+
*
|
|
715
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
716
|
+
* https://openapi-generator.tech
|
|
717
|
+
* Do not edit the class manually.
|
|
718
|
+
*/
|
|
719
|
+
/**
|
|
720
|
+
* Type of exception
|
|
721
|
+
*/
|
|
722
|
+
declare const ExceptionType: {
|
|
723
|
+
readonly TransitDelay: "TransitDelay";
|
|
724
|
+
readonly ArrivalOverdue: "ArrivalOverdue";
|
|
725
|
+
readonly DeliveryOverdue: "DeliveryOverdue";
|
|
726
|
+
readonly DeliveryAppointmentOverdue: "DeliveryAppointmentOverdue";
|
|
727
|
+
readonly LateDelivery: "LateDelivery";
|
|
728
|
+
readonly ConsigneeUnreachable: "ConsigneeUnreachable";
|
|
729
|
+
readonly FailedDelivery: "FailedDelivery";
|
|
730
|
+
readonly PartialDelivery: "PartialDelivery";
|
|
731
|
+
readonly IncompletePod: "IncompletePOD";
|
|
732
|
+
};
|
|
733
|
+
type ExceptionType = typeof ExceptionType[keyof typeof ExceptionType];
|
|
734
|
+
|
|
735
|
+
/**
|
|
736
|
+
* MySeko.API.Client
|
|
737
|
+
*
|
|
738
|
+
*
|
|
739
|
+
*
|
|
740
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
741
|
+
* https://openapi-generator.tech
|
|
742
|
+
* Do not edit the class manually.
|
|
743
|
+
*/
|
|
744
|
+
/**
|
|
745
|
+
* Status of exception
|
|
746
|
+
*/
|
|
747
|
+
declare const ExceptionStatus: {
|
|
748
|
+
readonly Active: "Active";
|
|
749
|
+
readonly Closed: "Closed";
|
|
750
|
+
};
|
|
751
|
+
type ExceptionStatus = typeof ExceptionStatus[keyof typeof ExceptionStatus];
|
|
752
|
+
|
|
753
|
+
/**
|
|
754
|
+
* MySeko.API.Client
|
|
755
|
+
*
|
|
756
|
+
*
|
|
757
|
+
*
|
|
758
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
759
|
+
* https://openapi-generator.tech
|
|
760
|
+
* Do not edit the class manually.
|
|
761
|
+
*/
|
|
762
|
+
/**
|
|
763
|
+
* Criticality level of exception
|
|
764
|
+
*/
|
|
765
|
+
declare const Criticality: {
|
|
766
|
+
readonly Low: "Low";
|
|
767
|
+
readonly Medium: "Medium";
|
|
768
|
+
readonly High: "High";
|
|
769
|
+
};
|
|
770
|
+
type Criticality = typeof Criticality[keyof typeof Criticality];
|
|
771
|
+
|
|
772
|
+
/**
|
|
773
|
+
* MySeko.API.Client
|
|
774
|
+
*
|
|
775
|
+
*
|
|
776
|
+
*
|
|
777
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
778
|
+
* https://openapi-generator.tech
|
|
779
|
+
* Do not edit the class manually.
|
|
780
|
+
*/
|
|
781
|
+
|
|
782
|
+
interface Exception {
|
|
783
|
+
id: number;
|
|
784
|
+
sourceType?: string | null;
|
|
785
|
+
sourceId?: string | null;
|
|
786
|
+
exceptionType?: ExceptionType;
|
|
787
|
+
status?: ExceptionStatus;
|
|
788
|
+
criticality?: Criticality;
|
|
789
|
+
reason?: string | null;
|
|
790
|
+
}
|
|
791
|
+
declare namespace Exception {
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
/**
|
|
795
|
+
* MySeko.API.Client
|
|
796
|
+
*
|
|
797
|
+
*
|
|
798
|
+
*
|
|
799
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
800
|
+
* https://openapi-generator.tech
|
|
801
|
+
* Do not edit the class manually.
|
|
802
|
+
*/
|
|
803
|
+
|
|
804
|
+
interface Exceptions {
|
|
805
|
+
total: number;
|
|
806
|
+
data: Array<Exception>;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
declare class ExceptionsService extends BaseService {
|
|
810
|
+
protected httpClient: HttpClient;
|
|
811
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
812
|
+
/**
|
|
813
|
+
* Get a specific exception by ID
|
|
814
|
+
* @endpoint get /exceptions/{id}
|
|
815
|
+
* @param id
|
|
816
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
817
|
+
* @param reportProgress flag to report request and response progress.
|
|
818
|
+
* @param options additional options
|
|
819
|
+
*/
|
|
820
|
+
getException(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
821
|
+
httpHeaderAccept?: 'application/json';
|
|
822
|
+
context?: HttpContext;
|
|
823
|
+
transferCache?: boolean;
|
|
824
|
+
}): Observable<Exception>;
|
|
825
|
+
getException(id: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
826
|
+
httpHeaderAccept?: 'application/json';
|
|
827
|
+
context?: HttpContext;
|
|
828
|
+
transferCache?: boolean;
|
|
829
|
+
}): Observable<HttpResponse<Exception>>;
|
|
830
|
+
getException(id: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
831
|
+
httpHeaderAccept?: 'application/json';
|
|
832
|
+
context?: HttpContext;
|
|
833
|
+
transferCache?: boolean;
|
|
834
|
+
}): Observable<HttpEvent<Exception>>;
|
|
835
|
+
/**
|
|
836
|
+
* Get all exceptions
|
|
837
|
+
* @endpoint get /exceptions
|
|
838
|
+
* @param $skip
|
|
839
|
+
* @param $top
|
|
840
|
+
* @param $orderby
|
|
841
|
+
* @param $filter
|
|
842
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
843
|
+
* @param reportProgress flag to report request and response progress.
|
|
844
|
+
* @param options additional options
|
|
845
|
+
*/
|
|
846
|
+
getExceptions($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
847
|
+
httpHeaderAccept?: 'application/json';
|
|
848
|
+
context?: HttpContext;
|
|
849
|
+
transferCache?: boolean;
|
|
850
|
+
}): Observable<Exceptions>;
|
|
851
|
+
getExceptions($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
852
|
+
httpHeaderAccept?: 'application/json';
|
|
853
|
+
context?: HttpContext;
|
|
854
|
+
transferCache?: boolean;
|
|
855
|
+
}): Observable<HttpResponse<Exceptions>>;
|
|
856
|
+
getExceptions($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
857
|
+
httpHeaderAccept?: 'application/json';
|
|
858
|
+
context?: HttpContext;
|
|
859
|
+
transferCache?: boolean;
|
|
860
|
+
}): Observable<HttpEvent<Exceptions>>;
|
|
861
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExceptionsService, [null, { optional: true; }, { optional: true; }]>;
|
|
862
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ExceptionsService>;
|
|
863
|
+
}
|
|
864
|
+
|
|
708
865
|
declare class HealthService extends BaseService {
|
|
709
866
|
protected httpClient: HttpClient;
|
|
710
867
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
@@ -1984,7 +2141,7 @@ declare class UsergroupService extends BaseService {
|
|
|
1984
2141
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsergroupService>;
|
|
1985
2142
|
}
|
|
1986
2143
|
|
|
1987
|
-
declare const APIS: (typeof AuthService | typeof CalendarService | typeof DashboardService | typeof DocumentService | typeof HealthService | typeof SettingsService | typeof ShipmentService | typeof UserService | typeof UsergroupService)[];
|
|
2144
|
+
declare const APIS: (typeof AuthService | typeof CalendarService | typeof DashboardService | typeof DocumentService | typeof ExceptionsService | typeof HealthService | typeof SettingsService | typeof ShipmentService | typeof UserService | typeof UsergroupService)[];
|
|
1988
2145
|
|
|
1989
2146
|
/**
|
|
1990
2147
|
* MySeko.API.Client
|
|
@@ -2064,5 +2221,5 @@ declare class ApiModule {
|
|
|
2064
2221
|
|
|
2065
2222
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
2066
2223
|
|
|
2067
|
-
export { APIS, AddDocumentRequest, ApiModule, AuthService, BASE_PATH, COLLECTION_FORMATS, CalendarService, CalendarViewBy, Configuration, DashboardService, DocumentCategoryType, DocumentService, HealthService, SettingsService, ShipmentService, ShipmentStage, TimelineEvent, UserService, UsergroupService, provideApi };
|
|
2068
|
-
export type { ActiveShipment, Address, BaseShipmentSummary, ConfigurationParameters, Contact, CreateIssueRequest, CreateIssueResponse, DataFormat, DataType, DeliveriesToday, Document, DocumentCategory, DocumentInfo, DocumentInfoList, EntityList, IntlInnerPieceDetail, IntlOuterPieceDetail, IntlPackageDetails, IntlShipmentSummary, Issue, IssueLog, IssueLogEntry, Issues, ModelError, PackageDetails, Param, ParamLocation, ParamStyle, RegGroup, SekonaPackageDetails, SekonaPieceDetail, SekonaShipmentSummary, SettingValue, SettingView, Shipment, ShipmentCalendarDateGroup, ShipmentCalendarDates, ShipmentCalendarItem, ShipmentContainer, ShipmentParty, ShipmentPurchaseOrder, ShipmentPurchaseOrderDetails, ShipmentRouting, ShipmentSummary, ShipmentTimeline, Shipments, StandardDataFormat, StandardDataType, StandardParamStyle, UpdateIssueRequest, User, UserAccount };
|
|
2224
|
+
export { APIS, AddDocumentRequest, ApiModule, AuthService, BASE_PATH, COLLECTION_FORMATS, CalendarService, CalendarViewBy, Configuration, Criticality, DashboardService, DocumentCategoryType, DocumentService, Exception, ExceptionStatus, ExceptionType, ExceptionsService, HealthService, SettingsService, ShipmentService, ShipmentStage, TimelineEvent, UserService, UsergroupService, provideApi };
|
|
2225
|
+
export type { ActiveShipment, Address, BaseShipmentSummary, ConfigurationParameters, Contact, CreateIssueRequest, CreateIssueResponse, DataFormat, DataType, DeliveriesToday, Document, DocumentCategory, DocumentInfo, DocumentInfoList, EntityList, Exceptions, IntlInnerPieceDetail, IntlOuterPieceDetail, IntlPackageDetails, IntlShipmentSummary, Issue, IssueLog, IssueLogEntry, Issues, ModelError, PackageDetails, Param, ParamLocation, ParamStyle, RegGroup, SekonaPackageDetails, SekonaPieceDetail, SekonaShipmentSummary, SettingValue, SettingView, Shipment, ShipmentCalendarDateGroup, ShipmentCalendarDates, ShipmentCalendarItem, ShipmentContainer, ShipmentParty, ShipmentPurchaseOrder, ShipmentPurchaseOrderDetails, ShipmentRouting, ShipmentSummary, ShipmentTimeline, Shipments, StandardDataFormat, StandardDataType, StandardParamStyle, UpdateIssueRequest, User, UserAccount };
|