@indigina/wms-api 0.0.157 → 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
|