@tellescope/types-models 1.163.0 → 1.165.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.
@@ -1152,6 +1152,8 @@ export interface ChatMessage extends ChatMessage_readonly, ChatMessage_required,
1152
1152
  isAutoreply?: boolean;
1153
1153
  quote?: string[];
1154
1154
  references?: RelatedRecord[];
1155
+ sendAt?: Date | '';
1156
+ isDraft?: boolean;
1155
1157
  }
1156
1158
  export type MessageTemplateType = 'enduser' | 'Reply' | 'team';
1157
1159
  export type MessageTemplateMode = 'html' | 'richtext';
@@ -1480,6 +1482,7 @@ export type FormFieldOptions = FormFieldValidation & {
1480
1482
  stripeKey?: string;
1481
1483
  dataSource?: string;
1482
1484
  canvasDocumentCoding?: Pick<CanvasCoding, 'system' | 'code'>;
1485
+ esignatureTermsCompanyName?: string;
1483
1486
  };
1484
1487
  export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
1485
1488
  export type FormFieldCalloutConditionComparison = 'Equals';
@@ -2052,7 +2055,9 @@ export interface CalendarEvent_updatesDisabled {
2052
2055
  export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_required, CalendarEvent_updatesDisabled {
2053
2056
  reason?: string;
2054
2057
  cancelReason?: string;
2055
- attendees: UserIdentity[];
2058
+ attendees: (UserIdentity & {
2059
+ joinLinkToken?: string;
2060
+ })[];
2056
2061
  color?: string;
2057
2062
  enableVideoCall?: boolean;
2058
2063
  type?: string;
@@ -2276,6 +2281,7 @@ export interface BookingRestrictions {
2276
2281
  tagsPortal?: string[];
2277
2282
  hoursBefore?: number | '';
2278
2283
  hoursAfter?: number | '';
2284
+ shouldOpenJoinLink?: boolean;
2279
2285
  };
2280
2286
  }
2281
2287
  export type AppointmentTerm = {
@@ -3702,6 +3708,7 @@ export type AutomationTriggerEvents = {
3702
3708
  }, {}>;
3703
3709
  'Healthie Note Locked': AutomationTriggerEventBuilder<"Healthie Note Locked", {
3704
3710
  healthieFormIds?: string[];
3711
+ answersCondition?: Record<string, any>;
3705
3712
  }, {}>;
3706
3713
  'Database Entry Added': AutomationTriggerEventBuilder<"Database Entry Added", {
3707
3714
  databaseId: string;
@@ -3729,6 +3736,8 @@ export interface AutomationTrigger extends AutomationTrigger_readonly, Automatio
3729
3736
  oncePerEnduser?: boolean;
3730
3737
  triggerNextAt?: Date;
3731
3738
  tags?: string[];
3739
+ availabilityTimezone?: Timezone;
3740
+ weeklyAvailabilities?: WeeklyAvailability[];
3732
3741
  }
3733
3742
  export type Address = {
3734
3743
  lineOne: string;
@@ -4347,7 +4356,25 @@ export interface EnduserEligibilityResult extends EnduserEligibilityResult_reado
4347
4356
  copayDescription: string;
4348
4357
  }[];
4349
4358
  }
4359
+ export interface AgentRecord_readonly extends ClientRecord {
4360
+ }
4361
+ export interface AgentRecord_required {
4362
+ type: string;
4363
+ title: string;
4364
+ description: string;
4365
+ }
4366
+ export interface AgentRecord_updatesDisabled {
4367
+ }
4368
+ export interface AgentRecord extends AgentRecord_readonly, AgentRecord_required, AgentRecord_updatesDisabled {
4369
+ pages?: string[];
4370
+ content?: string;
4371
+ url?: string;
4372
+ embedding?: number[];
4373
+ source?: string;
4374
+ externalId?: string;
4375
+ }
4350
4376
  export type ModelForName_required = {
4377
+ agent_records: AgentRecord_required;
4351
4378
  enduser_eligibility_results: EnduserEligibilityResult_required;
4352
4379
  integration_logs: IntegrationLog_required;
4353
4380
  allergy_codes: AllergyCode_required;
@@ -4435,6 +4462,7 @@ export type ModelForName_required = {
4435
4462
  };
4436
4463
  export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
4437
4464
  export interface ModelForName_readonly {
4465
+ agent_records: AgentRecord_readonly;
4438
4466
  enduser_eligibility_results: EnduserEligibilityResult_readonly;
4439
4467
  integration_logs: IntegrationLog_readonly;
4440
4468
  allergy_codes: AllergyCode_readonly;
@@ -4522,6 +4550,7 @@ export interface ModelForName_readonly {
4522
4550
  }
4523
4551
  export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
4524
4552
  export interface ModelForName_updatesDisabled {
4553
+ agent_records: AgentRecord_updatesDisabled;
4525
4554
  enduser_eligibility_results: EnduserEligibilityResult_updatesDisabled;
4526
4555
  integration_logs: IntegrationLog_updatesDisabled;
4527
4556
  allergy_codes: AllergyCode_updatesDisabled;
@@ -4609,6 +4638,7 @@ export interface ModelForName_updatesDisabled {
4609
4638
  }
4610
4639
  export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
4611
4640
  export interface ModelForName extends ModelForName_required, ModelForName_readonly {
4641
+ agent_records: AgentRecord;
4612
4642
  enduser_eligibility_results: EnduserEligibilityResult;
4613
4643
  integration_logs: IntegrationLog;
4614
4644
  allergy_codes: AllergyCode;
@@ -5383,4 +5413,10 @@ export type DevelopHealthRunBenefitVerificationBaseArguments = {
5383
5413
  };
5384
5414
  use_patient_plan_fund_source_check?: boolean;
5385
5415
  };
5416
+ export type ZendeskArticle = {
5417
+ id: number;
5418
+ html_url: string;
5419
+ title: string;
5420
+ body: string;
5421
+ };
5386
5422
  //# sourceMappingURL=index.d.ts.map