@indigina/wms-api 0.0.113 → 0.0.114
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/README.md +2 -2
- package/fesm2022/indigina-wms-api.mjs +56 -0
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +25 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3171,7 +3171,9 @@ declare namespace Note {
|
|
|
3171
3171
|
interface NoteView {
|
|
3172
3172
|
id: string;
|
|
3173
3173
|
createdUserFullName: string;
|
|
3174
|
+
lastModifiedUserFullName: string;
|
|
3174
3175
|
createdDate: string;
|
|
3176
|
+
lastModifiedDate: string;
|
|
3175
3177
|
createdByCompany: string;
|
|
3176
3178
|
notes: string;
|
|
3177
3179
|
}
|
|
@@ -3270,6 +3272,29 @@ declare class NotesService extends BaseService {
|
|
|
3270
3272
|
context?: HttpContext;
|
|
3271
3273
|
transferCache?: boolean;
|
|
3272
3274
|
}): Observable<HttpEvent<Notes>>;
|
|
3275
|
+
/**
|
|
3276
|
+
* Update a specific note
|
|
3277
|
+
* @param id
|
|
3278
|
+
* @param note
|
|
3279
|
+
* @param propertiesToUpdate
|
|
3280
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3281
|
+
* @param reportProgress flag to report request and response progress.
|
|
3282
|
+
*/
|
|
3283
|
+
updateNote(id: string, note: Note, propertiesToUpdate?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3284
|
+
httpHeaderAccept?: 'application/json';
|
|
3285
|
+
context?: HttpContext;
|
|
3286
|
+
transferCache?: boolean;
|
|
3287
|
+
}): Observable<Note>;
|
|
3288
|
+
updateNote(id: string, note: Note, propertiesToUpdate?: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3289
|
+
httpHeaderAccept?: 'application/json';
|
|
3290
|
+
context?: HttpContext;
|
|
3291
|
+
transferCache?: boolean;
|
|
3292
|
+
}): Observable<HttpResponse<Note>>;
|
|
3293
|
+
updateNote(id: string, note: Note, propertiesToUpdate?: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3294
|
+
httpHeaderAccept?: 'application/json';
|
|
3295
|
+
context?: HttpContext;
|
|
3296
|
+
transferCache?: boolean;
|
|
3297
|
+
}): Observable<HttpEvent<Note>>;
|
|
3273
3298
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotesService, [null, { optional: true; }, { optional: true; }]>;
|
|
3274
3299
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotesService>;
|
|
3275
3300
|
}
|