@indigina/wms-api 0.0.115 → 0.0.117
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:
|
|
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';
|
|
@@ -3183,9 +3356,11 @@ declare class NotesService extends BaseService {
|
|
|
3183
3356
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3184
3357
|
/**
|
|
3185
3358
|
* Create new note
|
|
3359
|
+
* @endpoint post /notes
|
|
3186
3360
|
* @param note
|
|
3187
3361
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3188
3362
|
* @param reportProgress flag to report request and response progress.
|
|
3363
|
+
* @param options additional options
|
|
3189
3364
|
*/
|
|
3190
3365
|
createNote(note?: Note, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3191
3366
|
httpHeaderAccept?: 'application/json';
|
|
@@ -3204,11 +3379,13 @@ declare class NotesService extends BaseService {
|
|
|
3204
3379
|
}): Observable<HttpEvent<Note>>;
|
|
3205
3380
|
/**
|
|
3206
3381
|
* Get note by source with category
|
|
3382
|
+
* @endpoint get /notes/{sourceId}/{type}/{category}
|
|
3207
3383
|
* @param sourceId
|
|
3208
3384
|
* @param type
|
|
3209
3385
|
* @param category
|
|
3210
3386
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3211
3387
|
* @param reportProgress flag to report request and response progress.
|
|
3388
|
+
* @param options additional options
|
|
3212
3389
|
*/
|
|
3213
3390
|
getNoteByCategory(sourceId: string, type: NoteSourceType, category: NoteCategory, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3214
3391
|
httpHeaderAccept?: 'application/json';
|
|
@@ -3227,10 +3404,12 @@ declare class NotesService extends BaseService {
|
|
|
3227
3404
|
}): Observable<HttpEvent<NoteView>>;
|
|
3228
3405
|
/**
|
|
3229
3406
|
* Get note by source
|
|
3407
|
+
* @endpoint get /notes/{sourceId}/{type}
|
|
3230
3408
|
* @param sourceId
|
|
3231
3409
|
* @param type
|
|
3232
3410
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3233
3411
|
* @param reportProgress flag to report request and response progress.
|
|
3412
|
+
* @param options additional options
|
|
3234
3413
|
*/
|
|
3235
3414
|
getNoteBySource(sourceId: string, type: NoteSourceType, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3236
3415
|
httpHeaderAccept?: 'application/json';
|
|
@@ -3249,10 +3428,12 @@ declare class NotesService extends BaseService {
|
|
|
3249
3428
|
}): Observable<HttpEvent<NoteView>>;
|
|
3250
3429
|
/**
|
|
3251
3430
|
* Update a specific note
|
|
3431
|
+
* @endpoint put /notes/{id}
|
|
3252
3432
|
* @param id
|
|
3253
3433
|
* @param note
|
|
3254
3434
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3255
3435
|
* @param reportProgress flag to report request and response progress.
|
|
3436
|
+
* @param options additional options
|
|
3256
3437
|
*/
|
|
3257
3438
|
updateNote(id: string, note: Note, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3258
3439
|
httpHeaderAccept?: 'application/json';
|
|
@@ -3278,8 +3459,10 @@ declare class PendoService extends BaseService {
|
|
|
3278
3459
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3279
3460
|
/**
|
|
3280
3461
|
* Retrieve the Pendo API key
|
|
3462
|
+
* @endpoint get /pendo/api-key
|
|
3281
3463
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3282
3464
|
* @param reportProgress flag to report request and response progress.
|
|
3465
|
+
* @param options additional options
|
|
3283
3466
|
*/
|
|
3284
3467
|
getPendoApiKey(observe?: 'body', reportProgress?: boolean, options?: {
|
|
3285
3468
|
httpHeaderAccept?: 'application/json';
|
|
@@ -3319,8 +3502,10 @@ declare class PermissionsService extends BaseService {
|
|
|
3319
3502
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3320
3503
|
/**
|
|
3321
3504
|
* User permissions
|
|
3505
|
+
* @endpoint get /user/permissions
|
|
3322
3506
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3323
3507
|
* @param reportProgress flag to report request and response progress.
|
|
3508
|
+
* @param options additional options
|
|
3324
3509
|
*/
|
|
3325
3510
|
getUserPermissions(observe?: 'body', reportProgress?: boolean, options?: {
|
|
3326
3511
|
httpHeaderAccept?: 'application/json';
|
|
@@ -3382,6 +3567,7 @@ declare class ProductMastersService extends BaseService {
|
|
|
3382
3567
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3383
3568
|
/**
|
|
3384
3569
|
* Getting productMasters
|
|
3570
|
+
* @endpoint get /productMasters
|
|
3385
3571
|
* @param $skip
|
|
3386
3572
|
* @param $top
|
|
3387
3573
|
* @param $orderby
|
|
@@ -3389,6 +3575,7 @@ declare class ProductMastersService extends BaseService {
|
|
|
3389
3575
|
* @param $search
|
|
3390
3576
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3391
3577
|
* @param reportProgress flag to report request and response progress.
|
|
3578
|
+
* @param options additional options
|
|
3392
3579
|
*/
|
|
3393
3580
|
getProductMasters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3394
3581
|
httpHeaderAccept?: 'application/json';
|
|
@@ -3444,6 +3631,7 @@ declare class ProductQuantitiesService extends BaseService {
|
|
|
3444
3631
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3445
3632
|
/**
|
|
3446
3633
|
* Getting productQuantities
|
|
3634
|
+
* @endpoint get /productQuantities
|
|
3447
3635
|
* @param $skip
|
|
3448
3636
|
* @param $top
|
|
3449
3637
|
* @param $orderby
|
|
@@ -3451,6 +3639,7 @@ declare class ProductQuantitiesService extends BaseService {
|
|
|
3451
3639
|
* @param $search
|
|
3452
3640
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3453
3641
|
* @param reportProgress flag to report request and response progress.
|
|
3642
|
+
* @param options additional options
|
|
3454
3643
|
*/
|
|
3455
3644
|
getProductQuantities($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3456
3645
|
httpHeaderAccept?: 'application/json';
|
|
@@ -3524,6 +3713,7 @@ declare class ReasonsService extends BaseService {
|
|
|
3524
3713
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3525
3714
|
/**
|
|
3526
3715
|
* Getting reasons
|
|
3716
|
+
* @endpoint get /reasons
|
|
3527
3717
|
* @param $skip
|
|
3528
3718
|
* @param $top
|
|
3529
3719
|
* @param $orderby
|
|
@@ -3531,6 +3721,7 @@ declare class ReasonsService extends BaseService {
|
|
|
3531
3721
|
* @param $search
|
|
3532
3722
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3533
3723
|
* @param reportProgress flag to report request and response progress.
|
|
3724
|
+
* @param options additional options
|
|
3534
3725
|
*/
|
|
3535
3726
|
getReasons($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3536
3727
|
httpHeaderAccept?: 'application/json';
|
|
@@ -3632,9 +3823,11 @@ declare class ReplenishmentService extends BaseService {
|
|
|
3632
3823
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3633
3824
|
/**
|
|
3634
3825
|
* Create a specific replenishment access
|
|
3826
|
+
* @endpoint post /replenishment/access
|
|
3635
3827
|
* @param replenishmentAccess
|
|
3636
3828
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3637
3829
|
* @param reportProgress flag to report request and response progress.
|
|
3830
|
+
* @param options additional options
|
|
3638
3831
|
*/
|
|
3639
3832
|
createAccess(replenishmentAccess: ReplenishmentAccess, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3640
3833
|
httpHeaderAccept?: 'application/json';
|
|
@@ -3653,9 +3846,11 @@ declare class ReplenishmentService extends BaseService {
|
|
|
3653
3846
|
}): Observable<HttpEvent<ReplenishmentAccess>>;
|
|
3654
3847
|
/**
|
|
3655
3848
|
* Delete a replenishment access
|
|
3849
|
+
* @endpoint delete /replenishment/access/{id}
|
|
3656
3850
|
* @param id
|
|
3657
3851
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3658
3852
|
* @param reportProgress flag to report request and response progress.
|
|
3853
|
+
* @param options additional options
|
|
3659
3854
|
*/
|
|
3660
3855
|
deleteAccess(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3661
3856
|
httpHeaderAccept?: 'application/json';
|
|
@@ -3674,6 +3869,7 @@ declare class ReplenishmentService extends BaseService {
|
|
|
3674
3869
|
}): Observable<HttpEvent<any>>;
|
|
3675
3870
|
/**
|
|
3676
3871
|
* Get list of replenishment access client
|
|
3872
|
+
* @endpoint get /replenishment/accesses/clients
|
|
3677
3873
|
* @param $skip
|
|
3678
3874
|
* @param $top
|
|
3679
3875
|
* @param $orderby
|
|
@@ -3681,6 +3877,7 @@ declare class ReplenishmentService extends BaseService {
|
|
|
3681
3877
|
* @param $search
|
|
3682
3878
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3683
3879
|
* @param reportProgress flag to report request and response progress.
|
|
3880
|
+
* @param options additional options
|
|
3684
3881
|
*/
|
|
3685
3882
|
getAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3686
3883
|
httpHeaderAccept?: 'application/json';
|
|
@@ -3699,6 +3896,7 @@ declare class ReplenishmentService extends BaseService {
|
|
|
3699
3896
|
}): Observable<HttpEvent<ReplenishmentAccessClients>>;
|
|
3700
3897
|
/**
|
|
3701
3898
|
* Getting replenishment access
|
|
3899
|
+
* @endpoint get /replenishment/accesses
|
|
3702
3900
|
* @param $skip
|
|
3703
3901
|
* @param $top
|
|
3704
3902
|
* @param $orderby
|
|
@@ -3706,6 +3904,7 @@ declare class ReplenishmentService extends BaseService {
|
|
|
3706
3904
|
* @param $search
|
|
3707
3905
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3708
3906
|
* @param reportProgress flag to report request and response progress.
|
|
3907
|
+
* @param options additional options
|
|
3709
3908
|
*/
|
|
3710
3909
|
getAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3711
3910
|
httpHeaderAccept?: 'application/json';
|
|
@@ -3724,11 +3923,13 @@ declare class ReplenishmentService extends BaseService {
|
|
|
3724
3923
|
}): Observable<HttpEvent<ReplenishmentAccesses>>;
|
|
3725
3924
|
/**
|
|
3726
3925
|
* Update an existing replenishment access
|
|
3926
|
+
* @endpoint put /replenishment/access/{id}
|
|
3727
3927
|
* @param id
|
|
3728
3928
|
* @param replenishmentAccess
|
|
3729
3929
|
* @param propertiesToUpdate Array of property names to update
|
|
3730
3930
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3731
3931
|
* @param reportProgress flag to report request and response progress.
|
|
3932
|
+
* @param options additional options
|
|
3732
3933
|
*/
|
|
3733
3934
|
updateAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3734
3935
|
httpHeaderAccept?: 'application/json';
|
|
@@ -3874,9 +4075,11 @@ declare class ReplenishmentRecordsService extends BaseService {
|
|
|
3874
4075
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3875
4076
|
/**
|
|
3876
4077
|
* Cancel a replenishment record
|
|
4078
|
+
* @endpoint put /replenishmentRecords/{id}/cancel
|
|
3877
4079
|
* @param id
|
|
3878
4080
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3879
4081
|
* @param reportProgress flag to report request and response progress.
|
|
4082
|
+
* @param options additional options
|
|
3880
4083
|
*/
|
|
3881
4084
|
cancelReplenishmentRecord(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3882
4085
|
httpHeaderAccept?: undefined;
|
|
@@ -3895,6 +4098,7 @@ declare class ReplenishmentRecordsService extends BaseService {
|
|
|
3895
4098
|
}): Observable<HttpEvent<any>>;
|
|
3896
4099
|
/**
|
|
3897
4100
|
* Getting replenishment records
|
|
4101
|
+
* @endpoint get /replenishmentRecords
|
|
3898
4102
|
* @param $skip
|
|
3899
4103
|
* @param $top
|
|
3900
4104
|
* @param $orderby
|
|
@@ -3902,6 +4106,7 @@ declare class ReplenishmentRecordsService extends BaseService {
|
|
|
3902
4106
|
* @param $search
|
|
3903
4107
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3904
4108
|
* @param reportProgress flag to report request and response progress.
|
|
4109
|
+
* @param options additional options
|
|
3905
4110
|
*/
|
|
3906
4111
|
getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3907
4112
|
httpHeaderAccept?: 'application/json';
|
|
@@ -3920,6 +4125,7 @@ declare class ReplenishmentRecordsService extends BaseService {
|
|
|
3920
4125
|
}): Observable<HttpEvent<ReplenishmentRecords>>;
|
|
3921
4126
|
/**
|
|
3922
4127
|
* ReplenishmentRecords list
|
|
4128
|
+
* @endpoint get /replenishmentRecords/search
|
|
3923
4129
|
* @param $skip
|
|
3924
4130
|
* @param $top
|
|
3925
4131
|
* @param $orderby
|
|
@@ -3927,6 +4133,7 @@ declare class ReplenishmentRecordsService extends BaseService {
|
|
|
3927
4133
|
* @param searchTerm
|
|
3928
4134
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3929
4135
|
* @param reportProgress flag to report request and response progress.
|
|
4136
|
+
* @param options additional options
|
|
3930
4137
|
*/
|
|
3931
4138
|
getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3932
4139
|
httpHeaderAccept?: 'application/json';
|
|
@@ -3945,9 +4152,11 @@ declare class ReplenishmentRecordsService extends BaseService {
|
|
|
3945
4152
|
}): Observable<HttpEvent<ReplenishmentRecords>>;
|
|
3946
4153
|
/**
|
|
3947
4154
|
* Unallocate a replenishment record
|
|
4155
|
+
* @endpoint put /replenishmentRecords/{id}/unallocate
|
|
3948
4156
|
* @param id
|
|
3949
4157
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3950
4158
|
* @param reportProgress flag to report request and response progress.
|
|
4159
|
+
* @param options additional options
|
|
3951
4160
|
*/
|
|
3952
4161
|
unallocateReplenishmentRecord(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3953
4162
|
httpHeaderAccept?: undefined;
|
|
@@ -4032,6 +4241,7 @@ declare class ReturnedItemsService extends BaseService {
|
|
|
4032
4241
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
4033
4242
|
/**
|
|
4034
4243
|
* Getting returnedItems
|
|
4244
|
+
* @endpoint get /deliveryItems/returnedItems
|
|
4035
4245
|
* @param $skip
|
|
4036
4246
|
* @param $top
|
|
4037
4247
|
* @param $orderby
|
|
@@ -4039,6 +4249,7 @@ declare class ReturnedItemsService extends BaseService {
|
|
|
4039
4249
|
* @param $search
|
|
4040
4250
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4041
4251
|
* @param reportProgress flag to report request and response progress.
|
|
4252
|
+
* @param options additional options
|
|
4042
4253
|
*/
|
|
4043
4254
|
getReturnedItems($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4044
4255
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4057,6 +4268,7 @@ declare class ReturnedItemsService extends BaseService {
|
|
|
4057
4268
|
}): Observable<HttpEvent<ReturnedDeliveryItems>>;
|
|
4058
4269
|
/**
|
|
4059
4270
|
* ReturnedItems list
|
|
4271
|
+
* @endpoint get /deliveryItems/returnedItems/search
|
|
4060
4272
|
* @param $skip
|
|
4061
4273
|
* @param $top
|
|
4062
4274
|
* @param $orderby
|
|
@@ -4064,6 +4276,7 @@ declare class ReturnedItemsService extends BaseService {
|
|
|
4064
4276
|
* @param searchTerm
|
|
4065
4277
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4066
4278
|
* @param reportProgress flag to report request and response progress.
|
|
4279
|
+
* @param options additional options
|
|
4067
4280
|
*/
|
|
4068
4281
|
getReturnedItemsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4069
4282
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4118,10 +4331,12 @@ declare class SettingsService extends BaseService {
|
|
|
4118
4331
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
4119
4332
|
/**
|
|
4120
4333
|
* Delete a specific setting by group and key
|
|
4334
|
+
* @endpoint delete /users/me/settings/groups/{group}/{key}
|
|
4121
4335
|
* @param key
|
|
4122
4336
|
* @param group
|
|
4123
4337
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4124
4338
|
* @param reportProgress flag to report request and response progress.
|
|
4339
|
+
* @param options additional options
|
|
4125
4340
|
*/
|
|
4126
4341
|
deleteSettingByGroupAndKey(key: string, group: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4127
4342
|
httpHeaderAccept?: undefined;
|
|
@@ -4140,9 +4355,11 @@ declare class SettingsService extends BaseService {
|
|
|
4140
4355
|
}): Observable<HttpEvent<any>>;
|
|
4141
4356
|
/**
|
|
4142
4357
|
* Delete a specific setting by key
|
|
4358
|
+
* @endpoint delete /users/me/settings/{key}
|
|
4143
4359
|
* @param key
|
|
4144
4360
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4145
4361
|
* @param reportProgress flag to report request and response progress.
|
|
4362
|
+
* @param options additional options
|
|
4146
4363
|
*/
|
|
4147
4364
|
deleteSettingByKey(key: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4148
4365
|
httpHeaderAccept?: undefined;
|
|
@@ -4161,10 +4378,12 @@ declare class SettingsService extends BaseService {
|
|
|
4161
4378
|
}): Observable<HttpEvent<any>>;
|
|
4162
4379
|
/**
|
|
4163
4380
|
* Get a specific setting by group and key
|
|
4381
|
+
* @endpoint get /users/me/settings/groups/{group}/{key}
|
|
4164
4382
|
* @param key
|
|
4165
4383
|
* @param group
|
|
4166
4384
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4167
4385
|
* @param reportProgress flag to report request and response progress.
|
|
4386
|
+
* @param options additional options
|
|
4168
4387
|
*/
|
|
4169
4388
|
getSettingByGroupAndKey(key: string, group: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4170
4389
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4183,9 +4402,11 @@ declare class SettingsService extends BaseService {
|
|
|
4183
4402
|
}): Observable<HttpEvent<SettingValue>>;
|
|
4184
4403
|
/**
|
|
4185
4404
|
* Get a specific setting by key
|
|
4405
|
+
* @endpoint get /users/me/settings/{key}
|
|
4186
4406
|
* @param key
|
|
4187
4407
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4188
4408
|
* @param reportProgress flag to report request and response progress.
|
|
4409
|
+
* @param options additional options
|
|
4189
4410
|
*/
|
|
4190
4411
|
getSettingByKey(key: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4191
4412
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4204,9 +4425,11 @@ declare class SettingsService extends BaseService {
|
|
|
4204
4425
|
}): Observable<HttpEvent<SettingValue>>;
|
|
4205
4426
|
/**
|
|
4206
4427
|
* Get settings by group
|
|
4428
|
+
* @endpoint get /users/me/settings/groups/{group}
|
|
4207
4429
|
* @param group
|
|
4208
4430
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4209
4431
|
* @param reportProgress flag to report request and response progress.
|
|
4432
|
+
* @param options additional options
|
|
4210
4433
|
*/
|
|
4211
4434
|
getSettingsByGroup(group: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4212
4435
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4225,10 +4448,12 @@ declare class SettingsService extends BaseService {
|
|
|
4225
4448
|
}): Observable<HttpEvent<Array<SettingView>>>;
|
|
4226
4449
|
/**
|
|
4227
4450
|
* Create or update a specific setting by key
|
|
4451
|
+
* @endpoint put /users/me/settings/{key}
|
|
4228
4452
|
* @param key
|
|
4229
4453
|
* @param settingValue
|
|
4230
4454
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4231
4455
|
* @param reportProgress flag to report request and response progress.
|
|
4456
|
+
* @param options additional options
|
|
4232
4457
|
*/
|
|
4233
4458
|
setSettingByKey(key: string, settingValue: SettingValue, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4234
4459
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4254,9 +4479,11 @@ declare class SummaryService extends BaseService {
|
|
|
4254
4479
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
4255
4480
|
/**
|
|
4256
4481
|
* Request WMS summary dashboard report embedding links
|
|
4482
|
+
* @endpoint get /summary/dashboard/{dashboardName}
|
|
4257
4483
|
* @param dashboardName The name of the dashboard report to retrieve
|
|
4258
4484
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4259
4485
|
* @param reportProgress flag to report request and response progress.
|
|
4486
|
+
* @param options additional options
|
|
4260
4487
|
*/
|
|
4261
4488
|
getSummaryDashboardReport(dashboardName: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4262
4489
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4314,9 +4541,11 @@ declare class TaskCompletionTimeService extends BaseService {
|
|
|
4314
4541
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
4315
4542
|
/**
|
|
4316
4543
|
* Create a new task completion time
|
|
4544
|
+
* @endpoint post /taskCompletionTime
|
|
4317
4545
|
* @param taskCompletionTime
|
|
4318
4546
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4319
4547
|
* @param reportProgress flag to report request and response progress.
|
|
4548
|
+
* @param options additional options
|
|
4320
4549
|
*/
|
|
4321
4550
|
createTaskCompletionTime(taskCompletionTime: TaskCompletionTime, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4322
4551
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4335,9 +4564,11 @@ declare class TaskCompletionTimeService extends BaseService {
|
|
|
4335
4564
|
}): Observable<HttpEvent<TaskCompletionTime>>;
|
|
4336
4565
|
/**
|
|
4337
4566
|
* Delete a task completion time
|
|
4567
|
+
* @endpoint delete /taskCompletionTime/{id}
|
|
4338
4568
|
* @param id
|
|
4339
4569
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4340
4570
|
* @param reportProgress flag to report request and response progress.
|
|
4571
|
+
* @param options additional options
|
|
4341
4572
|
*/
|
|
4342
4573
|
deleteTaskCompletionTime(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4343
4574
|
httpHeaderAccept?: undefined;
|
|
@@ -4356,9 +4587,11 @@ declare class TaskCompletionTimeService extends BaseService {
|
|
|
4356
4587
|
}): Observable<HttpEvent<any>>;
|
|
4357
4588
|
/**
|
|
4358
4589
|
* Retrieve a task completion time by ID
|
|
4590
|
+
* @endpoint get /taskCompletionTime/{id}
|
|
4359
4591
|
* @param id
|
|
4360
4592
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4361
4593
|
* @param reportProgress flag to report request and response progress.
|
|
4594
|
+
* @param options additional options
|
|
4362
4595
|
*/
|
|
4363
4596
|
getTaskCompletionTimeById(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4364
4597
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4377,6 +4610,7 @@ declare class TaskCompletionTimeService extends BaseService {
|
|
|
4377
4610
|
}): Observable<HttpEvent<TaskCompletionTime>>;
|
|
4378
4611
|
/**
|
|
4379
4612
|
* Getting task completion times
|
|
4613
|
+
* @endpoint get /taskCompletionTime
|
|
4380
4614
|
* @param $skip
|
|
4381
4615
|
* @param $top
|
|
4382
4616
|
* @param $orderby
|
|
@@ -4384,6 +4618,7 @@ declare class TaskCompletionTimeService extends BaseService {
|
|
|
4384
4618
|
* @param $search
|
|
4385
4619
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4386
4620
|
* @param reportProgress flag to report request and response progress.
|
|
4621
|
+
* @param options additional options
|
|
4387
4622
|
*/
|
|
4388
4623
|
getTaskCompletionTimes($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4389
4624
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4402,10 +4637,12 @@ declare class TaskCompletionTimeService extends BaseService {
|
|
|
4402
4637
|
}): Observable<HttpEvent<TaskCompletionTimes>>;
|
|
4403
4638
|
/**
|
|
4404
4639
|
* Update an existing task completion time
|
|
4640
|
+
* @endpoint put /taskCompletionTime/{id}
|
|
4405
4641
|
* @param id
|
|
4406
4642
|
* @param taskCompletionTime
|
|
4407
4643
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4408
4644
|
* @param reportProgress flag to report request and response progress.
|
|
4645
|
+
* @param options additional options
|
|
4409
4646
|
*/
|
|
4410
4647
|
updateTaskCompletionTime(id: number, taskCompletionTime: TaskCompletionTime, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4411
4648
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4466,9 +4703,11 @@ declare class TaskOperationsService extends BaseService {
|
|
|
4466
4703
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
4467
4704
|
/**
|
|
4468
4705
|
* Create a new task operation
|
|
4706
|
+
* @endpoint post /taskOperations
|
|
4469
4707
|
* @param taskOperation
|
|
4470
4708
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4471
4709
|
* @param reportProgress flag to report request and response progress.
|
|
4710
|
+
* @param options additional options
|
|
4472
4711
|
*/
|
|
4473
4712
|
createTaskOperation(taskOperation: TaskOperation, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4474
4713
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4487,9 +4726,11 @@ declare class TaskOperationsService extends BaseService {
|
|
|
4487
4726
|
}): Observable<HttpEvent<TaskOperation>>;
|
|
4488
4727
|
/**
|
|
4489
4728
|
* Delete a task operation
|
|
4729
|
+
* @endpoint delete /taskOperations/{id}
|
|
4490
4730
|
* @param id
|
|
4491
4731
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4492
4732
|
* @param reportProgress flag to report request and response progress.
|
|
4733
|
+
* @param options additional options
|
|
4493
4734
|
*/
|
|
4494
4735
|
deleteTaskOperation(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4495
4736
|
httpHeaderAccept?: undefined;
|
|
@@ -4508,9 +4749,11 @@ declare class TaskOperationsService extends BaseService {
|
|
|
4508
4749
|
}): Observable<HttpEvent<any>>;
|
|
4509
4750
|
/**
|
|
4510
4751
|
* Retrieve a task operation by ID
|
|
4752
|
+
* @endpoint get /taskOperations/{id}
|
|
4511
4753
|
* @param id
|
|
4512
4754
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4513
4755
|
* @param reportProgress flag to report request and response progress.
|
|
4756
|
+
* @param options additional options
|
|
4514
4757
|
*/
|
|
4515
4758
|
getTaskOperationById(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4516
4759
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4529,6 +4772,7 @@ declare class TaskOperationsService extends BaseService {
|
|
|
4529
4772
|
}): Observable<HttpEvent<TaskOperation>>;
|
|
4530
4773
|
/**
|
|
4531
4774
|
* Getting task operations
|
|
4775
|
+
* @endpoint get /taskOperations
|
|
4532
4776
|
* @param $skip
|
|
4533
4777
|
* @param $top
|
|
4534
4778
|
* @param $orderby
|
|
@@ -4536,6 +4780,7 @@ declare class TaskOperationsService extends BaseService {
|
|
|
4536
4780
|
* @param $search
|
|
4537
4781
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4538
4782
|
* @param reportProgress flag to report request and response progress.
|
|
4783
|
+
* @param options additional options
|
|
4539
4784
|
*/
|
|
4540
4785
|
getTaskOperations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4541
4786
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4554,10 +4799,12 @@ declare class TaskOperationsService extends BaseService {
|
|
|
4554
4799
|
}): Observable<HttpEvent<TaskOperations>>;
|
|
4555
4800
|
/**
|
|
4556
4801
|
* Update an existing task operation
|
|
4802
|
+
* @endpoint put /taskOperations/{id}
|
|
4557
4803
|
* @param id
|
|
4558
4804
|
* @param taskOperation
|
|
4559
4805
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4560
4806
|
* @param reportProgress flag to report request and response progress.
|
|
4807
|
+
* @param options additional options
|
|
4561
4808
|
*/
|
|
4562
4809
|
updateTaskOperation(id: number, taskOperation: TaskOperation, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4563
4810
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4687,9 +4934,11 @@ declare class TaskUserRecordsService extends BaseService {
|
|
|
4687
4934
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
4688
4935
|
/**
|
|
4689
4936
|
* Create a new task user record
|
|
4937
|
+
* @endpoint post /taskUserRecords
|
|
4690
4938
|
* @param taskUserRecord
|
|
4691
4939
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4692
4940
|
* @param reportProgress flag to report request and response progress.
|
|
4941
|
+
* @param options additional options
|
|
4693
4942
|
*/
|
|
4694
4943
|
createTaskUserRecord(taskUserRecord: TaskUserRecord, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4695
4944
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4708,9 +4957,11 @@ declare class TaskUserRecordsService extends BaseService {
|
|
|
4708
4957
|
}): Observable<HttpEvent<TaskUserRecord>>;
|
|
4709
4958
|
/**
|
|
4710
4959
|
* Delete a specific task user record
|
|
4960
|
+
* @endpoint delete /taskUserRecords/{id}
|
|
4711
4961
|
* @param id
|
|
4712
4962
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4713
4963
|
* @param reportProgress flag to report request and response progress.
|
|
4964
|
+
* @param options additional options
|
|
4714
4965
|
*/
|
|
4715
4966
|
deleteTaskUserRecord(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4716
4967
|
httpHeaderAccept?: undefined;
|
|
@@ -4729,10 +4980,12 @@ declare class TaskUserRecordsService extends BaseService {
|
|
|
4729
4980
|
}): Observable<HttpEvent<any>>;
|
|
4730
4981
|
/**
|
|
4731
4982
|
* Marks the specified task user record as finished for the current user.
|
|
4983
|
+
* @endpoint put /taskUserRecords/me/{id}
|
|
4732
4984
|
* @param id
|
|
4733
4985
|
* @param finishedDeviceType
|
|
4734
4986
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4735
4987
|
* @param reportProgress flag to report request and response progress.
|
|
4988
|
+
* @param options additional options
|
|
4736
4989
|
*/
|
|
4737
4990
|
finishTaskUserRecord(id: number, finishedDeviceType: 'Unknown' | 'Desktop' | 'HHT', observe?: 'body', reportProgress?: boolean, options?: {
|
|
4738
4991
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4751,9 +5004,11 @@ declare class TaskUserRecordsService extends BaseService {
|
|
|
4751
5004
|
}): Observable<HttpEvent<TaskUserRecord>>;
|
|
4752
5005
|
/**
|
|
4753
5006
|
* Retrieve a task user record by ID
|
|
5007
|
+
* @endpoint get /taskUserRecords/{id}
|
|
4754
5008
|
* @param id
|
|
4755
5009
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4756
5010
|
* @param reportProgress flag to report request and response progress.
|
|
5011
|
+
* @param options additional options
|
|
4757
5012
|
*/
|
|
4758
5013
|
getTaskUserRecordById(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4759
5014
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4772,6 +5027,7 @@ declare class TaskUserRecordsService extends BaseService {
|
|
|
4772
5027
|
}): Observable<HttpEvent<TaskUserRecord>>;
|
|
4773
5028
|
/**
|
|
4774
5029
|
* Getting task user records
|
|
5030
|
+
* @endpoint get /taskUserRecords
|
|
4775
5031
|
* @param $skip
|
|
4776
5032
|
* @param $top
|
|
4777
5033
|
* @param $orderby
|
|
@@ -4779,6 +5035,7 @@ declare class TaskUserRecordsService extends BaseService {
|
|
|
4779
5035
|
* @param $search
|
|
4780
5036
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4781
5037
|
* @param reportProgress flag to report request and response progress.
|
|
5038
|
+
* @param options additional options
|
|
4782
5039
|
*/
|
|
4783
5040
|
getTaskUserRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4784
5041
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4797,6 +5054,7 @@ declare class TaskUserRecordsService extends BaseService {
|
|
|
4797
5054
|
}): Observable<HttpEvent<TaskUserRecords>>;
|
|
4798
5055
|
/**
|
|
4799
5056
|
* Getting task user records
|
|
5057
|
+
* @endpoint get /taskUserRecords/me
|
|
4800
5058
|
* @param $skip
|
|
4801
5059
|
* @param $top
|
|
4802
5060
|
* @param $orderby
|
|
@@ -4804,6 +5062,7 @@ declare class TaskUserRecordsService extends BaseService {
|
|
|
4804
5062
|
* @param $search
|
|
4805
5063
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4806
5064
|
* @param reportProgress flag to report request and response progress.
|
|
5065
|
+
* @param options additional options
|
|
4807
5066
|
*/
|
|
4808
5067
|
getTaskUserRecordsForSelf($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4809
5068
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4822,6 +5081,7 @@ declare class TaskUserRecordsService extends BaseService {
|
|
|
4822
5081
|
}): Observable<HttpEvent<TaskUserRecords>>;
|
|
4823
5082
|
/**
|
|
4824
5083
|
* Getting task user records
|
|
5084
|
+
* @endpoint get /taskUserRecords/search
|
|
4825
5085
|
* @param $skip
|
|
4826
5086
|
* @param $top
|
|
4827
5087
|
* @param $orderby
|
|
@@ -4829,6 +5089,7 @@ declare class TaskUserRecordsService extends BaseService {
|
|
|
4829
5089
|
* @param searchTerm
|
|
4830
5090
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4831
5091
|
* @param reportProgress flag to report request and response progress.
|
|
5092
|
+
* @param options additional options
|
|
4832
5093
|
*/
|
|
4833
5094
|
getTaskUserRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4834
5095
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4847,9 +5108,11 @@ declare class TaskUserRecordsService extends BaseService {
|
|
|
4847
5108
|
}): Observable<HttpEvent<TaskUserRecords>>;
|
|
4848
5109
|
/**
|
|
4849
5110
|
* Create a new task user record for the current user
|
|
5111
|
+
* @endpoint post /taskUserRecords/me
|
|
4850
5112
|
* @param taskUserRecordSelf
|
|
4851
5113
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4852
5114
|
* @param reportProgress flag to report request and response progress.
|
|
5115
|
+
* @param options additional options
|
|
4853
5116
|
*/
|
|
4854
5117
|
startTaskUserRecord(taskUserRecordSelf: TaskUserRecordSelf, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4855
5118
|
httpHeaderAccept?: 'application/json';
|
|
@@ -4868,10 +5131,12 @@ declare class TaskUserRecordsService extends BaseService {
|
|
|
4868
5131
|
}): Observable<HttpEvent<TaskUserRecord>>;
|
|
4869
5132
|
/**
|
|
4870
5133
|
* Update an existing task user record
|
|
5134
|
+
* @endpoint put /taskUserRecords/{id}
|
|
4871
5135
|
* @param id
|
|
4872
5136
|
* @param taskUserRecord
|
|
4873
5137
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4874
5138
|
* @param reportProgress flag to report request and response progress.
|
|
5139
|
+
* @param options additional options
|
|
4875
5140
|
*/
|
|
4876
5141
|
updateTaskUserRecord(id: number, taskUserRecord: TaskUserRecord, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4877
5142
|
httpHeaderAccept?: 'application/json';
|
|
@@ -5014,9 +5279,11 @@ declare class UserService extends BaseService {
|
|
|
5014
5279
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
5015
5280
|
/**
|
|
5016
5281
|
* Get a specific application setting by name
|
|
5282
|
+
* @endpoint get /user/me/settings/{name}
|
|
5017
5283
|
* @param name The name of the application setting to retrieve
|
|
5018
5284
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5019
5285
|
* @param reportProgress flag to report request and response progress.
|
|
5286
|
+
* @param options additional options
|
|
5020
5287
|
*/
|
|
5021
5288
|
getApplicationSetting(name: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5022
5289
|
httpHeaderAccept?: 'application/json';
|
|
@@ -5035,8 +5302,10 @@ declare class UserService extends BaseService {
|
|
|
5035
5302
|
}): Observable<HttpEvent<ApplicationSetting>>;
|
|
5036
5303
|
/**
|
|
5037
5304
|
* Get User application list
|
|
5305
|
+
* @endpoint get /users/me/applications
|
|
5038
5306
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5039
5307
|
* @param reportProgress flag to report request and response progress.
|
|
5308
|
+
* @param options additional options
|
|
5040
5309
|
*/
|
|
5041
5310
|
getUserApplicationList(observe?: 'body', reportProgress?: boolean, options?: {
|
|
5042
5311
|
httpHeaderAccept?: 'application/json';
|
|
@@ -5055,8 +5324,10 @@ declare class UserService extends BaseService {
|
|
|
5055
5324
|
}): Observable<HttpEvent<UserApplications>>;
|
|
5056
5325
|
/**
|
|
5057
5326
|
* User information
|
|
5327
|
+
* @endpoint get /user/me
|
|
5058
5328
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5059
5329
|
* @param reportProgress flag to report request and response progress.
|
|
5330
|
+
* @param options additional options
|
|
5060
5331
|
*/
|
|
5061
5332
|
getUserInfo(observe?: 'body', reportProgress?: boolean, options?: {
|
|
5062
5333
|
httpHeaderAccept?: 'application/json';
|
|
@@ -5075,9 +5346,11 @@ declare class UserService extends BaseService {
|
|
|
5075
5346
|
}): Observable<HttpEvent<CurrentUser>>;
|
|
5076
5347
|
/**
|
|
5077
5348
|
* Set NewFeaturesVisibility setting
|
|
5349
|
+
* @endpoint put /user/me/settings/newfeaturevisibility
|
|
5078
5350
|
* @param setNewFeaturesVisibilityCommand
|
|
5079
5351
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5080
5352
|
* @param reportProgress flag to report request and response progress.
|
|
5353
|
+
* @param options additional options
|
|
5081
5354
|
*/
|
|
5082
5355
|
setNewFeaturesVisibility(setNewFeaturesVisibilityCommand?: SetNewFeaturesVisibilityCommand, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5083
5356
|
httpHeaderAccept?: 'application/json';
|
|
@@ -5133,6 +5406,7 @@ declare class UsersInternalService extends BaseService {
|
|
|
5133
5406
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
5134
5407
|
/**
|
|
5135
5408
|
* Retrieve a paginated list of users based on a specification
|
|
5409
|
+
* @endpoint get /users/internal
|
|
5136
5410
|
* @param $skip
|
|
5137
5411
|
* @param $top
|
|
5138
5412
|
* @param $orderby
|
|
@@ -5140,6 +5414,7 @@ declare class UsersInternalService extends BaseService {
|
|
|
5140
5414
|
* @param $search
|
|
5141
5415
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5142
5416
|
* @param reportProgress flag to report request and response progress.
|
|
5417
|
+
* @param options additional options
|
|
5143
5418
|
*/
|
|
5144
5419
|
getUsersInternal($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5145
5420
|
httpHeaderAccept?: 'application/json';
|
|
@@ -5281,6 +5556,7 @@ declare class WavePickReleasesService extends BaseService {
|
|
|
5281
5556
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
5282
5557
|
/**
|
|
5283
5558
|
* Getting wavePickReleases by historyType
|
|
5559
|
+
* @endpoint get /wavePickReleases/history/{pickReleaseHistoryType}
|
|
5284
5560
|
* @param pickReleaseHistoryType
|
|
5285
5561
|
* @param $skip
|
|
5286
5562
|
* @param $top
|
|
@@ -5289,6 +5565,7 @@ declare class WavePickReleasesService extends BaseService {
|
|
|
5289
5565
|
* @param $search
|
|
5290
5566
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5291
5567
|
* @param reportProgress flag to report request and response progress.
|
|
5568
|
+
* @param options additional options
|
|
5292
5569
|
*/
|
|
5293
5570
|
getWavePickReleasesByHistoryType(pickReleaseHistoryType: PickReleaseHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5294
5571
|
httpHeaderAccept?: 'application/json';
|
|
@@ -5307,6 +5584,7 @@ declare class WavePickReleasesService extends BaseService {
|
|
|
5307
5584
|
}): Observable<HttpEvent<WavePickReleases>>;
|
|
5308
5585
|
/**
|
|
5309
5586
|
* WavePickReleases list
|
|
5587
|
+
* @endpoint get /wavePickReleases/search
|
|
5310
5588
|
* @param $skip
|
|
5311
5589
|
* @param $top
|
|
5312
5590
|
* @param $orderby
|
|
@@ -5314,6 +5592,7 @@ declare class WavePickReleasesService extends BaseService {
|
|
|
5314
5592
|
* @param searchTerm
|
|
5315
5593
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5316
5594
|
* @param reportProgress flag to report request and response progress.
|
|
5595
|
+
* @param options additional options
|
|
5317
5596
|
*/
|
|
5318
5597
|
getWavePickReleasesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5319
5598
|
httpHeaderAccept?: 'application/json';
|
|
@@ -5399,6 +5678,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
5399
5678
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
5400
5679
|
/**
|
|
5401
5680
|
* Getting waves by pickReleaseId
|
|
5681
|
+
* @endpoint get /wavePickReleases/{id}/waves
|
|
5402
5682
|
* @param id
|
|
5403
5683
|
* @param $skip
|
|
5404
5684
|
* @param $top
|
|
@@ -5407,6 +5687,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
5407
5687
|
* @param $search
|
|
5408
5688
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5409
5689
|
* @param reportProgress flag to report request and response progress.
|
|
5690
|
+
* @param options additional options
|
|
5410
5691
|
*/
|
|
5411
5692
|
getWavesByPickReleaseId(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5412
5693
|
httpHeaderAccept?: 'application/json';
|