@indigina/wms-api 0.0.156 → 0.0.157
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
|
@@ -7304,6 +7304,34 @@ declare class WaveHistoryService extends BaseService {
|
|
|
7304
7304
|
context?: HttpContext;
|
|
7305
7305
|
transferCache?: boolean;
|
|
7306
7306
|
}): Observable<HttpEvent<WaveHistories>>;
|
|
7307
|
+
/**
|
|
7308
|
+
* WaveHistories list
|
|
7309
|
+
* @endpoint get /waveHistories/{waveHistoryType}/search
|
|
7310
|
+
* @param waveHistoryType
|
|
7311
|
+
* @param $skip
|
|
7312
|
+
* @param $top
|
|
7313
|
+
* @param $orderby
|
|
7314
|
+
* @param $filter
|
|
7315
|
+
* @param searchTerm
|
|
7316
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7317
|
+
* @param reportProgress flag to report request and response progress.
|
|
7318
|
+
* @param options additional options
|
|
7319
|
+
*/
|
|
7320
|
+
getWavesByHistoryTypeFromIndex(waveHistoryType: WaveHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
7321
|
+
httpHeaderAccept?: 'application/json';
|
|
7322
|
+
context?: HttpContext;
|
|
7323
|
+
transferCache?: boolean;
|
|
7324
|
+
}): Observable<WaveHistories>;
|
|
7325
|
+
getWavesByHistoryTypeFromIndex(waveHistoryType: WaveHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
7326
|
+
httpHeaderAccept?: 'application/json';
|
|
7327
|
+
context?: HttpContext;
|
|
7328
|
+
transferCache?: boolean;
|
|
7329
|
+
}): Observable<HttpResponse<WaveHistories>>;
|
|
7330
|
+
getWavesByHistoryTypeFromIndex(waveHistoryType: WaveHistoryTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
7331
|
+
httpHeaderAccept?: 'application/json';
|
|
7332
|
+
context?: HttpContext;
|
|
7333
|
+
transferCache?: boolean;
|
|
7334
|
+
}): Observable<HttpEvent<WaveHistories>>;
|
|
7307
7335
|
/**
|
|
7308
7336
|
* Unlock a wave
|
|
7309
7337
|
* @endpoint patch /waveHistories/unlock/{waveId}
|