b2m-utils 0.0.82 → 0.0.83

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.
@@ -1,10 +1,12 @@
1
1
  import { Dates } from "../Dates";
2
2
  import File from "../File";
3
3
  import InvoiceType from "../InvoiceType";
4
+ import TrackProcessProviderType from "../TrackProcessProviderType";
4
5
  export type TrackProcessInvoice = {
5
6
  id: number;
6
7
  processId: number;
7
8
  providerId: number;
9
+ providerTypeId: number;
8
10
  invoiceTypeId: number;
9
11
  invoiceNumber: number;
10
12
  value: number;
@@ -12,6 +14,7 @@ export type TrackProcessInvoice = {
12
14
  paymentAt: string;
13
15
  fileId: number;
14
16
  observations?: string;
17
+ trackProcessProviderType?: TrackProcessProviderType;
15
18
  invoiceType?: InvoiceType;
16
19
  file?: File;
17
20
  } & Dates;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.82",
3
+ "version": "0.0.83",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",