@tellescope/types-models 1.160.1 → 1.162.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 +12 -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 +12 -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 +14 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -312,6 +312,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
312
312
|
hasConnectedActiveCampaign?: boolean;
|
|
313
313
|
hasConnectedDocsumo?: boolean;
|
|
314
314
|
hasConnectedEmotii?: boolean;
|
|
315
|
+
hasConnectedDevelopHealth?: boolean;
|
|
315
316
|
hasConfiguredZoom?: boolean;
|
|
316
317
|
hasTicketQueues?: boolean;
|
|
317
318
|
vitalTeamId?: string;
|
|
@@ -1519,6 +1520,7 @@ export interface FormField extends FormField_readonly, FormField_required, FormF
|
|
|
1519
1520
|
overwrite?: boolean;
|
|
1520
1521
|
};
|
|
1521
1522
|
titleFontSize?: number;
|
|
1523
|
+
groupShowCondition: Record<string, any>;
|
|
1522
1524
|
}
|
|
1523
1525
|
export type FormScoring = {
|
|
1524
1526
|
title: string;
|
|
@@ -1593,6 +1595,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
1593
1595
|
hideFromCompose?: boolean;
|
|
1594
1596
|
enduserFieldsToAppendForSync?: string[];
|
|
1595
1597
|
allowPortalSubmission?: boolean;
|
|
1598
|
+
canvasNoteCoding?: Partial<CanvasCoding>;
|
|
1596
1599
|
}
|
|
1597
1600
|
export interface FormGroup_readonly extends ClientRecord {
|
|
1598
1601
|
}
|
|
@@ -1660,6 +1663,8 @@ export interface Integration extends Integration_readonly, Integration_required,
|
|
|
1660
1663
|
sendEmailOnSync?: boolean;
|
|
1661
1664
|
enduserFieldMapping?: FieldMapping[];
|
|
1662
1665
|
default_dietitian_id?: string;
|
|
1666
|
+
dontPushCalendarEvent?: boolean;
|
|
1667
|
+
dontPullCalendarEvent?: boolean;
|
|
1663
1668
|
}
|
|
1664
1669
|
export type BuildDatabaseRecordField<K extends string, V, O> = {
|
|
1665
1670
|
type: K;
|
|
@@ -2111,6 +2116,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
2111
2116
|
statusChangeSource?: {
|
|
2112
2117
|
source: string;
|
|
2113
2118
|
identifier: string;
|
|
2119
|
+
byEnduserExternal?: boolean;
|
|
2114
2120
|
};
|
|
2115
2121
|
dontAutoSyncPatientToHealthie?: boolean;
|
|
2116
2122
|
displayTitle?: string;
|
|
@@ -2850,6 +2856,7 @@ export interface ManagedContentRecord extends ManagedContentRecord_readonly, Man
|
|
|
2850
2856
|
embeddingHash?: string;
|
|
2851
2857
|
embeddingType?: EmbeddingType;
|
|
2852
2858
|
forInternalUse?: boolean;
|
|
2859
|
+
portalIndex?: number;
|
|
2853
2860
|
}
|
|
2854
2861
|
export interface ManagedContentRecordAssignment_readonly extends ClientRecord {
|
|
2855
2862
|
}
|
|
@@ -2861,7 +2868,7 @@ export interface ManagedContentRecordAssignment_updatesDisabled {
|
|
|
2861
2868
|
}
|
|
2862
2869
|
export interface ManagedContentRecordAssignment extends ManagedContentRecordAssignment_readonly, ManagedContentRecordAssignment_required, ManagedContentRecordAssignment_updatesDisabled {
|
|
2863
2870
|
}
|
|
2864
|
-
export type PortalPage = "Home" | "Care Plan" | "Documents" | "Education" | "My Events" | "Community" | "Communications" | "Appointment Booking" | "Orders";
|
|
2871
|
+
export type PortalPage = "Home" | "Care Plan" | "Documents" | "Education" | "My Events" | "Community" | "Communications" | "Appointment Booking" | "Orders" | "Vitals";
|
|
2865
2872
|
type BuildPortalBlockInfo<T, I> = {
|
|
2866
2873
|
type: T;
|
|
2867
2874
|
info: I;
|
|
@@ -3512,6 +3519,9 @@ export type EnduserProfileViewBlocks = {
|
|
|
3512
3519
|
"Timeline": EnduserProfileViewBlockBuilder<"Timeline", {
|
|
3513
3520
|
title: string;
|
|
3514
3521
|
}>;
|
|
3522
|
+
"Shared Content": EnduserProfileViewBlockBuilder<"Shared Content", {
|
|
3523
|
+
title: string;
|
|
3524
|
+
}>;
|
|
3515
3525
|
};
|
|
3516
3526
|
export type EnduserProfileViewBlockType = keyof EnduserProfileViewBlocks;
|
|
3517
3527
|
export type EnduserProfileViewBlock = EnduserProfileViewBlocks[EnduserProfileViewBlockType];
|
|
@@ -3613,6 +3623,7 @@ export type AutomationTriggerEvents = {
|
|
|
3613
3623
|
}, {}>;
|
|
3614
3624
|
'Appointment Cancelled': AutomationTriggerEventBuilder<"Appointment Cancelled", {
|
|
3615
3625
|
titles?: string[];
|
|
3626
|
+
by?: '' | 'enduser' | 'user';
|
|
3616
3627
|
}, {}>;
|
|
3617
3628
|
'Appointment Rescheduled': AutomationTriggerEventBuilder<"Appointment Rescheduled", {
|
|
3618
3629
|
titles?: string[];
|