@jagota/interfaces 1.2.14 → 1.2.16

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.14",
3
+ "version": "1.2.16",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -0,0 +1,11 @@
1
+ export interface attachment {
2
+ custCode: string,
3
+ docType: string;
4
+ docBook: string;
5
+ docNo: number;
6
+ imageCode: number;
7
+ fileName: string;
8
+ docTypeName: string;
9
+ base64String: string;
10
+ imagePath: string;
11
+ }
@@ -97,7 +97,7 @@ 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;
@@ -152,7 +152,7 @@ export const defaultDeliveryAddress: IDeliveryAddress = {
152
152
  ediBranchCode: '',
153
153
  mon: false,
154
154
  tue: false,
155
- web: false,
155
+ wed: false,
156
156
  thu: false,
157
157
  fri: false,
158
158
  sat: false,