@tellescope/types-models 1.150.0 → 1.150.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 +15 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +15 -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 +3 -3
- package/src/index.ts +11 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -132,9 +132,12 @@ export type EnduserBuiltInField = {
|
|
|
132
132
|
requireConfirmation?: boolean;
|
|
133
133
|
hidden?: boolean;
|
|
134
134
|
};
|
|
135
|
-
export type CustomDashboardViewBlockType = "Inbox" | "Tickets" | "Upcoming Events" | "Team Chats" | "To-Dos";
|
|
135
|
+
export type CustomDashboardViewBlockType = "Inbox" | "Tickets" | "Upcoming Events" | "Team Chats" | "To-Dos" | "Database";
|
|
136
136
|
export type CustomDashboardViewBlock = {
|
|
137
137
|
type: CustomDashboardViewBlockType;
|
|
138
|
+
info?: {
|
|
139
|
+
databaseId?: string;
|
|
140
|
+
};
|
|
138
141
|
};
|
|
139
142
|
export type CustomDashboardView = {
|
|
140
143
|
blocks: CustomDashboardViewBlock[];
|
|
@@ -1297,8 +1300,11 @@ export interface Ticket extends Ticket_readonly, Ticket_required, Ticket_updates
|
|
|
1297
1300
|
restrictByTagsQualifier?: ListQueryQualifier;
|
|
1298
1301
|
archiveReason?: string;
|
|
1299
1302
|
contextFormIds?: string[];
|
|
1303
|
+
orderId?: string;
|
|
1300
1304
|
contextEnduserFields?: string[];
|
|
1301
1305
|
isTodo?: boolean;
|
|
1306
|
+
databaseRecordId?: string;
|
|
1307
|
+
databaseRecordCreator?: string;
|
|
1302
1308
|
}
|
|
1303
1309
|
export type AttendeeInfo = {
|
|
1304
1310
|
ExternalUserId: string;
|
|
@@ -1668,6 +1674,7 @@ export type DatabaseRecordFields = {
|
|
|
1668
1674
|
[K in DatabaseRecordFieldType]: {
|
|
1669
1675
|
type: K;
|
|
1670
1676
|
label: string;
|
|
1677
|
+
showConditions?: Record<any, any>;
|
|
1671
1678
|
required?: boolean;
|
|
1672
1679
|
hideFromTable?: boolean;
|
|
1673
1680
|
wrap?: string;
|
|
@@ -3378,6 +3385,7 @@ export type EnduserProfileViewBlocks = {
|
|
|
3378
3385
|
formId?: string;
|
|
3379
3386
|
fieldIds?: string[];
|
|
3380
3387
|
showAllForms?: boolean;
|
|
3388
|
+
expandable?: boolean;
|
|
3381
3389
|
}>;
|
|
3382
3390
|
"Zus Encounters": EnduserProfileViewBlockBuilder<"Zus Encounters", {
|
|
3383
3391
|
title: string;
|
|
@@ -3574,6 +3582,9 @@ export type AutomationTriggerEvents = {
|
|
|
3574
3582
|
'Healthie Note Locked': AutomationTriggerEventBuilder<"Healthie Note Locked", {
|
|
3575
3583
|
healthieFormIds?: string[];
|
|
3576
3584
|
}, {}>;
|
|
3585
|
+
'Database Entry Added': AutomationTriggerEventBuilder<"Database Entry Added", {
|
|
3586
|
+
databaseId: string;
|
|
3587
|
+
}, {}>;
|
|
3577
3588
|
};
|
|
3578
3589
|
export type AutomationTriggerEventType = keyof AutomationTriggerEvents;
|
|
3579
3590
|
export type AutomationTriggerEvent = AutomationTriggerEvents[AutomationTriggerEventType];
|
|
@@ -3729,6 +3740,7 @@ export type PhoneTreeActions = {
|
|
|
3729
3740
|
}>;
|
|
3730
3741
|
"Select Care Team Member": PhoneTreeActionBuilder<"Select Care Team Member", {
|
|
3731
3742
|
playback?: Partial<PhonePlayback>;
|
|
3743
|
+
playbackVoicemail?: Partial<PhonePlayback>;
|
|
3732
3744
|
}>;
|
|
3733
3745
|
'Forward Call': PhoneTreeActionBuilder<"Forward Call", {
|
|
3734
3746
|
to: string;
|
|
@@ -4520,6 +4532,8 @@ export type JourneyContext = {
|
|
|
4520
4532
|
publicIdentifier?: string;
|
|
4521
4533
|
chatId?: string;
|
|
4522
4534
|
emailId?: string;
|
|
4535
|
+
databaseRecordId?: string;
|
|
4536
|
+
databaseRecordCreator?: string;
|
|
4523
4537
|
};
|
|
4524
4538
|
export declare const TIMEZONE_MAP: {
|
|
4525
4539
|
readonly "Africa/Abidjan": "+00:00";
|