@indigina/wms-api 0.0.114 → 0.0.116

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.
@@ -227,6 +227,64 @@ declare class Configuration {
227
227
  private defaultEncodeParam;
228
228
  }
229
229
 
230
+ declare enum QueryParamStyle {
231
+ Json = 0,
232
+ Form = 1,
233
+ DeepObject = 2,
234
+ SpaceDelimited = 3,
235
+ PipeDelimited = 4
236
+ }
237
+ type Delimiter = "," | " " | "|" | "\t";
238
+ interface ParamOptions {
239
+ /** When true, serialized as multiple repeated key=value pairs. When false, serialized as a single key with joined values using `delimiter`. */
240
+ explode?: boolean;
241
+ /** Delimiter used when explode=false. The delimiter itself is inserted unencoded between encoded values. */
242
+ delimiter?: Delimiter;
243
+ }
244
+ declare class OpenApiHttpParams {
245
+ private params;
246
+ private defaults;
247
+ private encoder;
248
+ /**
249
+ * @param encoder Parameter serializer
250
+ * @param defaults Global defaults used when a specific parameter has no explicit options.
251
+ * By OpenAPI default, explode is true for query params with style=form.
252
+ */
253
+ constructor(encoder?: HttpParameterCodec, defaults?: {
254
+ explode?: boolean;
255
+ delimiter?: Delimiter;
256
+ });
257
+ private resolveOptions;
258
+ /**
259
+ * Replace the parameter's values and (optionally) its options.
260
+ * Options are stored per-parameter (not global).
261
+ */
262
+ set(key: string, values: string[] | string, options?: ParamOptions): this;
263
+ /**
264
+ * Append a single value to the parameter. If the parameter didn't exist it will be created
265
+ * and use resolved options (global defaults merged with any provided options).
266
+ */
267
+ append(key: string, value: string, options?: ParamOptions): this;
268
+ /**
269
+ * Serialize to a query string according to per-parameter OpenAPI options.
270
+ * - If explode=true for that parameter → repeated key=value pairs (each value encoded).
271
+ * - If explode=false for that parameter → single key=value where values are individually encoded
272
+ * and joined using the configured delimiter. The delimiter character is inserted AS-IS
273
+ * (not percent-encoded).
274
+ */
275
+ toString(): string;
276
+ /**
277
+ * Return parameters as a plain record.
278
+ * - If a parameter has exactly one value, returns that value directly.
279
+ * - If a parameter has multiple values, returns a readonly array of values.
280
+ */
281
+ toRecord(): Record<string, string | number | boolean | ReadonlyArray<string | number | boolean>>;
282
+ /**
283
+ * Return an Angular's HttpParams with an identity parameter codec as the parameters are already encoded.
284
+ */
285
+ toHttpParams(): HttpParams;
286
+ }
287
+
230
288
  /**
231
289
  * Wms.API.Client
232
290
  *
@@ -244,8 +302,7 @@ declare class BaseService {
244
302
  encoder: HttpParameterCodec;
245
303
  constructor(basePath?: string | string[], configuration?: Configuration);
246
304
  protected canConsumeForm(consumes: string[]): boolean;
247
- protected addToHttpParams(httpParams: HttpParams, value: any, key?: string, isDeep?: boolean): HttpParams;
248
- protected addToHttpParamsRecursive(httpParams: HttpParams, value?: any, key?: string, isDeep?: boolean): HttpParams;
305
+ protected addToHttpParams(httpParams: OpenApiHttpParams, key: string, value: any | null | undefined, paramStyle: QueryParamStyle, explode: boolean): OpenApiHttpParams;
249
306
  }
250
307
 
251
308
  declare class AnalyticsService extends BaseService {
@@ -253,9 +310,11 @@ declare class AnalyticsService extends BaseService {
253
310
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
254
311
  /**
255
312
  * Create a new report
313
+ * @endpoint post /analytics/reports
256
314
  * @param report
257
315
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
258
316
  * @param reportProgress flag to report request and response progress.
317
+ * @param options additional options
259
318
  */
