@openbox/shared-types 0.3.75 → 0.3.76

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.
@@ -24,14 +24,19 @@ export type LoggedUserInfoWorkspaceCompanyType = {
24
24
  id: number;
25
25
  name: string;
26
26
  };
27
+ export type LoggedUserInfoWorkspaceCompanySVFields = {
28
+ nit: string;
29
+ nrc: string;
30
+ dui: string;
31
+ };
27
32
  export type LoggedUserInfoWorkspaceCompany = {
28
33
  id: string;
29
34
  unique: string;
30
35
  name: string;
31
36
  companyType: LoggedUserInfoWorkspaceCompanyType | null;
32
37
  naturalType: LoggedUserInfoWorkspaceCompanyType | null;
33
- nit: string;
34
- nrc: string;
38
+ SVFields: LoggedUserInfoWorkspaceCompanySVFields | null;
39
+ enableElectronicInvoicing: boolean;
35
40
  };
36
41
  export type LoggedUserInfoWorkspaceBranch = {
37
42
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.3.75",
3
+ "version": "0.3.76",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -28,14 +28,20 @@ export type LoggedUserInfoWorkspaceCompanyType = {
28
28
  name: string
29
29
  }
30
30
 
31
+ export type LoggedUserInfoWorkspaceCompanySVFields = {
32
+ nit: string
33
+ nrc: string
34
+ dui: string
35
+ }
36
+
31
37
  export type LoggedUserInfoWorkspaceCompany = {
32
38
  id: string
33
39
  unique: string
34
40
  name: string
35
41
  companyType: LoggedUserInfoWorkspaceCompanyType | null
36
42
  naturalType: LoggedUserInfoWorkspaceCompanyType | null
37
- nit: string
38
- nrc: string
43
+ SVFields: LoggedUserInfoWorkspaceCompanySVFields | null
44
+ enableElectronicInvoicing: boolean
39
45
  }
40
46
 
41
47
  export type LoggedUserInfoWorkspaceBranch = {