@tellescope/types-models 1.248.0 → 1.249.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 +36 -2
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +36 -2
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/index.ts +41 -3
package/lib/cjs/index.d.ts
CHANGED
|
@@ -313,6 +313,8 @@ export type BasicWebhook = {
|
|
|
313
313
|
export type TimeTrackingBillingCode = {
|
|
314
314
|
billingCode: string;
|
|
315
315
|
timeInMinutes: number;
|
|
316
|
+
repeatable?: boolean;
|
|
317
|
+
feeCents?: number;
|
|
316
318
|
};
|
|
317
319
|
export type TimeTrackingProgramForm = {
|
|
318
320
|
id: string;
|
|
@@ -321,6 +323,7 @@ export type TimeTrackingProgram = {
|
|
|
321
323
|
title: string;
|
|
322
324
|
billingCodes: TimeTrackingBillingCode[];
|
|
323
325
|
forms?: TimeTrackingProgramForm[];
|
|
326
|
+
summaryFormId?: string;
|
|
324
327
|
};
|
|
325
328
|
export type SyncDirection = "Bidirectional" | "From Tellescope" | "To Tellescope";
|
|
326
329
|
export type AthenaFieldSync = {
|
|
@@ -439,6 +442,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
439
442
|
hasConnectedZus?: boolean;
|
|
440
443
|
hasConnectedCanvas?: boolean;
|
|
441
444
|
canvasURL?: string;
|
|
445
|
+
healthiePortalURL?: string;
|
|
442
446
|
hasConnectedCandid?: boolean;
|
|
443
447
|
hasConnectedGoGoMeds?: boolean;
|
|
444
448
|
hasScriptSure?: boolean;
|
|
@@ -849,6 +853,15 @@ export type EnduserInsurance = {
|
|
|
849
853
|
groupNumber?: string;
|
|
850
854
|
planName?: string;
|
|
851
855
|
startDate?: string;
|
|
856
|
+
authorizationStartDate?: string;
|
|
857
|
+
authorizationEndDate?: string;
|
|
858
|
+
track?: string;
|
|
859
|
+
visitsAuthorized?: number;
|
|
860
|
+
visitsUsed?: number;
|
|
861
|
+
procedureCodes?: string[];
|
|
862
|
+
diagnosisCodes?: string[];
|
|
863
|
+
healthieAuthorizationId?: string;
|
|
864
|
+
healthiePolicyId?: string;
|
|
852
865
|
};
|
|
853
866
|
export type Pharmacy = {
|
|
854
867
|
npi?: string;
|
|
@@ -1076,6 +1089,7 @@ export interface EnduserMedication extends EnduserMedication_readonly, EnduserMe
|
|
|
1076
1089
|
}
|
|
1077
1090
|
export interface APIKey_readonly extends ClientRecord {
|
|
1078
1091
|
hashedKey: string;
|
|
1092
|
+
approvedBusinessIds?: string[];
|
|
1079
1093
|
}
|
|
1080
1094
|
export interface APIKey_required {
|
|
1081
1095
|
}
|
|
@@ -2052,6 +2066,8 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
2052
2066
|
offering_id: string;
|
|
2053
2067
|
}[];
|
|
2054
2068
|
autoMergeOnSubmission?: boolean;
|
|
2069
|
+
procedureCodes?: FormResponseProcedureCode[];
|
|
2070
|
+
diagnosisCodes?: FormResponseDiagnosisCode[];
|
|
2055
2071
|
}
|
|
2056
2072
|
export interface FormGroup_readonly extends ClientRecord {
|
|
2057
2073
|
}
|
|
@@ -2495,6 +2511,8 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
|
|
|
2495
2511
|
timestamp: Date;
|
|
2496
2512
|
}[];
|
|
2497
2513
|
startedViaPinnedForm?: boolean;
|
|
2514
|
+
procedureCodes?: FormResponseProcedureCode[];
|
|
2515
|
+
diagnosisCodes?: FormResponseDiagnosisCode[];
|
|
2498
2516
|
}
|
|
2499
2517
|
export interface WebHook_readonly extends ClientRecord {
|
|
2500
2518
|
}
|
|
@@ -3433,6 +3451,7 @@ export type ChargebeeChargeCardOnFileAutomationAction = AutomationActionBuilder<
|
|
|
3433
3451
|
chargeType: 'One-Time' | 'Subscription';
|
|
3434
3452
|
itemPriceId: string;
|
|
3435
3453
|
quantity?: number;
|
|
3454
|
+
couponIds?: string[];
|
|
3436
3455
|
}>;
|
|
3437
3456
|
export type AIContextSource = {
|
|
3438
3457
|
type: "Email" | "SMS" | "PhoneCall";
|
|
@@ -4224,7 +4243,10 @@ export type AnalyticsQueryFilterForType = {
|
|
|
4224
4243
|
};
|
|
4225
4244
|
Orders: {};
|
|
4226
4245
|
"Chat Rooms": {};
|
|
4227
|
-
"Chats": {
|
|
4246
|
+
"Chats": {
|
|
4247
|
+
direction?: string;
|
|
4248
|
+
"Chat Tags"?: ListOfStringsWithQualifier;
|
|
4249
|
+
};
|
|
4228
4250
|
};
|
|
4229
4251
|
export type EnduserGrouping = {
|
|
4230
4252
|
Field?: string;
|
|
@@ -4302,7 +4324,9 @@ export type AnalyticsQueryGroupingForType = {
|
|
|
4302
4324
|
"Chat Rooms": {} & EnduserGrouping & {
|
|
4303
4325
|
Enduser: string;
|
|
4304
4326
|
};
|
|
4305
|
-
"Chats": {
|
|
4327
|
+
"Chats": {
|
|
4328
|
+
"Chat Tags"?: boolean;
|
|
4329
|
+
} & EnduserGrouping & {
|
|
4306
4330
|
Enduser: string;
|
|
4307
4331
|
};
|
|
4308
4332
|
};
|
|
@@ -4839,6 +4863,16 @@ export type SuperbillLineItem = {
|
|
|
4839
4863
|
discount?: number;
|
|
4840
4864
|
diagnosisCodes?: string[];
|
|
4841
4865
|
};
|
|
4866
|
+
export type FormResponseProcedureCode = {
|
|
4867
|
+
code: string;
|
|
4868
|
+
units: number;
|
|
4869
|
+
feeCents?: number;
|
|
4870
|
+
modifiers?: string[];
|
|
4871
|
+
};
|
|
4872
|
+
export type FormResponseDiagnosisCode = {
|
|
4873
|
+
code: string;
|
|
4874
|
+
description?: string;
|
|
4875
|
+
};
|
|
4842
4876
|
export type SuperbillPatientInfo = {
|
|
4843
4877
|
name: string;
|
|
4844
4878
|
dateOfBirth: string;
|