@openbox/shared-types 0.4.77 → 0.4.79

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.
@@ -32,6 +32,9 @@ export type LoggedUserInfoWorkspaceCompanySVFields = {
32
32
  export type LoggedUserInfoWorkspaceCompanyInvoicesElectronicSv = {
33
33
  isActive: boolean;
34
34
  };
35
+ export type LoggedUserInfoWorkspaceCompanySettings = {
36
+ DECIMAL_PLACES: number;
37
+ };
35
38
  export type LoggedUserInfoWorkspaceCompany = {
36
39
  id: string;
37
40
  unique: string;
@@ -41,6 +44,7 @@ export type LoggedUserInfoWorkspaceCompany = {
41
44
  SVFields: LoggedUserInfoWorkspaceCompanySVFields | null;
42
45
  invoicesElectronicSv: LoggedUserInfoWorkspaceCompanyInvoicesElectronicSv | null;
43
46
  enableElectronicInvoicing: boolean;
47
+ settings: LoggedUserInfoWorkspaceCompanySettings;
44
48
  };
45
49
  export type LoggedUserInfoWorkspaceBranch = {
46
50
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.4.77",
3
+ "version": "0.4.79",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -38,6 +38,10 @@ export type LoggedUserInfoWorkspaceCompanyInvoicesElectronicSv = {
38
38
  isActive: boolean
39
39
  }
40
40
 
41
+ export type LoggedUserInfoWorkspaceCompanySettings = {
42
+ DECIMAL_PLACES: number
43
+ }
44
+
41
45
  export type LoggedUserInfoWorkspaceCompany = {
42
46
  id: string
43
47
  unique: string
@@ -47,6 +51,7 @@ export type LoggedUserInfoWorkspaceCompany = {
47
51
  SVFields: LoggedUserInfoWorkspaceCompanySVFields | null
48
52
  invoicesElectronicSv: LoggedUserInfoWorkspaceCompanyInvoicesElectronicSv | null
49
53
  enableElectronicInvoicing: boolean
54
+ settings: LoggedUserInfoWorkspaceCompanySettings
50
55
  }
51
56
 
52
57
  export type LoggedUserInfoWorkspaceBranch = {