@indigina/myseko-api 0.0.50 → 0.0.51

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.50",
3
+ "version": "0.0.51",
4
4
  "description": "OpenAPI client for @indigina/myseko-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -788,6 +788,41 @@ declare class DocumentService extends BaseService {
788
788
  static ɵprov: i0.ɵɵInjectableDeclaration<DocumentService>;
789
789
  }
790
790
 
791
+ /**
792
+ * MySeko.API.Client
793
+ *
794
+ *
795
+ *
796
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
797
+ * https://openapi-generator.tech
798
+ * Do not edit the class manually.
799
+ */
800
+ interface ExceptionKanbanCell {
801
+ column: string;
802
+ row?: string | null;
803
+ count: number;
804
+ }
805
+
806
+ /**
807
+ * MySeko.API.Client
808
+ *
809
+ *
810
+ *
811
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
812
+ * https://openapi-generator.tech
813
+ * Do not edit the class manually.
814
+ */
815
+
816
+ /**
817
+ * Column/row counts for the exception management kanban board.
818
+ */
819
+ interface ExceptionKanbanCounts {
820
+ columns: Array<string>;
821
+ totalRows: number;
822
+ rows: Array<string>;
823
+ cells: Array<ExceptionKanbanCell>;
824
+ }
825
+
791
826
  /**
792
827
  * MySeko.API.Client
793
828
  *
@@ -892,6 +927,54 @@ interface ExceptionManagementRow {
892
927
  declare namespace ExceptionManagementRow {
893
928
  }
894
929
 
930
+ /**
931
+ * MySeko.API.Client
932
+ *
933
+ *
934
+ *
935
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
936
+ * https://openapi-generator.tech
937
+ * Do not edit the class manually.
938
+ */
939
+
940
+ interface ExceptionKanbanRowColumn {
941
+ column: string;
942
+ items: Array<ExceptionManagementRow>;
943
+ }
944
+
945
+ /**
946
+ * MySeko.API.Client
947
+ *
948
+ *
949
+ *
950
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
951
+ * https://openapi-generator.tech
952
+ * Do not edit the class manually.
953
+ */
954
+
955
+ interface ExceptionKanbanRowGroup {
956
+ rowValue: string;
957
+ columns: Array<ExceptionKanbanRowColumn>;
958
+ }
959
+
960
+ /**
961
+ * MySeko.API.Client
962
+ *
963
+ *
964
+ *
965
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
966
+ * https://openapi-generator.tech
967
+ * Do not edit the class manually.
968
+ */
969
+
970
+ /**
971
+ * Rows and cards for the exception management kanban board.
972
+ */
973
+ interface ExceptionKanbanRowList {
974
+ total: number;
975
+ data: Array<ExceptionKanbanRowGroup>;
976
+ }
977
+
895
978
  /**
896
979
  * MySeko.API.Client
897
980
  *
@@ -945,6 +1028,63 @@ declare namespace ShipmentException {
945
1028
  declare class ExceptionsService extends BaseService {
946
1029
  protected httpClient: HttpClient;
947
1030
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1031
+ /**
1032
+ * Get shipment exception kanban board column/row counts
1033
+ * @endpoint get /myseko/shipments/exceptions/kanban/counts
1034
+ * @param columnGroup
1035
+ * @param rowGroup
1036
+ * @param rowSkip
1037
+ * @param rowTake
1038
+ * @param search
1039
+ * @param statusFilter
1040
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1041
+ * @param reportProgress flag to report request and response progress.
1042
+ * @param options additional options
1043
+ */
1044
+ getShipmentExceptionKanbanCounts(columnGroup: string, rowGroup?: string, rowSkip?: number, rowTake?: number, search?: string, statusFilter?: string, observe?: 'body', reportProgress?: boolean, options?: {
1045
+ httpHeaderAccept?: 'application/json';
1046
+ context?: HttpContext;
1047
+ transferCache?: boolean;
1048
+ }): Observable<ExceptionKanbanCounts>;
1049
+ getShipmentExceptionKanbanCounts(columnGroup: string, rowGroup?: string, rowSkip?: number, rowTake?: number, search?: string, statusFilter?: string, observe?: 'response', reportProgress?: boolean, options?: {
1050
+ httpHeaderAccept?: 'application/json';
1051
+ context?: HttpContext;
1052
+ transferCache?: boolean;
1053
+ }): Observable<HttpResponse<ExceptionKanbanCounts>>;
1054
+ getShipmentExceptionKanbanCounts(columnGroup: string, rowGroup?: string, rowSkip?: number, rowTake?: number, search?: string, statusFilter?: string, observe?: 'events', reportProgress?: boolean, options?: {
1055
+ httpHeaderAccept?: 'application/json';
1056
+ context?: HttpContext;
1057
+ transferCache?: boolean;
1058
+ }): Observable<HttpEvent<ExceptionKanbanCounts>>;
1059
+ /**
1060
+ * Get shipment exception kanban board rows and cards
1061
+ * @endpoint get /myseko/shipments/exceptions/kanban/row
1062
+ * @param columnGroup
1063
+ * @param rowGroup
1064
+ * @param rowValue
1065
+ * @param skip
1066
+ * @param top
1067
+ * @param filter
1068
+ * @param orderBy
1069
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1070
+ * @param reportProgress flag to report request and response progress.
1071
+ * @param options additional options
1072
+ */
1073
+ getShipmentExceptionKanbanRow(columnGroup: string, rowGroup?: string, rowValue?: string, skip?: number, top?: number, filter?: string, orderBy?: string, observe?: 'body', reportProgress?: boolean, options?: {
1074
+ httpHeaderAccept?: 'application/json';
1075
+ context?: HttpContext;
1076
+ transferCache?: boolean;
1077
+ }): Observable<ExceptionKanbanRowList>;
1078
+ getShipmentExceptionKanbanRow(columnGroup: string, rowGroup?: string, rowValue?: string, skip?: number, top?: number, filter?: string, orderBy?: string, observe?: 'response', reportProgress?: boolean, options?: {
1079
+ httpHeaderAccept?: 'application/json';
1080
+ context?: HttpContext;
1081
+ transferCache?: boolean;
1082
+ }): Observable<HttpResponse<ExceptionKanbanRowList>>;
1083
+ getShipmentExceptionKanbanRow(columnGroup: string, rowGroup?: string, rowValue?: string, skip?: number, top?: number, filter?: string, orderBy?: string, observe?: 'events', reportProgress?: boolean, options?: {
1084
+ httpHeaderAccept?: 'application/json';
1085
+ context?: HttpContext;
1086
+ transferCache?: boolean;
1087
+ }): Observable<HttpEvent<ExceptionKanbanRowList>>;
948
1088
  /**
949
1089
  * Get all shipment exceptions (exception management grid)
950
1090
  * @endpoint get /myseko/shipments/exceptions
@@ -2421,4 +2561,4 @@ declare class ApiModule {
2421
2561
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
2422
2562
 
2423
2563
  export { APIS, AddDocumentRequest, ApiModule, AuthService, BASE_PATH, COLLECTION_FORMATS, CalendarDateTypeUsed, CalendarEvenType, CalendarService, CalendarViewBy, Configuration, Criticality, DashboardService, DocumentCategoryType, DocumentService, ExceptionManagementRow, ExceptionStatus, ExceptionType, ExceptionsService, HealthService, SettingsService, ShipmentCalendarItem, ShipmentException, ShipmentService, ShipmentStage, TimelineEvent, UserService, UsergroupService, provideApi };
2424
- 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, ShipmentContainer, ShipmentExceptionStats, ShipmentParty, ShipmentPurchaseOrder, ShipmentPurchaseOrderDetails, ShipmentRouting, ShipmentSummary, ShipmentTimeline, Shipments, StandardDataFormat, StandardDataType, StandardParamStyle, UpdateIssueRequest, User, UserAccount };
2564
+ export type { ActiveShipment, Address, BaseShipmentSummary, ConfigurationParameters, Contact, CreateIssueRequest, CreateIssueResponse, DataFormat, DataType, DeliveriesToday, Document, DocumentCategory, DocumentInfo, DocumentInfoList, EntityList, ExceptionKanbanCell, ExceptionKanbanCounts, ExceptionKanbanRowColumn, ExceptionKanbanRowGroup, ExceptionKanbanRowList, ExceptionManagementList, IntlInnerPieceDetail, IntlOuterPieceDetail, IntlPackageDetails, IntlShipmentSummary, Issue, IssueLog, IssueLogEntry, Issues, ModelError, PackageDetails, Param, ParamLocation, ParamStyle, RegGroup, SekonaPackageDetails, SekonaPieceDetail, SekonaShipmentSummary, SettingValue, SettingView, Shipment, ShipmentCalendarDateGroup, ShipmentCalendarDates, ShipmentContainer, ShipmentExceptionStats, ShipmentParty, ShipmentPurchaseOrder, ShipmentPurchaseOrderDetails, ShipmentRouting, ShipmentSummary, ShipmentTimeline, Shipments, StandardDataFormat, StandardDataType, StandardParamStyle, UpdateIssueRequest, User, UserAccount };