@tellescope/types-models 1.256.6 → 1.256.7

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.
@@ -2173,6 +2173,10 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
2173
2173
  lockResponsesOnSubmission?: boolean;
2174
2174
  tags?: string[];
2175
2175
  language?: string;
2176
+ translationConfigurations?: {
2177
+ language: string;
2178
+ configurationId: string;
2179
+ }[];
2176
2180
  isNonVisitElationNote?: boolean;
2177
2181
  elationVisitNotePractitionerIds?: string[];
2178
2182
  elationVisitNoteType?: string;
@@ -2660,6 +2664,7 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
2660
2664
  enduserAISummary?: string;
2661
2665
  procedureCodes?: FormResponseProcedureCode[];
2662
2666
  diagnosisCodes?: FormResponseDiagnosisCode[];
2667
+ viewedInLanguage?: string;
2663
2668
  }
2664
2669
  export interface WebHook_readonly extends ClientRecord {
2665
2670
  }
@@ -2925,6 +2930,7 @@ export interface Purchase extends Purchase_readonly, Purchase_required, Purchase
2925
2930
  notes?: string;
2926
2931
  references?: RelatedRecord[];
2927
2932
  stripeProductName?: string;
2933
+ couponCodes?: string[];
2928
2934
  }
2929
2935
  type BuildPurchaseCreditInfo<T, I> = {
2930
2936
  type: T;
@@ -3515,6 +3521,9 @@ export type BelugaTriggerRefillAutomationAction = AutomationActionBuilder<'belug
3515
3521
  useOrganizationMapping?: boolean;
3516
3522
  customFieldName?: string;
3517
3523
  }>;
3524
+ export type MdiTriggerRefillAutomationAction = AutomationActionBuilder<'mdiTriggerRefill', {
3525
+ onlySubmitWhenDue?: boolean;
3526
+ }>;
3518
3527
  export type SendChatAutomationAction = AutomationActionBuilder<'sendChat', {
3519
3528
  templateId: string;
3520
3529
  identifier: string;
@@ -3719,6 +3728,7 @@ export type AutomationActionForType = {
3719
3728
  'belugaAutoRx': BelugaAutoRxAutomationAction;
3720
3729
  'belugaUpdateVisit': BelugaUpdateVisitAutomationAction;
3721
3730
  'belugaTriggerRefill': BelugaTriggerRefillAutomationAction;
3731
+ 'mdiTriggerRefill': MdiTriggerRefillAutomationAction;
3722
3732
  'healthieSync': HealthieSyncAutomationAction;
3723
3733
  healthieAddToCourse: HealthieAddToCourseAutomationAction;
3724
3734
  healthieSendChat: HealthieSendChatAutomationAction;
@@ -4897,6 +4907,7 @@ export type AutomationTriggerEvents = {
4897
4907
  titles?: string[];
4898
4908
  productIds?: string[];
4899
4909
  titlePartialMatches?: string[];
4910
+ couponCodes?: string[];
4900
4911
  }, {}>;
4901
4912
  'Refund Issued': AutomationTriggerEventBuilder<"Refund Issued", {}, {}>;
4902
4913
  'Subscription Ended': AutomationTriggerEventBuilder<"Subscription Ended", {
@@ -5447,6 +5458,7 @@ export interface Configuration_required {
5447
5458
  value: string;
5448
5459
  }
5449
5460
  export interface Configuration extends Configuration_readonly, Configuration_required, Configuration_updatesDisabled {
5461
+ publicRead?: boolean;
5450
5462
  }
5451
5463
  export type TimeTrackTimestamp = {
5452
5464
  type: 'start' | 'pause' | 'resume';