@tellescope/types-models 1.222.0 → 1.224.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 +21 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +21 -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 +22 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -292,6 +292,10 @@ export type StripeKeyDetail = {
|
|
|
292
292
|
key: string;
|
|
293
293
|
title: string;
|
|
294
294
|
};
|
|
295
|
+
export type MetriportIntegrationDetail = {
|
|
296
|
+
title: string;
|
|
297
|
+
environment?: string;
|
|
298
|
+
};
|
|
295
299
|
export type OutOfOfficeBlock = {
|
|
296
300
|
from: Date;
|
|
297
301
|
to: Date;
|
|
@@ -356,6 +360,8 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
356
360
|
customAutoreplyMessage?: string;
|
|
357
361
|
externalCalendarEventPlaceholderTitle?: string;
|
|
358
362
|
externalCalendarEventPlaceholderDescription?: string;
|
|
363
|
+
customZoomEmailTemplate?: string;
|
|
364
|
+
customZoomEmailSubject?: string;
|
|
359
365
|
customVoicemailText?: string;
|
|
360
366
|
hasConnectedOpenAI?: boolean;
|
|
361
367
|
hasConnectedHealthie?: boolean;
|
|
@@ -443,6 +449,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
443
449
|
}[];
|
|
444
450
|
stripePublicKeys?: string[];
|
|
445
451
|
stripeKeyDetails?: StripeKeyDetail[];
|
|
452
|
+
metriportIntegrationDetails?: MetriportIntegrationDetail[];
|
|
446
453
|
additionalIterableKeys?: string[];
|
|
447
454
|
defaultDoseSpotPharmacies?: {
|
|
448
455
|
id: string;
|
|
@@ -2917,6 +2924,7 @@ export type ZusSyncAutomationAction = AutomationActionBuilder<'zusSync', {}>;
|
|
|
2917
2924
|
export type ZusPullAutomationAction = AutomationActionBuilder<'zusPull', {}>;
|
|
2918
2925
|
export type MetriportSyncAutomationAction = AutomationActionBuilder<'metriportSync', {
|
|
2919
2926
|
facilityId: string;
|
|
2927
|
+
integrationTitle?: string;
|
|
2920
2928
|
}>;
|
|
2921
2929
|
export type ZusSubscribeAutomationAction = AutomationActionBuilder<'zusSubscribe', {
|
|
2922
2930
|
practitionerId: string;
|
|
@@ -3184,6 +3192,7 @@ export interface EnduserObservation extends EnduserObservation_readonly, Enduser
|
|
|
3184
3192
|
dontTrigger?: boolean;
|
|
3185
3193
|
showWithPlotsByUnit?: string[];
|
|
3186
3194
|
invalidationReason?: string;
|
|
3195
|
+
excludeFromVitalCountLookback?: boolean;
|
|
3187
3196
|
}
|
|
3188
3197
|
export type BlockType = 'h1' | 'h2' | 'html' | 'image' | 'youtube' | 'pdf' | 'iframe' | 'content-link';
|
|
3189
3198
|
export type ContentBlockBuilder<BLOCK extends BlockType, INFO extends object> = {
|
|
@@ -4041,6 +4050,18 @@ export type AutomationTriggerActions = {
|
|
|
4041
4050
|
"Reply to Chat": AutomationTriggerActionBuilder<'Reply to Chat', {
|
|
4042
4051
|
message: string;
|
|
4043
4052
|
}>;
|
|
4053
|
+
"Create User Notifications": AutomationTriggerActionBuilder<'Create User Notifications', {
|
|
4054
|
+
message: string;
|
|
4055
|
+
notificationType: string;
|
|
4056
|
+
careTeamOnly?: boolean;
|
|
4057
|
+
tags?: ListOfStringsWithQualifier;
|
|
4058
|
+
maxUsers?: number;
|
|
4059
|
+
}>;
|
|
4060
|
+
"Assign to Incoming Message": AutomationTriggerActionBuilder<'Assign to Incoming Message', {
|
|
4061
|
+
careTeamOnly?: boolean;
|
|
4062
|
+
tags?: ListOfStringsWithQualifier;
|
|
4063
|
+
maxUsers?: number;
|
|
4064
|
+
}>;
|
|
4044
4065
|
};
|
|
4045
4066
|
export type AutomationTriggerActionType = keyof AutomationTriggerActions;
|
|
4046
4067
|
export type AutomationTriggerAction = AutomationTriggerActions[AutomationTriggerActionType];
|