@tellescope/types-models 1.235.0 → 1.235.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.
@@ -382,6 +382,7 @@ export interface Organization extends Organization_readonly, Organization_requir
382
382
  canvasURL?: string;
383
383
  hasConnectedCandid?: boolean;
384
384
  hasConnectedGoGoMeds?: boolean;
385
+ hasScriptSure?: boolean;
385
386
  hasConnectedPagerDuty?: boolean;
386
387
  hasConnectedSmartMeter?: boolean;
387
388
  hasConnectedAthena?: boolean;
@@ -395,6 +396,7 @@ export interface Organization extends Organization_readonly, Organization_requir
395
396
  hasConnectedMetriport?: boolean;
396
397
  hasConnectedPaubox?: boolean;
397
398
  hasConnectedBridge?: boolean;
399
+ hasConnectedMDIntegrations?: boolean;
398
400
  hasConfiguredZoom?: boolean;
399
401
  hasTicketQueues?: boolean;
400
402
  vitalTeamId?: string;
@@ -467,6 +469,11 @@ export interface Organization extends Organization_readonly, Organization_requir
467
469
  id: string;
468
470
  name: string;
469
471
  }[];
472
+ scriptSurePractices?: {
473
+ id: string;
474
+ name: string;
475
+ }[];
476
+ scriptSureEmail?: string;
470
477
  groups?: string[];
471
478
  observationInvalidationReasons?: string[];
472
479
  chargebeeEnvironments?: string[];
@@ -483,6 +490,7 @@ export interface Organization extends Organization_readonly, Organization_requir
483
490
  outOfOfficeHours?: OutOfOfficeBlock[];
484
491
  incomingCallDisplayFields?: string[];
485
492
  skipActivePatientBilling?: boolean;
493
+ portalV2SchemaURL?: string;
486
494
  }
487
495
  export type OrganizationTheme = {
488
496
  name: string;
@@ -506,6 +514,7 @@ export type OrganizationTheme = {
506
514
  requireCustomTermsOnMagicLink?: boolean;
507
515
  hasConnectedVital?: boolean;
508
516
  brandId?: string;
517
+ portalV2SchemaURL?: string;
509
518
  };
510
519
  export interface RecordInfo {
511
520
  businessId: string;
@@ -691,6 +700,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
691
700
  elationUserId?: number;
692
701
  iOSBadgeCount?: number;
693
702
  doseSpotUserId?: string;
703
+ scriptSurePrescriberId?: string;
694
704
  url?: string;
695
705
  requiresMFAConfiguration?: boolean;
696
706
  templateFields?: LabeledField[];
@@ -1671,7 +1681,7 @@ export type FormFieldOptions = FormFieldValidation & {
1671
1681
  userTags?: string[];
1672
1682
  userFilterTags?: string[];
1673
1683
  requirePredefinedInsurer?: boolean;
1674
- bridgeServiceTypeId?: string;
1684
+ bridgeServiceTypeIds?: string[];
1675
1685
  bridgeEligibilityType?: 'Soft' | 'Hard';
1676
1686
  useBridgeEligibilityResult?: boolean;
1677
1687
  addressFields?: string[];
@@ -1854,8 +1864,12 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
1854
1864
  matchCareTeamTagsForCanvasPractitionerResolution?: ListOfStringsWithQualifier;
1855
1865
  dontSyncToCanvasOnSubmission?: boolean;
1856
1866
  belugaVisitType?: string;
1867
+ belugaVerificationId?: string;
1857
1868
  showByUserTags?: string[];
1858
1869
  version?: 'v1' | 'v2';
1870
+ mdiCaseOfferings?: {
1871
+ offering_id: string;
1872
+ }[];
1859
1873
  }
1860
1874
  export interface FormGroup_readonly extends ClientRecord {
1861
1875
  }
@@ -2089,6 +2103,7 @@ export type FormResponseAnswerRelatedContacts = FormResponseValueAnswerBuilder<'
2089
2103
  export type FormResponseAnswerAppointmentBooking = FormResponseValueAnswerBuilder<'Appointment Booking', string>;
2090
2104
  export type FormResponseAnswerInsurance = FormResponseValueAnswerBuilder<'Insurance', Partial<EnduserInsurance>>;
2091
2105
  export type FormResponseAnswerBridgeEligibility = FormResponseValueAnswerBuilder<'Bridge Eligibility', {
2106
+ payerId?: string;
2092
2107
  status?: string;
2093
2108
  userIds?: string[];
2094
2109
  }>;
@@ -3295,7 +3310,7 @@ export interface EnduserObservation extends EnduserObservation_readonly, Enduser
3295
3310
  invalidationReason?: string;
3296
3311
  excludeFromVitalCountLookback?: boolean;
3297
3312
  }
3298
- export type BlockType = 'h1' | 'h2' | 'html' | 'image' | 'youtube' | 'pdf' | 'iframe' | 'content-link';
3313
+ export type BlockType = 'h1' | 'h2' | 'html' | 'raw-html' | 'image' | 'youtube' | 'pdf' | 'iframe' | 'content-link';
3299
3314
  export type BlockStyle = {
3300
3315
  width?: number;
3301
3316
  height?: number;
@@ -3326,6 +3341,9 @@ export type BlockContentH2 = ContentBlockBuilder<'h2', BlockContentText>;
3326
3341
  export type BlockContentHTML = ContentBlockBuilder<'html', {
3327
3342
  html: string;
3328
3343
  }>;
3344
+ export type BlockContentRawHTML = ContentBlockBuilder<'raw-html', {
3345
+ html: string;
3346
+ }>;
3329
3347
  export type BlockContentImage = ContentBlockBuilder<'image', BlockContentMedia>;
3330
3348
  export type BlockContentPDF = ContentBlockBuilder<'pdf', BlockContentMedia>;
3331
3349
  export type BlockContentYoutube = ContentBlockBuilder<'youtube', BlockContentMedia>;
@@ -3333,7 +3351,7 @@ export type BlockContentIFrame = ContentBlockBuilder<'iframe', BlockContentMedia
3333
3351
  export type BlockContentLink = ContentBlockBuilder<'content-link', {
3334
3352
  recordId: string;
3335
3353
  }>;
3336
- export type Block = (BlockContentYoutube | BlockContentPDF | BlockContentImage | BlockContentHTML | BlockContentH1 | BlockContentH2 | BlockContentIFrame | BlockContentLink);
3354
+ export type Block = (BlockContentYoutube | BlockContentPDF | BlockContentImage | BlockContentHTML | BlockContentRawHTML | BlockContentH1 | BlockContentH2 | BlockContentIFrame | BlockContentLink);
3337
3355
  export declare const TEXT_EMBEDDING_ADA_002 = "text-embedding-ada-002";
3338
3356
  export declare const EmbeddingInfo: {
3339
3357
  "text-embedding-ada-002": {
@@ -5021,6 +5039,7 @@ export interface PortalBranding extends PortalBranding_readonly, PortalBranding_
5021
5039
  subdomain?: string;
5022
5040
  customPortalURL?: string;
5023
5041
  portalSettings?: PortalSettings;
5042
+ portalV2SchemaURL?: string;
5024
5043
  }
5025
5044
  export interface WebhookLog_readonly extends ClientRecord {
5026
5045
  url: string;