@tellescope/types-models 1.161.0 → 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 +5 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +5 -0
- 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 +3 -0
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;
|
|
@@ -1663,6 +1664,7 @@ export interface Integration extends Integration_readonly, Integration_required,
|
|
|
1663
1664
|
enduserFieldMapping?: FieldMapping[];
|
|
1664
1665
|
default_dietitian_id?: string;
|
|
1665
1666
|
dontPushCalendarEvent?: boolean;
|
|
1667
|
+
dontPullCalendarEvent?: boolean;
|
|
1666
1668
|
}
|
|
1667
1669
|
export type BuildDatabaseRecordField<K extends string, V, O> = {
|
|
1668
1670
|
type: K;
|
|
@@ -3517,6 +3519,9 @@ export type EnduserProfileViewBlocks = {
|
|
|
3517
3519
|
"Timeline": EnduserProfileViewBlockBuilder<"Timeline", {
|
|
3518
3520
|
title: string;
|
|
3519
3521
|
}>;
|
|
3522
|
+
"Shared Content": EnduserProfileViewBlockBuilder<"Shared Content", {
|
|
3523
|
+
title: string;
|
|
3524
|
+
}>;
|
|
3520
3525
|
};
|
|
3521
3526
|
export type EnduserProfileViewBlockType = keyof EnduserProfileViewBlocks;
|
|
3522
3527
|
export type EnduserProfileViewBlock = EnduserProfileViewBlocks[EnduserProfileViewBlockType];
|