@jagota/interfaces 1.2.12 → 1.2.14

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.12",
3
+ "version": "1.2.14",
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;
@@ -104,6 +104,8 @@ export interface IDeliveryAddress extends IAddress {
104
104
  sun: boolean;
105
105
  timeFrom: string;
106
106
  timeTo: string;
107
+ time2From: string;
108
+ time2To: string;
107
109
  }
108
110
 
109
111
  export const defaultAddress: IAddress = {
@@ -156,7 +158,9 @@ export const defaultDeliveryAddress: IDeliveryAddress = {
156
158
  sat: false,
157
159
  sun: false,
158
160
  timeFrom: '',
159
- timeTo: ''
161
+ timeTo: '',
162
+ time2From: '',
163
+ time2To: ''
160
164
  };
161
165
 
162
166
  export const defaultContact: IContact = {
@@ -167,6 +171,7 @@ export const defaultContact: IContact = {
167
171
  imgPath: '',
168
172
  primary: false,
169
173
  position: '',
174
+ positionName: '',
170
175
  positionDesc: '',
171
176
  tel: '',
172
177
  fax: '',