@indigina/wms-api 0.0.156 → 0.0.158
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -6993,6 +6993,33 @@ declare class WaveConfigGroupsService extends BaseService {
|
|
|
6993
6993
|
context?: HttpContext;
|
|
6994
6994
|
transferCache?: boolean;
|
|
6995
6995
|
}): Observable<HttpEvent<WaveConfigurations>>;
|
|
6996
|
+
/**
|
|
6997
|
+
* Get list of wave config group clients
|
|
6998
|
+
* @endpoint get /waveConfigGroups/clients
|
|
6999
|
+
* @param $skip
|
|
7000
|
+
* @param $top
|
|
7001
|
+
* @param $orderby
|
|
7002
|
+
* @param $filter
|
|
7003
|
+
* @param $search
|
|
7004
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7005
|
+
* @param reportProgress flag to report request and response progress.
|
|
7006
|
+
* @param options additional options
|
|
7007
|
+
*/
|
|
7008
|
+
getWaveConfigGroupClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
7009
|
+
httpHeaderAccept?: 'application/json';
|
|
7010
|
+
context?: HttpContext;
|
|
7011
|
+
transferCache?: boolean;
|
|
7012
|
+
}): Observable<Array<string>>;
|
|
7013
|
+
getWaveConfigGroupClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
7014
|
+
httpHeaderAccept?: 'application/json';
|
|
7015
|
+
context?: HttpContext;
|
|
7016
|
+
transferCache?: boolean;
|
|
7017
|
+
}): Observable<HttpResponse<Array<string>>>;
|
|
7018
|
+
getWaveConfigGroupClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
7019
|
+
httpHeaderAccept?: 'application/json';
|
|
7020
|
+
context?: HttpContext;
|
|
7021
|
+
transferCache?: boolean;
|
|
7022
|
+
}): Observable<HttpEvent<Array<string>>>;
|
|
6996
7023
|
/**
|
|
6997
7024
|
* Get configurations for a wave config group
|
|
6998
7025
|
* @endpoint get /waveConfigGroups/{waveConfigGroupId}/configurations
|
|
@@ -7304,6 +7331,34 @@ declare class WaveHistoryService extends BaseService {
|
|
|
7304
7331
|
context?: HttpContext;
|
|
7305
7332
|
transferCache?: boolean;
|
|
7306
7333
|
}): Observable<HttpEvent<WaveHistories>>;
|
|
7334
|
+
/**
|
|
7335
|
+
* WaveHistories list
|
|
7336
|
+
* @endpoint get /waveHistories/{waveHistoryType}/search
|
|
7337
|
+
* @param waveHistoryType
|
|
7338
|
+
* @param $skip
|
|
7339
|
+
* @param $top
|
|
7340
|
+
* @param $orderby
|
|
7341
|
+
* @param $filter
|
|
7342
|
+
* @param searchTerm
|
|
7343
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7344
|
+
* @param reportProgress flag to report request and response progress.
|
|
7345
|
+
* @param options additional options
|
|
7346
|
+
*/
|
|
7347
|
+
getWavesByHistoryTypeFromIndex(waveHistoryType: WaveHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
7348
|
+
httpHeaderAccept?: 'application/json';
|
|
7349
|
+
context?: HttpContext;
|
|
7350
|
+
transferCache?: boolean;
|
|
7351
|
+
}): Observable<WaveHistories>;
|
|
7352
|
+
getWavesByHistoryTypeFromIndex(waveHistoryType: WaveHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
7353
|
+
httpHeaderAccept?: 'application/json';
|
|
7354
|
+
context?: HttpContext;
|
|
7355
|
+
transferCache?: boolean;
|
|
7356
|
+
}): Observable<HttpResponse<WaveHistories>>;
|
|
7357
|
+
getWavesByHistoryTypeFromIndex(waveHistoryType: WaveHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
7358
|
+
httpHeaderAccept?: 'application/json';
|
|
7359
|
+
context?: HttpContext;
|
|
7360
|
+
transferCache?: boolean;
|
|
7361
|
+
}): Observable<HttpEvent<WaveHistories>>;
|
|
7307
7362
|
/**
|
|
7308
7363
|
* Unlock a wave
|
|
7309
7364
|
* @endpoint patch /waveHistories/unlock/{waveId}
|