@jagota/interfaces 1.2.13 → 1.2.15

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.13",
3
+ "version": "1.2.15",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -97,13 +97,15 @@ export interface IDeliveryAddress extends IAddress {
97
97
  ediBranchCode: string;
98
98
  mon: boolean;
99
99
  tue: boolean;
100
- web: boolean;
100
+ wed: boolean;
101
101
  thu: boolean;
102
102
  fri: boolean;
103
103
  sat: boolean;
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 = {
@@ -150,13 +152,15 @@ export const defaultDeliveryAddress: IDeliveryAddress = {
150
152
  ediBranchCode: '',
151
153
  mon: false,
152
154
  tue: false,
153
- web: false,
155
+ wed: false,
154
156
  thu: false,
155
157
  fri: false,
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 = {