@tellescope/types-models 1.116.0 → 1.118.0
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/lib/cjs/index.d.ts +4 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +4 -0
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/index.ts +4 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -2079,6 +2079,7 @@ export interface AppointmentBookingPage extends AppointmentBookingPage_readonly,
|
|
|
2079
2079
|
hoursBeforeBookingAllowed?: number | '';
|
|
2080
2080
|
limitedToCareTeam?: boolean;
|
|
2081
2081
|
limitedByState?: boolean;
|
|
2082
|
+
limitedByTagsPortal?: string[];
|
|
2082
2083
|
requireLocationSelection?: boolean;
|
|
2083
2084
|
}
|
|
2084
2085
|
export interface CalendarEventRSVP_readonly extends ClientRecord {
|
|
@@ -3369,6 +3370,7 @@ export type PhoneTreeEvents = {
|
|
|
3369
3370
|
'If True': PhoneTreeEventBuilder<'If True', {}>;
|
|
3370
3371
|
'If False': PhoneTreeEventBuilder<'If False', {}>;
|
|
3371
3372
|
'If No Users Match': PhoneTreeEventBuilder<'If No Users Match', {}>;
|
|
3373
|
+
'If No Users Answer': PhoneTreeEventBuilder<'If No Users Answer', {}>;
|
|
3372
3374
|
};
|
|
3373
3375
|
export type PhoneTreeEventType = keyof PhoneTreeEvents;
|
|
3374
3376
|
export type PhoneTreeEvent = PhoneTreeEvents[PhoneTreeEventType];
|
|
@@ -3410,6 +3412,7 @@ export type PhoneTreeActions = {
|
|
|
3410
3412
|
'Dial Users': PhoneTreeActionBuilder<"Dial Users", {
|
|
3411
3413
|
userIds: string[];
|
|
3412
3414
|
playback?: Partial<PhonePlayback>;
|
|
3415
|
+
duration?: number;
|
|
3413
3416
|
}>;
|
|
3414
3417
|
'Route Call': PhoneTreeActionBuilder<"Route Call", {
|
|
3415
3418
|
prePlayback?: Partial<PhonePlayback>;
|
|
@@ -3417,6 +3420,7 @@ export type PhoneTreeActions = {
|
|
|
3417
3420
|
byRole?: string;
|
|
3418
3421
|
byTags?: ListOfStringsWithQualifier;
|
|
3419
3422
|
playback?: Partial<PhonePlayback>;
|
|
3423
|
+
duration?: number;
|
|
3420
3424
|
}>;
|
|
3421
3425
|
'Forward Call': PhoneTreeActionBuilder<"Forward Call", {
|
|
3422
3426
|
to: string;
|