@tellescope/types-models 1.214.0 → 1.215.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 +7 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +7 -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 +9 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -209,6 +209,7 @@ export type OrganizationSettings = {
|
|
|
209
209
|
showDownloadCallRecordings?: boolean;
|
|
210
210
|
launchDosespotWebhookURL?: string;
|
|
211
211
|
reverseTimeline?: boolean;
|
|
212
|
+
delayedReadingIntervalInMS?: number;
|
|
212
213
|
};
|
|
213
214
|
tickets?: {
|
|
214
215
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -289,6 +290,11 @@ export type StripeKeyDetail = {
|
|
|
289
290
|
key: string;
|
|
290
291
|
title: string;
|
|
291
292
|
};
|
|
293
|
+
export type OutOfOfficeBlock = {
|
|
294
|
+
from: Date;
|
|
295
|
+
to: Date;
|
|
296
|
+
autoreplyText: string;
|
|
297
|
+
};
|
|
292
298
|
export interface Organization_readonly extends ClientRecord {
|
|
293
299
|
subscriptionExpiresAt: Date;
|
|
294
300
|
subscriptionPeriod: number;
|
|
@@ -449,6 +455,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
449
455
|
creditCount?: number;
|
|
450
456
|
creditTrialStartedAt?: Date;
|
|
451
457
|
hasIntegrations?: string[];
|
|
458
|
+
outOfOfficeHours?: OutOfOfficeBlock[];
|
|
452
459
|
}
|
|
453
460
|
export type OrganizationTheme = {
|
|
454
461
|
name: string;
|