@tellescope/types-models 1.239.1 → 1.241.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 +46 -3
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +46 -3
- 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 +50 -3
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;
|
|
@@ -1587,7 +1601,28 @@ export type MeetingStatus = 'scheduled' | 'live' | 'ended';
|
|
|
1587
1601
|
export type MeetingInfo = {
|
|
1588
1602
|
MeetingId: string;
|
|
1589
1603
|
ExternalMeetingId: string;
|
|
1590
|
-
MediaPlacement
|
|
1604
|
+
MediaPlacement?: object;
|
|
1605
|
+
TwilioRoomSid?: string;
|
|
1606
|
+
provider?: 'chime' | 'twilio';
|
|
1607
|
+
};
|
|
1608
|
+
export type TwilioRoomInfo = {
|
|
1609
|
+
RoomSid: string;
|
|
1610
|
+
RoomName: string;
|
|
1611
|
+
Status: 'in-progress' | 'completed';
|
|
1612
|
+
};
|
|
1613
|
+
export type TwilioVideoRecording = {
|
|
1614
|
+
recordingSid: string;
|
|
1615
|
+
roomSid: string;
|
|
1616
|
+
status: 'processing' | 'completed' | 'failed';
|
|
1617
|
+
duration?: number;
|
|
1618
|
+
size?: number;
|
|
1619
|
+
mediaUri?: string;
|
|
1620
|
+
codec?: string;
|
|
1621
|
+
type?: 'audio' | 'video';
|
|
1622
|
+
participantSid?: string;
|
|
1623
|
+
createdAt?: Date;
|
|
1624
|
+
completedAt?: Date;
|
|
1625
|
+
failureReason?: string;
|
|
1591
1626
|
};
|
|
1592
1627
|
export interface Meeting_readonly extends ClientRecord {
|
|
1593
1628
|
calendarEventId?: string;
|
|
@@ -1604,6 +1639,7 @@ export interface Meeting extends Meeting_readonly, Meeting_required, Meeting_upd
|
|
|
1604
1639
|
status: MeetingStatus;
|
|
1605
1640
|
publicRead?: boolean;
|
|
1606
1641
|
endedAt?: Date;
|
|
1642
|
+
recordings?: TwilioVideoRecording[];
|
|
1607
1643
|
}
|
|
1608
1644
|
export interface Note_readonly extends ClientRecord {
|
|
1609
1645
|
}
|
|
@@ -2341,6 +2377,7 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
|
|
|
2341
2377
|
canvasEncounterId?: string;
|
|
2342
2378
|
pushedToPortalAt?: Date;
|
|
2343
2379
|
belugaStatus?: string;
|
|
2380
|
+
belugaScheduleLink?: string;
|
|
2344
2381
|
fieldViews?: {
|
|
2345
2382
|
fieldId: string;
|
|
2346
2383
|
fieldTitle: string;
|
|
@@ -2624,7 +2661,7 @@ export interface PurchaseCredit extends PurchaseCredit_readonly, PurchaseCredit_
|
|
|
2624
2661
|
usedAt?: Date | string;
|
|
2625
2662
|
description?: string;
|
|
2626
2663
|
}
|
|
2627
|
-
export type VideoIntegrationType = "Zoom" | 'No Integration';
|
|
2664
|
+
export type VideoIntegrationType = "Zoom" | "Twilio" | 'No Integration';
|
|
2628
2665
|
export interface CalendarEventTemplate_readonly extends ClientRecord {
|
|
2629
2666
|
}
|
|
2630
2667
|
export interface CalendarEventTemplate_required {
|
|
@@ -5091,10 +5128,16 @@ export interface PrescriptionRoute_updatesDisabled {
|
|
|
5091
5128
|
export interface PrescriptionRoute extends PrescriptionRoute_readonly, PrescriptionRoute_required, PrescriptionRoute_updatesDisabled {
|
|
5092
5129
|
title: string;
|
|
5093
5130
|
state: string;
|
|
5094
|
-
templateIds
|
|
5131
|
+
templateIds?: string[];
|
|
5095
5132
|
pharmacyId?: string;
|
|
5096
5133
|
pharmacyLabel?: string;
|
|
5097
5134
|
tags?: string[];
|
|
5135
|
+
source?: string;
|
|
5136
|
+
drugId?: string;
|
|
5137
|
+
ndc?: string;
|
|
5138
|
+
compoundQuantity?: number;
|
|
5139
|
+
compoundQuantityQualifier?: string;
|
|
5140
|
+
sig?: string;
|
|
5098
5141
|
}
|
|
5099
5142
|
export interface FlowchartNote_readonly extends ClientRecord {
|
|
5100
5143
|
}
|