@e-trias/woonplan 0.0.58 → 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.
- package/index.d.ts +29 -2
- package/package.json +5 -2
package/index.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ export interface Logged{
|
|
|
48
48
|
id: string;
|
|
49
49
|
name:string;
|
|
50
50
|
deleted:boolean;
|
|
51
|
+
sortorder:number;
|
|
51
52
|
}
|
|
52
53
|
|
|
53
54
|
export interface SignupForm{
|
|
@@ -129,9 +130,8 @@ export interface QuotationRequest{
|
|
|
129
130
|
measuredataid?:string
|
|
130
131
|
contractorid?:string
|
|
131
132
|
adviceid:string
|
|
132
|
-
investment?:number
|
|
133
133
|
status:string
|
|
134
|
-
data:JSON
|
|
134
|
+
data:JSON | null
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
export interface Collectivebuy{
|
|
@@ -155,6 +155,7 @@ export interface Measuredata{
|
|
|
155
155
|
investment?:number
|
|
156
156
|
collectivebuyid?:string
|
|
157
157
|
contractorid?:string
|
|
158
|
+
measureid?:string
|
|
158
159
|
|
|
159
160
|
}
|
|
160
161
|
|
|
@@ -186,3 +187,29 @@ export interface Measuretext{
|
|
|
186
187
|
measuredataid?:string
|
|
187
188
|
excerpt?:string
|
|
188
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.
|
|
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
|
}
|