@jagota/interfaces 1.2.22 → 1.2.23

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.22",
3
+ "version": "1.2.23",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -35,10 +35,10 @@ 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;
38
+ taxId: string;
39
+ regPlace: string;
40
+ regDate: string;
41
+ regBudget: string;
42
42
  employeeCount: string;
43
43
 
44
44
  specialRequirements: ISpecialRequirements;
@@ -88,6 +88,7 @@ export interface IAddress {
88
88
  fax: string;
89
89
  latitude: string;
90
90
  longitude: string;
91
+ contacts : IContact[];
91
92
  }
92
93
 
93
94
  export interface IDeliveryAddress extends IAddress {
@@ -106,6 +107,7 @@ export interface IDeliveryAddress extends IAddress {
106
107
  timeTo: string;
107
108
  time2From: string;
108
109
  time2To: string;
110
+ contacts : IContact[];
109
111
  }
110
112
 
111
113
  export const defaultAddress: IAddress = {
@@ -125,7 +127,8 @@ export const defaultAddress: IAddress = {
125
127
  tel: '',
126
128
  fax: '',
127
129
  latitude: '',
128
- longitude: ''
130
+ longitude: '',
131
+ contacts:[]
129
132
  };
130
133
 
131
134
  export const defaultDeliveryAddress: IDeliveryAddress = {
@@ -160,7 +163,8 @@ export const defaultDeliveryAddress: IDeliveryAddress = {
160
163
  timeFrom: '',
161
164
  timeTo: '',
162
165
  time2From: '',
163
- time2To: ''
166
+ time2To: '',
167
+ contacts:[]
164
168
  };
165
169
 
166
170
  export const defaultContact: IContact = {