@tellescope/types-models 1.242.6 → 1.242.8
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 +6 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +6 -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 +6 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -717,6 +717,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
717
717
|
voicemailPlayback?: PhonePlayback | {};
|
|
718
718
|
mfa?: MFASettings;
|
|
719
719
|
skills?: string[];
|
|
720
|
+
careTeamRole?: string;
|
|
720
721
|
lockedOutUntil?: number;
|
|
721
722
|
failedLoginAttempts?: number;
|
|
722
723
|
elationUserId?: number;
|
|
@@ -847,9 +848,9 @@ export interface Enduser_readonly extends UserActivityInfo, ClientRecord, Enduse
|
|
|
847
848
|
export interface Enduser_required {
|
|
848
849
|
}
|
|
849
850
|
export interface Enduser_updatesDisabled {
|
|
850
|
-
references?: RelatedRecord[];
|
|
851
851
|
}
|
|
852
852
|
export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_updatesDisabled {
|
|
853
|
+
references?: RelatedRecord[];
|
|
853
854
|
recentViewers?: RecentViewer[];
|
|
854
855
|
healthie_dietitian_id?: string;
|
|
855
856
|
unsubscribePhone?: boolean;
|
|
@@ -1874,6 +1875,7 @@ export type FormType = 'note' | 'enduserFacing';
|
|
|
1874
1875
|
export type FormCustomization = {
|
|
1875
1876
|
publicFormHTMLDescription?: string;
|
|
1876
1877
|
publicFormSubmitHTMLDescription?: string;
|
|
1878
|
+
logoURL?: string;
|
|
1877
1879
|
logoHeight?: number;
|
|
1878
1880
|
publicLabelPrefix?: string;
|
|
1879
1881
|
publicFnameLabel?: string;
|
|
@@ -2353,6 +2355,8 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
|
|
|
2353
2355
|
lockedAt?: Date | '';
|
|
2354
2356
|
carePlanId?: string;
|
|
2355
2357
|
context?: string;
|
|
2358
|
+
logoURL?: string;
|
|
2359
|
+
logoHeight?: number;
|
|
2356
2360
|
calendarEventId?: string;
|
|
2357
2361
|
copiedFrom?: string;
|
|
2358
2362
|
copiedFromEnduserId?: string;
|
|
@@ -2641,6 +2645,7 @@ export interface Purchase extends Purchase_readonly, Purchase_required, Purchase
|
|
|
2641
2645
|
cptCode?: BillingCode;
|
|
2642
2646
|
notes?: string;
|
|
2643
2647
|
references?: RelatedRecord[];
|
|
2648
|
+
stripeProductName?: string;
|
|
2644
2649
|
}
|
|
2645
2650
|
type BuildPurchaseCreditInfo<T, I> = {
|
|
2646
2651
|
type: T;
|