oro-sdk-apis 1.32.0 → 1.33.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/dist/models/practice.d.ts +11 -1
- package/dist/oro-sdk-apis.cjs.development.js +1 -0
- package/dist/oro-sdk-apis.cjs.development.js.map +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk-apis.esm.js +1 -0
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/models/practice.ts +16 -1
@@ -126,6 +126,7 @@ export declare enum PracticeConfigKind {
|
|
126
126
|
PracticeFontsLinks = "PracticeFontsLinks",
|
127
127
|
PracticeLocaleSwitcher = "PracticeLocaleSwitcher",
|
128
128
|
PracticePharmacyPicker = "PracticePharmacyPicker",
|
129
|
+
PracticePrescriptionFields = "PracticePrescriptionFields",
|
129
130
|
PractitionerChatbox = "PractitionerChatbox",
|
130
131
|
PractitionerConsultList = "PractitionerConsultList"
|
131
132
|
}
|
@@ -268,7 +269,16 @@ export declare type PracticeConfigPractitionerConsultList = PracticeConfig<Pract
|
|
268
269
|
*/
|
269
270
|
hideExpiresAt?: boolean;
|
270
271
|
}>;
|
271
|
-
|
272
|
+
/**
|
273
|
+
* This config is used to configure the layout of the modular prescription fields
|
274
|
+
*/
|
275
|
+
export declare type PracticeConfigPracticePrescriptionFields = PracticeConfig<PracticeConfigKind.PracticePrescriptionFields, {
|
276
|
+
/**
|
277
|
+
* the y position in px of the first modular prescription
|
278
|
+
*/
|
279
|
+
yCoordinate?: number;
|
280
|
+
}>;
|
281
|
+
export declare type PracticeConfigs = PracticeConfigPractitionerConsultList | PracticeConfigPractitionerChatbox | PracticeConfigPracticeLocaleSwitcher | PracticeConfigPracticeCookieBanner | PracticeConfigPracticeOnlinePharmacy | PracticeConfigPracticeCssVariables | PracticeConfigPracticeFontsLinks | PracticeConfigPracticePrescriptionFields | PracticeConfigPracticeConfigExample;
|
272
282
|
export interface PracticeWorkflow {
|
273
283
|
id?: number;
|
274
284
|
uuidPractice: string;
|
@@ -1533,6 +1533,7 @@ var IdentityCreationConflict = /*#__PURE__*/function (_Error7) {
|
|
1533
1533
|
PracticeConfigKind["PracticeFontsLinks"] = "PracticeFontsLinks";
|
1534
1534
|
PracticeConfigKind["PracticeLocaleSwitcher"] = "PracticeLocaleSwitcher";
|
1535
1535
|
PracticeConfigKind["PracticePharmacyPicker"] = "PracticePharmacyPicker";
|
1536
|
+
PracticeConfigKind["PracticePrescriptionFields"] = "PracticePrescriptionFields";
|
1536
1537
|
PracticeConfigKind["PractitionerChatbox"] = "PractitionerChatbox";
|
1537
1538
|
PracticeConfigKind["PractitionerConsultList"] = "PractitionerConsultList";
|
1538
1539
|
})(exports.PracticeConfigKind || (exports.PracticeConfigKind = {}));
|