@e-trias/woonplan 1.0.82 → 1.0.83

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +8 -3
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@e-trias/woonplan",
3
3
  "private": false,
4
4
  "types": "types.d.ts",
5
- "version": "1.0.82",
5
+ "version": "1.0.83",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
8
  "build": "tsc -p tsconfig.json"
package/types.d.ts CHANGED
@@ -256,14 +256,19 @@ export interface Quotation{
256
256
  rejectreason?:string
257
257
  }
258
258
 
259
- export interface QuotationFile{
259
+ export interface IFile{
260
260
  id:string
261
261
  originalfilename:string
262
- quotationid?:string | null
263
- quotationrequestid?:string | null
264
262
  folder?:string
265
263
  bucket?:string
266
264
  }
265
+ export interface QuotationFile extends IFile{
266
+ quotationid?:string | null
267
+ quotationrequestid?:string | null
268
+ }
269
+ export interface IContactFile extends IFile{
270
+ contactid?:string | null
271
+ }
267
272
 
268
273
  export interface QuotationRequest{
269
274
  id:string