taxtank-core 0.23.4 → 0.23.7
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/bundles/taxtank-core.umd.js +30 -35
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/collections/collection-dictionary.js +2 -2
- package/esm2015/lib/services/http/bank/bank-connection/bank-connection.service.js +3 -1
- package/esm2015/lib/services/http/transaction/transaction.service.js +1 -5
- package/fesm2015/taxtank-core.js +23 -32
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/collections/collection-dictionary.d.ts +1 -1
- package/package.json +1 -1
- package/esm2015/lib/services/http/transaction/messages.enum.js +0 -7
- package/lib/services/http/transaction/messages.enum.d.ts +0 -5
|
@@ -40,7 +40,7 @@ export declare class CollectionDictionary<Collection extends BaseCollection<Abst
|
|
|
40
40
|
* Create instance of collection
|
|
41
41
|
*/
|
|
42
42
|
createCollection(items?: object[]): Collection;
|
|
43
|
-
length(): number;
|
|
43
|
+
get length(): number;
|
|
44
44
|
/**
|
|
45
45
|
* @Todo find a better solution to get list of the sorted keys
|
|
46
46
|
* Get array of the "keys" by provided order
|
package/package.json
CHANGED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export var MessagesEnum;
|
|
2
|
-
(function (MessagesEnum) {
|
|
3
|
-
MessagesEnum["DELETED_MESSAGE"] = "Transaction deleted";
|
|
4
|
-
MessagesEnum["UPDATED_MESSAGE"] = "Transaction updated";
|
|
5
|
-
MessagesEnum["CREATED_MESSAGE"] = "Transaction(s) created";
|
|
6
|
-
})(MessagesEnum || (MessagesEnum = {}));
|
|
7
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVzc2FnZXMuZW51bS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3R0LWNvcmUvc3JjL2xpYi9zZXJ2aWNlcy9odHRwL3RyYW5zYWN0aW9uL21lc3NhZ2VzLmVudW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFOLElBQVksWUFJWDtBQUpELFdBQVksWUFBWTtJQUN0Qix1REFBdUMsQ0FBQTtJQUN2Qyx1REFBdUMsQ0FBQTtJQUN2QywwREFBMEMsQ0FBQTtBQUM1QyxDQUFDLEVBSlcsWUFBWSxLQUFaLFlBQVksUUFJdkIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZW51bSBNZXNzYWdlc0VudW0ge1xuICBERUxFVEVEX01FU1NBR0UgPSAnVHJhbnNhY3Rpb24gZGVsZXRlZCcsXG4gIFVQREFURURfTUVTU0FHRSA9ICdUcmFuc2FjdGlvbiB1cGRhdGVkJyxcbiAgQ1JFQVRFRF9NRVNTQUdFID0gJ1RyYW5zYWN0aW9uKHMpIGNyZWF0ZWQnXG59XG4iXX0=
|