@tellescope/types-models 1.201.0 → 1.202.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.
@@ -2225,6 +2225,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
2225
2225
  athenaDepartmentId?: string;
2226
2226
  generateAthenaTelehealthLink?: boolean;
2227
2227
  athenaTypeId?: string;
2228
+ athenaBookingTypeId?: string;
2228
2229
  actualDuration?: number;
2229
2230
  dontSyncToCanvas?: boolean;
2230
2231
  reason?: string;
@@ -2338,6 +2339,7 @@ export interface Product extends Product_readonly, Product_required, Product_upd
2338
2339
  maxCheckoutCount?: number | '';
2339
2340
  stripeSubscriptionId?: string;
2340
2341
  stripeProductId?: string;
2342
+ stripePriceId?: string;
2341
2343
  }
2342
2344
  export interface Purchase_readonly extends ClientRecord {
2343
2345
  }
@@ -2441,6 +2443,7 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
2441
2443
  athenaDepartmentId?: string;
2442
2444
  generateAthenaTelehealthLink?: boolean;
2443
2445
  athenaTypeId?: string;
2446
+ athenaBookingTypeId?: string;
2444
2447
  }
2445
2448
  export interface AppointmentLocation_readonly extends ClientRecord {
2446
2449
  }
@@ -2819,6 +2822,10 @@ export type CreateCarePlanAutomationAction = AutomationActionBuilder<'createCare
2819
2822
  export type CompleteCarePlanAutomationAction = AutomationActionBuilder<'completeCarePlan', {}>;
2820
2823
  export type ZusSyncAutomationAction = AutomationActionBuilder<'zusSync', {}>;
2821
2824
  export type ZusPullAutomationAction = AutomationActionBuilder<'zusPull', {}>;
2825
+ export type ZusSubscribeAutomationAction = AutomationActionBuilder<'zusSubscribe', {
2826
+ practitionerId: string;
2827
+ packageIds: string[];
2828
+ }>;
2822
2829
  export type PagerDutyCreateIncidentAutomationAction = AutomationActionBuilder<'pagerDutyCreateIncident', {
2823
2830
  type: string;
2824
2831
  title: string;
@@ -2945,6 +2952,7 @@ export type AutomationActionForType = {
2945
2952
  'completeCarePlan': CompleteCarePlanAutomationAction;
2946
2953
  'zusSync': ZusSyncAutomationAction;
2947
2954
  'zusPull': ZusPullAutomationAction;
2955
+ 'zusSubscribe': ZusSubscribeAutomationAction;
2948
2956
  'pagerDutyCreateIncident': PagerDutyCreateIncidentAutomationAction;
2949
2957
  'smartMeterPlaceOrder': SmartMeterPlaceOrderAutomationAction;
2950
2958
  'healthieSync': HealthieSyncAutomationAction;
@@ -3503,6 +3511,7 @@ export type AnalyticsEnduserFilterField = {
3503
3511
  export type AnalyticsQueryFilterForType = {
3504
3512
  "Endusers": {
3505
3513
  activeSince?: Date | '';
3514
+ "Contacted Since"?: Date | '';
3506
3515
  "Submitted Forms"?: {
3507
3516
  qualifier: ListQueryQualifier;
3508
3517
  formIds: string[];