@tellescope/types-models 1.251.0 → 1.252.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 +3 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +3 -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
|
@@ -2091,6 +2091,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
2091
2091
|
score: string;
|
|
2092
2092
|
externalId: string;
|
|
2093
2093
|
}[];
|
|
2094
|
+
syncAnswersAsHtml?: boolean;
|
|
2094
2095
|
hideAfterUnsubmittedInMS?: number;
|
|
2095
2096
|
hideFromCompose?: boolean;
|
|
2096
2097
|
hideFromBulkSubmission?: boolean;
|
|
@@ -3357,6 +3358,7 @@ export type BelugaAutoRxPatientPreferenceItem = {
|
|
|
3357
3358
|
medId: string;
|
|
3358
3359
|
};
|
|
3359
3360
|
export type BelugaAutoRxAutomationAction = AutomationActionBuilder<'belugaAutoRx', {
|
|
3361
|
+
formId: string;
|
|
3360
3362
|
patientPreference?: BelugaAutoRxPatientPreferenceItem;
|
|
3361
3363
|
pharmacyId?: string;
|
|
3362
3364
|
useOrganizationMapping?: boolean;
|
|
@@ -3370,6 +3372,7 @@ export type BelugaUpdateVisitPatientPreferenceItem = {
|
|
|
3370
3372
|
medId: string;
|
|
3371
3373
|
};
|
|
3372
3374
|
export type BelugaUpdateVisitAutomationAction = AutomationActionBuilder<'belugaUpdateVisit', {
|
|
3375
|
+
formId: string;
|
|
3373
3376
|
patientPreferences?: BelugaUpdateVisitPatientPreferenceItem[];
|
|
3374
3377
|
pharmacyId?: string;
|
|
3375
3378
|
useOrganizationMapping?: boolean;
|