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