@jagota/interfaces 1.2.9 → 1.2.10

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.9",
3
+ "version": "1.2.10",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -42,6 +42,7 @@ export interface IProspect extends IProspectMini {
42
42
 
43
43
  contacts: IContact[];
44
44
  miniContacts: IContactMini[];
45
+ deliveryAddress: IDeliveryAddress[];
45
46
  }
46
47
 
47
48
  export interface ISpecialRequirements {
@@ -83,6 +84,21 @@ export interface IAddress {
83
84
  longitude: string;
84
85
  }
85
86
 
87
+ export interface IDeliveryAddress extends IAddress {
88
+ branchName: string;
89
+ defaultBranch: boolean;
90
+ ediBranchCode: string;
91
+ mon: boolean;
92
+ tue: boolean;
93
+ web: boolean;
94
+ thu: boolean;
95
+ fri: boolean;
96
+ sat: boolean;
97
+ sun: boolean;
98
+ timeFrom: string;
99
+ timeTo: string;
100
+ }
101
+
86
102
  export const defaultAddress: IAddress = {
87
103
  custCode: '',
88
104
  country: '',