@tellescope/types-models 1.162.0 → 1.164.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.
- package/lib/cjs/index.d.ts +57 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js +1 -0
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +57 -1
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js +1 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/index.ts +62 -3
package/lib/cjs/index.d.ts
CHANGED
|
@@ -636,6 +636,7 @@ export type EnduserInsurance = {
|
|
|
636
636
|
};
|
|
637
637
|
export type EnduserDiagnosis = {
|
|
638
638
|
id?: string;
|
|
639
|
+
createdAt?: Date;
|
|
639
640
|
externalId?: string;
|
|
640
641
|
active?: boolean;
|
|
641
642
|
start?: string;
|
|
@@ -1479,6 +1480,7 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1479
1480
|
stripeKey?: string;
|
|
1480
1481
|
dataSource?: string;
|
|
1481
1482
|
canvasDocumentCoding?: Pick<CanvasCoding, 'system' | 'code'>;
|
|
1483
|
+
esignatureTermsCompanyName?: string;
|
|
1482
1484
|
};
|
|
1483
1485
|
export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
|
|
1484
1486
|
export type FormFieldCalloutConditionComparison = 'Equals';
|
|
@@ -2051,7 +2053,9 @@ export interface CalendarEvent_updatesDisabled {
|
|
|
2051
2053
|
export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_required, CalendarEvent_updatesDisabled {
|
|
2052
2054
|
reason?: string;
|
|
2053
2055
|
cancelReason?: string;
|
|
2054
|
-
attendees: UserIdentity
|
|
2056
|
+
attendees: (UserIdentity & {
|
|
2057
|
+
joinLinkToken?: string;
|
|
2058
|
+
})[];
|
|
2055
2059
|
color?: string;
|
|
2056
2060
|
enableVideoCall?: boolean;
|
|
2057
2061
|
type?: string;
|
|
@@ -2275,6 +2279,7 @@ export interface BookingRestrictions {
|
|
|
2275
2279
|
tagsPortal?: string[];
|
|
2276
2280
|
hoursBefore?: number | '';
|
|
2277
2281
|
hoursAfter?: number | '';
|
|
2282
|
+
shouldOpenJoinLink?: boolean;
|
|
2278
2283
|
};
|
|
2279
2284
|
}
|
|
2280
2285
|
export type AppointmentTerm = {
|
|
@@ -2911,6 +2916,7 @@ export interface PortalCustomization extends PortalCustomization_readonly, Porta
|
|
|
2911
2916
|
showStripePortalLink?: boolean;
|
|
2912
2917
|
hideCancellatation?: boolean;
|
|
2913
2918
|
hiddenEventTitles?: string[];
|
|
2919
|
+
hiddenFormIds?: string[];
|
|
2914
2920
|
}
|
|
2915
2921
|
export declare const MOBILE_BOTTOM_NAVIGATION_DISABLED_POSITION = 1000;
|
|
2916
2922
|
export declare const DEFAULT_PATIENT_PORTAL_BOTTOM_NAVIGATION_POSITIONS: {
|
|
@@ -3700,6 +3706,7 @@ export type AutomationTriggerEvents = {
|
|
|
3700
3706
|
}, {}>;
|
|
3701
3707
|
'Healthie Note Locked': AutomationTriggerEventBuilder<"Healthie Note Locked", {
|
|
3702
3708
|
healthieFormIds?: string[];
|
|
3709
|
+
answersCondition?: Record<string, any>;
|
|
3703
3710
|
}, {}>;
|
|
3704
3711
|
'Database Entry Added': AutomationTriggerEventBuilder<"Database Entry Added", {
|
|
3705
3712
|
databaseId: string;
|
|
@@ -4323,7 +4330,30 @@ export interface IntegrationLog_updatesDisabled {
|
|
|
4323
4330
|
}
|
|
4324
4331
|
export interface IntegrationLog extends IntegrationLog_readonly, IntegrationLog_required, IntegrationLog_updatesDisabled {
|
|
4325
4332
|
}
|
|
4333
|
+
export interface EnduserEligibilityResult_readonly extends ClientRecord {
|
|
4334
|
+
}
|
|
4335
|
+
export interface EnduserEligibilityResult_updatesDisabled {
|
|
4336
|
+
}
|
|
4337
|
+
export interface EnduserEligibilityResult_required {
|
|
4338
|
+
title: string;
|
|
4339
|
+
type: string;
|
|
4340
|
+
status: string;
|
|
4341
|
+
externalId: string;
|
|
4342
|
+
source: string;
|
|
4343
|
+
enduserId: string;
|
|
4344
|
+
}
|
|
4345
|
+
export interface EnduserEligibilityResult extends EnduserEligibilityResult_readonly, EnduserEligibilityResult_required, EnduserEligibilityResult_updatesDisabled {
|
|
4346
|
+
statusText?: string;
|
|
4347
|
+
results?: {
|
|
4348
|
+
title: string;
|
|
4349
|
+
is_covered: boolean;
|
|
4350
|
+
requires_prior_authorization: boolean;
|
|
4351
|
+
copay: string;
|
|
4352
|
+
copayDescription: string;
|
|
4353
|
+
}[];
|
|
4354
|
+
}
|
|
4326
4355
|
export type ModelForName_required = {
|
|
4356
|
+
enduser_eligibility_results: EnduserEligibilityResult_required;
|
|
4327
4357
|
integration_logs: IntegrationLog_required;
|
|
4328
4358
|
allergy_codes: AllergyCode_required;
|
|
4329
4359
|
diagnosis_codes: DiagnosisCode_required;
|
|
@@ -4410,6 +4440,7 @@ export type ModelForName_required = {
|
|
|
4410
4440
|
};
|
|
4411
4441
|
export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
|
|
4412
4442
|
export interface ModelForName_readonly {
|
|
4443
|
+
enduser_eligibility_results: EnduserEligibilityResult_readonly;
|
|
4413
4444
|
integration_logs: IntegrationLog_readonly;
|
|
4414
4445
|
allergy_codes: AllergyCode_readonly;
|
|
4415
4446
|
diagnosis_codes: DiagnosisCode_readonly;
|
|
@@ -4496,6 +4527,7 @@ export interface ModelForName_readonly {
|
|
|
4496
4527
|
}
|
|
4497
4528
|
export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
|
|
4498
4529
|
export interface ModelForName_updatesDisabled {
|
|
4530
|
+
enduser_eligibility_results: EnduserEligibilityResult_updatesDisabled;
|
|
4499
4531
|
integration_logs: IntegrationLog_updatesDisabled;
|
|
4500
4532
|
allergy_codes: AllergyCode_updatesDisabled;
|
|
4501
4533
|
diagnosis_codes: DiagnosisCode_updatesDisabled;
|
|
@@ -4582,6 +4614,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
4582
4614
|
}
|
|
4583
4615
|
export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
|
|
4584
4616
|
export interface ModelForName extends ModelForName_required, ModelForName_readonly {
|
|
4617
|
+
enduser_eligibility_results: EnduserEligibilityResult;
|
|
4585
4618
|
integration_logs: IntegrationLog;
|
|
4586
4619
|
allergy_codes: AllergyCode;
|
|
4587
4620
|
diagnosis_codes: DiagnosisCode;
|
|
@@ -5332,4 +5365,27 @@ export type TwilioQueue = {
|
|
|
5332
5365
|
friendlyName: string;
|
|
5333
5366
|
averageWaitTime: number;
|
|
5334
5367
|
};
|
|
5368
|
+
export type DevelopHealthRunBenefitVerificationBaseArguments = {
|
|
5369
|
+
drugs: {
|
|
5370
|
+
name: string;
|
|
5371
|
+
dosage: string;
|
|
5372
|
+
quantity: number;
|
|
5373
|
+
}[];
|
|
5374
|
+
drug_history: {
|
|
5375
|
+
currently_taking_drugs: {
|
|
5376
|
+
name: string;
|
|
5377
|
+
}[];
|
|
5378
|
+
previously_taken_drugs: {
|
|
5379
|
+
name: string;
|
|
5380
|
+
}[];
|
|
5381
|
+
};
|
|
5382
|
+
diagnoses: {
|
|
5383
|
+
code: string;
|
|
5384
|
+
}[];
|
|
5385
|
+
mock_result?: {
|
|
5386
|
+
status: string;
|
|
5387
|
+
case: string;
|
|
5388
|
+
};
|
|
5389
|
+
use_patient_plan_fund_source_check?: boolean;
|
|
5390
|
+
};
|
|
5335
5391
|
//# sourceMappingURL=index.d.ts.map
|