@tellescope/types-models 1.137.0 → 1.138.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.
@@ -13,7 +13,7 @@ export type StripeCheckoutInfo = {
13
13
  stripeAccount: string;
14
14
  businessName: string;
15
15
  };
16
- export type SortBy = 'updatedAt' | 'dueDateInMS';
16
+ export type SortBy = 'updatedAt' | 'dueDateInMS' | 'closedAt';
17
17
  export type AccessType = "All" | "Default" | "Assigned" | null;
18
18
  export type AccessAction = "create" | "read" | "update" | "delete";
19
19
  export type AccessResources = ModelName | 'apiKeys';
@@ -131,7 +131,7 @@ export type EnduserBuiltInField = {
131
131
  requireConfirmation?: boolean;
132
132
  hidden?: boolean;
133
133
  };
134
- export type CustomDashboardViewBlockType = "Inbox" | "Tickets" | "Upcoming Events" | "Team Chats";
134
+ export type CustomDashboardViewBlockType = "Inbox" | "Tickets" | "Upcoming Events" | "Team Chats" | "To-Dos";
135
135
  export type CustomDashboardViewBlock = {
136
136
  type: CustomDashboardViewBlockType;
137
137
  };
@@ -1275,6 +1275,7 @@ export interface Ticket extends Ticket_readonly, Ticket_required, Ticket_updates
1275
1275
  archiveReason?: string;
1276
1276
  contextFormIds?: string[];
1277
1277
  contextEnduserFields?: string[];
1278
+ isTodo?: boolean;
1278
1279
  }
1279
1280
  export type AttendeeInfo = {
1280
1281
  ExternalUserId: string;
@@ -1831,6 +1832,7 @@ export interface FormResponse_updatesDisabled {
1831
1832
  }
1832
1833
  export interface FormResponse extends FormResponse_readonly, FormResponse_required, FormResponse_updatesDisabled, EnduserPortalVisibility {
1833
1834
  draftSavedAt?: Date;
1835
+ draftSavedBy?: string;
1834
1836
  sharedVia?: CommunicationsChannel;
1835
1837
  isInternalNote?: boolean;
1836
1838
  scores?: {
@@ -1870,6 +1872,7 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
1870
1872
  };
1871
1873
  }[];
1872
1874
  discussionRoomId?: string;
1875
+ formsort?: string;
1873
1876
  }
1874
1877
  export interface WebHook_readonly extends ClientRecord {
1875
1878
  }
@@ -2662,6 +2665,7 @@ export interface EnduserObservation extends EnduserObservation_readonly, Enduser
2662
2665
  }[];
2663
2666
  beforeMeal?: boolean;
2664
2667
  dontTrigger?: boolean;
2668
+ showWithPlotsByUnit?: string[];
2665
2669
  }
2666
2670
  export type BlockType = 'h1' | 'h2' | 'html' | 'image' | 'youtube' | 'pdf' | 'iframe' | 'content-link';
2667
2671
  export type ContentBlockBuilder<BLOCK extends BlockType, INFO extends object> = {
@@ -3026,6 +3030,8 @@ export interface PhoneCall extends PhoneCall_readonly, PhoneCall_required, Phone
3026
3030
  recordingCancelledAt?: Date;
3027
3031
  assignedTo?: string[];
3028
3032
  timestamp?: Date;
3033
+ dialedUserIds?: string[][];
3034
+ ignoredUserIds?: string[][];
3029
3035
  }
3030
3036
  export type AnalyticsQueryResultValue = {
3031
3037
  key?: string;
@@ -3119,6 +3125,7 @@ export type AnalyticsQueryFilterForType = {
3119
3125
  starts?: DateRange;
3120
3126
  wasSelfScheduled?: boolean;
3121
3127
  wasCancelled?: boolean;
3128
+ wasCompleted?: boolean;
3122
3129
  wasRescheduled?: boolean;
3123
3130
  wasNoShowed?: boolean;
3124
3131
  scheduledBy?: string;