@indigina/myseko-api 0.0.49 → 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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @indigina/myseko-api@0.0.49
1
+ # @indigina/myseko-api@0.0.51
2
2
 
3
3
  MySeko API Client for Angular applications
4
4
 
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
24
24
  _published:_
25
25
 
26
26
  ```console
27
- npm install @indigina/myseko-api@0.0.49 --save
27
+ npm install @indigina/myseko-api@0.0.51 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
@@ -890,6 +890,97 @@ class ExceptionsService extends BaseService {
890
890
  super(basePath, configuration);
891
891
  this.httpClient = httpClient;
892
892
  }
893
+ getShipmentExceptionKanbanCounts(columnGroup, rowGroup, rowSkip, rowTake, search, statusFilter, observe = 'body', reportProgress = false, options) {
894
+ if (columnGroup === null || columnGroup === undefined) {
895
+ throw new Error('Required parameter columnGroup was null or undefined when calling getShipmentExceptionKanbanCounts.');
896
+ }
897
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
898
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'ColumnGroup', columnGroup, QueryParamStyle.Form, true);
899
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'RowGroup', rowGroup, QueryParamStyle.Form, true);
900
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'RowSkip', rowSkip, QueryParamStyle.Form, true);
901
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'RowTake', rowTake, QueryParamStyle.Form, true);
902
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'Search', search, QueryParamStyle.Form, true);
903
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'StatusFilter', statusFilter, QueryParamStyle.Form, true);
904
+ let localVarHeaders = this.defaultHeaders;
905
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
906
+ 'application/json'
907
+ ]);
908
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
909
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
910
+ }
911
+ const localVarHttpContext = options?.context ?? new HttpContext();
912
+ const localVarTransferCache = options?.transferCache ?? true;
913
+ let responseType_ = 'json';
914
+ if (localVarHttpHeaderAcceptSelected) {
915
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
916
+ responseType_ = 'text';
917
+ }
918
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
919
+ responseType_ = 'json';
920
+ }
921
+ else {
922
+ responseType_ = 'blob';
923
+ }
924
+ }
925
+ let localVarPath = `/myseko/shipments/exceptions/kanban/counts`;
926
+ const { basePath, withCredentials } = this.configuration;
927
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
928
+ context: localVarHttpContext,
929
+ params: localVarQueryParameters.toHttpParams(),
930
+ responseType: responseType_,
931
+ ...(withCredentials ? { withCredentials } : {}),
932
+ headers: localVarHeaders,
933
+ observe: observe,
934
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
935
+ reportProgress: reportProgress
936
+ });
937
+ }
938
+ getShipmentExceptionKanbanRow(columnGroup, rowGroup, rowValue, skip, top, filter, orderBy, observe = 'body', reportProgress = false, options) {
939
+ if (columnGroup === null || columnGroup === undefined) {
940
+ throw new Error('Required parameter columnGroup was null or undefined when calling getShipmentExceptionKanbanRow.');
941
+ }
942
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
943
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'ColumnGroup', columnGroup, QueryParamStyle.Form, true);
944
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'RowGroup', rowGroup, QueryParamStyle.Form, true);
945
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'RowValue', rowValue, QueryParamStyle.Form, true);
946
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'Skip', skip, QueryParamStyle.Form, true);
947
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'Top', top, QueryParamStyle.Form, true);
948
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'Filter', filter, QueryParamStyle.Form, true);
949
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'OrderBy', orderBy, QueryParamStyle.Form, true);
950
+ let localVarHeaders = this.defaultHeaders;
951
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
952
+ 'application/json'
953
+ ]);
954
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
955
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
956
+ }
957
+ const localVarHttpContext = options?.context ?? new HttpContext();
958
+ const localVarTransferCache = options?.transferCache ?? true;
959
+ let responseType_ = 'json';
960
+ if (localVarHttpHeaderAcceptSelected) {
961
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
962
+ responseType_ = 'text';
963
+ }
964
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
965
+ responseType_ = 'json';
966
+ }
967
+ else {
968
+ responseType_ = 'blob';
969
+ }
970
+ }
971
+ let localVarPath = `/myseko/shipments/exceptions/kanban/row`;
972
+ const { basePath, withCredentials } = this.configuration;
973
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
974
+ context: localVarHttpContext,
975
+ params: localVarQueryParameters.toHttpParams(),
976
+ responseType: responseType_,
977
+ ...(withCredentials ? { withCredentials } : {}),
978
+ headers: localVarHeaders,
979
+ observe: observe,
980
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
981
+ reportProgress: reportProgress
982
+ });
983
+ }
893
984
  getShipmentExceptionManagement($skip, $top, $filter, $orderby, $select, $expand, observe = 'body', reportProgress = false, options) {
894
985
  let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
895
986
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
@@ -2301,6 +2392,16 @@ const DocumentCategoryType = {
2301
2392
  * Do not edit the class manually.
2302
2393
  */
2303
2394
 
2395
+ /**
2396
+ * MySeko.API.Client
2397
+ *
2398
+ *
2399
+ *
2400
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2401
+ * https://openapi-generator.tech
2402
+ * Do not edit the class manually.
2403
+ */
2404
+
2304
2405
  /**
2305
2406
  * MySeko.API.Client
2306
2407
  *