@tellescope/types-models 1.175.0 → 1.176.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.
@@ -394,6 +394,8 @@ export interface Organization extends Organization_readonly, Organization_requir
394
394
  groups?: string[];
395
395
  observationInvalidationReasons?: string[];
396
396
  chargebeeEnvironments?: string[];
397
+ customNotificationTypes?: string[];
398
+ hasConnectedMedplum?: boolean;
397
399
  }
398
400
  export type OrganizationTheme = {
399
401
  name: string;
@@ -558,6 +560,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
558
560
  pushNotificationDestinations?: string[];
559
561
  drChronoId?: string;
560
562
  canvasId?: string;
563
+ medplumId?: string;
561
564
  zoomId?: string;
562
565
  zendeskId?: number;
563
566
  tags?: string[];
@@ -1336,6 +1339,7 @@ export interface Ticket extends Ticket_readonly, Ticket_required, Ticket_updates
1336
1339
  restrictByTagsQualifier?: ListQueryQualifier;
1337
1340
  archiveReason?: string;
1338
1341
  contextFormIds?: string[];
1342
+ triggerFileId?: string;
1339
1343
  orderId?: string;
1340
1344
  contextEnduserFields?: string[];
1341
1345
  isTodo?: boolean;
@@ -1710,6 +1714,8 @@ export interface Integration extends Integration_readonly, Integration_required,
1710
1714
  default_dietitian_id?: string;
1711
1715
  dontPushCalendarEvent?: boolean;
1712
1716
  dontPullCalendarEvent?: boolean;
1717
+ pushAddedTags?: boolean;
1718
+ pushRemovedTags?: boolean;
1713
1719
  }
1714
1720
  export type BuildDatabaseRecordField<K extends string, V, O> = {
1715
1721
  type: K;
@@ -2056,6 +2062,7 @@ type BuildCalendarEventReminderInfo<T, I> = {
2056
2062
  msBeforeStartTime: number;
2057
2063
  dontSendIfPassed?: boolean;
2058
2064
  didRemind?: boolean;
2065
+ dontSendIfJoined?: boolean;
2059
2066
  };
2060
2067
  export type CalendarEventReminderInfoForType = {
2061
2068
  "webhook": BuildCalendarEventReminderInfo<'webhook', {}>;
@@ -2182,6 +2189,10 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
2182
2189
  startLinkToken?: string;
2183
2190
  canvasEncounterId?: string;
2184
2191
  allowGroupReschedule?: boolean;
2192
+ joinedVideoCall?: {
2193
+ id: string;
2194
+ at: Date;
2195
+ }[];
2185
2196
  }
2186
2197
  export type PaymentProcessor = 'Square' | 'Stripe';
2187
2198
  export interface Product_readonly extends ClientRecord {
@@ -3804,9 +3815,12 @@ export type AutomationTriggerEvents = {
3804
3815
  'Form Started': AutomationTriggerEventBuilder<"Form Started", {
3805
3816
  formIds?: string[];
3806
3817
  }, {}>;
3807
- "Eligibility Result Received": AutomationTriggerActionBuilder<'Eligibility Result Received', {
3818
+ "Eligibility Result Received": AutomationTriggerEventBuilder<'Eligibility Result Received', {
3808
3819
  source: string;
3809
- }>;
3820
+ }, {}>;
3821
+ 'File Added': AutomationTriggerEventBuilder<"File Added", {
3822
+ source: string;
3823
+ }, {}>;
3810
3824
  };
3811
3825
  export type AutomationTriggerEventType = keyof AutomationTriggerEvents;
3812
3826
  export type AutomationTriggerEvent = AutomationTriggerEvents[AutomationTriggerEventType];
@@ -4881,6 +4895,7 @@ export type JourneyContext = {
4881
4895
  databaseRecordId?: string;
4882
4896
  databaseRecordCreator?: string;
4883
4897
  eligibilityResultId?: string;
4898
+ fileId?: string;
4884
4899
  };
4885
4900
  export declare const TIMEZONE_MAP: {
4886
4901
  readonly "Africa/Abidjan": "+00:00";