@e-trias/woonplan 0.0.78 → 0.0.79

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 +8 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -271,6 +271,12 @@ export interface IPayment {
271
271
  checkoutUrl?: string
272
272
  }
273
273
 
274
+ export interface IOnlineAfsprakenSettings{
275
+ apiKey: string
276
+ apiSecret: string
277
+ appointmentTypeId: number
278
+ agendaId: number
279
+ }
274
280
 
275
281
 
276
282
  export interface IGetBookableDaysParams {
@@ -278,6 +284,7 @@ export interface IGetBookableDaysParams {
278
284
  ResourceId?: string,
279
285
  StartDate: string // YYYY-MM-DD
280
286
  EndDate: string // YYYY-MM-DD
287
+ settings?:IOnlineAfsprakenSettings
281
288
  }
282
289
 
283
290
  export interface IGetBookableTimesParams {
@@ -285,4 +292,5 @@ export interface IGetBookableTimesParams {
285
292
  userdataid: string,
286
293
  ResourceId?: string,
287
294
  EndDate?: string // YYYY-MM-DD
295
+ settings?:IOnlineAfsprakenSettings
288
296
  }
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.78",
5
+ "version": "0.0.79",
6
6
  "main": "index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1"