@tellescope/types-models 1.121.0 → 1.122.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 +12 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +12 -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 +12 -3
package/lib/cjs/index.d.ts
CHANGED
|
@@ -169,6 +169,7 @@ export type OrganizationSettings = {
|
|
|
169
169
|
canMoveCalls?: boolean;
|
|
170
170
|
canMoveSMS?: boolean;
|
|
171
171
|
inboxRepliesMarkRead?: boolean;
|
|
172
|
+
alwaysShowInsurance?: boolean;
|
|
172
173
|
};
|
|
173
174
|
tickets?: {
|
|
174
175
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -536,6 +537,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
536
537
|
url?: string;
|
|
537
538
|
requiresMFAConfiguration?: boolean;
|
|
538
539
|
templateFields?: LabeledField[];
|
|
540
|
+
dashboardView?: CustomDashboardView;
|
|
539
541
|
}
|
|
540
542
|
export type Preference = 'email' | 'sms' | 'call' | 'chat';
|
|
541
543
|
export type CustomField = string | number | object | {
|
|
@@ -693,6 +695,7 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
|
|
|
693
695
|
vitalTriggersDisabled?: boolean;
|
|
694
696
|
defaultFromPhone?: string;
|
|
695
697
|
defaultFromEmail?: string;
|
|
698
|
+
useDefaultFromEmailInAutomations?: boolean;
|
|
696
699
|
}
|
|
697
700
|
export interface EnduserCustomType_readonly extends ClientRecord {
|
|
698
701
|
}
|
|
@@ -731,6 +734,7 @@ export interface EnduserMedication extends EnduserMedication_readonly, EnduserMe
|
|
|
731
734
|
calendarEventId?: string;
|
|
732
735
|
prescribedBy?: string;
|
|
733
736
|
prescribedAt?: Date | '';
|
|
737
|
+
prescriberName?: string;
|
|
734
738
|
startedTakingAt?: Date | '';
|
|
735
739
|
stoppedTakingAt?: Date | '';
|
|
736
740
|
rxNormCode?: string;
|
|
@@ -1429,6 +1433,7 @@ export interface FormField extends FormField_readonly, FormField_required, FormF
|
|
|
1429
1433
|
field?: string;
|
|
1430
1434
|
overwrite?: boolean;
|
|
1431
1435
|
};
|
|
1436
|
+
titleFontSize?: number;
|
|
1432
1437
|
}
|
|
1433
1438
|
export type FormScoring = {
|
|
1434
1439
|
title: string;
|
|
@@ -2349,11 +2354,14 @@ export type CreateTicketActionInfo = {
|
|
|
2349
2354
|
preserveContext?: boolean;
|
|
2350
2355
|
tags?: string[];
|
|
2351
2356
|
};
|
|
2352
|
-
export type SendEmailAutomationAction = AutomationActionBuilder<'sendEmail', AutomationForMessage
|
|
2357
|
+
export type SendEmailAutomationAction = AutomationActionBuilder<'sendEmail', AutomationForMessage & {
|
|
2358
|
+
fromEmailOverride?: string;
|
|
2359
|
+
}>;
|
|
2353
2360
|
export type NotifyTeamAutomationAction = AutomationActionBuilder<'notifyTeam', {
|
|
2354
2361
|
templateId: string;
|
|
2355
2362
|
forAssigned: boolean;
|
|
2356
2363
|
roles?: string[];
|
|
2364
|
+
tags?: ListOfStringsWithQualifier;
|
|
2357
2365
|
}>;
|
|
2358
2366
|
export type SendSMSAutomationAction = AutomationActionBuilder<'sendSMS', AutomationForMessage>;
|
|
2359
2367
|
export type SendFormAutomationAction = AutomationActionBuilder<'sendForm', AutomationForFormRequest>;
|
|
@@ -2907,6 +2915,9 @@ type AnalyticsQueryInfoBuilder<M extends string, P extends object | undefined> =
|
|
|
2907
2915
|
export type AnalyticsQueryInfoForType = {
|
|
2908
2916
|
"Endusers": {
|
|
2909
2917
|
Total: AnalyticsQueryInfoBuilder<'Total', undefined>;
|
|
2918
|
+
"Sum of Field": AnalyticsQueryInfoBuilder<"Sum of Field", {
|
|
2919
|
+
field: string;
|
|
2920
|
+
}>;
|
|
2910
2921
|
};
|
|
2911
2922
|
"Calendar Events": {
|
|
2912
2923
|
Total: AnalyticsQueryInfoBuilder<'Total', undefined>;
|