taxtank-core 0.32.13 → 0.32.14
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/esm2022/lib/collections/collection.mjs +1 -1
- package/esm2022/lib/services/http/rest/rest-old.service.mjs +8 -1
- package/esm2022/lib/services/http/transaction/transaction-allocation/transaction-allocation.service.mjs +1 -1
- package/fesm2022/taxtank-core.mjs +7 -0
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/lib/services/http/rest/rest-old.service.d.ts +5 -0
- package/package.json +1 -1
|
@@ -88,10 +88,15 @@ export declare abstract class RestService<BaseModel, Model extends BaseModel> im
|
|
|
88
88
|
*/
|
|
89
89
|
delete(model: Model): Observable<void>;
|
|
90
90
|
/**
|
|
91
|
+
* @deprecated use removeBatch
|
|
91
92
|
* delete multiple instances of class
|
|
92
93
|
* @param models Class instances array for deleting
|
|
93
94
|
*/
|
|
94
95
|
deleteBatch(models: Model[]): Observable<void>;
|
|
96
|
+
/**
|
|
97
|
+
* collect array of redo transactions requests observable
|
|
98
|
+
*/
|
|
99
|
+
removeBatch(models: Model[]): Observable<void>[];
|
|
95
100
|
/**
|
|
96
101
|
* clear service cache
|
|
97
102
|
*/
|