@openbox/shared-types 0.4.13 → 0.4.15

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.
@@ -6,6 +6,8 @@ export type AccountingEntries = {
6
6
  serie: string;
7
7
  title: string;
8
8
  date: string;
9
+ cargo: number;
10
+ abono: number;
9
11
  origin: string;
10
12
  type: AccountingEntriesTypes;
11
13
  status: AccountingEntriesStatuses;
@@ -5,6 +5,7 @@ export type InvoicesGetManyRequest = GetManyRequest & {
5
5
  seller?: string;
6
6
  zone?: string;
7
7
  service?: string;
8
+ paymentCondition?: string;
8
9
  status?: number;
9
10
  startDate?: Date;
10
11
  endDate?: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.4.13",
3
+ "version": "0.4.15",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -7,6 +7,8 @@ export type AccountingEntries = {
7
7
  serie: string
8
8
  title: string
9
9
  date: string
10
+ cargo: number
11
+ abono: number
10
12
  origin: string
11
13
  type: AccountingEntriesTypes
12
14
  status: AccountingEntriesStatuses
@@ -6,6 +6,7 @@ export type InvoicesGetManyRequest = GetManyRequest & {
6
6
  seller?: string
7
7
  zone?: string
8
8
  service?: string
9
+ paymentCondition?: string
9
10
  status?: number
10
11
  startDate?: Date
11
12
  endDate?: Date