@indigina/myseko-api 0.0.51 → 0.0.52

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.51",
3
+ "version": "0.0.52",
4
4
  "description": "OpenAPI client for @indigina/myseko-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -901,6 +901,7 @@ type Criticality = typeof Criticality[keyof typeof Criticality];
901
901
  interface ExceptionManagementRow {
902
902
  exceptionServiceLogID: number;
903
903
  ordOrderID: string;
904
+ typeOrderID?: string | null;
904
905
  number?: string | null;
905
906
  status?: string | null;
906
907
  serviceLevel?: string | null;
@@ -939,6 +940,7 @@ declare namespace ExceptionManagementRow {
939
940
 
940
941
  interface ExceptionKanbanRowColumn {
941
942
  column: string;
943
+ hasMore?: boolean;
942
944
  items: Array<ExceptionManagementRow>;
943
945
  }
944
946
 
@@ -1031,27 +1033,32 @@ declare class ExceptionsService extends BaseService {
1031
1033
  /**
1032
1034
  * Get shipment exception kanban board column/row counts
1033
1035
  * @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
1036
+ * @param columnGroup The field whose distinct values become the board columns. Required. Defaults to myseko.Models.Shipments.Exceptions.Kanban.KanbanGroupField.Criticality when not supplied by the caller.
1037
+ * @param rowGroup The field whose distinct values become the board rows. Optional. When null the board renders a single flat column layout with no row headers. Must differ from myseko.Models.Shipments.Exceptions.Kanban.KanbanCountsRequestDto.ColumnGroup.
1038
+ * @param rowSkip Row-labels to skip (zero-based). Defaults to 0. Ignored when RowGroup is not set.
1039
+ * @param rowTake Maximum number of row-labels to return per call. Defaults to 25. The response TotalRows always reflects the full distinct row count so the client can compute the total number of pages. Ignored when RowGroup is not set.
1040
+ * @param $filter OData filter expression (e.g., \&#39;contains(Number, \&#39;\&#39;TSE\&#39;\&#39;)\&#39;)
1041
+ * @param $orderby OData orderby expression (e.g., \&#39;OrderID desc\&#39;)
1042
+ * @param $select OData select expression (comma-separated properties)
1043
+ * @param $expand OData expand expression (comma-separated navigation properties)
1044
+ * @param $top OData top limit (max results)
1045
+ * @param $skip OData skip offset
1046
+ * @param $count Include total count (true/false)
1040
1047
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1041
1048
  * @param reportProgress flag to report request and response progress.
1042
1049
  * @param options additional options
1043
1050
  */
1044
- getShipmentExceptionKanbanCounts(columnGroup: string, rowGroup?: string, rowSkip?: number, rowTake?: number, search?: string, statusFilter?: string, observe?: 'body', reportProgress?: boolean, options?: {
1051
+ getShipmentExceptionKanbanCounts(columnGroup: string, rowGroup?: string, rowSkip?: number, rowTake?: number, $filter?: string, $orderby?: string, $select?: string, $expand?: string, $top?: number, $skip?: number, $count?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
1045
1052
  httpHeaderAccept?: 'application/json';
1046
1053
  context?: HttpContext;
1047
1054
  transferCache?: boolean;
1048
1055
  }): Observable<ExceptionKanbanCounts>;
1049
- getShipmentExceptionKanbanCounts(columnGroup: string, rowGroup?: string, rowSkip?: number, rowTake?: number, search?: string, statusFilter?: string, observe?: 'response', reportProgress?: boolean, options?: {
1056
+ getShipmentExceptionKanbanCounts(columnGroup: string, rowGroup?: string, rowSkip?: number, rowTake?: number, $filter?: string, $orderby?: string, $select?: string, $expand?: string, $top?: number, $skip?: number, $count?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
1050
1057
  httpHeaderAccept?: 'application/json';
1051
1058
  context?: HttpContext;
1052
1059
  transferCache?: boolean;
1053
1060
  }): Observable<HttpResponse<ExceptionKanbanCounts>>;
1054
- getShipmentExceptionKanbanCounts(columnGroup: string, rowGroup?: string, rowSkip?: number, rowTake?: number, search?: string, statusFilter?: string, observe?: 'events', reportProgress?: boolean, options?: {
1061
+ getShipmentExceptionKanbanCounts(columnGroup: string, rowGroup?: string, rowSkip?: number, rowTake?: number, $filter?: string, $orderby?: string, $select?: string, $expand?: string, $top?: number, $skip?: number, $count?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
1055
1062
  httpHeaderAccept?: 'application/json';
1056
1063
  context?: HttpContext;
1057
1064
  transferCache?: boolean;
@@ -1059,28 +1066,33 @@ declare class ExceptionsService extends BaseService {
1059
1066
  /**
1060
1067
  * Get shipment exception kanban board rows and cards
1061
1068
  * @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 columnGroup The field whose distinct values define the board columns. Required.
1070
+ * @param rowGroup The field used for row grouping. Null when row grouping is not active.
1071
+ * @param rowValue The specific row value to fetch cards for (e.g. \&#39;CHARTER LINK\&#39; when RowGroup &#x3D; ShipName). Omitted: returns a page of rows controlled by RowSkip/RowTake, each with their first card page driven by $skip/$top. Supplied: returns only the matching row at the card-level offset. Ignored when RowGroup is not set.
1072
+ * @param rowSkip Row-buckets to skip. Defaults to 0. Ignored when RowValue is supplied.
1073
+ * @param rowTake Max row-buckets per call. Defaults to 25. The response Total always reflects the full distinct row count. Ignored when RowValue is supplied.
1074
+ * @param $filter OData filter expression (e.g., \&#39;contains(Number, \&#39;\&#39;TSE\&#39;\&#39;)\&#39;)
1075
+ * @param $orderby OData orderby expression (e.g., \&#39;OrderID desc\&#39;)
1076
+ * @param $select OData select expression (comma-separated properties)
1077
+ * @param $expand OData expand expression (comma-separated navigation properties)
1078
+ * @param $top OData top limit (max results)
1079
+ * @param $skip OData skip offset
1080
+ * @param $count Include total count (true/false)
1069
1081
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1070
1082
  * @param reportProgress flag to report request and response progress.
1071
1083
  * @param options additional options
1072
1084
  */
1073
- getShipmentExceptionKanbanRow(columnGroup: string, rowGroup?: string, rowValue?: string, skip?: number, top?: number, filter?: string, orderBy?: string, observe?: 'body', reportProgress?: boolean, options?: {
1085
+ getShipmentExceptionKanbanRow(columnGroup: string, rowGroup?: string, rowValue?: string, rowSkip?: number, rowTake?: number, $filter?: string, $orderby?: string, $select?: string, $expand?: string, $top?: number, $skip?: number, $count?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
1074
1086
  httpHeaderAccept?: 'application/json';
1075
1087
  context?: HttpContext;
1076
1088
  transferCache?: boolean;
1077
1089
  }): Observable<ExceptionKanbanRowList>;
1078
- getShipmentExceptionKanbanRow(columnGroup: string, rowGroup?: string, rowValue?: string, skip?: number, top?: number, filter?: string, orderBy?: string, observe?: 'response', reportProgress?: boolean, options?: {
1090
+ getShipmentExceptionKanbanRow(columnGroup: string, rowGroup?: string, rowValue?: string, rowSkip?: number, rowTake?: number, $filter?: string, $orderby?: string, $select?: string, $expand?: string, $top?: number, $skip?: number, $count?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
1079
1091
  httpHeaderAccept?: 'application/json';
1080
1092
  context?: HttpContext;
1081
1093
  transferCache?: boolean;
1082
1094
  }): Observable<HttpResponse<ExceptionKanbanRowList>>;
1083
- getShipmentExceptionKanbanRow(columnGroup: string, rowGroup?: string, rowValue?: string, skip?: number, top?: number, filter?: string, orderBy?: string, observe?: 'events', reportProgress?: boolean, options?: {
1095
+ getShipmentExceptionKanbanRow(columnGroup: string, rowGroup?: string, rowValue?: string, rowSkip?: number, rowTake?: number, $filter?: string, $orderby?: string, $select?: string, $expand?: string, $top?: number, $skip?: number, $count?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
1084
1096
  httpHeaderAccept?: 'application/json';
1085
1097
  context?: HttpContext;
1086
1098
  transferCache?: boolean;