@indigina/wms-api 0.0.112 → 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 +97 -0
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +50 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -919,6 +919,31 @@ declare class CartonPicksService extends BaseService {
|
|
|
919
919
|
context?: HttpContext;
|
|
920
920
|
transferCache?: boolean;
|
|
921
921
|
}): Observable<HttpEvent<Picks>>;
|
|
922
|
+
/**
|
|
923
|
+
* CartonPicks list
|
|
924
|
+
* @param $skip
|
|
925
|
+
* @param $top
|
|
926
|
+
* @param $orderby
|
|
927
|
+
* @param $filter
|
|
928
|
+
* @param searchTerm
|
|
929
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
930
|
+
* @param reportProgress flag to report request and response progress.
|
|
931
|
+
*/
|
|
932
|
+
getCartonPicksFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
933
|
+
httpHeaderAccept?: 'application/json';
|
|
934
|
+
context?: HttpContext;
|
|
935
|
+
transferCache?: boolean;
|
|
936
|
+
}): Observable<Picks>;
|
|
937
|
+
getCartonPicksFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
938
|
+
httpHeaderAccept?: 'application/json';
|
|
939
|
+
context?: HttpContext;
|
|
940
|
+
transferCache?: boolean;
|
|
941
|
+
}): Observable<HttpResponse<Picks>>;
|
|
942
|
+
getCartonPicksFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
943
|
+
httpHeaderAccept?: 'application/json';
|
|
944
|
+
context?: HttpContext;
|
|
945
|
+
transferCache?: boolean;
|
|
946
|
+
}): Observable<HttpEvent<Picks>>;
|
|
922
947
|
static ɵfac: i0.ɵɵFactoryDeclaration<CartonPicksService, [null, { optional: true; }, { optional: true; }]>;
|
|
923
948
|
static ɵprov: i0.ɵɵInjectableDeclaration<CartonPicksService>;
|
|
924
949
|
}
|
|
@@ -3146,7 +3171,9 @@ declare namespace Note {
|
|
|
3146
3171
|
interface NoteView {
|
|
3147
3172
|
id: string;
|
|
3148
3173
|
createdUserFullName: string;
|
|
3174
|
+
lastModifiedUserFullName: string;
|
|
3149
3175
|
createdDate: string;
|
|
3176
|
+
lastModifiedDate: string;
|
|
3150
3177
|
createdByCompany: string;
|
|
3151
3178
|
notes: string;
|
|
3152
3179
|
}
|
|
@@ -3245,6 +3272,29 @@ declare class NotesService extends BaseService {
|
|
|
3245
3272
|
context?: HttpContext;
|
|
3246
3273
|
transferCache?: boolean;
|
|
3247
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>>;
|
|
3248
3298
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotesService, [null, { optional: true; }, { optional: true; }]>;
|
|
3249
3299
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotesService>;
|
|
3250
3300
|
}
|