oro-sdk-apis 1.44.1 → 1.45.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.44.1",
2
+ "version": "1.45.0",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -333,11 +333,20 @@ export type PracticeConfigPracticePrescriptionFields = PracticeConfig<
333
333
  }
334
334
  >
335
335
 
336
+ /**
337
+ * This config is used to enable or disable the Search feature
338
+ */
336
339
  export type PracticeConfigPractitionerSearch = PracticeConfig<
337
340
  PracticeConfigKind.PractitionerSearch,
338
341
  {
339
- disableIndexing?: boolean
340
- disableSearch?: boolean
342
+ /**
343
+ * Enables search indexing a consultation on its creation
344
+ */
345
+ enableSearchIndexing?: boolean
346
+ /**
347
+ * Enables to search for consultations from the ConsultList
348
+ */
349
+ enableSearch?: boolean
341
350
  }
342
351
  >
343
352