@e-trias/woonplan 0.0.61 → 0.0.62

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/index.d.ts +26 -1
  2. package/package.json +5 -2
package/index.d.ts CHANGED
@@ -130,7 +130,6 @@ export interface QuotationRequest{
130
130
  measuredataid?:string
131
131
  contractorid?:string
132
132
  adviceid:string
133
- investment?:number
134
133
  status:string
135
134
  data:JSON | null
136
135
  }
@@ -188,3 +187,29 @@ export interface Measuretext{
188
187
  measuredataid?:string
189
188
  excerpt?:string
190
189
  }
190
+
191
+ export interface QuotationRequestForm{
192
+ measuredataid : string
193
+ measureid : string
194
+ contractorid : string
195
+ }
196
+
197
+ export interface IAppointment {
198
+ id : string
199
+ status : string
200
+ startDate : Date
201
+ endDate : Date
202
+ userdataId : string
203
+ surveyorId : string
204
+ needsPayment : true | false
205
+ }
206
+
207
+ export interface ICreateAppointmentParams{
208
+ appointmentId: string
209
+ AgendaId: string
210
+ AppointmentTypeId: string
211
+ StartDate: Date
212
+ EndDate: Date
213
+ userdataId : string
214
+ customerId : string
215
+ }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@e-trias/woonplan",
3
3
  "private": false,
4
4
  "types": "index.d.ts",
5
- "version": "0.0.61",
5
+ "version": "0.0.62",
6
6
  "main": "index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -17,5 +17,8 @@
17
17
  "url": "https://github.com/e-line-websolutions/woonplan-types/issues"
18
18
  },
19
19
  "homepage": "https://github.com/e-line-websolutions/woonplan-types#readme",
20
- "description": ""
20
+ "description": "",
21
+ "dependencies": {
22
+ "@types/uuidv4": "^5.0.0"
23
+ }
21
24
  }