@tellescope/types-models 1.242.8 → 1.242.10
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 +11 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +11 -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 +3 -3
- package/src/index.ts +11 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -221,6 +221,7 @@ export type OrganizationSettings = {
|
|
|
221
221
|
showAlternateEmailsEditor?: boolean;
|
|
222
222
|
excludeCareTeamFromSearch?: boolean;
|
|
223
223
|
showVideoCallsOnTimeline?: boolean;
|
|
224
|
+
allowOverrideEmailUniqueness?: boolean;
|
|
224
225
|
};
|
|
225
226
|
tickets?: {
|
|
226
227
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -467,6 +468,9 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
467
468
|
};
|
|
468
469
|
canvasSyncEmailConsent?: boolean;
|
|
469
470
|
canvasSyncPhoneConsent?: boolean;
|
|
471
|
+
canvasStateToLocationId?: {
|
|
472
|
+
[state: string]: string;
|
|
473
|
+
};
|
|
470
474
|
dosespotClinics?: {
|
|
471
475
|
id: string;
|
|
472
476
|
name: string;
|
|
@@ -3093,6 +3097,7 @@ export type CreateTicketActionInfo = {
|
|
|
3093
3097
|
export type SendEmailAutomationAction = AutomationActionBuilder<'sendEmail', AutomationForMessage & {
|
|
3094
3098
|
fromEmailOverride?: string;
|
|
3095
3099
|
ccRelatedContactTypes?: string[];
|
|
3100
|
+
customEmailField?: string;
|
|
3096
3101
|
}>;
|
|
3097
3102
|
export type NotifyTeamAutomationAction = AutomationActionBuilder<'notifyTeam', {
|
|
3098
3103
|
templateId: string;
|
|
@@ -3415,6 +3420,9 @@ export interface EnduserObservation extends EnduserObservation_readonly, Enduser
|
|
|
3415
3420
|
type?: string;
|
|
3416
3421
|
source?: string;
|
|
3417
3422
|
notes?: string;
|
|
3423
|
+
qualitativeResult?: string;
|
|
3424
|
+
refRange?: string;
|
|
3425
|
+
statusIndicator?: string;
|
|
3418
3426
|
externalId?: string;
|
|
3419
3427
|
deviceId?: string;
|
|
3420
3428
|
references?: RelatedRecord[];
|
|
@@ -4951,12 +4959,14 @@ export interface EnduserOrder extends EnduserOrder_readonly, EnduserOrder_requir
|
|
|
4951
4959
|
tracking?: string;
|
|
4952
4960
|
}[];
|
|
4953
4961
|
tracking?: string;
|
|
4962
|
+
carrier?: string;
|
|
4954
4963
|
instructions?: string;
|
|
4955
4964
|
shippedDate?: string;
|
|
4956
4965
|
frequency?: string;
|
|
4957
4966
|
activateBy?: string;
|
|
4958
4967
|
fill?: string;
|
|
4959
4968
|
sku?: string;
|
|
4969
|
+
bookingLink?: string;
|
|
4960
4970
|
}
|
|
4961
4971
|
export interface EnduserProblem_readonly extends ClientRecord {
|
|
4962
4972
|
}
|
|
@@ -5345,6 +5355,7 @@ export interface AIConversation extends AIConversation_readonly, AIConversation_
|
|
|
5345
5355
|
orchestrationId?: string;
|
|
5346
5356
|
}
|
|
5347
5357
|
export interface InboxThread_readonly extends ClientRecord {
|
|
5358
|
+
searchKeywords?: string[];
|
|
5348
5359
|
}
|
|
5349
5360
|
export interface InboxThread_required {
|
|
5350
5361
|
type: "Email" | "SMS" | "Chat" | "GroupMMS" | "Phone";
|