stentor-models
Advanced tools
Comparing version 1.59.91 to 1.59.96
@@ -6,8 +6,32 @@ /*! Copyright (c) 2022, XAPPmedia */ | ||
export interface AvailabilityClass { | ||
/** | ||
* ID for the availability class, typically the slugged name. | ||
*/ | ||
id: string; | ||
/** | ||
* Human readable name of the availability class | ||
*/ | ||
name: string; | ||
/** | ||
* Summary of the availability class. This is used to describe the availability class so the AI can match it to user input. It contains high level description as well as examples of input that would match to this class. | ||
*/ | ||
summary: string; | ||
numberOfDaysOut: number; | ||
appointmentsPerDay: number; | ||
leadOnly: boolean; | ||
/** | ||
* Minimum number of days out that can be scheduled for this type. | ||
* | ||
* This is independent of if the day is available or not. | ||
* | ||
* Value of 0 is the default if not provided, meaning same day could be available. | ||
*/ | ||
numberOfDaysOut?: number; | ||
/** | ||
* Maximum number of appointments that can be scheduled per day for this type. | ||
* | ||
* If not provided, it is assumed to be unlimited. | ||
*/ | ||
appointmentsPerDay?: number; | ||
/** | ||
* If true, this availability class is only for leads and not for appointments as they typically require more information and followup. | ||
*/ | ||
leadOnly?: boolean; | ||
} | ||
@@ -14,0 +38,0 @@ /** |
@@ -7,3 +7,3 @@ { | ||
}, | ||
"version": "1.59.91", | ||
"version": "1.59.96", | ||
"description": "Models for 📣 stentor", | ||
@@ -37,3 +37,3 @@ "types": "lib/index", | ||
}, | ||
"gitHead": "b86dc9ff1eb011df9da66a85b9591e2c10d8917d" | ||
"gitHead": "6c8667aa3f58145ce70442f6088f3b1872457ffd" | ||
} |
Sorry, the diff of this file is not supported yet
263136
6551