oro-sdk-apis 3.2.7 → 3.3.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/LICENSE +21 -0
- package/dist/models/practice.d.ts +4 -0
- package/dist/oro-sdk-apis.cjs.development.js +1453 -530
- 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 +1486 -529
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/models/practice.ts +4 -0
package/package.json
CHANGED
package/src/models/practice.ts
CHANGED
@@ -432,6 +432,10 @@ export type PracticeConfigPracticeDiagnosisAndTreatment = PracticeConfig<
|
|
432
432
|
* If true, then sort alphabetically the diagnoses, treatments, and drugs shown in their respective select dropdown
|
433
433
|
*/
|
434
434
|
sortNames?: boolean
|
435
|
+
/**
|
436
|
+
* If true, it enables the Prescription Refill feature
|
437
|
+
*/
|
438
|
+
enableRefill?: boolean
|
435
439
|
}
|
436
440
|
>
|
437
441
|
|