@tellescope/types-models 1.239.0 → 1.240.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 +22 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +22 -1
- 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 +26 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -978,6 +978,7 @@ export interface EnduserMedication extends EnduserMedication_readonly, EnduserMe
|
|
|
978
978
|
startedTakingAt?: Date | '';
|
|
979
979
|
stoppedTakingAt?: Date | '';
|
|
980
980
|
rxNormCode?: string;
|
|
981
|
+
ndc?: string;
|
|
981
982
|
fdbCode?: string;
|
|
982
983
|
dispensing?: {
|
|
983
984
|
quantity: number;
|
|
@@ -995,8 +996,21 @@ export interface EnduserMedication extends EnduserMedication_readonly, EnduserMe
|
|
|
995
996
|
pharmacyName?: string;
|
|
996
997
|
pharmacyId?: string;
|
|
997
998
|
orderStatus?: string;
|
|
999
|
+
externalOrderId?: string;
|
|
998
1000
|
reasonForTaking?: string;
|
|
999
1001
|
directions?: string;
|
|
1002
|
+
status?: string;
|
|
1003
|
+
scriptSureDraft?: {
|
|
1004
|
+
prescriptionRouteId?: string;
|
|
1005
|
+
drugId?: string;
|
|
1006
|
+
orderId?: string;
|
|
1007
|
+
refills?: number;
|
|
1008
|
+
duration?: number;
|
|
1009
|
+
quantity?: number;
|
|
1010
|
+
sig?: string;
|
|
1011
|
+
compoundQuantity?: number;
|
|
1012
|
+
compoundQuantityQualifier?: string;
|
|
1013
|
+
};
|
|
1000
1014
|
}
|
|
1001
1015
|
export interface APIKey_readonly extends ClientRecord {
|
|
1002
1016
|
hashedKey: string;
|
|
@@ -2341,6 +2355,7 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
|
|
|
2341
2355
|
canvasEncounterId?: string;
|
|
2342
2356
|
pushedToPortalAt?: Date;
|
|
2343
2357
|
belugaStatus?: string;
|
|
2358
|
+
belugaScheduleLink?: string;
|
|
2344
2359
|
fieldViews?: {
|
|
2345
2360
|
fieldId: string;
|
|
2346
2361
|
fieldTitle: string;
|
|
@@ -5091,10 +5106,16 @@ export interface PrescriptionRoute_updatesDisabled {
|
|
|
5091
5106
|
export interface PrescriptionRoute extends PrescriptionRoute_readonly, PrescriptionRoute_required, PrescriptionRoute_updatesDisabled {
|
|
5092
5107
|
title: string;
|
|
5093
5108
|
state: string;
|
|
5094
|
-
templateIds
|
|
5109
|
+
templateIds?: string[];
|
|
5095
5110
|
pharmacyId?: string;
|
|
5096
5111
|
pharmacyLabel?: string;
|
|
5097
5112
|
tags?: string[];
|
|
5113
|
+
source?: string;
|
|
5114
|
+
drugId?: string;
|
|
5115
|
+
ndc?: string;
|
|
5116
|
+
compoundQuantity?: number;
|
|
5117
|
+
compoundQuantityQualifier?: string;
|
|
5118
|
+
sig?: string;
|
|
5098
5119
|
}
|
|
5099
5120
|
export interface FlowchartNote_readonly extends ClientRecord {
|
|
5100
5121
|
}
|