@tellescope/types-models 1.227.0 → 1.228.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 +14 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +14 -1
- 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 +3 -3
- package/src/index.ts +15 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -106,6 +106,7 @@ export type PortalSettings = {
|
|
|
106
106
|
outstandingFormsTitle?: string;
|
|
107
107
|
availableFormsTitle?: string;
|
|
108
108
|
};
|
|
109
|
+
hideSettingsPage?: boolean;
|
|
109
110
|
};
|
|
110
111
|
export type WithLinkOpenTrackingIds = {
|
|
111
112
|
linkOpenTrackingIds: string[];
|
|
@@ -473,6 +474,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
473
474
|
creditTrialStartedAt?: Date;
|
|
474
475
|
hasIntegrations?: string[];
|
|
475
476
|
outOfOfficeHours?: OutOfOfficeBlock[];
|
|
477
|
+
incomingCallDisplayFields?: string[];
|
|
476
478
|
skipActivePatientBilling?: boolean;
|
|
477
479
|
}
|
|
478
480
|
export type OrganizationTheme = {
|
|
@@ -575,6 +577,11 @@ export type StateCredentialInfo = {
|
|
|
575
577
|
export type MonthlyRestriction = {
|
|
576
578
|
occurrences: (1 | 2 | 3 | 4 | 5)[];
|
|
577
579
|
};
|
|
580
|
+
export type CalendarEventLimit = {
|
|
581
|
+
templateId: string;
|
|
582
|
+
period: number;
|
|
583
|
+
limit: number;
|
|
584
|
+
};
|
|
578
585
|
export type WeeklyAvailability = {
|
|
579
586
|
dayOfWeekStartingSundayIndexedByZero: number;
|
|
580
587
|
startTimeInMinutes: number;
|
|
@@ -646,6 +653,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
646
653
|
credentialedStates?: StateCredentialInfo[];
|
|
647
654
|
timezone?: Timezone;
|
|
648
655
|
weeklyAvailabilities?: WeeklyAvailability[];
|
|
656
|
+
calendarEventLimits?: CalendarEventLimit[];
|
|
649
657
|
autoReplyEnabled?: boolean;
|
|
650
658
|
twilioNumber?: string;
|
|
651
659
|
availableFromNumbers?: string[];
|
|
@@ -2239,6 +2247,7 @@ export type BaseAvailabilityBlock = {
|
|
|
2239
2247
|
startTimeInMS: number;
|
|
2240
2248
|
durationInMinutes: number;
|
|
2241
2249
|
externalId?: string;
|
|
2250
|
+
priority?: number;
|
|
2242
2251
|
};
|
|
2243
2252
|
export interface AvailabilityBlock_readonly extends ClientRecord {
|
|
2244
2253
|
}
|
|
@@ -3045,12 +3054,16 @@ export type AddAccessTagsAutomationAction = AutomationActionBuilder<'addAccessTa
|
|
|
3045
3054
|
export type RemoveAccessTagsAutomationAction = AutomationActionBuilder<'removeAccessTags', {
|
|
3046
3055
|
tags: string[];
|
|
3047
3056
|
}>;
|
|
3048
|
-
export type EnduserFieldSetterType = 'Custom Value' | 'Current Timestamp' | 'Current Date' | "Increment Number";
|
|
3057
|
+
export type EnduserFieldSetterType = 'Custom Value' | 'Current Timestamp' | 'Current Date' | "Increment Number" | "Date Difference";
|
|
3049
3058
|
export type EnduserFieldSetter = {
|
|
3050
3059
|
name: string;
|
|
3051
3060
|
type: EnduserFieldSetterType;
|
|
3052
3061
|
value: string;
|
|
3053
3062
|
increment?: number;
|
|
3063
|
+
dateDifferenceOptions?: {
|
|
3064
|
+
date1: string;
|
|
3065
|
+
date2: string;
|
|
3066
|
+
};
|
|
3054
3067
|
};
|
|
3055
3068
|
export type SetEnduserFieldsAutomationAction = AutomationActionBuilder<'setEnduserFields', {
|
|
3056
3069
|
fields: EnduserFieldSetter[];
|