@tellescope/types-models 1.160.1 → 1.161.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 +7 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js +1 -0
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +7 -1
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js +1 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/index.ts +11 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1519,6 +1519,7 @@ export interface FormField extends FormField_readonly, FormField_required, FormF
|
|
|
1519
1519
|
overwrite?: boolean;
|
|
1520
1520
|
};
|
|
1521
1521
|
titleFontSize?: number;
|
|
1522
|
+
groupShowCondition: Record<string, any>;
|
|
1522
1523
|
}
|
|
1523
1524
|
export type FormScoring = {
|
|
1524
1525
|
title: string;
|
|
@@ -1593,6 +1594,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
1593
1594
|
hideFromCompose?: boolean;
|
|
1594
1595
|
enduserFieldsToAppendForSync?: string[];
|
|
1595
1596
|
allowPortalSubmission?: boolean;
|
|
1597
|
+
canvasNoteCoding?: Partial<CanvasCoding>;
|
|
1596
1598
|
}
|
|
1597
1599
|
export interface FormGroup_readonly extends ClientRecord {
|
|
1598
1600
|
}
|
|
@@ -1660,6 +1662,7 @@ export interface Integration extends Integration_readonly, Integration_required,
|
|
|
1660
1662
|
sendEmailOnSync?: boolean;
|
|
1661
1663
|
enduserFieldMapping?: FieldMapping[];
|
|
1662
1664
|
default_dietitian_id?: string;
|
|
1665
|
+
dontPushCalendarEvent?: boolean;
|
|
1663
1666
|
}
|
|
1664
1667
|
export type BuildDatabaseRecordField<K extends string, V, O> = {
|
|
1665
1668
|
type: K;
|
|
@@ -2111,6 +2114,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
2111
2114
|
statusChangeSource?: {
|
|
2112
2115
|
source: string;
|
|
2113
2116
|
identifier: string;
|
|
2117
|
+
byEnduserExternal?: boolean;
|
|
2114
2118
|
};
|
|
2115
2119
|
dontAutoSyncPatientToHealthie?: boolean;
|
|
2116
2120
|
displayTitle?: string;
|
|
@@ -2850,6 +2854,7 @@ export interface ManagedContentRecord extends ManagedContentRecord_readonly, Man
|
|
|
2850
2854
|
embeddingHash?: string;
|
|
2851
2855
|
embeddingType?: EmbeddingType;
|
|
2852
2856
|
forInternalUse?: boolean;
|
|
2857
|
+
portalIndex?: number;
|
|
2853
2858
|
}
|
|
2854
2859
|
export interface ManagedContentRecordAssignment_readonly extends ClientRecord {
|
|
2855
2860
|
}
|
|
@@ -2861,7 +2866,7 @@ export interface ManagedContentRecordAssignment_updatesDisabled {
|
|
|
2861
2866
|
}
|
|
2862
2867
|
export interface ManagedContentRecordAssignment extends ManagedContentRecordAssignment_readonly, ManagedContentRecordAssignment_required, ManagedContentRecordAssignment_updatesDisabled {
|
|
2863
2868
|
}
|
|
2864
|
-
export type PortalPage = "Home" | "Care Plan" | "Documents" | "Education" | "My Events" | "Community" | "Communications" | "Appointment Booking" | "Orders";
|
|
2869
|
+
export type PortalPage = "Home" | "Care Plan" | "Documents" | "Education" | "My Events" | "Community" | "Communications" | "Appointment Booking" | "Orders" | "Vitals";
|
|
2865
2870
|
type BuildPortalBlockInfo<T, I> = {
|
|
2866
2871
|
type: T;
|
|
2867
2872
|
info: I;
|
|
@@ -3613,6 +3618,7 @@ export type AutomationTriggerEvents = {
|
|
|
3613
3618
|
}, {}>;
|
|
3614
3619
|
'Appointment Cancelled': AutomationTriggerEventBuilder<"Appointment Cancelled", {
|
|
3615
3620
|
titles?: string[];
|
|
3621
|
+
by?: '' | 'enduser' | 'user';
|
|
3616
3622
|
}, {}>;
|
|
3617
3623
|
'Appointment Rescheduled': AutomationTriggerEventBuilder<"Appointment Rescheduled", {
|
|
3618
3624
|
titles?: string[];
|