@indigina/wms-api 0.0.168 → 0.0.170
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
|
@@ -7273,7 +7273,7 @@ interface WaveConfigurationGridView {
|
|
|
7273
7273
|
findStockOutsideZones: boolean;
|
|
7274
7274
|
editLocked: boolean;
|
|
7275
7275
|
enabled: boolean;
|
|
7276
|
-
|
|
7276
|
+
createdDate: string;
|
|
7277
7277
|
createdBy: string;
|
|
7278
7278
|
lastModifiedDate?: string | null;
|
|
7279
7279
|
lastModifiedBy?: string | null;
|
|
@@ -7297,6 +7297,33 @@ interface WaveConfigurations {
|
|
|
7297
7297
|
declare class WaveConfigurationsService extends BaseService {
|
|
7298
7298
|
protected httpClient: HttpClient;
|
|
7299
7299
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
7300
|
+
/**
|
|
7301
|
+
* Get list of wave configuration clients
|
|
7302
|
+
* @endpoint get /waveConfigurations/clients
|
|
7303
|
+
* @param $skip
|
|
7304
|
+
* @param $top
|
|
7305
|
+
* @param $orderby
|
|
7306
|
+
* @param $filter
|
|
7307
|
+
* @param $search
|
|
7308
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7309
|
+
* @param reportProgress flag to report request and response progress.
|
|
7310
|
+
* @param options additional options
|
|
7311
|
+
*/
|
|
7312
|
+
getWaveConfigurationClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
7313
|
+
httpHeaderAccept?: 'application/json';
|
|
7314
|
+
context?: HttpContext;
|
|
7315
|
+
transferCache?: boolean;
|
|
7316
|
+
}): Observable<Array<string>>;
|
|
7317
|
+
getWaveConfigurationClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
7318
|
+
httpHeaderAccept?: 'application/json';
|
|
7319
|
+
context?: HttpContext;
|
|
7320
|
+
transferCache?: boolean;
|
|
7321
|
+
}): Observable<HttpResponse<Array<string>>>;
|
|
7322
|
+
getWaveConfigurationClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
7323
|
+
httpHeaderAccept?: 'application/json';
|
|
7324
|
+
context?: HttpContext;
|
|
7325
|
+
transferCache?: boolean;
|
|
7326
|
+
}): Observable<HttpEvent<Array<string>>>;
|
|
7300
7327
|
/**
|
|
7301
7328
|
* Getting wave configurations
|
|
7302
7329
|
* @endpoint get /waveConfigurations
|