@tellescope/types-models 1.125.0 → 1.126.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 +13 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +13 -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 +2 -2
- package/src/index.ts +14 -3
package/lib/cjs/index.d.ts
CHANGED
|
@@ -171,6 +171,7 @@ export type OrganizationSettings = {
|
|
|
171
171
|
inboxRepliesMarkRead?: boolean;
|
|
172
172
|
alwaysShowInsurance?: boolean;
|
|
173
173
|
defaultToOutboundConferenceCall?: boolean;
|
|
174
|
+
sharedInboxReadStatus?: boolean;
|
|
174
175
|
};
|
|
175
176
|
tickets?: {
|
|
176
177
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -179,6 +180,7 @@ export type OrganizationSettings = {
|
|
|
179
180
|
showJourneys?: boolean;
|
|
180
181
|
requireDueDate?: boolean;
|
|
181
182
|
allowArchival?: boolean;
|
|
183
|
+
returnToTicketsList?: boolean;
|
|
182
184
|
};
|
|
183
185
|
calendar?: {
|
|
184
186
|
dayStart?: {
|
|
@@ -1736,7 +1738,7 @@ export type FormResponseValue = {
|
|
|
1736
1738
|
isCalledOut?: boolean;
|
|
1737
1739
|
disabled?: boolean;
|
|
1738
1740
|
isHighlightedOnTimeline?: boolean;
|
|
1739
|
-
computedValueKey?: 'Height' | 'Weight' | 'Date of Birth';
|
|
1741
|
+
computedValueKey?: 'Height' | 'Weight' | 'Date of Birth' | "Gender";
|
|
1740
1742
|
};
|
|
1741
1743
|
export type AnswerForType = {
|
|
1742
1744
|
'email': FormResponseAnswerEmail['value'];
|
|
@@ -1819,6 +1821,10 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
|
|
|
1819
1821
|
groupInstance?: string;
|
|
1820
1822
|
groupPosition?: number;
|
|
1821
1823
|
utm?: LabeledField[];
|
|
1824
|
+
emotii?: {
|
|
1825
|
+
id?: string;
|
|
1826
|
+
scores?: any;
|
|
1827
|
+
}[];
|
|
1822
1828
|
}
|
|
1823
1829
|
export interface WebHook_readonly extends ClientRecord {
|
|
1824
1830
|
}
|
|
@@ -1855,6 +1861,7 @@ type BuildCalendarEventReminderInfo<T, I> = {
|
|
|
1855
1861
|
type: T;
|
|
1856
1862
|
info: I;
|
|
1857
1863
|
msBeforeStartTime: number;
|
|
1864
|
+
dontSendIfPassed?: boolean;
|
|
1858
1865
|
didRemind?: boolean;
|
|
1859
1866
|
};
|
|
1860
1867
|
export type CalendarEventReminderInfoForType = {
|
|
@@ -1899,6 +1906,7 @@ export interface CalendarEvent_updatesDisabled {
|
|
|
1899
1906
|
}
|
|
1900
1907
|
export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_required, CalendarEvent_updatesDisabled {
|
|
1901
1908
|
reason?: string;
|
|
1909
|
+
cancelReason?: string;
|
|
1902
1910
|
attendees: UserIdentity[];
|
|
1903
1911
|
color?: string;
|
|
1904
1912
|
enableVideoCall?: boolean;
|
|
@@ -2151,6 +2159,9 @@ export interface AppointmentBookingPage extends AppointmentBookingPage_readonly,
|
|
|
2151
2159
|
requireLocationSelection?: boolean;
|
|
2152
2160
|
collectReason?: "Do Not Collect" | 'Optional' | 'Required';
|
|
2153
2161
|
restrictionsByTemplate?: BookingRestrictions[];
|
|
2162
|
+
publicMulti?: boolean;
|
|
2163
|
+
publicUserTags?: string[];
|
|
2164
|
+
publicUserFilterTags?: string[];
|
|
2154
2165
|
}
|
|
2155
2166
|
export interface CalendarEventRSVP_readonly extends ClientRecord {
|
|
2156
2167
|
creatorType: SessionType;
|
|
@@ -3533,6 +3544,7 @@ export type PhoneTreeActions = {
|
|
|
3533
3544
|
duration?: number;
|
|
3534
3545
|
addToCareTeam?: boolean;
|
|
3535
3546
|
}>;
|
|
3547
|
+
"Select Care Team Member": PhoneTreeActionBuilder<"Select Care Team Member", {}>;
|
|
3536
3548
|
'Forward Call': PhoneTreeActionBuilder<"Forward Call", {
|
|
3537
3549
|
to: string;
|
|
3538
3550
|
}>;
|