@tellescope/types-models 1.162.0 → 1.163.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 +51 -0
- 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 +51 -0
- 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 +53 -0
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;
|
|
@@ -2911,6 +2912,7 @@ export interface PortalCustomization extends PortalCustomization_readonly, Porta
|
|
|
2911
2912
|
showStripePortalLink?: boolean;
|
|
2912
2913
|
hideCancellatation?: boolean;
|
|
2913
2914
|
hiddenEventTitles?: string[];
|
|
2915
|
+
hiddenFormIds?: string[];
|
|
2914
2916
|
}
|
|
2915
2917
|
export declare const MOBILE_BOTTOM_NAVIGATION_DISABLED_POSITION = 1000;
|
|
2916
2918
|
export declare const DEFAULT_PATIENT_PORTAL_BOTTOM_NAVIGATION_POSITIONS: {
|
|
@@ -4323,7 +4325,30 @@ export interface IntegrationLog_updatesDisabled {
|
|
|
4323
4325
|
}
|
|
4324
4326
|
export interface IntegrationLog extends IntegrationLog_readonly, IntegrationLog_required, IntegrationLog_updatesDisabled {
|
|
4325
4327
|
}
|
|
4328
|
+
export interface EnduserEligibilityResult_readonly extends ClientRecord {
|
|
4329
|
+
}
|
|
4330
|
+
export interface EnduserEligibilityResult_updatesDisabled {
|
|
4331
|
+
}
|
|
4332
|
+
export interface EnduserEligibilityResult_required {
|
|
4333
|
+
title: string;
|
|
4334
|
+
type: string;
|
|
4335
|
+
status: string;
|
|
4336
|
+
externalId: string;
|
|
4337
|
+
source: string;
|
|
4338
|
+
enduserId: string;
|
|
4339
|
+
}
|
|
4340
|
+
export interface EnduserEligibilityResult extends EnduserEligibilityResult_readonly, EnduserEligibilityResult_required, EnduserEligibilityResult_updatesDisabled {
|
|
4341
|
+
statusText?: string;
|
|
4342
|
+
results?: {
|
|
4343
|
+
title: string;
|
|
4344
|
+
is_covered: boolean;
|
|
4345
|
+
requires_prior_authorization: boolean;
|
|
4346
|
+
copay: string;
|
|
4347
|
+
copayDescription: string;
|
|
4348
|
+
}[];
|
|
4349
|
+
}
|
|
4326
4350
|
export type ModelForName_required = {
|
|
4351
|
+
enduser_eligibility_results: EnduserEligibilityResult_required;
|
|
4327
4352
|
integration_logs: IntegrationLog_required;
|
|
4328
4353
|
allergy_codes: AllergyCode_required;
|
|
4329
4354
|
diagnosis_codes: DiagnosisCode_required;
|
|
@@ -4410,6 +4435,7 @@ export type ModelForName_required = {
|
|
|
4410
4435
|
};
|
|
4411
4436
|
export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
|
|
4412
4437
|
export interface ModelForName_readonly {
|
|
4438
|
+
enduser_eligibility_results: EnduserEligibilityResult_readonly;
|
|
4413
4439
|
integration_logs: IntegrationLog_readonly;
|
|
4414
4440
|
allergy_codes: AllergyCode_readonly;
|
|
4415
4441
|
diagnosis_codes: DiagnosisCode_readonly;
|
|
@@ -4496,6 +4522,7 @@ export interface ModelForName_readonly {
|
|
|
4496
4522
|
}
|
|
4497
4523
|
export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
|
|
4498
4524
|
export interface ModelForName_updatesDisabled {
|
|
4525
|
+
enduser_eligibility_results: EnduserEligibilityResult_updatesDisabled;
|
|
4499
4526
|
integration_logs: IntegrationLog_updatesDisabled;
|
|
4500
4527
|
allergy_codes: AllergyCode_updatesDisabled;
|
|
4501
4528
|
diagnosis_codes: DiagnosisCode_updatesDisabled;
|
|
@@ -4582,6 +4609,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
4582
4609
|
}
|
|
4583
4610
|
export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
|
|
4584
4611
|
export interface ModelForName extends ModelForName_required, ModelForName_readonly {
|
|
4612
|
+
enduser_eligibility_results: EnduserEligibilityResult;
|
|
4585
4613
|
integration_logs: IntegrationLog;
|
|
4586
4614
|
allergy_codes: AllergyCode;
|
|
4587
4615
|
diagnosis_codes: DiagnosisCode;
|
|
@@ -5332,4 +5360,27 @@ export type TwilioQueue = {
|
|
|
5332
5360
|
friendlyName: string;
|
|
5333
5361
|
averageWaitTime: number;
|
|
5334
5362
|
};
|
|
5363
|
+
export type DevelopHealthRunBenefitVerificationBaseArguments = {
|
|
5364
|
+
drugs: {
|
|
5365
|
+
name: string;
|
|
5366
|
+
dosage: string;
|
|
5367
|
+
quantity: number;
|
|
5368
|
+
}[];
|
|
5369
|
+
drug_history: {
|
|
5370
|
+
currently_taking_drugs: {
|
|
5371
|
+
name: string;
|
|
5372
|
+
}[];
|
|
5373
|
+
previously_taken_drugs: {
|
|
5374
|
+
name: string;
|
|
5375
|
+
}[];
|
|
5376
|
+
};
|
|
5377
|
+
diagnoses: {
|
|
5378
|
+
code: string;
|
|
5379
|
+
}[];
|
|
5380
|
+
mock_result?: {
|
|
5381
|
+
status: string;
|
|
5382
|
+
case: string;
|
|
5383
|
+
};
|
|
5384
|
+
use_patient_plan_fund_source_check?: boolean;
|
|
5385
|
+
};
|
|
5335
5386
|
//# sourceMappingURL=index.d.ts.map
|