taxtank-core 0.8.5 → 0.8.6

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.
@@ -20,10 +20,7 @@ export declare class Collection<Model extends object> implements Iterable<Model>
20
20
  * Get list of items ids
21
21
  */
22
22
  getIds(): number[];
23
- /**
24
- * @TODO vik rename
25
- */
26
- getOneBy(path: string, value: any): Model;
23
+ findBy(path: string, value: any): Model;
27
24
  getBy(path: string, value: any): this;
28
25
  /**
29
26
  * Get single item by id
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.8.5",
3
+ "version": "0.8.6",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^12.2.3 || ~13.0.0",