@openbox/shared-types 0.4.4 → 0.4.5

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.
@@ -29,6 +29,9 @@ export type LoggedUserInfoWorkspaceCompanySVFields = {
29
29
  nrc: string;
30
30
  dui: string;
31
31
  };
32
+ export type LoggedUserInfoWorkspaceCompanyInvoicesElectronicSv = {
33
+ isActive: boolean;
34
+ };
32
35
  export type LoggedUserInfoWorkspaceCompany = {
33
36
  id: string;
34
37
  unique: string;
@@ -36,6 +39,7 @@ export type LoggedUserInfoWorkspaceCompany = {
36
39
  companyType: LoggedUserInfoWorkspaceCompanyType | null;
37
40
  naturalType: LoggedUserInfoWorkspaceCompanyType | null;
38
41
  SVFields: LoggedUserInfoWorkspaceCompanySVFields | null;
42
+ invoicesElectronicSv: LoggedUserInfoWorkspaceCompanyInvoicesElectronicSv | null;
39
43
  enableElectronicInvoicing: boolean;
40
44
  };
41
45
  export type LoggedUserInfoWorkspaceBranch = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.4.04",
3
+ "version": "0.4.05",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -34,6 +34,10 @@ export type LoggedUserInfoWorkspaceCompanySVFields = {
34
34
  dui: string
35
35
  }
36
36
 
37
+ export type LoggedUserInfoWorkspaceCompanyInvoicesElectronicSv = {
38
+ isActive: boolean
39
+ }
40
+
37
41
  export type LoggedUserInfoWorkspaceCompany = {
38
42
  id: string
39
43
  unique: string
@@ -41,6 +45,7 @@ export type LoggedUserInfoWorkspaceCompany = {
41
45
  companyType: LoggedUserInfoWorkspaceCompanyType | null
42
46
  naturalType: LoggedUserInfoWorkspaceCompanyType | null
43
47
  SVFields: LoggedUserInfoWorkspaceCompanySVFields | null
48
+ invoicesElectronicSv: LoggedUserInfoWorkspaceCompanyInvoicesElectronicSv | null
44
49
  enableElectronicInvoicing: boolean
45
50
  }
46
51