@e-trias/woonplan 0.0.60 → 0.0.64

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 +41 -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
  }
@@ -156,6 +155,7 @@ export interface Measuredata{
156
155
  investment?:number
157
156
  collectivebuyid?:string
158
157
  contractorid?:string
158
+ measureid?:string
159
159
 
160
160
  }
161
161
 
@@ -187,3 +187,43 @@ export interface Measuretext{
187
187
  measuredataid?:string
188
188
  excerpt?:string
189
189
  }
190
+
191
+ export interface QuotationRequestForm{
192
+ measuredataid : string
193
+ measureid : string
194
+ contractorid : string
195
+ }
196
+
197
+ interface IAppointment {
198
+ id : string
199
+ status : string
200
+ startDate : Date
201
+ endDate : Date
202
+ startTime : Date
203
+ endTime : Date
204
+ userdataId : string
205
+ surveyorId : string
206
+ needsPayment : true | false
207
+ }
208
+
209
+ interface ICreateAppointmentParams{
210
+ appointmentId: string
211
+ agendaId: string
212
+ appointmentTypeId: string
213
+ startDate: Date
214
+ endDate: Date
215
+ startTime : Date
216
+ endTime : Date
217
+ userdataId : string
218
+ customerId : string
219
+ }
220
+
221
+ interface IAppointmentFormParams{
222
+ agendaId: string
223
+ appointmentTypeId: string
224
+ startDate: Date
225
+ endDate: Date
226
+ startTime : Date
227
+ endTime : Date
228
+ jwt : string
229
+ }
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.60",
5
+ "version": "0.0.64",
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
  }