@tellescope/types-models 1.249.2 → 1.250.1
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 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +13 -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 +18 -4
package/lib/cjs/index.d.ts
CHANGED
|
@@ -66,6 +66,8 @@ export type BasicFilter<T extends string> = {
|
|
|
66
66
|
$contains: string | number;
|
|
67
67
|
} | {
|
|
68
68
|
$doesNotContain: string | number;
|
|
69
|
+
} | {
|
|
70
|
+
$ne: string | number;
|
|
69
71
|
});
|
|
70
72
|
};
|
|
71
73
|
export type CompoundFilter<T extends string> = {
|
|
@@ -248,6 +250,7 @@ export type OrganizationSettings = {
|
|
|
248
250
|
excludeCareTeamFromSearch?: boolean;
|
|
249
251
|
showVideoCallsOnTimeline?: boolean;
|
|
250
252
|
allowOverrideEmailUniqueness?: boolean;
|
|
253
|
+
endPhoneCallWhenVideoJoined?: boolean;
|
|
251
254
|
};
|
|
252
255
|
tickets?: {
|
|
253
256
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -447,6 +450,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
447
450
|
hasConnectedGoGoMeds?: boolean;
|
|
448
451
|
hasScriptSure?: boolean;
|
|
449
452
|
hasConnectedPagerDuty?: boolean;
|
|
453
|
+
hasConnectedSeason?: boolean;
|
|
450
454
|
hasConnectedSmartMeter?: boolean;
|
|
451
455
|
hasConnectedAthena?: boolean;
|
|
452
456
|
hasConnectedActiveCampaign?: boolean;
|
|
@@ -1652,6 +1656,7 @@ export interface Ticket extends Ticket_readonly, Ticket_required, Ticket_updates
|
|
|
1652
1656
|
isTodo?: boolean;
|
|
1653
1657
|
databaseRecordId?: string;
|
|
1654
1658
|
databaseRecordCreator?: string;
|
|
1659
|
+
faxLogId?: string;
|
|
1655
1660
|
templateId?: string;
|
|
1656
1661
|
}
|
|
1657
1662
|
export interface TicketTemplate_readonly extends ClientRecord {
|
|
@@ -3235,6 +3240,7 @@ export type CreateTicketActionInfo = {
|
|
|
3235
3240
|
contextEnduserFields?: string[];
|
|
3236
3241
|
contextContentIds?: string[];
|
|
3237
3242
|
disableEditTitle?: boolean;
|
|
3243
|
+
skipCareTeamAssignment?: boolean;
|
|
3238
3244
|
};
|
|
3239
3245
|
export type SendEmailAutomationAction = AutomationActionBuilder<'sendEmail', AutomationForMessage & {
|
|
3240
3246
|
fromEmailOverride?: string;
|
|
@@ -3246,6 +3252,9 @@ export type NotifyTeamAutomationAction = AutomationActionBuilder<'notifyTeam', {
|
|
|
3246
3252
|
forAssigned: boolean;
|
|
3247
3253
|
roles?: string[];
|
|
3248
3254
|
tags?: ListOfStringsWithQualifier;
|
|
3255
|
+
dontSendEmail?: boolean;
|
|
3256
|
+
sendSMS?: boolean;
|
|
3257
|
+
smsTemplateId?: string;
|
|
3249
3258
|
}>;
|
|
3250
3259
|
export type SendSMSAutomationAction = AutomationActionBuilder<'sendSMS', AutomationForMessage & {
|
|
3251
3260
|
phoneNumberOverride?: string;
|
|
@@ -4809,6 +4818,9 @@ export type AutomationTriggerEvents = {
|
|
|
4809
4818
|
'File Added': AutomationTriggerEventBuilder<"File Added", {
|
|
4810
4819
|
source: string;
|
|
4811
4820
|
}, {}>;
|
|
4821
|
+
'Incoming Fax': AutomationTriggerEventBuilder<"Incoming Fax", {
|
|
4822
|
+
senderFaxNumbers?: string[];
|
|
4823
|
+
}, {}>;
|
|
4812
4824
|
};
|
|
4813
4825
|
export type AutomationTriggerEventType = keyof AutomationTriggerEvents;
|
|
4814
4826
|
export type AutomationTriggerEvent = AutomationTriggerEvents[AutomationTriggerEventType];
|
|
@@ -6086,6 +6098,7 @@ export type JourneyContext = {
|
|
|
6086
6098
|
ticketThreadId?: string;
|
|
6087
6099
|
ticketThreadCommentId?: string;
|
|
6088
6100
|
medicationId?: string;
|
|
6101
|
+
faxLogId?: string;
|
|
6089
6102
|
};
|
|
6090
6103
|
export declare const TIMEZONE_MAP: {
|
|
6091
6104
|
readonly "Africa/Abidjan": "+00:00";
|