@indigina/myseko-api 0.0.50 → 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.50",
3
+ "version": "0.0.52",
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
  *
@@ -866,6 +901,7 @@ type Criticality = typeof Criticality[keyof typeof Criticality];
866
901
  interface ExceptionManagementRow {
867
902
  exceptionServiceLogID: number;
868
903
  ordOrderID: string;
904
+ typeOrderID?: string | null;
869
905
  number?: string | null;
870
906
  status?: string | null;
871
907
  serviceLevel?: string | null;
@@ -892,6 +928,55 @@ interface ExceptionManagementRow {
892
928
  declare namespace ExceptionManagementRow {
893
929
  }
894
930
 
931
+ /**
932
+ * MySeko.API.Client
933
+ *
934
+ *
935
+ *
936
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
937
+ * https://openapi-generator.tech
938
+ * Do not edit the class manually.
939
+ */
940
+
941
+ interface ExceptionKanbanRowColumn {
942
+ column: string;
943
+ hasMore?: boolean;
944
+ items: Array<ExceptionManagementRow>;
945
+ }
946
+
947
+ /**
948
+ * MySeko.API.Client
949
+ *
950
+ *
951
+ *
952
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
953
+ * https://openapi-generator.tech
954
+ * Do not edit the class manually.
955
+ */
956
+
957
+ interface ExceptionKanbanRowGroup {
958
+ rowValue: string;
959
+ columns: Array<ExceptionKanbanRowColumn>;
960
+ }
961
+
962
+ /**
963
+ * MySeko.API.Client
964
+ *
965
+ *
966
+ *
967
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
968
+ * https://openapi-generator.tech
969
+ * Do not edit the class manually.
970
+ */
971
+
972
+ /**
973
+ * Rows and cards for the exception management kanban board.
974
+ */
975
+ interface ExceptionKanbanRowList {
976
+ total: number;
977
+ data: Array<ExceptionKanbanRowGroup>;
978
+ }
979
+
895
980
  /**
896
981
  * MySeko.API.Client
897
982
  *
@@ -945,6 +1030,73 @@ declare namespace ShipmentException {
945
1030
  declare class ExceptionsService extends BaseService {
946
1031
  protected httpClient: HttpClient;
947
1032
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1033
+ /**
1034
+ * Get shipment exception kanban board column/row counts
1035
+ * @endpoint get /myseko/shipments/exceptions/kanban/counts
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)
1047
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1048
+ * @param reportProgress flag to report request and response progress.
1049
+ * @param options additional options
1050
+ */
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?: {
1052
+ httpHeaderAccept?: 'application/json';
1053
+ context?: HttpContext;
1054
+ transferCache?: boolean;
1055
+ }): Observable<ExceptionKanbanCounts>;
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?: {
1057
+ httpHeaderAccept?: 'application/json';
1058
+ context?: HttpContext;
1059
+ transferCache?: boolean;
1060
+ }): Observable<HttpResponse<ExceptionKanbanCounts>>;
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?: {
1062
+ httpHeaderAccept?: 'application/json';
1063
+ context?: HttpContext;
1064
+ transferCache?: boolean;
1065
+ }): Observable<HttpEvent<ExceptionKanbanCounts>>;
1066
+ /**
1067
+ * Get shipment exception kanban board rows and cards
1068
+ * @endpoint get /myseko/shipments/exceptions/kanban/row
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)
1081
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1082
+ * @param reportProgress flag to report request and response progress.
1083
+ * @param options additional options
1084
+ */
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?: {
1086
+ httpHeaderAccept?: 'application/json';
1087
+ context?: HttpContext;
1088
+ transferCache?: boolean;
1089
+ }): Observable<ExceptionKanbanRowList>;
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?: {
1091
+ httpHeaderAccept?: 'application/json';
1092
+ context?: HttpContext;
1093
+ transferCache?: boolean;
1094
+ }): Observable<HttpResponse<ExceptionKanbanRowList>>;
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?: {
1096
+ httpHeaderAccept?: 'application/json';
1097
+ context?: HttpContext;
1098
+ transferCache?: boolean;
1099
+ }): Observable<HttpEvent<ExceptionKanbanRowList>>;
948
1100
  /**
949
1101
  * Get all shipment exceptions (exception management grid)
950
1102
  * @endpoint get /myseko/shipments/exceptions
@@ -2421,4 +2573,4 @@ declare class ApiModule {
2421
2573
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
2422
2574
 
2423
2575
  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 };
2576
+ 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 };