taxtank-core 0.31.54 → 0.31.55

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.
@@ -51,6 +51,9 @@ export declare class Collection<Model extends AbstractModel> implements Iterable
51
51
  diff(items: Model[]): this;
52
52
  minBy(path: string): Model;
53
53
  maxBy(path: string): Model;
54
+ /**
55
+ * float math issues https://stackoverflow.com/questions/12511057/float-sum-with-javascript
56
+ */
54
57
  reduce(callback: (sum: number, item: Model) => number, init?: number): number;
55
58
  slice(from: number, to: number): this;
56
59
  }
@@ -1,7 +1,7 @@
1
1
  import { ClientInvite as ClientInviteBase } from '../../db/Models/firm/client-invite';
2
2
  import { RegistrationInvite } from '../registration-invite/registration-invite';
3
3
  import { Firm } from '../firm/firm';
4
- import { User } from '../user/user';
4
+ import { User } from '../user';
5
5
  export declare class ClientInvite extends ClientInviteBase {
6
6
  sentOn: Date;
7
7
  updatedAt: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.31.54",
3
+ "version": "0.31.55",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^15.1.5",