@tellescope/types-models 1.164.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';
@@ -3734,6 +3736,8 @@ export interface AutomationTrigger extends AutomationTrigger_readonly, Automatio
3734
3736
  oncePerEnduser?: boolean;
3735
3737
  triggerNextAt?: Date;
3736
3738
  tags?: string[];
3739
+ availabilityTimezone?: Timezone;
3740
+ weeklyAvailabilities?: WeeklyAvailability[];
3737
3741
  }
3738
3742
  export type Address = {
3739
3743
  lineOne: string;
@@ -4352,7 +4356,25 @@ export interface EnduserEligibilityResult extends EnduserEligibilityResult_reado
4352
4356
  copayDescription: string;
4353
4357
  }[];
4354
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
+ }
4355
4376
  export type ModelForName_required = {
4377
+ agent_records: AgentRecord_required;
4356
4378
  enduser_eligibility_results: EnduserEligibilityResult_required;
4357
4379
  integration_logs: IntegrationLog_required;
4358
4380
  allergy_codes: AllergyCode_required;
@@ -4440,6 +4462,7 @@ export type ModelForName_required = {
4440
4462
  };
4441
4463
  export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
4442
4464
  export interface ModelForName_readonly {
4465
+ agent_records: AgentRecord_readonly;
4443
4466
  enduser_eligibility_results: EnduserEligibilityResult_readonly;
4444
4467
  integration_logs: IntegrationLog_readonly;
4445
4468
  allergy_codes: AllergyCode_readonly;
@@ -4527,6 +4550,7 @@ export interface ModelForName_readonly {
4527
4550
  }
4528
4551
  export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
4529
4552
  export interface ModelForName_updatesDisabled {
4553
+ agent_records: AgentRecord_updatesDisabled;
4530
4554
  enduser_eligibility_results: EnduserEligibilityResult_updatesDisabled;
4531
4555
  integration_logs: IntegrationLog_updatesDisabled;
4532
4556
  allergy_codes: AllergyCode_updatesDisabled;
@@ -4614,6 +4638,7 @@ export interface ModelForName_updatesDisabled {
4614
4638
  }
4615
4639
  export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
4616
4640
  export interface ModelForName extends ModelForName_required, ModelForName_readonly {
4641
+ agent_records: AgentRecord;
4617
4642
  enduser_eligibility_results: EnduserEligibilityResult;
4618
4643
  integration_logs: IntegrationLog;
4619
4644
  allergy_codes: AllergyCode;
@@ -5388,4 +5413,10 @@ export type DevelopHealthRunBenefitVerificationBaseArguments = {
5388
5413
  };
5389
5414
  use_patient_plan_fund_source_check?: boolean;
5390
5415
  };
5416
+ export type ZendeskArticle = {
5417
+ id: number;
5418
+ html_url: string;
5419
+ title: string;
5420
+ body: string;
5421
+ };
5391
5422
  //# sourceMappingURL=index.d.ts.map