@tellescope/types-models 1.213.0 → 1.214.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;
@@ -2247,6 +2248,11 @@ export type GroupCancellation = {
2247
2248
  at: Date;
2248
2249
  id: string;
2249
2250
  };
2251
+ export type AttendeeStatus = {
2252
+ at: Date;
2253
+ id: string;
2254
+ status: 'Confirmed' | "Completed" | 'Cancelled' | 'No-showed' | 'Rescheduled';
2255
+ };
2250
2256
  export interface CalendarEventPortalSettings {
2251
2257
  hideUsers?: boolean;
2252
2258
  }
@@ -2332,6 +2338,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
2332
2338
  holdFormResponseId?: string;
2333
2339
  tags?: string[];
2334
2340
  cancelledGroupAttendees?: GroupCancellation[];
2341
+ attendeeStatuses?: AttendeeStatus[];
2335
2342
  useUserURL?: boolean;
2336
2343
  healthieZoomStartURL?: string;
2337
2344
  healthieZoomJoinURL?: string;
@@ -3679,6 +3686,7 @@ export type AnalyticsQueryGroupingForType = {
3679
3686
  };
3680
3687
  "Form Responses": {
3681
3688
  "Submitted By"?: boolean;
3689
+ "Submission Status"?: boolean;
3682
3690
  "Public Identifier"?: boolean;
3683
3691
  } & EnduserGrouping & {
3684
3692
  Enduser: string;