@e-trias/woonplan 0.0.65 → 0.0.66

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 +9 -3
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -194,7 +194,7 @@ export interface QuotationRequestForm{
194
194
  contractorid : string
195
195
  }
196
196
 
197
- interface IAppointment {
197
+ export interface IAppointment {
198
198
  id : string
199
199
  status : string
200
200
  startDate : Date
@@ -206,7 +206,7 @@ interface IAppointment {
206
206
  needsPayment : true | false
207
207
  }
208
208
 
209
- interface ICreateAppointmentParams{
209
+ export interface ICreateAppointmentParams{
210
210
  appointmentId: string
211
211
  agendaId: string
212
212
  appointmentTypeId: string
@@ -218,11 +218,17 @@ interface ICreateAppointmentParams{
218
218
  customerId : string
219
219
  }
220
220
 
221
- interface IAppointmentFormParams{
221
+ export interface IAppointmentFormParams{
222
222
  agendaId: string
223
223
  appointmentTypeId: string
224
224
  startDate: Date
225
225
  endDate: Date
226
226
  startTime : Date
227
227
  endTime : Date
228
+ }
229
+
230
+ export interface ISettings{
231
+ onlineAfsprakenAgendaId ?: number
232
+ onlineAfsprakenActive ?: number
233
+ onlineAfsprakenAppointmentTypeId ?: number
228
234
  }
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.65",
5
+ "version": "0.0.66",
6
6
  "main": "index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1"