@tellescope/types-models 1.80.0 → 1.80.2

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.
@@ -155,6 +155,7 @@ export type OrganizationSettings = {
155
155
  enableAccessTags?: boolean;
156
156
  flaggedFileText?: string;
157
157
  showBulkFormInput?: boolean;
158
+ autofillSignature?: boolean;
158
159
  };
159
160
  tickets?: {
160
161
  defaultJourneyDueDateOffsetInMS?: number | '';
@@ -566,6 +567,10 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
566
567
  unsubscribedFromMarketing?: boolean;
567
568
  insurance?: EnduserInsurance;
568
569
  insuranceSecondary?: EnduserInsurance;
570
+ bookingNotes?: {
571
+ bookingPageId: string;
572
+ note: string;
573
+ }[];
569
574
  }
570
575
  export interface EnduserCustomType_readonly extends ClientRecord {
571
576
  }
@@ -1183,6 +1188,8 @@ export type FormFieldOptions = FormFieldValidation & {
1183
1188
  customPriceMessage?: string;
1184
1189
  billingProvider?: 'Canvas' | "Candid" | string;
1185
1190
  bookingPageId?: string;
1191
+ addressFields?: string[];
1192
+ autoAdvance?: boolean;
1186
1193
  };
1187
1194
  export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
1188
1195
  export type FormFieldCalloutConditionComparison = 'Equals';
@@ -1527,6 +1534,7 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
1527
1534
  lockedAt?: Date | '';
1528
1535
  carePlanId?: string;
1529
1536
  context?: string;
1537
+ calendarEventId?: string;
1530
1538
  }
1531
1539
  export interface WebHook_readonly extends ClientRecord {
1532
1540
  }
@@ -2424,6 +2432,7 @@ export type UserUIRestrictions = {
2424
2432
  hiddenFields?: TypedField[];
2425
2433
  disabledFields?: TypedField[];
2426
2434
  hideCareplan?: boolean;
2435
+ hideUnsubmittedForms?: boolean;
2427
2436
  };
2428
2437
  export interface RoleBasedAccessPermission_readonly extends ClientRecord {
2429
2438
  }
