@tellescope/types-models 1.249.2 → 1.250.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 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +12 -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 +17 -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> = {
|
|
@@ -447,6 +449,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
447
449
|
hasConnectedGoGoMeds?: boolean;
|
|
448
450
|
hasScriptSure?: boolean;
|
|
449
451
|
hasConnectedPagerDuty?: boolean;
|
|
452
|
+
hasConnectedSeason?: boolean;
|
|
450
453
|
hasConnectedSmartMeter?: boolean;
|
|
451
454
|
hasConnectedAthena?: boolean;
|
|
452
455
|
hasConnectedActiveCampaign?: boolean;
|
|
@@ -1652,6 +1655,7 @@ export interface Ticket extends Ticket_readonly, Ticket_required, Ticket_updates
|
|
|
1652
1655
|
isTodo?: boolean;
|
|
1653
1656
|
databaseRecordId?: string;
|
|
1654
1657
|
databaseRecordCreator?: string;
|
|
1658
|
+
faxLogId?: string;
|
|
1655
1659
|
templateId?: string;
|
|
1656
1660
|
}
|
|
1657
1661
|
export interface TicketTemplate_readonly extends ClientRecord {
|
|
@@ -3235,6 +3239,7 @@ export type CreateTicketActionInfo = {
|
|
|
3235
3239
|
contextEnduserFields?: string[];
|
|
3236
3240
|
contextContentIds?: string[];
|
|
3237
3241
|
disableEditTitle?: boolean;
|
|
3242
|
+
skipCareTeamAssignment?: boolean;
|
|
3238
3243
|
};
|
|
3239
3244
|
export type SendEmailAutomationAction = AutomationActionBuilder<'sendEmail', AutomationForMessage & {
|
|
3240
3245
|
fromEmailOverride?: string;
|
|
@@ -3246,6 +3251,9 @@ export type NotifyTeamAutomationAction = AutomationActionBuilder<'notifyTeam', {
|
|
|
3246
3251
|
forAssigned: boolean;
|
|
3247
3252
|
roles?: string[];
|
|
3248
3253
|
tags?: ListOfStringsWithQualifier;
|
|
3254
|
+
dontSendEmail?: boolean;
|
|
3255
|
+
sendSMS?: boolean;
|
|
3256
|
+
smsTemplateId?: string;
|
|
3249
3257
|
}>;
|
|
3250
3258
|
export type SendSMSAutomationAction = AutomationActionBuilder<'sendSMS', AutomationForMessage & {
|
|
3251
3259
|
phoneNumberOverride?: string;
|
|
@@ -4809,6 +4817,9 @@ export type AutomationTriggerEvents = {
|
|
|
4809
4817
|
'File Added': AutomationTriggerEventBuilder<"File Added", {
|
|
4810
4818
|
source: string;
|
|
4811
4819
|
}, {}>;
|
|
4820
|
+
'Incoming Fax': AutomationTriggerEventBuilder<"Incoming Fax", {
|
|
4821
|
+
senderFaxNumbers?: string[];
|
|
4822
|
+
}, {}>;
|
|
4812
4823
|
};
|
|
4813
4824
|
export type AutomationTriggerEventType = keyof AutomationTriggerEvents;
|
|
4814
4825
|
export type AutomationTriggerEvent = AutomationTriggerEvents[AutomationTriggerEventType];
|
|
@@ -6086,6 +6097,7 @@ export type JourneyContext = {
|
|
|
6086
6097
|
ticketThreadId?: string;
|
|
6087
6098
|
ticketThreadCommentId?: string;
|
|
6088
6099
|
medicationId?: string;
|
|
6100
|
+
faxLogId?: string;
|
|
6089
6101
|
};
|
|
6090
6102
|
export declare const TIMEZONE_MAP: {
|
|
6091
6103
|
readonly "Africa/Abidjan": "+00:00";
|