@tellescope/types-models 1.240.0 → 1.242.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 +30 -2
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +30 -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 +33 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -74,6 +74,7 @@ export type CompoundFilter<T extends string> = {
|
|
|
74
74
|
};
|
|
75
75
|
/** @deprecated */
|
|
76
76
|
export type OrganizationLimit = 'endusersLimit' | 'smsLimit' | 'emailsLimit' | 'tasksLimit' | 'formsLimit' | 'orgUsersLimit' | 'automationsLimit' | 'automationStepsLimit' | 'journeysLimit' | 'journeyStatesLimit' | 'templatesLimit' | 'apiKeysLimit';
|
|
77
|
+
export type ControlledSubstanceCode = "0" | "2" | "3" | "4" | "5";
|
|
77
78
|
export type PortalSettings = {
|
|
78
79
|
authentication?: {
|
|
79
80
|
landingTitle?: string;
|
|
@@ -721,6 +722,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
721
722
|
iOSBadgeCount?: number;
|
|
722
723
|
doseSpotUserId?: string;
|
|
723
724
|
scriptSurePrescriberId?: string;
|
|
725
|
+
isScriptsureProvider?: boolean;
|
|
724
726
|
url?: string;
|
|
725
727
|
requiresMFAConfiguration?: boolean;
|
|
726
728
|
templateFields?: LabeledField[];
|
|
@@ -1010,6 +1012,8 @@ export interface EnduserMedication extends EnduserMedication_readonly, EnduserMe
|
|
|
1010
1012
|
sig?: string;
|
|
1011
1013
|
compoundQuantity?: number;
|
|
1012
1014
|
compoundQuantityQualifier?: string;
|
|
1015
|
+
pharmacyNote?: string;
|
|
1016
|
+
controlledSubstance?: ControlledSubstanceCode;
|
|
1013
1017
|
};
|
|
1014
1018
|
}
|
|
1015
1019
|
export interface APIKey_readonly extends ClientRecord {
|
|
@@ -1601,7 +1605,28 @@ export type MeetingStatus = 'scheduled' | 'live' | 'ended';
|
|
|
1601
1605
|
export type MeetingInfo = {
|
|
1602
1606
|
MeetingId: string;
|
|
1603
1607
|
ExternalMeetingId: string;
|
|
1604
|
-
MediaPlacement
|
|
1608
|
+
MediaPlacement?: object;
|
|
1609
|
+
TwilioRoomSid?: string;
|
|
1610
|
+
provider?: 'chime' | 'twilio';
|
|
1611
|
+
};
|
|
1612
|
+
export type TwilioRoomInfo = {
|
|
1613
|
+
RoomSid: string;
|
|
1614
|
+
RoomName: string;
|
|
1615
|
+
Status: 'in-progress' | 'completed';
|
|
1616
|
+
};
|
|
1617
|
+
export type TwilioVideoRecording = {
|
|
1618
|
+
recordingSid: string;
|
|
1619
|
+
roomSid: string;
|
|
1620
|
+
status: 'processing' | 'completed' | 'failed';
|
|
1621
|
+
duration?: number;
|
|
1622
|
+
size?: number;
|
|
1623
|
+
mediaUri?: string;
|
|
1624
|
+
codec?: string;
|
|
1625
|
+
type?: 'audio' | 'video';
|
|
1626
|
+
participantSid?: string;
|
|
1627
|
+
createdAt?: Date;
|
|
1628
|
+
completedAt?: Date;
|
|
1629
|
+
failureReason?: string;
|
|
1605
1630
|
};
|
|
1606
1631
|
export interface Meeting_readonly extends ClientRecord {
|
|
1607
1632
|
calendarEventId?: string;
|
|
@@ -1618,6 +1643,7 @@ export interface Meeting extends Meeting_readonly, Meeting_required, Meeting_upd
|
|
|
1618
1643
|
status: MeetingStatus;
|
|
1619
1644
|
publicRead?: boolean;
|
|
1620
1645
|
endedAt?: Date;
|
|
1646
|
+
recordings?: TwilioVideoRecording[];
|
|
1621
1647
|
}
|
|
1622
1648
|
export interface Note_readonly extends ClientRecord {
|
|
1623
1649
|
}
|
|
@@ -2639,7 +2665,7 @@ export interface PurchaseCredit extends PurchaseCredit_readonly, PurchaseCredit_
|
|
|
2639
2665
|
usedAt?: Date | string;
|
|
2640
2666
|
description?: string;
|
|
2641
2667
|
}
|
|
2642
|
-
export type VideoIntegrationType = "Zoom" | 'No Integration';
|
|
2668
|
+
export type VideoIntegrationType = "Zoom" | "Twilio" | 'No Integration';
|
|
2643
2669
|
export interface CalendarEventTemplate_readonly extends ClientRecord {
|
|
2644
2670
|
}
|
|
2645
2671
|
export interface CalendarEventTemplate_required {
|
|
@@ -5116,6 +5142,8 @@ export interface PrescriptionRoute extends PrescriptionRoute_readonly, Prescript
|
|
|
5116
5142
|
compoundQuantity?: number;
|
|
5117
5143
|
compoundQuantityQualifier?: string;
|
|
5118
5144
|
sig?: string;
|
|
5145
|
+
pharmacyNote?: string;
|
|
5146
|
+
controlledSubstance?: ControlledSubstanceCode;
|
|
5119
5147
|
}
|
|
5120
5148
|
export interface FlowchartNote_readonly extends ClientRecord {
|
|
5121
5149
|
}
|