@tellescope/types-models 1.141.0 → 1.143.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 +3 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +3 -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 +3 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -175,6 +175,7 @@ export type OrganizationSettings = {
|
|
|
175
175
|
sharedInboxReadStatus?: boolean;
|
|
176
176
|
matchEmailAndNames?: boolean;
|
|
177
177
|
hideNotesFromComposeForm?: boolean;
|
|
178
|
+
showSalesforceId?: boolean;
|
|
178
179
|
};
|
|
179
180
|
tickets?: {
|
|
180
181
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -369,6 +370,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
369
370
|
id: string;
|
|
370
371
|
name: string;
|
|
371
372
|
}[];
|
|
373
|
+
groups?: string[];
|
|
372
374
|
}
|
|
373
375
|
export type OrganizationTheme = {
|
|
374
376
|
name: string;
|
|
@@ -1028,6 +1030,7 @@ export interface SMSMessage extends SMSMessage_readonly, SMSMessage_required, SM
|
|
|
1028
1030
|
templatedMessage?: string;
|
|
1029
1031
|
canvasId?: string;
|
|
1030
1032
|
discussionRoomId?: string;
|
|
1033
|
+
mediaURLs?: string[];
|
|
1031
1034
|
}
|
|
1032
1035
|
export type ChatRoomType = 'internal' | 'external' | 'Group Chat';
|
|
1033
1036
|
export interface ChatRoom_readonly extends ClientRecord {
|