@tellescope/types-models 1.223.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 +18 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +18 -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 +19 -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;
|
|
@@ -445,6 +449,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
445
449
|
}[];
|
|
446
450
|
stripePublicKeys?: string[];
|
|
447
451
|
stripeKeyDetails?: StripeKeyDetail[];
|
|
452
|
+
metriportIntegrationDetails?: MetriportIntegrationDetail[];
|
|
448
453
|
additionalIterableKeys?: string[];
|
|
449
454
|
defaultDoseSpotPharmacies?: {
|
|
450
455
|
id: string;
|
|
@@ -2919,6 +2924,7 @@ export type ZusSyncAutomationAction = AutomationActionBuilder<'zusSync', {}>;
|
|
|
2919
2924
|
export type ZusPullAutomationAction = AutomationActionBuilder<'zusPull', {}>;
|
|
2920
2925
|
export type MetriportSyncAutomationAction = AutomationActionBuilder<'metriportSync', {
|
|
2921
2926
|
facilityId: string;
|
|
2927
|
+
integrationTitle?: string;
|
|
2922
2928
|
}>;
|
|
2923
2929
|
export type ZusSubscribeAutomationAction = AutomationActionBuilder<'zusSubscribe', {
|
|
2924
2930
|
practitionerId: string;
|
|
@@ -4044,6 +4050,18 @@ export type AutomationTriggerActions = {
|
|
|
4044
4050
|
"Reply to Chat": AutomationTriggerActionBuilder<'Reply to Chat', {
|
|
4045
4051
|
message: string;
|
|
4046
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
|
+
}>;
|
|
4047
4065
|
};
|
|
4048
4066
|
export type AutomationTriggerActionType = keyof AutomationTriggerActions;
|
|
4049
4067
|
export type AutomationTriggerAction = AutomationTriggerActions[AutomationTriggerActionType];
|