@jagota/interfaces 1.2.11 → 1.2.13

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jagota/interfaces",
3
- "version": "1.2.11",
3
+ "version": "1.2.13",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -9,6 +9,7 @@ export interface IContactMini {
9
9
  }
10
10
  export interface IContact extends IContactMini {
11
11
  position: string;
12
+ positionName: string;
12
13
  positionDesc: string;
13
14
  tel: string;
14
15
  fax: string;
@@ -35,6 +35,12 @@ export interface IProspect extends IProspectMini {
35
35
  creditDay: number;
36
36
  creditLimit: number;
37
37
 
38
+ taxId: string;
39
+ regPlace: string;
40
+ regDate: string;
41
+ regBudget: string;
42
+ employeeCount: string;
43
+
38
44
  specialRequirements: ISpecialRequirements;
39
45
  registrationAddess: IAddress;
40
46
  billingAddess: IAddress;
@@ -161,6 +167,7 @@ export const defaultContact: IContact = {
161
167
  imgPath: '',
162
168
  primary: false,
163
169
  position: '',
170
+ positionName: '',
164
171
  positionDesc: '',
165
172
  tel: '',
166
173
  fax: '',