@tellescope/types-models 1.149.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 +16 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +16 -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 +12 -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;
|
|
@@ -2927,6 +2934,7 @@ export interface AutomatedAction_updatesDisabled {
|
|
|
2927
2934
|
}
|
|
2928
2935
|
export interface AutomatedAction extends AutomatedAction_readonly, AutomatedAction_required, AutomatedAction_updatesDisabled {
|
|
2929
2936
|
isNOP?: boolean;
|
|
2937
|
+
cancelledBy?: string;
|
|
2930
2938
|
}
|
|
2931
2939
|
export interface UserLog_readonly extends ClientRecord {
|
|
2932
2940
|
userId: string;
|
|
@@ -3377,6 +3385,7 @@ export type EnduserProfileViewBlocks = {
|
|
|
3377
3385
|
formId?: string;
|
|
3378
3386
|
fieldIds?: string[];
|
|
3379
3387
|
showAllForms?: boolean;
|
|
3388
|
+
expandable?: boolean;
|
|
3380
3389
|
}>;
|
|
3381
3390
|
"Zus Encounters": EnduserProfileViewBlockBuilder<"Zus Encounters", {
|
|
3382
3391
|
title: string;
|
|
@@ -3573,6 +3582,9 @@ export type AutomationTriggerEvents = {
|
|
|
3573
3582
|
'Healthie Note Locked': AutomationTriggerEventBuilder<"Healthie Note Locked", {
|
|
3574
3583
|
healthieFormIds?: string[];
|
|
3575
3584
|
}, {}>;
|
|
3585
|
+
'Database Entry Added': AutomationTriggerEventBuilder<"Database Entry Added", {
|
|
3586
|
+
databaseId: string;
|
|
3587
|
+
}, {}>;
|
|
3576
3588
|
};
|
|
3577
3589
|
export type AutomationTriggerEventType = keyof AutomationTriggerEvents;
|
|
3578
3590
|
export type AutomationTriggerEvent = AutomationTriggerEvents[AutomationTriggerEventType];
|
|
@@ -3728,6 +3740,7 @@ export type PhoneTreeActions = {
|
|
|
3728
3740
|
}>;
|
|
3729
3741
|
"Select Care Team Member": PhoneTreeActionBuilder<"Select Care Team Member", {
|
|
3730
3742
|
playback?: Partial<PhonePlayback>;
|
|
3743
|
+
playbackVoicemail?: Partial<PhonePlayback>;
|
|
3731
3744
|
}>;
|
|
3732
3745
|
'Forward Call': PhoneTreeActionBuilder<"Forward Call", {
|
|
3733
3746
|
to: string;
|
|
@@ -4519,6 +4532,8 @@ export type JourneyContext = {
|
|
|
4519
4532
|
publicIdentifier?: string;
|
|
4520
4533
|
chatId?: string;
|
|
4521
4534
|
emailId?: string;
|
|
4535
|
+
databaseRecordId?: string;
|
|
4536
|
+
databaseRecordCreator?: string;
|
|
4522
4537
|
};
|
|
4523
4538
|
export declare const TIMEZONE_MAP: {
|
|
4524
4539
|
readonly "Africa/Abidjan": "+00:00";
|