@syncfusion/ej2-data
Advanced tools
Comparing version 18.1.52 to 18.1.55
@@ -9,2 +9,10 @@ # Changelog | ||
- `278074` - `WebApiAdaptor` CRUD issue without query has been fixed. | ||
## 18.1.52 (2020-05-13) | ||
### DataManager | ||
#### Bug Fixes | ||
- `274575` - Provided `addParams` support for CRUD action in `WebApiAdaptor`. | ||
@@ -11,0 +19,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 18.1.52 | ||
* version : 18.1.55 | ||
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"_from": "@syncfusion/ej2-data@*", | ||
"_id": "@syncfusion/ej2-data@18.1.43", | ||
"_id": "@syncfusion/ej2-data@18.1.52", | ||
"_inBundle": false, | ||
"_integrity": "sha512-/RpOdPCoN3fBWIUpj1RYG4KdvyHxeME2nV/9+jPBe2I61sw1qlBbZyz5KP3q3KsdLp7bmddqFEd9HsY51BUE/A==", | ||
"_integrity": "sha512-sOPGyZTcWbpGNBIzJXoNpKaga0tbTMMoykxDgTVxEmhBc6CedPCjoCMdblxop7ConIdhpGQj/kkRiw/OSx1o3A==", | ||
"_location": "/@syncfusion/ej2-data", | ||
@@ -43,4 +43,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-data/-/ej2-data-18.1.43.tgz", | ||
"_shasum": "5d53933ff3fba29cdaf0f7b3b71c31fd654e7e71", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-data/-/ej2-data-18.1.52.tgz", | ||
"_shasum": "ad0031eb3db48c07039d1626948a6644d2647c08", | ||
"_spec": "@syncfusion/ej2-data@*", | ||
@@ -53,3 +53,3 @@ "_where": "/jenkins/workspace/automation_release_18.1.0.1-52JLNOGRCDHXRVQM3W564VPLFCPHWUYDYU3I3DVRABSR7F6AIFYQ/packages/included", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~18.1.52" | ||
"@syncfusion/ej2-base": "~18.1.53" | ||
}, | ||
@@ -65,4 +65,4 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "18.1.52", | ||
"version": "18.1.55", | ||
"sideEffects": false | ||
} |
@@ -558,10 +558,2 @@ import { Ajax } from '@syncfusion/ej2-base'; | ||
protected getModuleName(): string; | ||
addParams(options: { | ||
dm: DataManager; | ||
query: Query; | ||
params: ParamOption[]; | ||
reqParams: { | ||
[key: string]: Object; | ||
}; | ||
}): void; | ||
/** | ||
@@ -573,3 +565,3 @@ * Prepare and returns request body which is used to insert a new record in the table. | ||
*/ | ||
insert(dm: DataManager, data: Object, tableName?: string, query?: Query): Object; | ||
insert(dm: DataManager, data: Object, tableName?: string): Object; | ||
/** | ||
@@ -582,3 +574,3 @@ * Prepare and return request body which is used to remove record from the table. | ||
*/ | ||
remove(dm: DataManager, keyField: string, value: number, tableName?: string, query?: Query): Object; | ||
remove(dm: DataManager, keyField: string, value: number, tableName?: string): Object; | ||
/** | ||
@@ -591,3 +583,3 @@ * Prepare and return request body which is used to update record. | ||
*/ | ||
update(dm: DataManager, keyField: string, value: Object, tableName?: string, query?: Query): Object; | ||
update(dm: DataManager, keyField: string, value: Object, tableName?: string): Object; | ||
batchRequest(dm: DataManager, changes: CrudOptions, e: RemoteArgs): Object; | ||
@@ -594,0 +586,0 @@ /** |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
1937584
17353