oro-sdk-apis 1.40.0 → 1.41.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 +8 -2
- 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 +2 -2
- package/src/models/practice.ts +11 -0
package/package.json
CHANGED
package/src/models/practice.ts
CHANGED
@@ -144,6 +144,7 @@ export enum PracticeConfigKind {
|
|
144
144
|
PracticePrescriptionFields = 'PracticePrescriptionFields',
|
145
145
|
PractitionerChatbox = 'PractitionerChatbox',
|
146
146
|
PractitionerConsultList = 'PractitionerConsultList',
|
147
|
+
PractitionerSearch = 'PractitionerSearch',
|
147
148
|
}
|
148
149
|
|
149
150
|
/**
|
@@ -331,7 +332,16 @@ export type PracticeConfigPracticePrescriptionFields = PracticeConfig<
|
|
331
332
|
}
|
332
333
|
>
|
333
334
|
|
335
|
+
export type PracticeConfigPractitionerSearch = PracticeConfig<
|
336
|
+
PracticeConfigKind.PractitionerSearch,
|
337
|
+
{
|
338
|
+
disableIndexing?: boolean,
|
339
|
+
disableSearch?: boolean
|
340
|
+
}
|
341
|
+
>
|
342
|
+
|
334
343
|
export type PracticeConfigs =
|
344
|
+
| PracticeConfigPractitionerSearch
|
335
345
|
| PracticeConfigPractitionerConsultList
|
336
346
|
| PracticeConfigPractitionerChatbox
|
337
347
|
| PracticeConfigPracticeLocaleSwitcher
|
@@ -552,6 +562,7 @@ export interface HydratedPracticeConfigs {
|
|
552
562
|
[PracticeConfigKind.PracticePrescriptionFields]?: PracticeConfigPracticePrescriptionFields
|
553
563
|
[PracticeConfigKind.PractitionerChatbox]?: PracticeConfigPractitionerChatbox
|
554
564
|
[PracticeConfigKind.PractitionerConsultList]?: PracticeConfigPractitionerConsultList
|
565
|
+
[PracticeConfigKind.PractitionerSearch]?: PracticeConfigPractitionerSearch
|
555
566
|
}
|
556
567
|
|
557
568
|
export interface Practice {
|