260
319
  createReport(report: Report, observe?: 'body', reportProgress?: boolean, options?: {
261
320
  httpHeaderAccept?: 'application/json';
@@ -274,9 +333,11 @@ declare class AnalyticsService extends BaseService {
274
333
  }): Observable<HttpEvent<Report>>;
275
334
  /**
276
335
  * Delete a report
336
+ * @endpoint delete /analytics/reports/{id}
277
337
  * @param id
278
338
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
279
339
  * @param reportProgress flag to report request and response progress.
340
+ * @param options additional options
280
341
  */
281
342
  deleteReport(id: number, observe?: 'body', reportProgress?: boolean, options?: {
282
343
  httpHeaderAccept?: undefined;
@@ -295,8 +356,10 @@ declare class AnalyticsService extends BaseService {
295
356
  }): Observable<HttpEvent<any>>;
296
357
  /**
297
358
  * Get Castore Weekly Reports
359
+ * @endpoint get /analytics/castore-weekly
298
360
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
299
361
  * @param reportProgress flag to report request and response progress.
362
+ * @param options additional options
300
363
  */
301
364
  getCastoreWeeklyReports(observe?: 'body', reportProgress?: boolean, options?: {
302
365
  httpHeaderAccept?: 'application/json';
@@ -315,11 +378,13 @@ declare class AnalyticsService extends BaseService {
315
378
  }): Observable<HttpEvent<EmbedReport>>;
316
379
  /**
317
380
  * Get Embedded Report Info Model
381
+ * @endpoint get /analytics/embed
318
382
  * @param id
319
383
  * @param workspaceId
320
384
  * @param powerBiTenant
321
385
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
322
386
  * @param reportProgress flag to report request and response progress.
387
+ * @param options additional options
323
388
  */
324
389
  getEmbedded(id: string, workspaceId: string, powerBiTenant?: string, observe?: 'body', reportProgress?: boolean, options?: {
325
390
  httpHeaderAccept?: 'application/json';
@@ -338,9 +403,11 @@ declare class AnalyticsService extends BaseService {
338
403
  }): Observable<HttpEvent<EmbedReport>>;
339
404
  /**
340
405
  * Request WMS Group Reports
406
+ * @endpoint get /analytics/group-reports
341
407
  * @param reportName
342
408
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
343
409
  * @param reportProgress flag to report request and response progress.
410
+ * @param options additional options
344
411
  */
345
412
  getGroupReports(reportName: string, observe?: 'body', reportProgress?: boolean, options?: {
346
413
  httpHeaderAccept?: 'application/json';
@@ -359,9 +426,11 @@ declare class AnalyticsService extends BaseService {
359
426
  }): Observable<HttpEvent<Array<Group>>>;
360
427
  /**
361
428
  * Retrieve a report by ID
429
+ * @endpoint get /analytics/reports/{id}
362
430
  * @param id
363
431
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
364
432
  * @param reportProgress flag to report request and response progress.
433
+ * @param options additional options
365
434
  */
366
435
  getReportById(id: number, observe?: 'body', reportProgress?: boolean, options?: {
367
436
  httpHeaderAccept?: 'application/json';
@@ -380,8 +449,10 @@ declare class AnalyticsService extends BaseService {
380
449
  }): Observable<HttpEvent<Report>>;
381
450
  /**
382
451
  * Get Soho Manifest Reports
452
+ * @endpoint get /analytics/soho-manifest
383
453
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
384
454
  * @param reportProgress flag to report request and response progress.
455
+ * @param options additional options
385
456
  */
386
457
  getSohoManifestReports(observe?: 'body', reportProgress?: boolean, options?: {
387
458
  httpHeaderAccept?: 'application/json';
@@ -400,10 +471,12 @@ declare class AnalyticsService extends BaseService {
400
471
  }): Observable<HttpEvent<EmbedReport>>;
401
472
  /**
402
473
  * Update WMS Group Reports
474
+ * @endpoint put /analytics/group-reports
403
475
  * @param reportName
404
476
  * @param group
405
477
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
406
478
  * @param reportProgress flag to report request and response progress.
479
+ * @param options additional options
407
480
  */
408
481
  updateGroupReports(reportName: string, group: Array<Group>, observe?: 'body', reportProgress?: boolean, options?: {
409
482
  httpHeaderAccept?: 'application/json';
@@ -422,10 +495,12 @@ declare class AnalyticsService extends BaseService {
422
495
  }): Observable<HttpEvent<Array<Group>>>;
423
496
  /**
424
497
  * Update an existing report
498
+ * @endpoint put /analytics/reports/{id}
425
499
  * @param id
426
500
  * @param report
427
501
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
428
502
  * @param reportProgress flag to report request and response progress.
503
+ * @param options additional options
429
504
  */
430
505
  updateReport(id: number, report: Report, observe?: 'body', reportProgress?: boolean, options?: {
431
506
  httpHeaderAccept?: 'application/json';
@@ -485,6 +560,7 @@ declare class CarrierProviderIntegrationsService extends BaseService {
485
560
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
486
561
  /**
487
562
  * Getting carrier provider integrations
563
+ * @endpoint get /carrierProviderIntegrations
488
564
  * @param $skip
489
565
  * @param $top
490
566
  * @param $orderby
@@ -492,6 +568,7 @@ declare class CarrierProviderIntegrationsService extends BaseService {
492
568
  * @param $search
493
569
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
494
570
  * @param reportProgress flag to report request and response progress.
571
+ * @param options additional options
495
572
  */
496
573
  getCarrierProviderIntegrations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
497
574
  httpHeaderAccept?: 'application/json';
@@ -702,6 +779,7 @@ declare class CartonDeliveryItemsService extends BaseService {
702
779
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
703
780
  /**
704
781
  * Getting cartonDeliveryItems
782
+ * @endpoint get /cartons/deliveryItems
705
783
  * @param $skip
706
784
  * @param $top
707
785
  * @param $orderby
@@ -709,6 +787,7 @@ declare class CartonDeliveryItemsService extends BaseService {
709
787
  * @param $search
710
788
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
711
789
  * @param reportProgress flag to report request and response progress.
790
+ * @param options additional options
712
791
  */
713
792
  getCartonDeliveryItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
714
793
  httpHeaderAccept?: 'application/json';
@@ -727,6 +806,7 @@ declare class CartonDeliveryItemsService extends BaseService {
727
806
  }): Observable<HttpEvent<CartonDeliveryItems>>;
728
807
  /**
729
808
  * CartonDeliveryItems list
809
+ * @endpoint get /cartons/deliveryItems/search
730
810
  * @param $skip
731
811
  * @param $top
732
812
  * @param $orderby
@@ -734,6 +814,7 @@ declare class CartonDeliveryItemsService extends BaseService {
734
814
  * @param searchTerm
735
815
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
736
816
  * @param reportProgress flag to report request and response progress.
817
+ * @param options additional options
737
818
  */
738
819
  getCartonDeliveryItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
739
820
  httpHeaderAccept?: 'application/json';
@@ -796,6 +877,7 @@ declare class CartonMovementHistoriesService extends BaseService {
796
877
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
797
878
  /**
798
879
  * Getting carton movement histories
880
+ * @endpoint get /cartonMovementHistories
799
881
  * @param $skip
800
882
  * @param $top
801
883
  * @param $orderby
@@ -803,6 +885,7 @@ declare class CartonMovementHistoriesService extends BaseService {
803
885
  * @param $search
804
886
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
805
887
  * @param reportProgress flag to report request and response progress.
888
+ * @param options additional options
806
889
  */
807
890
  getCartonMovementHistories($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
808
891
  httpHeaderAccept?: 'application/json';
@@ -821,6 +904,7 @@ declare class CartonMovementHistoriesService extends BaseService {
821
904
  }): Observable<HttpEvent<CartonMovementHistories>>;
822
905
  /**
823
906
  * CartonMovementHistories list
907
+ * @endpoint get /cartonMovementHistories/search
824
908
  * @param $skip
825
909
  * @param $top
826
910
  * @param $orderby
@@ -828,6 +912,7 @@ declare class CartonMovementHistoriesService extends BaseService {
828
912
  * @param searchTerm
829
913
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
830
914
  * @param reportProgress flag to report request and response progress.
915
+ * @param options additional options
831
916
  */
832
917
  getCartonMovementHistoriesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
833
918
  httpHeaderAccept?: 'application/json';
@@ -896,6 +981,7 @@ declare class CartonPicksService extends BaseService {
896
981
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
897
982
  /**
898
983
  * Getting carton picks
984
+ * @endpoint get /cartonPicks
899
985
  * @param $skip
900
986
  * @param $top
901
987
  * @param $orderby
@@ -903,6 +989,7 @@ declare class CartonPicksService extends BaseService {
903
989
  * @param $search
904
990
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
905
991
  * @param reportProgress flag to report request and response progress.
992
+ * @param options additional options
906
993
  */
907
994
  getCartonPicks($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
908
995
  httpHeaderAccept?: 'application/json';
@@ -921,6 +1008,7 @@ declare class CartonPicksService extends BaseService {
921
1008
  }): Observable<HttpEvent<Picks>>;
922
1009
  /**
923
1010
  * CartonPicks list
1011
+ * @endpoint get /cartonPicks/search
924
1012
  * @param $skip
925
1013
  * @param $top
926
1014
  * @param $orderby
@@ -928,6 +1016,7 @@ declare class CartonPicksService extends BaseService {
928
1016
  * @param searchTerm
929
1017
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
930
1018
  * @param reportProgress flag to report request and response progress.
1019
+ * @param options additional options
931
1020
  */
932
1021
  getCartonPicksFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
933
1022
  httpHeaderAccept?: 'application/json';
@@ -1006,6 +1095,7 @@ declare class CartonsService extends BaseService {
1006
1095
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1007
1096
  /**
1008
1097
  * Getting cartons
1098
+ * @endpoint get /cartons
1009
1099
  * @param $skip
1010
1100
  * @param $top
1011
1101
  * @param $orderby
@@ -1013,6 +1103,7 @@ declare class CartonsService extends BaseService {
1013
1103
  * @param $search
1014
1104
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1015
1105
  * @param reportProgress flag to report request and response progress.
1106
+ * @param options additional options
1016
1107
  */
1017
1108
  getCartons($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
1018
1109
  httpHeaderAccept?: 'application/json';
@@ -1031,6 +1122,7 @@ declare class CartonsService extends BaseService {
1031
1122
  }): Observable<HttpEvent<Cartons>>;
1032
1123
  /**
1033
1124
  * Cartons list
1125
+ * @endpoint get /cartons/search
1034
1126
  * @param $skip
1035
1127
  * @param $top
1036
1128
  * @param $orderby
@@ -1038,6 +1130,7 @@ declare class CartonsService extends BaseService {
1038
1130
  * @param searchTerm
1039
1131
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1040
1132
  * @param reportProgress flag to report request and response progress.
1133
+ * @param options additional options
1041
1134
  */
1042
1135
  getCartonsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
1043
1136
  httpHeaderAccept?: 'application/json';
@@ -1093,6 +1186,7 @@ declare class CompaniesService extends BaseService {
1093
1186
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1094
1187
  /**
1095
1188
  * Getting clients
1189
+ * @endpoint get /companies/clients
1096
1190
  * @param $skip
1097
1191
  * @param $top
1098
1192
  * @param $orderby
@@ -1100,6 +1194,7 @@ declare class CompaniesService extends BaseService {
1100
1194
  * @param $search
1101
1195
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1102
1196
  * @param reportProgress flag to report request and response progress.
1197
+ * @param options additional options
1103
1198
  */
1104
1199
  getClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
1105
1200
  httpHeaderAccept?: 'application/json';
@@ -1118,9 +1213,11 @@ declare class CompaniesService extends BaseService {
1118
1213
  }): Observable<HttpEvent<Companies>>;
1119
1214
  /**
1120
1215
  * Getting suppliers
1216
+ * @endpoint get /companies/{id}/suppliers
1121
1217
  * @param id
1122
1218
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1123
1219
  * @param reportProgress flag to report request and response progress.
1220
+ * @param options additional options
1124
1221
  */
1125
1222
  getSuppliers(id: string, observe?: 'body', reportProgress?: boolean, options?: {
1126
1223
  httpHeaderAccept?: 'application/json';
@@ -1160,6 +1257,7 @@ declare class DcLocationsService extends BaseService {
1160
1257
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1161
1258
  /**
1162
1259
  * Getting dcLocations
1260
+ * @endpoint get /dcLocations
1163
1261
  * @param $skip
1164
1262
  * @param $top
1165
1263
  * @param $orderby
@@ -1167,6 +1265,7 @@ declare class DcLocationsService extends BaseService {
1167
1265
  * @param $search
1168
1266
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1169
1267
  * @param reportProgress flag to report request and response progress.
1268
+ * @param options additional options
1170
1269
  */
1171
1270
  getDcLocations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
1172
1271
  httpHeaderAccept?: 'application/json';
@@ -1228,8 +1327,10 @@ declare class DcUnitOfMeasurementService extends BaseService {
1228
1327
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1229
1328
  /**
1230
1329
  * Getting dcUnitOfMeasurement
1330
+ * @endpoint get /dcUnitOfMeasurements/me
1231
1331
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1232
1332
  * @param reportProgress flag to report request and response progress.
1333
+ * @param options additional options
1233
1334
  */
1234
1335
  getDcUnitOfMeasurement(observe?: 'body', reportProgress?: boolean, options?: {
1235
1336
  httpHeaderAccept?: 'application/json';
@@ -1356,10 +1457,12 @@ declare class DcsService extends BaseService {
1356
1457
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1357
1458
  /**
1358
1459
  * Get Counting Summary
1460
+ * @endpoint get /dcs/counting/summary
1359
1461
  * @param clientIds
1360
1462
  * @param countingTypes
1361
1463
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1362
1464
  * @param reportProgress flag to report request and response progress.
1465
+ * @param options additional options
1363
1466
  */
1364
1467
  getCountingSummary(clientIds?: Array<string>, countingTypes?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
1365
1468
  httpHeaderAccept?: 'application/json';
@@ -1378,6 +1481,7 @@ declare class DcsService extends BaseService {
1378
1481
  }): Observable<HttpEvent<CountingSummary>>;
1379
1482
  /**
1380
1483
  * Getting dc by id
1484
+ * @endpoint get /dcs/{id}/
1381
1485
  * @param id
1382
1486
  * @param $skip
1383
1487
  * @param $top
@@ -1386,6 +1490,7 @@ declare class DcsService extends BaseService {
1386
1490
  * @param $search
1387
1491
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1388
1492
  * @param reportProgress flag to report request and response progress.
1493
+ * @param options additional options
1389
1494
  */
1390
1495
  getDc(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
1391
1496
  httpHeaderAccept?: 'application/json';
@@ -1404,6 +1509,7 @@ declare class DcsService extends BaseService {
1404
1509
  }): Observable<HttpEvent<Dc>>;
1405
1510
  /**
1406
1511
  * Getting dcs
1512
+ * @endpoint get /dcs
1407
1513
  * @param $skip
1408
1514
  * @param $top
1409
1515
  * @param $orderby
@@ -1411,6 +1517,7 @@ declare class DcsService extends BaseService {
1411
1517
  * @param $search
1412
1518
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1413
1519
  * @param reportProgress flag to report request and response progress.
1520
+ * @param options additional options
1414
1521
  */
1415
1522
  getDcs($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
1416
1523
  httpHeaderAccept?: 'application/json';
@@ -1429,10 +1536,12 @@ declare class DcsService extends BaseService {
1429
1536
  }): Observable<HttpEvent<Dcs>>;
1430
1537
  /**
1431
1538
  * Get Dispatch Summary
1539
+ * @endpoint get /dcs/dispatches/summary
1432
1540
  * @param clientIds
1433
1541
  * @param orderTypes
1434
1542
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1435
1543
  * @param reportProgress flag to report request and response progress.
1544
+ * @param options additional options
1436
1545
  */
1437
1546
  getDispatchSummary(clientIds?: Array<string>, orderTypes?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
1438
1547
  httpHeaderAccept?: 'application/json';
@@ -1451,10 +1560,12 @@ declare class DcsService extends BaseService {
1451
1560
  }): Observable<HttpEvent<DispatchSummary>>;
1452
1561
  /**
1453
1562
  * Get Receiving Summary
1563
+ * @endpoint get /dcs/receiving/summary
1454
1564
  * @param clientIds
1455
1565
  * @param deliveryTypes
1456
1566
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1457
1567
  * @param reportProgress flag to report request and response progress.
1568
+ * @param options additional options
1458
1569
  */
1459
1570
  getReceivingSummary(clientIds?: Array<string>, deliveryTypes?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
1460
1571
  httpHeaderAccept?: 'application/json';
@@ -1473,10 +1584,12 @@ declare class DcsService extends BaseService {
1473
1584
  }): Observable<HttpEvent<ReceivingSummary>>;
1474
1585
  /**
1475
1586
  * Get Replenishment Summary
1587
+ * @endpoint get /dcs/replenishment/summary
1476
1588
  * @param clientIds
1477
1589
  * @param replenishmentTypes
1478
1590
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1479
1591
  * @param reportProgress flag to report request and response progress.
1592
+ * @param options additional options
1480
1593
  */
1481
1594
  getReplenishmentSummary(clientIds?: Array<string>, replenishmentTypes?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
1482
1595
  httpHeaderAccept?: 'application/json';
@@ -1745,9 +1858,11 @@ declare class DeliveriesService extends BaseService {
1745
1858
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1746
1859
  /**
1747
1860
  * Arrive deliveries
1861
+ * @endpoint put /deliveries/arrive
1748
1862
  * @param ids
1749
1863
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1750
1864
  * @param reportProgress flag to report request and response progress.
1865
+ * @param options additional options
1751
1866
  */
1752
1867
  arriveDeliveries(ids: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
1753
1868
  httpHeaderAccept?: undefined;
@@ -1766,9 +1881,11 @@ declare class DeliveriesService extends BaseService {
1766
1881
  }): Observable<HttpEvent<any>>;
1767
1882
  /**
1768
1883
  * Check if LPN is visible for a delivery by id
1884
+ * @endpoint get /deliveries/{id}/visible-lpn
1769
1885
  * @param id
1770
1886
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1771
1887
  * @param reportProgress flag to report request and response progress.
1888
+ * @param options additional options
1772
1889
  */
1773
1890
  checkVisibleLPN(id: string, observe?: 'body', reportProgress?: boolean, options?: {
1774
1891
  httpHeaderAccept?: 'application/json';
@@ -1787,9 +1904,11 @@ declare class DeliveriesService extends BaseService {
1787
1904
  }): Observable<HttpEvent<boolean>>;
1788
1905
  /**
1789
1906
  * Confirm deliveries
1907
+ * @endpoint put /deliveries/confirm
1790
1908
  * @param ids
1791
1909
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1792
1910
  * @param reportProgress flag to report request and response progress.
1911
+ * @param options additional options
1793
1912
  */
1794
1913
  confirmDeliveries(ids: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
1795
1914
  httpHeaderAccept?: undefined;
@@ -1808,9 +1927,11 @@ declare class DeliveriesService extends BaseService {
1808
1927
  }): Observable<HttpEvent<any>>;
1809
1928
  /**
1810
1929
  * Create a specific delivery
1930
+ * @endpoint post /deliveries
1811
1931
  * @param deliveryDataModel
1812
1932
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1813
1933
  * @param reportProgress flag to report request and response progress.
1934
+ * @param options additional options
1814
1935
  */
1815
1936
  createDelivery(deliveryDataModel: DeliveryDataModel, observe?: 'body', reportProgress?: boolean, options?: {
1816
1937
  httpHeaderAccept?: 'application/json';
@@ -1829,9 +1950,11 @@ declare class DeliveriesService extends BaseService {
1829
1950
  }): Observable<HttpEvent<Delivery>>;
1830
1951
  /**
1831
1952
  * Delete a specific delivery
1953
+ * @endpoint delete /deliveries/{id}
1832
1954
  * @param id
1833
1955
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1834
1956
  * @param reportProgress flag to report request and response progress.
1957
+ * @param options additional options
1835
1958
  */
1836
1959
  deleteDelivery(id: string, observe?: 'body', reportProgress?: boolean, options?: {
1837
1960
  httpHeaderAccept?: undefined;
@@ -1850,6 +1973,7 @@ declare class DeliveriesService extends BaseService {
1850
1973
  }): Observable<HttpEvent<any>>;
1851
1974
  /**
1852
1975
  * Getting deliveries
1976
+ * @endpoint get /deliveries
1853
1977
  * @param $skip
1854
1978
  * @param $top
1855
1979
  * @param $orderby
@@ -1858,6 +1982,7 @@ declare class DeliveriesService extends BaseService {
1858
1982
  * @param deliveryStatuses List of delivery statuses to filter by
1859
1983
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1860
1984
  * @param reportProgress flag to report request and response progress.
1985
+ * @param options additional options
1861
1986
  */
1862
1987
  getDeliveries($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, deliveryStatuses?: Array<OrderStatus>, observe?: 'body', reportProgress?: boolean, options?: {
1863
1988
  httpHeaderAccept?: 'application/json';
@@ -1876,6 +2001,7 @@ declare class DeliveriesService extends BaseService {
1876
2001
  }): Observable<HttpEvent<Deliveries>>;
1877
2002
  /**
1878
2003
  * Deliveries list
2004
+ * @endpoint get /deliveries/search
1879
2005
  * @param $skip
1880
2006
  * @param $top
1881
2007
  * @param $orderby
@@ -1883,6 +2009,7 @@ declare class DeliveriesService extends BaseService {
1883
2009
  * @param searchTerm
1884
2010
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1885
2011
  * @param reportProgress flag to report request and response progress.
2012
+ * @param options additional options
1886
2013
  */
1887
2014
  getDeliveriesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
1888
2015
  httpHeaderAccept?: 'application/json';
@@ -1901,9 +2028,11 @@ declare class DeliveriesService extends BaseService {
1901
2028
  }): Observable<HttpEvent<Deliveries>>;
1902
2029
  /**
1903
2030
  * Getting delivery by id
2031
+ * @endpoint get /deliveries/{id}
1904
2032
  * @param id
1905
2033
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1906
2034
  * @param reportProgress flag to report request and response progress.
2035
+ * @param options additional options
1907
2036
  */
1908
2037
  getDelivery(id: string, observe?: 'body', reportProgress?: boolean, options?: {
1909
2038
  httpHeaderAccept?: 'application/json';
@@ -1922,9 +2051,11 @@ declare class DeliveriesService extends BaseService {
1922
2051
  }): Observable<HttpEvent<Delivery>>;
1923
2052
  /**
1924
2053
  * Getting delivery summary by id
2054
+ * @endpoint get /deliveries/{id}/summary
1925
2055
  * @param id
1926
2056
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1927
2057
  * @param reportProgress flag to report request and response progress.
2058
+ * @param options additional options
1928
2059
  */
1929
2060
  getDeliverySummary(id: string, observe?: 'body', reportProgress?: boolean, options?: {
1930
2061
  httpHeaderAccept?: 'application/json';
@@ -1943,11 +2074,13 @@ declare class DeliveriesService extends BaseService {
1943
2074
  }): Observable<HttpEvent<DeliverySummary>>;
1944
2075
  /**
1945
2076
  * Update a specific delivery
2077
+ * @endpoint put /deliveries/{id}
1946
2078
  * @param id
1947
2079
  * @param delivery
1948
2080
  * @param propertiesToUpdate
1949
2081
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1950
2082
  * @param reportProgress flag to report request and response progress.
2083
+ * @param options additional options
1951
2084
  */
1952
2085
  setDelivery(id: string, delivery: Delivery, propertiesToUpdate?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
1953
2086
  httpHeaderAccept?: 'application/json';
@@ -1966,9 +2099,11 @@ declare class DeliveriesService extends BaseService {
1966
2099
  }): Observable<HttpEvent<Delivery>>;
1967
2100
  /**
1968
2101
  * Unarrive a delivery
2102
+ * @endpoint put /deliveries/{id}/unarrive
1969
2103
  * @param id
1970
2104
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1971
2105
  * @param reportProgress flag to report request and response progress.
2106
+ * @param options additional options
1972
2107
  */
1973
2108
  unarriveDelivery(id: string, observe?: 'body', reportProgress?: boolean, options?: {
1974
2109
  httpHeaderAccept?: undefined;
@@ -2072,9 +2207,11 @@ declare class DeliveryItemsService extends BaseService {
2072
2207
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
2073
2208
  /**
2074
2209
  * Create a specific delivery Item
2210
+ * @endpoint post /deliveryItems
2075
2211
  * @param deliveryItem
2076
2212
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2077
2213
  * @param reportProgress flag to report request and response progress.
2214
+ * @param options additional options
2078
2215
  */
2079
2216
  createDeliveryItem(deliveryItem: DeliveryItem, observe?: 'body', reportProgress?: boolean, options?: {
2080
2217
  httpHeaderAccept?: 'application/json';
@@ -2093,9 +2230,11 @@ declare class DeliveryItemsService extends BaseService {
2093
2230
  }): Observable<HttpEvent<DeliveryItem>>;
2094
2231
  /**
2095
2232
  * Delete a specific delivery Item
2233
+ * @endpoint delete /deliveryItems/{id}
2096
2234
  * @param id
2097
2235
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2098
2236
  * @param reportProgress flag to report request and response progress.
2237
+ * @param options additional options
2099
2238
  */
2100
2239
  deleteDeliveryItem(id: string, observe?: 'body', reportProgress?: boolean, options?: {
2101
2240
  httpHeaderAccept?: undefined;
@@ -2114,9 +2253,11 @@ declare class DeliveryItemsService extends BaseService {
2114
2253
  }): Observable<HttpEvent<any>>;
2115
2254
  /**
2116
2255
  * Getting delivery Item by id
2256
+ * @endpoint get /deliveryItems/{id}
2117
2257
  * @param id
2118
2258
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2119
2259
  * @param reportProgress flag to report request and response progress.
2260
+ * @param options additional options
2120
2261
  */
2121
2262
  getDeliveryItem(id: string, observe?: 'body', reportProgress?: boolean, options?: {
2122
2263
  httpHeaderAccept?: 'application/json';
@@ -2135,6 +2276,7 @@ declare class DeliveryItemsService extends BaseService {
2135
2276
  }): Observable<HttpEvent<DeliveryItem>>;
2136
2277
  /**
2137
2278
  * Getting delivery items
2279
+ * @endpoint get /deliveries/{id}/items
2138
2280
  * @param id
2139
2281
  * @param $skip
2140
2282
  * @param $top
@@ -2143,6 +2285,7 @@ declare class DeliveryItemsService extends BaseService {
2143
2285
  * @param $search
2144
2286
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2145
2287
  * @param reportProgress flag to report request and response progress.
2288
+ * @param options additional options
2146
2289
  */
2147
2290
  getDeliveryItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
2148
2291
  httpHeaderAccept?: 'application/json';
@@ -2161,11 +2304,13 @@ declare class DeliveryItemsService extends BaseService {
2161
2304
  }): Observable<HttpEvent<DeliveryItems>>;
2162
2305
  /**
2163
2306
  * Update a specific delivery Item
2307
+ * @endpoint put /deliveryItems/{id}
2164
2308
  * @param id
2165
2309
  * @param deliveryItem
2166
2310
  * @param propertiesToUpdate
2167
2311
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2168
2312
  * @param reportProgress flag to report request and response progress.
2313
+ * @param options additional options
2169
2314
  */
2170
2315
  setDeliveryItem(id: string, deliveryItem: DeliveryItem, propertiesToUpdate?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
2171
2316
  httpHeaderAccept?: 'application/json';
@@ -2244,6 +2389,7 @@ declare class DispatchBoxesService extends BaseService {
2244
2389
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
2245
2390
  /**
2246
2391
  * Getting dispatchBoxes
2392
+ * @endpoint get /dispatchBoxes
2247
2393
  * @param $skip
2248
2394
  * @param $top
2249
2395
  * @param $orderby
@@ -2251,6 +2397,7 @@ declare class DispatchBoxesService extends BaseService {
2251
2397
  * @param $search
2252
2398
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2253
2399
  * @param reportProgress flag to report request and response progress.
2400
+ * @param options additional options
2254
2401
  */
2255
2402
  getDispatchBoxes($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
2256
2403
  httpHeaderAccept?: 'application/json';
@@ -2269,6 +2416,7 @@ declare class DispatchBoxesService extends BaseService {
2269
2416
  }): Observable<HttpEvent<DispatchBoxes>>;
2270
2417
  /**
2271
2418
  * DispatchBoxes list
2419
+ * @endpoint get /dispatchBoxes/search
2272
2420
  * @param $skip
2273
2421
  * @param $top
2274
2422
  * @param $orderby
@@ -2276,6 +2424,7 @@ declare class DispatchBoxesService extends BaseService {
2276
2424
  * @param searchTerm
2277
2425
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2278
2426
  * @param reportProgress flag to report request and response progress.
2427
+ * @param options additional options
2279
2428
  */
2280
2429
  getDispatchBoxesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
2281
2430
  httpHeaderAccept?: 'application/json';
@@ -2412,6 +2561,7 @@ declare class DispatchItemQuantityChangesService extends BaseService {
2412
2561
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
2413
2562
  /**
2414
2563
  * Getting dispatchItemQuantityChanges
2564
+ * @endpoint get /dispatchItemQuantityChanges
2415
2565
  * @param $skip
2416
2566
  * @param $top
2417
2567
  * @param $orderby
@@ -2419,6 +2569,7 @@ declare class DispatchItemQuantityChangesService extends BaseService {
2419
2569
  * @param $search
2420
2570
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2421
2571
  * @param reportProgress flag to report request and response progress.
2572
+ * @param options additional options
2422
2573
  */
2423
2574
  getDispatchItemQuantityChanges($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
2424
2575
  httpHeaderAccept?: 'application/json';
@@ -2437,6 +2588,7 @@ declare class DispatchItemQuantityChangesService extends BaseService {
2437
2588
  }): Observable<HttpEvent<DispatchItemQuantityChanges>>;
2438
2589
  /**
2439
2590
  * DispatchItemQuantityChanges list
2591
+ * @endpoint get /dispatchItemQuantityChanges/search
2440
2592
  * @param $skip
2441
2593
  * @param $top
2442
2594
  * @param $orderby
@@ -2444,6 +2596,7 @@ declare class DispatchItemQuantityChangesService extends BaseService {
2444
2596
  * @param searchTerm
2445
2597
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2446
2598
  * @param reportProgress flag to report request and response progress.
2599
+ * @param options additional options
2447
2600
  */
2448
2601
  getDispatchItemQuantityChangesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
2449
2602
  httpHeaderAccept?: 'application/json';
@@ -2517,6 +2670,7 @@ declare class DispatchItemsService extends BaseService {
2517
2670
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
2518
2671
  /**
2519
2672
  * Getting dispatch items
2673
+ * @endpoint get /dispatches/{id}/items
2520
2674
  * @param id
2521
2675
  * @param $skip
2522
2676
  * @param $top
@@ -2525,6 +2679,7 @@ declare class DispatchItemsService extends BaseService {
2525
2679
  * @param $search
2526
2680
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2527
2681
  * @param reportProgress flag to report request and response progress.
2682
+ * @param options additional options
2528
2683
  */
2529
2684
  getDispatchItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
2530
2685
  httpHeaderAccept?: 'application/json';
@@ -2899,9 +3054,11 @@ declare class DispatchesService extends BaseService {
2899
3054
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
2900
3055
  /**
2901
3056
  * Cancel dispatches
3057
+ * @endpoint put /dispatches/cancel
2902
3058
  * @param ids
2903
3059
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2904
3060
  * @param reportProgress flag to report request and response progress.
3061
+ * @param options additional options
2905
3062
  */
2906
3063
  cancelDispatches(ids: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
2907
3064
  httpHeaderAccept?: undefined;
@@ -2920,10 +3077,12 @@ declare class DispatchesService extends BaseService {
2920
3077
  }): Observable<HttpEvent<any>>;
2921
3078
  /**
2922
3079
  * Confirm dispatches
3080
+ * @endpoint put /dispatches/confirm
2923
3081
  * @param ids
2924
3082
  * @param dispatchDate
2925
3083
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2926
3084
  * @param reportProgress flag to report request and response progress.
3085
+ * @param options additional options
2927
3086
  */
2928
3087
  confirmDispatches(ids: Array<string>, dispatchDate: string, observe?: 'body', reportProgress?: boolean, options?: {
2929
3088
  httpHeaderAccept?: undefined;
@@ -2942,9 +3101,11 @@ declare class DispatchesService extends BaseService {
2942
3101
  }): Observable<HttpEvent<any>>;
2943
3102
  /**
2944
3103
  * Getting dispatch by id
3104
+ * @endpoint get /dispatches/{id}
2945
3105
  * @param id
2946
3106
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2947
3107
  * @param reportProgress flag to report request and response progress.
3108
+ * @param options additional options
2948
3109
  */
2949
3110
  getDispatch(id: string, observe?: 'body', reportProgress?: boolean, options?: {
2950
3111
  httpHeaderAccept?: 'application/json';
@@ -2963,9 +3124,11 @@ declare class DispatchesService extends BaseService {
2963
3124
  }): Observable<HttpEvent<Dispatch>>;
2964
3125
  /**
2965
3126
  * Getting dispatch summary by id
3127
+ * @endpoint get /dispatches/{id}/summary
2966
3128
  * @param id
2967
3129
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2968
3130
  * @param reportProgress flag to report request and response progress.
3131
+ * @param options additional options
2969
3132
  */
2970
3133
  getDispatchSummaryView(id: string, observe?: 'body', reportProgress?: boolean, options?: {
2971
3134
  httpHeaderAccept?: 'application/json';
@@ -2984,6 +3147,7 @@ declare class DispatchesService extends BaseService {
2984
3147
  }): Observable<HttpEvent<DispatchSummaryView>>;
2985
3148
  /**
2986
3149
  * Getting dispatches
3150
+ * @endpoint get /dispatches
2987
3151
  * @param $skip
2988
3152
  * @param $top
2989
3153
  * @param $orderby
@@ -2993,6 +3157,7 @@ declare class DispatchesService extends BaseService {
2993
3157
  * @param orderStatuses List of dispatch statuses to filter by
2994
3158
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
2995
3159
  * @param reportProgress flag to report request and response progress.
3160
+ * @param options additional options
2996
3161
  */
2997
3162
  getDispatches($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, tabName?: string, orderStatuses?: Array<OrderStatus>, observe?: 'body', reportProgress?: boolean, options?: {
2998
3163
  httpHeaderAccept?: 'application/json';
@@ -3011,6 +3176,7 @@ declare class DispatchesService extends BaseService {
3011
3176
  }): Observable<HttpEvent<Dispatches>>;
3012
3177
  /**
3013
3178
  * Dispatches list
3179
+ * @endpoint get /dispatch/search
3014
3180
  * @param $skip
3015
3181
  * @param $top
3016
3182
  * @param $orderby
@@ -3018,6 +3184,7 @@ declare class DispatchesService extends BaseService {
3018
3184
  * @param searchTerm
3019
3185
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3020
3186
  * @param reportProgress flag to report request and response progress.
3187
+ * @param options additional options
3021
3188
  */
3022
3189
  getDispatchesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
3023
3190
  httpHeaderAccept?: 'application/json';
@@ -3036,9 +3203,11 @@ declare class DispatchesService extends BaseService {
3036
3203
  }): Observable<HttpEvent<Dispatches>>;
3037
3204
  /**
3038
3205
  * Getting dispatch print details by id
3206
+ * @endpoint get /dispatches/{id}/print-details
3039
3207
  * @param id
3040
3208
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3041
3209
  * @param reportProgress flag to report request and response progress.
3210
+ * @param options additional options
3042
3211
  */
3043
3212
  getPrintDetails(id: string, observe?: 'body', reportProgress?: boolean, options?: {
3044
3213
  httpHeaderAccept?: 'application/json';
@@ -3057,9 +3226,11 @@ declare class DispatchesService extends BaseService {
3057
3226
  }): Observable<HttpEvent<PrintDispatchView>>;
3058
3227
  /**
3059
3228
  * Release on-hold dispatches
3229
+ * @endpoint put /dispatches/release-on-hold
3060
3230
  * @param ids
3061
3231
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3062
3232
  * @param reportProgress flag to report request and response progress.
3233
+ * @param options additional options
3063
3234
  */
3064
3235
  releaseOnHoldDispatches(ids: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
3065
3236
  httpHeaderAccept?: undefined;
@@ -3085,8 +3256,10 @@ declare class HealthService extends BaseService {
3085
3256
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
3086
3257
  /**
3087
3258
  * Api health check
3259
+ * @endpoint get /health
3088
3260
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3089
3261
  * @param reportProgress flag to report request and response progress.
3262
+ * @param options additional options
3090
3263
  */
3091
3264
  getHealth(observe?: 'body', reportProgress?: boolean, options?: {
3092
3265
  httpHeaderAccept?: 'text/plain' | 'application/json';
@@ -3178,29 +3351,16 @@ interface NoteView {
3178
3351
  notes: string;
3179
3352
  }
3180
3353
 
3181
- /**
3182
- * Wms.API.Client
3183
- *
3184
- *
3185
- *
3186
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3187
- * https://openapi-generator.tech
3188
- * Do not edit the class manually.
3189
- */
3190
-
3191
- interface Notes {
3192
- total: number;
3193
- data: Array<NoteView>;
3194
- }
3195
-
3196
3354
  declare class NotesService extends BaseService {
3197
3355
  protected httpClient: HttpClient;
3198
3356
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
3199
3357
  /**
3200
3358
  * Create new note
3359
+ * @endpoint post /notes
3201
3360
  * @param note
3202
3361
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3203
3362
  * @param reportProgress flag to report request and response progress.
3363
+ * @param options additional options
3204
3364
  */
3205
3365
  createNote(note?: Note, observe?: 'body', reportProgress?: boolean, options?: {
3206
3366
  httpHeaderAccept?: 'application/json';
@@ -3218,79 +3378,74 @@ declare class NotesService extends BaseService {
3218
3378
  transferCache?: boolean;
3219
3379
  }): Observable<HttpEvent<Note>>;
3220
3380
  /**
3221
- * Getting notes
3381
+ * Get note by source with category
3382
+ * @endpoint get /notes/{sourceId}/{type}/{category}
3222
3383
  * @param sourceId
3223
3384
  * @param type
3224
- * @param $skip
3225
- * @param $top
3226
- * @param $orderby
3227
- * @param $filter
3228
- * @param $search
3385
+ * @param category
3229
3386
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3230
3387
  * @param reportProgress flag to report request and response progress.
3388
+ * @param options additional options
3231
3389
  */
3232
- getNotes(sourceId: string, type: NoteSourceType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
3390
+ getNoteByCategory(sourceId: string, type: NoteSourceType, category: NoteCategory, observe?: 'body', reportProgress?: boolean, options?: {
3233
3391
  httpHeaderAccept?: 'application/json';
3234
3392
  context?: HttpContext;
3235
3393
  transferCache?: boolean;
3236
- }): Observable<Notes>;
3237
- getNotes(sourceId: string, type: NoteSourceType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
3394
+ }): Observable<NoteView>;
3395
+ getNoteByCategory(sourceId: string, type: NoteSourceType, category: NoteCategory, observe?: 'response', reportProgress?: boolean, options?: {
3238
3396
  httpHeaderAccept?: 'application/json';
3239
3397
  context?: HttpContext;
3240
3398
  transferCache?: boolean;
3241
- }): Observable<HttpResponse<Notes>>;
3242
- getNotes(sourceId: string, type: NoteSourceType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
3399
+ }): Observable<HttpResponse<NoteView>>;
3400
+ getNoteByCategory(sourceId: string, type: NoteSourceType, category: NoteCategory, observe?: 'events', reportProgress?: boolean, options?: {
3243
3401
  httpHeaderAccept?: 'application/json';
3244
3402
  context?: HttpContext;
3245
3403
  transferCache?: boolean;
3246
- }): Observable<HttpEvent<Notes>>;
3404
+ }): Observable<HttpEvent<NoteView>>;
3247
3405
  /**
3248
- * Getting notes by category
3406
+ * Get note by source
3407
+ * @endpoint get /notes/{sourceId}/{type}
3249
3408
  * @param sourceId
3250
3409
  * @param type
3251
- * @param category
3252
- * @param $skip
3253
- * @param $top
3254
- * @param $orderby
3255
- * @param $filter
3256
- * @param $search
3257
3410
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3258
3411
  * @param reportProgress flag to report request and response progress.
3412
+ * @param options additional options
3259
3413
  */
3260
- getNotesByCategory(sourceId: string, type: NoteSourceType, category: NoteCategory, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
3414
+ getNoteBySource(sourceId: string, type: NoteSourceType, observe?: 'body', reportProgress?: boolean, options?: {
3261
3415
  httpHeaderAccept?: 'application/json';
3262
3416
  context?: HttpContext;
3263
3417
  transferCache?: boolean;
3264
- }): Observable<Notes>;
3265
- getNotesByCategory(sourceId: string, type: NoteSourceType, category: NoteCategory, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
3418
+ }): Observable<NoteView>;
3419
+ getNoteBySource(sourceId: string, type: NoteSourceType, observe?: 'response', reportProgress?: boolean, options?: {
3266
3420
  httpHeaderAccept?: 'application/json';
3267
3421
  context?: HttpContext;
3268
3422
  transferCache?: boolean;
3269
- }): Observable<HttpResponse<Notes>>;
3270
- getNotesByCategory(sourceId: string, type: NoteSourceType, category: NoteCategory, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
3423
+ }): Observable<HttpResponse<NoteView>>;
3424
+ getNoteBySource(sourceId: string, type: NoteSourceType, observe?: 'events', reportProgress?: boolean, options?: {
3271
3425
  httpHeaderAccept?: 'application/json';
3272
3426
  context?: HttpContext;
3273
3427
  transferCache?: boolean;
3274
- }): Observable<HttpEvent<Notes>>;
3428
+ }): Observable<HttpEvent<NoteView>>;
3275
3429
  /**
3276
3430
  * Update a specific note
3431
+ * @endpoint put /notes/{id}
3277
3432
  * @param id
3278
3433
  * @param note
3279
- * @param propertiesToUpdate
3280
3434
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3281
3435
  * @param reportProgress flag to report request and response progress.
3436
+ * @param options additional options
3282
3437
  */
3283
- updateNote(id: string, note: Note, propertiesToUpdate?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
3438
+ updateNote(id: string, note: Note, observe?: 'body', reportProgress?: boolean, options?: {
3284
3439
  httpHeaderAccept?: 'application/json';
3285
3440
  context?: HttpContext;
3286
3441
  transferCache?: boolean;
3287
3442
  }): Observable<Note>;
3288
- updateNote(id: string, note: Note, propertiesToUpdate?: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
3443
+ updateNote(id: string, note: Note, observe?: 'response', reportProgress?: boolean, options?: {
3289
3444
  httpHeaderAccept?: 'application/json';
3290
3445
  context?: HttpContext;
3291
3446
  transferCache?: boolean;
3292
3447
  }): Observable<HttpResponse<Note>>;
3293
- updateNote(id: string, note: Note, propertiesToUpdate?: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
3448
+ updateNote(id: string, note: Note, observe?: 'events', reportProgress?: boolean, options?: {
3294
3449
  httpHeaderAccept?: 'application/json';
3295
3450
  context?: HttpContext;
3296
3451
  transferCache?: boolean;
@@ -3304,8 +3459,10 @@ declare class PendoService extends BaseService {
3304
3459
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
3305
3460
  /**
3306
3461
  * Retrieve the Pendo API key
3462
+ * @endpoint get /pendo/api-key
3307
3463
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3308
3464
  * @param reportProgress flag to report request and response progress.
3465
+ * @param options additional options
3309
3466
  */
3310
3467
  getPendoApiKey(observe?: 'body', reportProgress?: boolean, options?: {
3311
3468
  httpHeaderAccept?: 'application/json';
@@ -3345,8 +3502,10 @@ declare class PermissionsService extends BaseService {
3345
3502
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
3346
3503
  /**
3347
3504
  * User permissions
3505
+ * @endpoint get /user/permissions
3348
3506
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3349
3507
  * @param reportProgress flag to report request and response progress.
3508
+ * @param options additional options
3350
3509
  */
3351
3510
  getUserPermissions(observe?: 'body', reportProgress?: boolean, options?: {
3352
3511
  httpHeaderAccept?: 'application/json';
@@ -3408,6 +3567,7 @@ declare class ProductMastersService extends BaseService {
3408
3567
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
3409
3568
  /**
3410
3569
  * Getting productMasters
3570
+ * @endpoint get /productMasters
3411
3571
  * @param $skip
3412
3572
  * @param $top
3413
3573
  * @param $orderby
@@ -3415,6 +3575,7 @@ declare class ProductMastersService extends BaseService {
3415
3575
  * @param $search
3416
3576
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3417
3577
  * @param reportProgress flag to report request and response progress.
3578
+ * @param options additional options
3418
3579
  */
3419
3580
  getProductMasters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
3420
3581
  httpHeaderAccept?: 'application/json';
@@ -3470,6 +3631,7 @@ declare class ProductQuantitiesService extends BaseService {
3470
3631
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
3471
3632
  /**
3472
3633
  * Getting productQuantities
3634
+ * @endpoint get /productQuantities
3473
3635
  * @param $skip
3474
3636
  * @param $top
3475
3637
  * @param $orderby
@@ -3477,6 +3639,7 @@ declare class ProductQuantitiesService extends BaseService {
3477
3639
  * @param $search
3478
3640
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3479
3641
  * @param reportProgress flag to report request and response progress.
3642
+ * @param options additional options
3480
3643
  */
3481
3644
  getProductQuantities($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
3482
3645
  httpHeaderAccept?: 'application/json';
@@ -3550,6 +3713,7 @@ declare class ReasonsService extends BaseService {
3550
3713
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
3551
3714
  /**
3552
3715
  * Getting reasons
3716
+ * @endpoint get /reasons
3553
3717
  * @param $skip
3554
3718
  * @param $top
3555
3719
  * @param $orderby
@@ -3557,6 +3721,7 @@ declare class ReasonsService extends BaseService {
3557
3721
  * @param $search
3558
3722
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3559
3723
  * @param reportProgress flag to report request and response progress.
3724
+ * @param options additional options
3560
3725
  */
3561
3726
  getReasons($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
3562
3727
  httpHeaderAccept?: 'application/json';
@@ -3658,9 +3823,11 @@ declare class ReplenishmentService extends BaseService {
3658
3823
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
3659
3824
  /**
3660
3825
  * Create a specific replenishment access
3826
+ * @endpoint post /replenishment/access
3661
3827
  * @param replenishmentAccess
3662
3828
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3663
3829
  * @param reportProgress flag to report request and response progress.
3830
+ * @param options additional options
3664
3831
  */
3665
3832
  createAccess(replenishmentAccess: ReplenishmentAccess, observe?: 'body', reportProgress?: boolean, options?: {
3666
3833
  httpHeaderAccept?: 'application/json';
@@ -3679,9 +3846,11 @@ declare class ReplenishmentService extends BaseService {
3679
3846
  }): Observable<HttpEvent<ReplenishmentAccess>>;
3680
3847
  /**
3681
3848
  * Delete a replenishment access
3849
+ * @endpoint delete /replenishment/access/{id}
3682
3850
  * @param id
3683
3851
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3684
3852
  * @param reportProgress flag to report request and response progress.
3853
+ * @param options additional options
3685
3854
  */
3686
3855
  deleteAccess(id: string, observe?: 'body', reportProgress?: boolean, options?: {
3687
3856
  httpHeaderAccept?: 'application/json';
@@ -3700,6 +3869,7 @@ declare class ReplenishmentService extends BaseService {
3700
3869
  }): Observable<HttpEvent<any>>;
3701
3870
  /**
3702
3871
  * Get list of replenishment access client
3872
+ * @endpoint get /replenishment/accesses/clients
3703
3873
  * @param $skip
3704
3874
  * @param $top
3705
3875
  * @param $orderby
@@ -3707,6 +3877,7 @@ declare class ReplenishmentService extends BaseService {
3707
3877
  * @param $search
3708
3878
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3709
3879
  * @param reportProgress flag to report request and response progress.
3880
+ * @param options additional options
3710
3881
  */
3711
3882
  getAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
3712
3883
  httpHeaderAccept?: 'application/json';
@@ -3725,6 +3896,7 @@ declare class ReplenishmentService extends BaseService {
3725
3896
  }): Observable<HttpEvent<ReplenishmentAccessClients>>;
3726
3897
  /**
3727
3898
  * Getting replenishment access
3899
+ * @endpoint get /replenishment/accesses
3728
3900
  * @param $skip
3729
3901
  * @param $top
3730
3902
  * @param $orderby
@@ -3732,6 +3904,7 @@ declare class ReplenishmentService extends BaseService {
3732
3904
  * @param $search
3733
3905
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3734
3906
  * @param reportProgress flag to report request and response progress.
3907
+ * @param options additional options
3735
3908
  */
3736
3909
  getAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
3737
3910
  httpHeaderAccept?: 'application/json';
@@ -3750,11 +3923,13 @@ declare class ReplenishmentService extends BaseService {
3750
3923
  }): Observable<HttpEvent<ReplenishmentAccesses>>;
3751
3924
  /**
3752
3925
  * Update an existing replenishment access
3926
+ * @endpoint put /replenishment/access/{id}
3753
3927
  * @param id
3754
3928
  * @param replenishmentAccess
3755
3929
  * @param propertiesToUpdate Array of property names to update
3756
3930
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3757
3931
  * @param reportProgress flag to report request and response progress.
3932
+ * @param options additional options
3758
3933
  */
3759
3934
  updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
3760
3935
  httpHeaderAccept?: 'application/json';
@@ -3900,9 +4075,11 @@ declare class ReplenishmentRecordsService extends BaseService {
3900
4075
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
3901
4076
  /**
3902
4077
  * Cancel a replenishment record
4078
+ * @endpoint put /replenishmentRecords/{id}/cancel
3903
4079
  * @param id
3904
4080
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3905
4081
  * @param reportProgress flag to report request and response progress.
4082
+ * @param options additional options
3906
4083
  */
3907
4084
  cancelReplenishmentRecord(id: string, observe?: 'body', reportProgress?: boolean, options?: {
3908
4085
  httpHeaderAccept?: undefined;
@@ -3921,6 +4098,7 @@ declare class ReplenishmentRecordsService extends BaseService {
3921
4098
  }): Observable<HttpEvent<any>>;
3922
4099
  /**
3923
4100
  * Getting replenishment records
4101
+ * @endpoint get /replenishmentRecords
3924
4102
  * @param $skip
3925
4103
  * @param $top
3926
4104
  * @param $orderby
@@ -3928,6 +4106,7 @@ declare class ReplenishmentRecordsService extends BaseService {
3928
4106
  * @param $search
3929
4107
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3930
4108
  * @param reportProgress flag to report request and response progress.
4109
+ * @param options additional options
3931
4110
  */
3932
4111
  getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
3933
4112
  httpHeaderAccept?: 'application/json';
@@ -3946,6 +4125,7 @@ declare class ReplenishmentRecordsService extends BaseService {
3946
4125
  }): Observable<HttpEvent<ReplenishmentRecords>>;
3947
4126
  /**
3948
4127
  * ReplenishmentRecords list
4128
+ * @endpoint get /replenishmentRecords/search
3949
4129
  * @param $skip
3950
4130
  * @param $top
3951
4131
  * @param $orderby
@@ -3953,6 +4133,7 @@ declare class ReplenishmentRecordsService extends BaseService {
3953
4133
  * @param searchTerm
3954
4134
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3955
4135
  * @param reportProgress flag to report request and response progress.
4136
+ * @param options additional options
3956
4137
  */
3957
4138
  getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
3958
4139
  httpHeaderAccept?: 'application/json';
@@ -3971,9 +4152,11 @@ declare class ReplenishmentRecordsService extends BaseService {
3971
4152
  }): Observable<HttpEvent<ReplenishmentRecords>>;
3972
4153
  /**
3973
4154
  * Unallocate a replenishment record
4155
+ * @endpoint put /replenishmentRecords/{id}/unallocate
3974
4156
  * @param id
3975
4157
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3976
4158
  * @param reportProgress flag to report request and response progress.
4159
+ * @param options additional options
3977
4160
  */
3978
4161
  unallocateReplenishmentRecord(id: string, observe?: 'body', reportProgress?: boolean, options?: {
3979
4162
  httpHeaderAccept?: undefined;
@@ -4058,6 +4241,7 @@ declare class ReturnedItemsService extends BaseService {
4058
4241
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
4059
4242
  /**
4060
4243
  * Getting returnedItems
4244
+ * @endpoint get /deliveryItems/returnedItems
4061
4245
  * @param $skip
4062
4246
  * @param $top
4063
4247
  * @param $orderby
@@ -4065,6 +4249,7 @@ declare class ReturnedItemsService extends BaseService {
4065
4249
  * @param $search
4066
4250
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4067
4251
  * @param reportProgress flag to report request and response progress.
4252
+ * @param options additional options
4068
4253
  */
4069
4254
  getReturnedItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
4070
4255
  httpHeaderAccept?: 'application/json';
@@ -4083,6 +4268,7 @@ declare class ReturnedItemsService extends BaseService {
4083
4268
  }): Observable<HttpEvent<ReturnedDeliveryItems>>;
4084
4269
  /**
4085
4270
  * ReturnedItems list
4271
+ * @endpoint get /deliveryItems/returnedItems/search
4086
4272
  * @param $skip
4087
4273
  * @param $top
4088
4274
  * @param $orderby
@@ -4090,6 +4276,7 @@ declare class ReturnedItemsService extends BaseService {
4090
4276
  * @param searchTerm
4091
4277
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4092
4278
  * @param reportProgress flag to report request and response progress.
4279
+ * @param options additional options
4093
4280
  */
4094
4281
  getReturnedItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
4095
4282
  httpHeaderAccept?: 'application/json';
@@ -4144,10 +4331,12 @@ declare class SettingsService extends BaseService {
4144
4331
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
4145
4332
  /**
4146
4333
  * Delete a specific setting by group and key
4334
+ * @endpoint delete /users/me/settings/groups/{group}/{key}
4147
4335
  * @param key
4148
4336
  * @param group
4149
4337
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4150
4338
  * @param reportProgress flag to report request and response progress.
4339
+ * @param options additional options
4151
4340
  */
4152
4341
  deleteSettingByGroupAndKey(key: string, group: string, observe?: 'body', reportProgress?: boolean, options?: {
4153
4342
  httpHeaderAccept?: undefined;
@@ -4166,9 +4355,11 @@ declare class SettingsService extends BaseService {
4166
4355
  }): Observable<HttpEvent<any>>;
4167
4356
  /**
4168
4357
  * Delete a specific setting by key
4358
+ * @endpoint delete /users/me/settings/{key}
4169
4359
  * @param key
4170
4360
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4171
4361
  * @param reportProgress flag to report request and response progress.
4362
+ * @param options additional options
4172
4363
  */
4173
4364
  deleteSettingByKey(key: string, observe?: 'body', reportProgress?: boolean, options?: {
4174
4365
  httpHeaderAccept?: undefined;
@@ -4187,10 +4378,12 @@ declare class SettingsService extends BaseService {
4187
4378
  }): Observable<HttpEvent<any>>;
4188
4379
  /**
4189
4380
  * Get a specific setting by group and key
4381
+ * @endpoint get /users/me/settings/groups/{group}/{key}
4190
4382
  * @param key
4191
4383
  * @param group
4192
4384
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4193
4385
  * @param reportProgress flag to report request and response progress.
4386
+ * @param options additional options
4194
4387
  */
4195
4388
  getSettingByGroupAndKey(key: string, group: string, observe?: 'body', reportProgress?: boolean, options?: {
4196
4389
  httpHeaderAccept?: 'application/json';
@@ -4209,9 +4402,11 @@ declare class SettingsService extends BaseService {
4209
4402
  }): Observable<HttpEvent<SettingValue>>;
4210
4403
  /**
4211
4404
  * Get a specific setting by key
4405
+ * @endpoint get /users/me/settings/{key}
4212
4406
  * @param key
4213
4407
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4214
4408
  * @param reportProgress flag to report request and response progress.
4409
+ * @param options additional options
4215
4410
  */
4216
4411
  getSettingByKey(key: string, observe?: 'body', reportProgress?: boolean, options?: {
4217
4412
  httpHeaderAccept?: 'application/json';
@@ -4230,9 +4425,11 @@ declare class SettingsService extends BaseService {
4230
4425
  }): Observable<HttpEvent<SettingValue>>;
4231
4426
  /**
4232
4427
  * Get settings by group
4428
+ * @endpoint get /users/me/settings/groups/{group}
4233
4429
  * @param group
4234
4430
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4235
4431
  * @param reportProgress flag to report request and response progress.
4432
+ * @param options additional options
4236
4433
  */
4237
4434
  getSettingsByGroup(group: string, observe?: 'body', reportProgress?: boolean, options?: {
4238
4435
  httpHeaderAccept?: 'application/json';
@@ -4251,10 +4448,12 @@ declare class SettingsService extends BaseService {
4251
4448
  }): Observable<HttpEvent<Array<SettingView>>>;
4252
4449
  /**
4253
4450
  * Create or update a specific setting by key
4451
+ * @endpoint put /users/me/settings/{key}
4254
4452
  * @param key
4255
4453
  * @param settingValue
4256
4454
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4257
4455
  * @param reportProgress flag to report request and response progress.
4456
+ * @param options additional options
4258
4457
  */
4259
4458
  setSettingByKey(key: string, settingValue: SettingValue, observe?: 'body', reportProgress?: boolean, options?: {
4260
4459
  httpHeaderAccept?: 'application/json';
@@ -4280,9 +4479,11 @@ declare class SummaryService extends BaseService {
4280
4479
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
4281
4480
  /**
4282
4481
  * Request WMS summary dashboard report embedding links
4482
+ * @endpoint get /summary/dashboard/{dashboardName}
4283
4483
  * @param dashboardName The name of the dashboard report to retrieve
4284
4484
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4285
4485
  * @param reportProgress flag to report request and response progress.
4486
+ * @param options additional options
4286
4487
  */
4287
4488
  getSummaryDashboardReport(dashboardName: string, observe?: 'body', reportProgress?: boolean, options?: {
4288
4489
  httpHeaderAccept?: 'application/json';
@@ -4340,9 +4541,11 @@ declare class TaskCompletionTimeService extends BaseService {
4340
4541
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
4341
4542
  /**
4342
4543
  * Create a new task completion time
4544
+ * @endpoint post /taskCompletionTime
4343
4545
  * @param taskCompletionTime
4344
4546
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4345
4547
  * @param reportProgress flag to report request and response progress.
4548
+ * @param options additional options
4346
4549
  */
4347
4550
  createTaskCompletionTime(taskCompletionTime: TaskCompletionTime, observe?: 'body', reportProgress?: boolean, options?: {
4348
4551
  httpHeaderAccept?: 'application/json';
@@ -4361,9 +4564,11 @@ declare class TaskCompletionTimeService extends BaseService {
4361
4564
  }): Observable<HttpEvent<TaskCompletionTime>>;
4362
4565
  /**
4363
4566
  * Delete a task completion time
4567
+ * @endpoint delete /taskCompletionTime/{id}
4364
4568
  * @param id
4365
4569
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4366
4570
  * @param reportProgress flag to report request and response progress.
4571
+ * @param options additional options
4367
4572
  */
4368
4573
  deleteTaskCompletionTime(id: number, observe?: 'body', reportProgress?: boolean, options?: {
4369
4574
  httpHeaderAccept?: undefined;
@@ -4382,9 +4587,11 @@ declare class TaskCompletionTimeService extends BaseService {
4382
4587
  }): Observable<HttpEvent<any>>;
4383
4588
  /**
4384
4589
  * Retrieve a task completion time by ID
4590
+ * @endpoint get /taskCompletionTime/{id}
4385
4591
  * @param id
4386
4592
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4387
4593
  * @param reportProgress flag to report request and response progress.
4594
+ * @param options additional options
4388
4595
  */
4389
4596
  getTaskCompletionTimeById(id: number, observe?: 'body', reportProgress?: boolean, options?: {
4390
4597
  httpHeaderAccept?: 'application/json';
@@ -4403,6 +4610,7 @@ declare class TaskCompletionTimeService extends BaseService {
4403
4610
  }): Observable<HttpEvent<TaskCompletionTime>>;
4404
4611
  /**
4405
4612
  * Getting task completion times
4613
+ * @endpoint get /taskCompletionTime
4406
4614
  * @param $skip
4407
4615
  * @param $top
4408
4616
  * @param $orderby
@@ -4410,6 +4618,7 @@ declare class TaskCompletionTimeService extends BaseService {
4410
4618
  * @param $search
4411
4619
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4412
4620
  * @param reportProgress flag to report request and response progress.
4621
+ * @param options additional options
4413
4622
  */
4414
4623
  getTaskCompletionTimes($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
4415
4624
  httpHeaderAccept?: 'application/json';
@@ -4428,10 +4637,12 @@ declare class TaskCompletionTimeService extends BaseService {
4428
4637
  }): Observable<HttpEvent<TaskCompletionTimes>>;
4429
4638
  /**
4430
4639
  * Update an existing task completion time
4640
+ * @endpoint put /taskCompletionTime/{id}
4431
4641
  * @param id
4432
4642
  * @param taskCompletionTime
4433
4643
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4434
4644
  * @param reportProgress flag to report request and response progress.
4645
+ * @param options additional options
4435
4646
  */
4436
4647
  updateTaskCompletionTime(id: number, taskCompletionTime: TaskCompletionTime, observe?: 'body', reportProgress?: boolean, options?: {
4437
4648
  httpHeaderAccept?: 'application/json';
@@ -4492,9 +4703,11 @@ declare class TaskOperationsService extends BaseService {
4492
4703
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
4493
4704
  /**
4494
4705
  * Create a new task operation
4706
+ * @endpoint post /taskOperations
4495
4707
  * @param taskOperation
4496
4708
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4497
4709
  * @param reportProgress flag to report request and response progress.
4710
+ * @param options additional options
4498
4711
  */
4499
4712
  createTaskOperation(taskOperation: TaskOperation, observe?: 'body', reportProgress?: boolean, options?: {
4500
4713
  httpHeaderAccept?: 'application/json';
@@ -4513,9 +4726,11 @@ declare class TaskOperationsService extends BaseService {
4513
4726
  }): Observable<HttpEvent<TaskOperation>>;
4514
4727
  /**
4515
4728
  * Delete a task operation
4729
+ * @endpoint delete /taskOperations/{id}
4516
4730
  * @param id
4517
4731
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4518
4732
  * @param reportProgress flag to report request and response progress.
4733
+ * @param options additional options
4519
4734
  */
4520
4735
  deleteTaskOperation(id: number, observe?: 'body', reportProgress?: boolean, options?: {
4521
4736
  httpHeaderAccept?: undefined;
@@ -4534,9 +4749,11 @@ declare class TaskOperationsService extends BaseService {
4534
4749
  }): Observable<HttpEvent<any>>;
4535
4750
  /**
4536
4751
  * Retrieve a task operation by ID
4752
+ * @endpoint get /taskOperations/{id}
4537
4753
  * @param id
4538
4754
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4539
4755
  * @param reportProgress flag to report request and response progress.
4756
+ * @param options additional options
4540
4757
  */
4541
4758
  getTaskOperationById(id: number, observe?: 'body', reportProgress?: boolean, options?: {
4542
4759
  httpHeaderAccept?: 'application/json';
@@ -4555,6 +4772,7 @@ declare class TaskOperationsService extends BaseService {
4555
4772
  }): Observable<HttpEvent<TaskOperation>>;
4556
4773
  /**
4557
4774
  * Getting task operations
4775
+ * @endpoint get /taskOperations
4558
4776
  * @param $skip
4559
4777
  * @param $top
4560
4778
  * @param $orderby
@@ -4562,6 +4780,7 @@ declare class TaskOperationsService extends BaseService {
4562
4780
  * @param $search
4563
4781
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4564
4782
  * @param reportProgress flag to report request and response progress.
4783
+ * @param options additional options
4565
4784
  */
4566
4785
  getTaskOperations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
4567
4786
  httpHeaderAccept?: 'application/json';
@@ -4580,10 +4799,12 @@ declare class TaskOperationsService extends BaseService {
4580
4799
  }): Observable<HttpEvent<TaskOperations>>;
4581
4800
  /**
4582
4801
  * Update an existing task operation
4802
+ * @endpoint put /taskOperations/{id}
4583
4803
  * @param id
4584
4804
  * @param taskOperation
4585
4805
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4586
4806
  * @param reportProgress flag to report request and response progress.
4807
+ * @param options additional options
4587
4808
  */
4588
4809
  updateTaskOperation(id: number, taskOperation: TaskOperation, observe?: 'body', reportProgress?: boolean, options?: {
4589
4810
  httpHeaderAccept?: 'application/json';
@@ -4713,9 +4934,11 @@ declare class TaskUserRecordsService extends BaseService {
4713
4934
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
4714
4935
  /**
4715
4936
  * Create a new task user record
4937
+ * @endpoint post /taskUserRecords
4716
4938
  * @param taskUserRecord
4717
4939
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4718
4940
  * @param reportProgress flag to report request and response progress.
4941
+ * @param options additional options
4719
4942
  */
4720
4943
  createTaskUserRecord(taskUserRecord: TaskUserRecord, observe?: 'body', reportProgress?: boolean, options?: {
4721
4944
  httpHeaderAccept?: 'application/json';
@@ -4734,9 +4957,11 @@ declare class TaskUserRecordsService extends BaseService {
4734
4957
  }): Observable<HttpEvent<TaskUserRecord>>;
4735
4958
  /**
4736
4959
  * Delete a specific task user record
4960
+ * @endpoint delete /taskUserRecords/{id}
4737
4961
  * @param id
4738
4962
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4739
4963
  * @param reportProgress flag to report request and response progress.
4964
+ * @param options additional options
4740
4965
  */
4741
4966
  deleteTaskUserRecord(id: number, observe?: 'body', reportProgress?: boolean, options?: {
4742
4967
  httpHeaderAccept?: undefined;
@@ -4755,10 +4980,12 @@ declare class TaskUserRecordsService extends BaseService {
4755
4980
  }): Observable<HttpEvent<any>>;
4756
4981
  /**
4757
4982
  * Marks the specified task user record as finished for the current user.
4983
+ * @endpoint put /taskUserRecords/me/{id}
4758
4984
  * @param id
4759
4985
  * @param finishedDeviceType
4760
4986
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4761
4987
  * @param reportProgress flag to report request and response progress.
4988
+ * @param options additional options
4762
4989
  */
4763
4990
  finishTaskUserRecord(id: number, finishedDeviceType: 'Unknown' | 'Desktop' | 'HHT', observe?: 'body', reportProgress?: boolean, options?: {
4764
4991
  httpHeaderAccept?: 'application/json';
@@ -4777,9 +5004,11 @@ declare class TaskUserRecordsService extends BaseService {
4777
5004
  }): Observable<HttpEvent<TaskUserRecord>>;
4778
5005
  /**
4779
5006
  * Retrieve a task user record by ID
5007
+ * @endpoint get /taskUserRecords/{id}
4780
5008
  * @param id
4781
5009
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4782
5010
  * @param reportProgress flag to report request and response progress.
5011
+ * @param options additional options
4783
5012
  */
4784
5013
  getTaskUserRecordById(id: number, observe?: 'body', reportProgress?: boolean, options?: {
4785
5014
  httpHeaderAccept?: 'application/json';
@@ -4798,6 +5027,7 @@ declare class TaskUserRecordsService extends BaseService {
4798
5027
  }): Observable<HttpEvent<TaskUserRecord>>;
4799
5028
  /**
4800
5029
  * Getting task user records
5030
+ * @endpoint get /taskUserRecords
4801
5031
  * @param $skip
4802
5032
  * @param $top
4803
5033
  * @param $orderby
@@ -4805,6 +5035,7 @@ declare class TaskUserRecordsService extends BaseService {
4805
5035
  * @param $search
4806
5036
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4807
5037
  * @param reportProgress flag to report request and response progress.
5038
+ * @param options additional options
4808
5039
  */
4809
5040
  getTaskUserRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
4810
5041
  httpHeaderAccept?: 'application/json';
@@ -4823,6 +5054,7 @@ declare class TaskUserRecordsService extends BaseService {
4823
5054
  }): Observable<HttpEvent<TaskUserRecords>>;
4824
5055
  /**
4825
5056
  * Getting task user records
5057
+ * @endpoint get /taskUserRecords/me
4826
5058
  * @param $skip
4827
5059
  * @param $top
4828
5060
  * @param $orderby
@@ -4830,6 +5062,7 @@ declare class TaskUserRecordsService extends BaseService {
4830
5062
  * @param $search
4831
5063
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4832
5064
  * @param reportProgress flag to report request and response progress.
5065
+ * @param options additional options
4833
5066
  */
4834
5067
  getTaskUserRecordsForSelf($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
4835
5068
  httpHeaderAccept?: 'application/json';
@@ -4848,6 +5081,7 @@ declare class TaskUserRecordsService extends BaseService {
4848
5081
  }): Observable<HttpEvent<TaskUserRecords>>;
4849
5082
  /**
4850
5083
  * Getting task user records
5084
+ * @endpoint get /taskUserRecords/search
4851
5085
  * @param $skip
4852
5086
  * @param $top
4853
5087
  * @param $orderby
@@ -4855,6 +5089,7 @@ declare class TaskUserRecordsService extends BaseService {
4855
5089
  * @param searchTerm
4856
5090
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4857
5091
  * @param reportProgress flag to report request and response progress.
5092
+ * @param options additional options
4858
5093
  */
4859
5094
  getTaskUserRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
4860
5095
  httpHeaderAccept?: 'application/json';
@@ -4873,9 +5108,11 @@ declare class TaskUserRecordsService extends BaseService {
4873
5108
  }): Observable<HttpEvent<TaskUserRecords>>;
4874
5109
  /**
4875
5110
  * Create a new task user record for the current user
5111
+ * @endpoint post /taskUserRecords/me
4876
5112
  * @param taskUserRecordSelf
4877
5113
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4878
5114
  * @param reportProgress flag to report request and response progress.
5115
+ * @param options additional options
4879
5116
  */
4880
5117
  startTaskUserRecord(taskUserRecordSelf: TaskUserRecordSelf, observe?: 'body', reportProgress?: boolean, options?: {
4881
5118
  httpHeaderAccept?: 'application/json';
@@ -4894,10 +5131,12 @@ declare class TaskUserRecordsService extends BaseService {
4894
5131
  }): Observable<HttpEvent<TaskUserRecord>>;
4895
5132
  /**
4896
5133
  * Update an existing task user record
5134
+ * @endpoint put /taskUserRecords/{id}
4897
5135
  * @param id
4898
5136
  * @param taskUserRecord
4899
5137
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4900
5138
  * @param reportProgress flag to report request and response progress.
5139
+ * @param options additional options
4901
5140
  */
4902
5141
  updateTaskUserRecord(id: number, taskUserRecord: TaskUserRecord, observe?: 'body', reportProgress?: boolean, options?: {
4903
5142
  httpHeaderAccept?: 'application/json';
@@ -5040,9 +5279,11 @@ declare class UserService extends BaseService {
5040
5279
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
5041
5280
  /**
5042
5281
  * Get a specific application setting by name
5282
+ * @endpoint get /user/me/settings/{name}
5043
5283
  * @param name The name of the application setting to retrieve
5044
5284
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5045
5285
  * @param reportProgress flag to report request and response progress.
5286
+ * @param options additional options
5046
5287
  */
5047
5288
  getApplicationSetting(name: string, observe?: 'body', reportProgress?: boolean, options?: {
5048
5289
  httpHeaderAccept?: 'application/json';
@@ -5061,8 +5302,10 @@ declare class UserService extends BaseService {
5061
5302
  }): Observable<HttpEvent<ApplicationSetting>>;
5062
5303
  /**
5063
5304
  * Get User application list
5305
+ * @endpoint get /users/me/applications
5064
5306
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5065
5307
  * @param reportProgress flag to report request and response progress.
5308
+ * @param options additional options
5066
5309
  */
5067
5310
  getUserApplicationList(observe?: 'body', reportProgress?: boolean, options?: {
5068
5311
  httpHeaderAccept?: 'application/json';
@@ -5081,8 +5324,10 @@ declare class UserService extends BaseService {
5081
5324
  }): Observable<HttpEvent<UserApplications>>;
5082
5325
  /**
5083
5326
  * User information
5327
+ * @endpoint get /user/me
5084
5328
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5085
5329
  * @param reportProgress flag to report request and response progress.
5330
+ * @param options additional options
5086
5331
  */
5087
5332
  getUserInfo(observe?: 'body', reportProgress?: boolean, options?: {
5088
5333
  httpHeaderAccept?: 'application/json';
@@ -5101,9 +5346,11 @@ declare class UserService extends BaseService {
5101
5346
  }): Observable<HttpEvent<CurrentUser>>;
5102
5347
  /**
5103
5348
  * Set NewFeaturesVisibility setting
5349
+ * @endpoint put /user/me/settings/newfeaturevisibility
5104
5350
  * @param setNewFeaturesVisibilityCommand
5105
5351
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5106
5352
  * @param reportProgress flag to report request and response progress.
5353
+ * @param options additional options
5107
5354
  */
5108
5355
  setNewFeaturesVisibility(setNewFeaturesVisibilityCommand?: SetNewFeaturesVisibilityCommand, observe?: 'body', reportProgress?: boolean, options?: {
5109
5356
  httpHeaderAccept?: 'application/json';
@@ -5159,6 +5406,7 @@ declare class UsersInternalService extends BaseService {
5159
5406
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
5160
5407
  /**
5161
5408
  * Retrieve a paginated list of users based on a specification
5409
+ * @endpoint get /users/internal
5162
5410
  * @param $skip
5163
5411
  * @param $top
5164
5412
  * @param $orderby
@@ -5166,6 +5414,7 @@ declare class UsersInternalService extends BaseService {
5166
5414
  * @param $search
5167
5415
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5168
5416
  * @param reportProgress flag to report request and response progress.
5417
+ * @param options additional options
5169
5418
  */
5170
5419
  getUsersInternal($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
5171
5420
  httpHeaderAccept?: 'application/json';
@@ -5307,6 +5556,7 @@ declare class WavePickReleasesService extends BaseService {
5307
5556
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
5308
5557
  /**
5309
5558
  * Getting wavePickReleases by historyType
5559
+ * @endpoint get /wavePickReleases/history/{pickReleaseHistoryType}
5310
5560
  * @param pickReleaseHistoryType
5311
5561
  * @param $skip
5312
5562
  * @param $top
@@ -5315,6 +5565,7 @@ declare class WavePickReleasesService extends BaseService {
5315
5565
  * @param $search
5316
5566
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5317
5567
  * @param reportProgress flag to report request and response progress.
5568
+ * @param options additional options
5318
5569
  */
5319
5570
  getWavePickReleasesByHistoryType(pickReleaseHistoryType: PickReleaseHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
5320
5571
  httpHeaderAccept?: 'application/json';
@@ -5333,6 +5584,7 @@ declare class WavePickReleasesService extends BaseService {
5333
5584
  }): Observable<HttpEvent<WavePickReleases>>;
5334
5585
  /**
5335
5586
  * WavePickReleases list
5587
+ * @endpoint get /wavePickReleases/search
5336
5588
  * @param $skip
5337
5589
  * @param $top
5338
5590
  * @param $orderby
@@ -5340,6 +5592,7 @@ declare class WavePickReleasesService extends BaseService {
5340
5592
  * @param searchTerm
5341
5593
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5342
5594
  * @param reportProgress flag to report request and response progress.
5595
+ * @param options additional options
5343
5596
  */
5344
5597
  getWavePickReleasesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
5345
5598
  httpHeaderAccept?: 'application/json';
@@ -5425,6 +5678,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
5425
5678
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
5426
5679
  /**
5427
5680
  * Getting waves by pickReleaseId
5681
+ * @endpoint get /wavePickReleases/{id}/waves
5428
5682
  * @param id
5429
5683
  * @param $skip
5430
5684
  * @param $top
@@ -5433,6 +5687,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
5433
5687
  * @param $search
5434
5688
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5435
5689
  * @param reportProgress flag to report request and response progress.
5690
+ * @param options additional options
5436
5691
  */
5437
5692
  getWavesByPickReleaseId(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
5438
5693
  httpHeaderAccept?: 'application/json';
@@ -5639,4 +5894,4 @@ declare class ApiModule {
5639
5894
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
5640
5895
 
5641
5896
  export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
5642
- export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Notes, Param, ParamLocation, ParamStyle, Picks, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, Waves };
5897
+ export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Param, ParamLocation, ParamStyle, Picks, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, Waves };