@openbox/shared-types 0.3.38 → 0.3.39

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.
@@ -7,7 +7,7 @@ export type AccountingEntries = {
7
7
  title: string;
8
8
  date: string;
9
9
  origin: string;
10
- accountingEntryType: AccountingEntriesTypes;
10
+ type: AccountingEntriesTypes;
11
11
  status: AccountingEntriesStatuses;
12
- accountingEntryDetails: AccountingEntriesDetails[];
12
+ details: AccountingEntriesDetails[];
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.3.38",
3
+ "version": "0.3.39",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -8,7 +8,7 @@ export type AccountingEntries = {
8
8
  title: string
9
9
  date: string
10
10
  origin: string
11
- accountingEntryType: AccountingEntriesTypes
11
+ type: AccountingEntriesTypes
12
12
  status: AccountingEntriesStatuses
13
- accountingEntryDetails: AccountingEntriesDetails[]
13
+ details: AccountingEntriesDetails[]
14
14
  }