@tellescope/types-models 1.213.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.
@@ -94,6 +94,7 @@ export type PortalSettings = {
94
94
  enduserInitiatedChatDefaultSubject?: string;
95
95
  sendEmailNotificationsToEnduser?: boolean;
96
96
  sendSMSNotificationsToEnduser?: boolean;
97
+ showFloatingChatIcon?: boolean;
97
98
  };
98
99
  orders?: {
99
100
  customOrderTrackingURL?: string;
@@ -208,6 +209,7 @@ export type OrganizationSettings = {
208
209
  showDownloadCallRecordings?: boolean;
209
210
  launchDosespotWebhookURL?: string;
210
211
  reverseTimeline?: boolean;
212
+ delayedReadingIntervalInMS?: number;
211
213
  };
212
214
  tickets?: {
213
215
  defaultJourneyDueDateOffsetInMS?: number | '';
@@ -288,6 +290,11 @@ export type StripeKeyDetail = {
288
290
  key: string;
289
291
  title: string;
290
292
  };
293
+ export type OutOfOfficeBlock = {
294
+ from: Date;
295
+ to: Date;
296
+ autoreplyText: string;
297
+ };
291
298
  export interface Organization_readonly extends ClientRecord {
292
299
  subscriptionExpiresAt: Date;
293
300
  subscriptionPeriod: number;
@@ -448,6 +455,7 @@ export interface Organization extends Organization_readonly, Organization_requir
448
455
  creditCount?: number;
449
456
  creditTrialStartedAt?: Date;
450
457
  hasIntegrations?: string[];
458
+ outOfOfficeHours?: OutOfOfficeBlock[];
451
459
  }
452
460
  export type OrganizationTheme = {
453
461
  name: string;
@@ -2247,6 +2255,11 @@ export type GroupCancellation = {
2247
2255
  at: Date;
2248
2256
  id: string;
2249
2257
  };
2258
+ export type AttendeeStatus = {
2259
+ at: Date;
2260
+ id: string;
2261
+ status: 'Confirmed' | "Completed" | 'Cancelled' | 'No-showed' | 'Rescheduled';
2262
+ };
2250
2263
  export interface CalendarEventPortalSettings {
2251
2264
  hideUsers?: boolean;
2252
2265
  }
@@ -2332,6 +2345,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
2332
2345
  holdFormResponseId?: string;
2333
2346
  tags?: string[];
2334
2347
  cancelledGroupAttendees?: GroupCancellation[];
2348
+ attendeeStatuses?: AttendeeStatus[];
2335
2349
  useUserURL?: boolean;
2336
2350
  healthieZoomStartURL?: string;
2337
2351
  healthieZoomJoinURL?: string;
@@ -3679,6 +3693,7 @@ export type AnalyticsQueryGroupingForType = {
3679
3693
  };
3680
3694
  "Form Responses": {
3681
3695
  "Submitted By"?: boolean;
3696
+ "Submission Status"?: boolean;
3682
3697
  "Public Identifier"?: boolean;
3683
3698
  } & EnduserGrouping & {
3684
3699
  Enduser: string;