@indigina/wms-api 0.0.150 → 0.0.151
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
|
@@ -6910,6 +6910,33 @@ declare class WaveConfigGroupsService extends BaseService {
|
|
|
6910
6910
|
context?: HttpContext;
|
|
6911
6911
|
transferCache?: boolean;
|
|
6912
6912
|
}): Observable<HttpEvent<WaveConfigGroups>>;
|
|
6913
|
+
/**
|
|
6914
|
+
* Wave config groups list
|
|
6915
|
+
* @endpoint get /waveConfigGroups/search
|
|
6916
|
+
* @param $skip
|
|
6917
|
+
* @param $top
|
|
6918
|
+
* @param $orderby
|
|
6919
|
+
* @param $filter
|
|
6920
|
+
* @param searchTerm
|
|
6921
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6922
|
+
* @param reportProgress flag to report request and response progress.
|
|
6923
|
+
* @param options additional options
|
|
6924
|
+
*/
|
|
6925
|
+
getWaveConfigGroupsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6926
|
+
httpHeaderAccept?: 'application/json';
|
|
6927
|
+
context?: HttpContext;
|
|
6928
|
+
transferCache?: boolean;
|
|
6929
|
+
}): Observable<WaveConfigGroups>;
|
|
6930
|
+
getWaveConfigGroupsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6931
|
+
httpHeaderAccept?: 'application/json';
|
|
6932
|
+
context?: HttpContext;
|
|
6933
|
+
transferCache?: boolean;
|
|
6934
|
+
}): Observable<HttpResponse<WaveConfigGroups>>;
|
|
6935
|
+
getWaveConfigGroupsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6936
|
+
httpHeaderAccept?: 'application/json';
|
|
6937
|
+
context?: HttpContext;
|
|
6938
|
+
transferCache?: boolean;
|
|
6939
|
+
}): Observable<HttpEvent<WaveConfigGroups>>;
|
|
6913
6940
|
/**
|
|
6914
6941
|
* Update a wave config groupeliveries
|
|
6915
6942
|
* @endpoint put /waveConfigGroups/{id}
|