@@ -2516,6 +2525,9 @@ export type AnalyticsQueryInfoForType = {
2516
2525
  "Emails": {
2517
2526
  Total: AnalyticsQueryInfoBuilder<'Total', undefined>;
2518
2527
  };
2528
+ "Files": {
2529
+ Total: AnalyticsQueryInfoBuilder<'Total', undefined>;
2530
+ };
2519
2531
  "SMS Messages": {
2520
2532
  Total: AnalyticsQueryInfoBuilder<'Total', undefined>;
2521
2533
  };
@@ -2568,9 +2580,15 @@ export type AnalyticsQueryFilterForType = {
2568
2580
  "Purchase Credits": {};
2569
2581
  "Tickets": {};
2570
2582
  "Phone Calls": {};
2571
- "SMS Messages": {};
2583
+ "SMS Messages": {
2584
+ direction?: string;
2585
+ messages?: string[];
2586
+ };
2572
2587
  Emails: {};
2573
2588
  Medications: {};
2589
+ Files: {
2590
+ names?: string[];
2591
+ };
2574
2592
  };
2575
2593
  export type EnduserGrouping = {
2576
2594
  Field?: string;
@@ -2617,6 +2635,9 @@ export type AnalyticsQueryGroupingForType = {
2617
2635
  "Medications": {} & EnduserGrouping & {
2618
2636
  Enduser: string;
2619
2637
  };
2638
+ "Files": {} & EnduserGrouping & {
2639
+ Enduser: string;
2640
+ };
2620
2641
  };
2621
2642
  type DefaultRangeKey = 'Created At' | 'Updated At';
2622
2643
  export type AnalyticsQueryRangeKeyForType = {
@@ -2630,6 +2651,7 @@ export type AnalyticsQueryRangeKeyForType = {
2630
2651
  "SMS Messages": DefaultRangeKey;
2631
2652
  "Emails": DefaultRangeKey;
2632
2653
  "Medications": DefaultRangeKey;
2654
+ "Files": DefaultRangeKey;
2633
2655
  };
2634
2656
  export type AnalyticsQueryRangeInterval = 'Daily' | 'Weekly' | 'Monthly';
2635
2657
  export type AnalyticsQueryRange<R> = {
@@ -2654,6 +2676,7 @@ export type AnalyticsQueryForType = {
2654
2676
  "Emails": AnalyticsQueryBuilder<"Emails", AnalyticsQueryInfoForType['Emails'][keyof AnalyticsQueryInfoForType['Emails']], AnalyticsQueryFilterForType['Emails'], AnalyticsQueryGroupingForType['Emails'], AnalyticsQueryRangeKeyForType['Emails']>;
2655
2677
  "SMS Messages": AnalyticsQueryBuilder<"SMS Messages", AnalyticsQueryInfoForType['SMS Messages'][keyof AnalyticsQueryInfoForType['SMS Messages']], AnalyticsQueryFilterForType['SMS Messages'], AnalyticsQueryGroupingForType['SMS Messages'], AnalyticsQueryRangeKeyForType['SMS Messages']>;
2656
2678
  "Medications": AnalyticsQueryBuilder<"Medications", AnalyticsQueryInfoForType['Medications'][keyof AnalyticsQueryInfoForType['Medications']], AnalyticsQueryFilterForType['Medications'], AnalyticsQueryGroupingForType['Medications'], AnalyticsQueryRangeKeyForType['Medications']>;
2679
+ "Files": AnalyticsQueryBuilder<"Files", AnalyticsQueryInfoForType['Files'][keyof AnalyticsQueryInfoForType['Files']], AnalyticsQueryFilterForType['Files'], AnalyticsQueryGroupingForType['Files'], AnalyticsQueryRangeKeyForType['Files']>;
2657
2680
  };
2658
2681
  export type AnalyticsQueryType = keyof AnalyticsQueryForType;
2659
2682
  export type AnalyticsQuery = AnalyticsQueryForType[AnalyticsQueryType];
@@ -2709,6 +2732,7 @@ export interface EnduserView_updatesDisabled {
2709
2732
  }
2710
2733
  export interface EnduserView extends EnduserView_readonly, EnduserView_required, EnduserView_updatesDisabled {
2711
2734
  defaultForRole?: string;
2735
+ hideFromRoles?: string[];
2712
2736
  defaultForUserIds?: string[];
2713
2737
  hideProfileLink?: boolean;
2714
2738
  customTypeId?: string;
@@ -2869,37 +2893,6 @@ export interface SuperbillProvider extends SuperbillProviderInfo, SuperbillProvi
2869
2893
  export type Insurance = {
2870
2894
  name: string;
2871
2895
  };
2872
- export interface ReferralProvider_readonly extends ClientRecord {
2873
- }
2874
- export interface ReferralProvider_required {
2875
- }
2876
- export interface ReferralProvider_updatesDisabled {
2877
- }
2878
- export interface ReferralProvider extends ReferralProvider_readonly, ReferralProvider_required, ReferralProvider_updatesDisabled {
2879
- fname?: string;
2880
- lname?: string;
2881
- description?: string;
2882
- activeRelationshipStatus?: string;
2883
- acceptingReferralsStatus?: string;
2884
- inPersonServiceStatus?: string;
2885
- virtualServiceStatus?: string;
2886
- services?: string[];
2887
- locations?: string[];
2888
- languages?: string[];
2889
- eligibilityCriteria?: string[];
2890
- organizationName: string;
2891
- clinicName: string;
2892
- types: string[];
2893
- acceptedInsurance?: Insurance[];
2894
- address?: Address;
2895
- phone?: string;
2896
- phoneExtension?: string;
2897
- email?: string;
2898
- website?: string;
2899
- bookingLink?: string;
2900
- notes?: string;
2901
- uninsuredDescription?: string;
2902
- }
2903
2896
  export type BillingCode = {
2904
2897
  code: number;
2905
2898
  label: string;
@@ -2984,6 +2977,7 @@ export type PhoneTreeActions = {
2984
2977
  playback?: Partial<PhonePlayback>;
2985
2978
  }>;
2986
2979
  'Route Call': PhoneTreeActionBuilder<"Route Call", {
2980
+ prePlayback?: Partial<PhonePlayback>;
2987
2981
  byCareTeam?: boolean;
2988
2982
  byRole?: string;
2989
2983
  byTags?: ListOfStringsWithQualifier;
@@ -3227,7 +3221,6 @@ export type ModelForName_required = {
3227
3221
  ticket_thread_comments: TicketThreadComment_required;
3228
3222
  enduser_custom_types: EnduserCustomType_required;
3229
3223
  phone_trees: PhoneTree_required;
3230
- referral_providers: ReferralProvider_required;
3231
3224
  superbill_providers: SuperbillProvider_required;
3232
3225
  superbills: Superbill_required;
3233
3226
  automation_triggers: AutomationTrigger_required;
@@ -3301,7 +3294,6 @@ export interface ModelForName_readonly {
3301
3294
  enduser_custom_types: EnduserCustomType_readonly;
3302
3295
  phone_trees: PhoneTree_readonly;
3303
3296
  enduser_medications: EnduserMedication_readonly;
3304
- referral_providers: ReferralProvider_readonly;
3305
3297
  superbill_providers: SuperbillProvider_readonly;
3306
3298
  superbills: Superbill_readonly;
3307
3299
  automation_triggers: AutomationTrigger_readonly;
@@ -3373,7 +3365,6 @@ export interface ModelForName_updatesDisabled {
3373
3365
  enduser_custom_types: EnduserCustomType_updatesDisabled;
3374
3366
  phone_trees: PhoneTree_updatesDisabled;
3375
3367
  enduser_medications: EnduserMedication_updatesDisabled;
3376
- referral_providers: ReferralProvider_updatesDisabled;
3377
3368
  superbill_providers: SuperbillProvider_updatesDisabled;
3378
3369
  superbills: Superbill_updatesDisabled;
3379
3370
  automation_triggers: AutomationTrigger_updatesDisabled;
@@ -3445,7 +3436,6 @@ export interface ModelForName extends ModelForName_required, ModelForName_readon
3445
3436
  enduser_custom_types: EnduserCustomType;
3446
3437
  phone_trees: PhoneTree;
3447
3438
  enduser_medications: EnduserMedication;
3448
- referral_providers: ReferralProvider;
3449
3439
  superbill_providers: SuperbillProvider;
3450
3440
  superbills: Superbill;
3451
3441
  automation_triggers: AutomationTrigger;