@tellescope/types-models 1.161.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 +56 -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 +56 -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 +56 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -312,6 +312,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
312
312
|
hasConnectedActiveCampaign?: boolean;
|
|
313
313
|
hasConnectedDocsumo?: boolean;
|
|
314
314
|
hasConnectedEmotii?: boolean;
|
|
315
|
+
hasConnectedDevelopHealth?: boolean;
|
|
315
316
|
hasConfiguredZoom?: boolean;
|
|
316
317
|
hasTicketQueues?: boolean;
|
|
317
318
|
vitalTeamId?: string;
|
|
@@ -635,6 +636,7 @@ export type EnduserInsurance = {
|
|
|
635
636
|
};
|
|
636
637
|
export type EnduserDiagnosis = {
|
|
637
638
|
id?: string;
|
|
639
|
+
createdAt?: Date;
|
|
638
640
|
externalId?: string;
|
|
639
641
|
active?: boolean;
|
|
640
642
|
start?: string;
|
|
@@ -1663,6 +1665,7 @@ export interface Integration extends Integration_readonly, Integration_required,
|
|
|
1663
1665
|
enduserFieldMapping?: FieldMapping[];
|
|
1664
1666
|
default_dietitian_id?: string;
|
|
1665
1667
|
dontPushCalendarEvent?: boolean;
|
|
1668
|
+
dontPullCalendarEvent?: boolean;
|
|
1666
1669
|
}
|
|
1667
1670
|
export type BuildDatabaseRecordField<K extends string, V, O> = {
|
|
1668
1671
|
type: K;
|
|
@@ -2909,6 +2912,7 @@ export interface PortalCustomization extends PortalCustomization_readonly, Porta
|
|
|
2909
2912
|
showStripePortalLink?: boolean;
|
|
2910
2913
|
hideCancellatation?: boolean;
|
|
2911
2914
|
hiddenEventTitles?: string[];
|
|
2915
|
+
hiddenFormIds?: string[];
|
|
2912
2916
|
}
|
|
2913
2917
|
export declare const MOBILE_BOTTOM_NAVIGATION_DISABLED_POSITION = 1000;
|
|
2914
2918
|
export declare const DEFAULT_PATIENT_PORTAL_BOTTOM_NAVIGATION_POSITIONS: {
|
|
@@ -3517,6 +3521,9 @@ export type EnduserProfileViewBlocks = {
|
|
|
3517
3521
|
"Timeline": EnduserProfileViewBlockBuilder<"Timeline", {
|
|
3518
3522
|
title: string;
|
|
3519
3523
|
}>;
|
|
3524
|
+
"Shared Content": EnduserProfileViewBlockBuilder<"Shared Content", {
|
|
3525
|
+
title: string;
|
|
3526
|
+
}>;
|
|
3520
3527
|
};
|
|
3521
3528
|
export type EnduserProfileViewBlockType = keyof EnduserProfileViewBlocks;
|
|
3522
3529
|
export type EnduserProfileViewBlock = EnduserProfileViewBlocks[EnduserProfileViewBlockType];
|
|
@@ -4318,7 +4325,30 @@ export interface IntegrationLog_updatesDisabled {
|
|
|
4318
4325
|
}
|
|
4319
4326
|
export interface IntegrationLog extends IntegrationLog_readonly, IntegrationLog_required, IntegrationLog_updatesDisabled {
|
|
4320
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
|
+
}
|
|
4321
4350
|
export type ModelForName_required = {
|
|
4351
|
+
enduser_eligibility_results: EnduserEligibilityResult_required;
|
|
4322
4352
|
integration_logs: IntegrationLog_required;
|
|
4323
4353
|
allergy_codes: AllergyCode_required;
|
|
4324
4354
|
diagnosis_codes: DiagnosisCode_required;
|
|
@@ -4405,6 +4435,7 @@ export type ModelForName_required = {
|
|
|
4405
4435
|
};
|
|
4406
4436
|
export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
|
|
4407
4437
|
export interface ModelForName_readonly {
|
|
4438
|
+
enduser_eligibility_results: EnduserEligibilityResult_readonly;
|
|
4408
4439
|
integration_logs: IntegrationLog_readonly;
|
|
4409
4440
|
allergy_codes: AllergyCode_readonly;
|
|
4410
4441
|
diagnosis_codes: DiagnosisCode_readonly;
|
|
@@ -4491,6 +4522,7 @@ export interface ModelForName_readonly {
|
|
|
4491
4522
|
}
|
|
4492
4523
|
export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
|
|
4493
4524
|
export interface ModelForName_updatesDisabled {
|
|
4525
|
+
enduser_eligibility_results: EnduserEligibilityResult_updatesDisabled;
|
|
4494
4526
|
integration_logs: IntegrationLog_updatesDisabled;
|
|
4495
4527
|
allergy_codes: AllergyCode_updatesDisabled;
|
|
4496
4528
|
diagnosis_codes: DiagnosisCode_updatesDisabled;
|
|
@@ -4577,6 +4609,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
4577
4609
|
}
|
|
4578
4610
|
export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
|
|
4579
4611
|
export interface ModelForName extends ModelForName_required, ModelForName_readonly {
|
|
4612
|
+
enduser_eligibility_results: EnduserEligibilityResult;
|
|
4580
4613
|
integration_logs: IntegrationLog;
|
|
4581
4614
|
allergy_codes: AllergyCode;
|
|
4582
4615
|
diagnosis_codes: DiagnosisCode;
|
|
@@ -5327,4 +5360,27 @@ export type TwilioQueue = {
|
|
|
5327
5360
|
friendlyName: string;
|
|
5328
5361
|
averageWaitTime: number;
|
|
5329
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
|
+
};
|
|
5330
5386
|
//# sourceMappingURL=index.d.ts.map
|