@indigina/wms-api 0.0.122 → 0.0.123
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
|
@@ -3379,6 +3379,29 @@ declare class NotesService extends BaseService {
|
|
|
3379
3379
|
context?: HttpContext;
|
|
3380
3380
|
transferCache?: boolean;
|
|
3381
3381
|
}): Observable<HttpEvent<Note>>;
|
|
3382
|
+
/**
|
|
3383
|
+
* Delete a specific note
|
|
3384
|
+
* @endpoint delete /notes/{id}
|
|
3385
|
+
* @param id
|
|
3386
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3387
|
+
* @param reportProgress flag to report request and response progress.
|
|
3388
|
+
* @param options additional options
|
|
3389
|
+
*/
|
|
3390
|
+
deleteNote(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3391
|
+
httpHeaderAccept?: undefined;
|
|
3392
|
+
context?: HttpContext;
|
|
3393
|
+
transferCache?: boolean;
|
|
3394
|
+
}): Observable<any>;
|
|
3395
|
+
deleteNote(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3396
|
+
httpHeaderAccept?: undefined;
|
|
3397
|
+
context?: HttpContext;
|
|
3398
|
+
transferCache?: boolean;
|
|
3399
|
+
}): Observable<HttpResponse<any>>;
|
|
3400
|
+
deleteNote(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3401
|
+
httpHeaderAccept?: undefined;
|
|
3402
|
+
context?: HttpContext;
|
|
3403
|
+
transferCache?: boolean;
|
|
3404
|
+
}): Observable<HttpEvent<any>>;
|
|
3382
3405
|
/**
|
|
3383
3406
|
* Get note by source with category
|
|
3384
3407
|
* @endpoint get /notes/{sourceId}/{type}/{category}
|