@openbox/shared-types 0.3.92 → 0.3.94

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,4 +1,5 @@
1
1
  import { CompaniesSvFields } from '../../companies/CompaniesSVFields/companies.sv-fields.type';
2
+ import { SystemDirectory } from '../../system/Directory/system.directory.types';
2
3
  import { SystemNaturalTypes } from '../../system/NaturalTypes/system.natural-types.types';
3
4
  import { SystemPersonTypes } from '../../system/PersonTypes/system.person-types.types';
4
5
  export type ManagementCompany = {
@@ -7,4 +8,5 @@ export type ManagementCompany = {
7
8
  companyType: SystemPersonTypes;
8
9
  naturalType: SystemNaturalTypes;
9
10
  svFields: CompaniesSvFields;
11
+ contacts: Omit<SystemDirectory, 'customer' | 'customerBranch'>;
10
12
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.3.92",
3
+ "version": "0.3.94",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -1,4 +1,5 @@
1
1
  import { CompaniesSvFields } from '../../companies/CompaniesSVFields/companies.sv-fields.type'
2
+ import { SystemDirectory } from '../../system/Directory/system.directory.types'
2
3
  import { SystemNaturalTypes } from '../../system/NaturalTypes/system.natural-types.types'
3
4
  import { SystemPersonTypes } from '../../system/PersonTypes/system.person-types.types'
4
5
 
@@ -8,4 +9,5 @@ export type ManagementCompany = {
8
9
  companyType: SystemPersonTypes
9
10
  naturalType: SystemNaturalTypes
10
11
  svFields: CompaniesSvFields
12
+ contacts: Omit<SystemDirectory, 'customer' | 'customerBranch'>
11
13
  }