@tellescope/types-models 1.140.0 → 1.142.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 +5 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +5 -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 +4 -4
- package/src/index.ts +5 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -174,6 +174,7 @@ export type OrganizationSettings = {
|
|
|
174
174
|
defaultToOutboundConferenceCall?: boolean;
|
|
175
175
|
sharedInboxReadStatus?: boolean;
|
|
176
176
|
matchEmailAndNames?: boolean;
|
|
177
|
+
hideNotesFromComposeForm?: boolean;
|
|
177
178
|
};
|
|
178
179
|
tickets?: {
|
|
179
180
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -368,6 +369,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
368
369
|
id: string;
|
|
369
370
|
name: string;
|
|
370
371
|
}[];
|
|
372
|
+
groups?: string[];
|
|
371
373
|
}
|
|
372
374
|
export type OrganizationTheme = {
|
|
373
375
|
name: string;
|
|
@@ -1027,6 +1029,7 @@ export interface SMSMessage extends SMSMessage_readonly, SMSMessage_required, SM
|
|
|
1027
1029
|
templatedMessage?: string;
|
|
1028
1030
|
canvasId?: string;
|
|
1029
1031
|
discussionRoomId?: string;
|
|
1032
|
+
mediaURLs?: string[];
|
|
1030
1033
|
}
|
|
1031
1034
|
export type ChatRoomType = 'internal' | 'external' | 'Group Chat';
|
|
1032
1035
|
export interface ChatRoom_readonly extends ClientRecord {
|
|
@@ -1203,6 +1206,7 @@ export type TicketAction = TicketActions[TicketActionType];
|
|
|
1203
1206
|
export type TicketSnooze = {
|
|
1204
1207
|
at: Date;
|
|
1205
1208
|
until: Date;
|
|
1209
|
+
reason?: string;
|
|
1206
1210
|
};
|
|
1207
1211
|
export type RoundRobinAssignmentInfo = {
|
|
1208
1212
|
id: string;
|
|
@@ -1545,6 +1549,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
1545
1549
|
externalId: string;
|
|
1546
1550
|
}[];
|
|
1547
1551
|
hideAfterUnsubmittedInMS?: number;
|
|
1552
|
+
hideFromCompose?: boolean;
|
|
1548
1553
|
}
|
|
1549
1554
|
export interface FormGroup_readonly extends ClientRecord {
|
|
1550
1555
|
}
|