@tellescope/types-models 1.212.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;
@@ -586,6 +587,7 @@ export interface User_updatesDisabled {
586
587
  verifiedEmail: boolean;
587
588
  }
588
589
  export interface User extends User_required, User_readonly, User_updatesDisabled {
590
+ billingTags?: LabeledField[];
589
591
  defaultLocationId?: string;
590
592
  termsSigned?: Date;
591
593
  termsVersion?: string;
@@ -620,6 +622,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
620
622
  availableFromEmails?: string[];
621
623
  hashedPass?: string;
622
624
  pushNotificationIosTokens?: string[];
625
+ pushNotificationFirebaseTokens?: string[];
623
626
  pushNotificationDestinations?: string[];
624
627
  drChronoId?: string;
625
628
  canvasId?: string;
@@ -2245,6 +2248,11 @@ export type GroupCancellation = {
2245
2248
  at: Date;
2246
2249
  id: string;
2247
2250
  };
2251
+ export type AttendeeStatus = {
2252
+ at: Date;
2253
+ id: string;
2254
+ status: 'Confirmed' | "Completed" | 'Cancelled' | 'No-showed' | 'Rescheduled';
2255
+ };
2248
2256
  export interface CalendarEventPortalSettings {
2249
2257
  hideUsers?: boolean;
2250
2258
  }
@@ -2330,6 +2338,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
2330
2338
  holdFormResponseId?: string;
2331
2339
  tags?: string[];
2332
2340
  cancelledGroupAttendees?: GroupCancellation[];
2341
+ attendeeStatuses?: AttendeeStatus[];
2333
2342
  useUserURL?: boolean;
2334
2343
  healthieZoomStartURL?: string;
2335
2344
  healthieZoomJoinURL?: string;
@@ -3677,6 +3686,7 @@ export type AnalyticsQueryGroupingForType = {
3677
3686
  };
3678
3687
  "Form Responses": {
3679
3688
  "Submitted By"?: boolean;
3689
+ "Submission Status"?: boolean;
3680
3690
  "Public Identifier"?: boolean;
3681
3691
  } & EnduserGrouping & {
3682
3692
  Enduser: string;