@tellescope/types-models 1.163.0 → 1.164.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 +6 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +6 -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 +9 -3
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1480,6 +1480,7 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1480
1480
|
stripeKey?: string;
|
|
1481
1481
|
dataSource?: string;
|
|
1482
1482
|
canvasDocumentCoding?: Pick<CanvasCoding, 'system' | 'code'>;
|
|
1483
|
+
esignatureTermsCompanyName?: string;
|
|
1483
1484
|
};
|
|
1484
1485
|
export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
|
|
1485
1486
|
export type FormFieldCalloutConditionComparison = 'Equals';
|
|
@@ -2052,7 +2053,9 @@ export interface CalendarEvent_updatesDisabled {
|
|
|
2052
2053
|
export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_required, CalendarEvent_updatesDisabled {
|
|
2053
2054
|
reason?: string;
|
|
2054
2055
|
cancelReason?: string;
|
|
2055
|
-
attendees: UserIdentity
|
|
2056
|
+
attendees: (UserIdentity & {
|
|
2057
|
+
joinLinkToken?: string;
|
|
2058
|
+
})[];
|
|
2056
2059
|
color?: string;
|
|
2057
2060
|
enableVideoCall?: boolean;
|
|
2058
2061
|
type?: string;
|
|
@@ -2276,6 +2279,7 @@ export interface BookingRestrictions {
|
|
|
2276
2279
|
tagsPortal?: string[];
|
|
2277
2280
|
hoursBefore?: number | '';
|
|
2278
2281
|
hoursAfter?: number | '';
|
|
2282
|
+
shouldOpenJoinLink?: boolean;
|
|
2279
2283
|
};
|
|
2280
2284
|
}
|
|
2281
2285
|
export type AppointmentTerm = {
|
|
@@ -3702,6 +3706,7 @@ export type AutomationTriggerEvents = {
|
|
|
3702
3706
|
}, {}>;
|
|
3703
3707
|
'Healthie Note Locked': AutomationTriggerEventBuilder<"Healthie Note Locked", {
|
|
3704
3708
|
healthieFormIds?: string[];
|
|
3709
|
+
answersCondition?: Record<string, any>;
|
|
3705
3710
|
}, {}>;
|
|
3706
3711
|
'Database Entry Added': AutomationTriggerEventBuilder<"Database Entry Added", {
|
|
3707
3712
|
databaseId: string;
|