oro-sdk-apis 1.43.0 → 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.43.0",
2
+ "version": "1.45.0",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -145,6 +145,7 @@ export enum PracticeConfigKind {
145
145
  PractitionerChatbox = 'PractitionerChatbox',
146
146
  PractitionerConsultList = 'PractitionerConsultList',
147
147
  PractitionerSearch = 'PractitionerSearch',
148
+ PracticeRegisterWalkthrough = 'PracticeRegisterWalkthrough',
148
149
  }
149
150
 
150
151
  /**
@@ -332,11 +333,33 @@ export type PracticeConfigPracticePrescriptionFields = PracticeConfig<
332
333
  }
333
334
  >
334
335
 
336
+ /**
337
+ * This config is used to enable or disable the Search feature
338
+ */
335
339
  export type PracticeConfigPractitionerSearch = PracticeConfig<
336
340
  PracticeConfigKind.PractitionerSearch,
337
341
  {
338
- disableIndexing?: boolean,
339
- 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
350
+ }
351
+ >
352
+
353
+ /**
354
+ * This config is used to configure the register walkthrough
355
+ */
356
+ export type PracticeConfigPracticeRegisterWalkthrough = PracticeConfig<
357
+ PracticeConfigKind.PracticeRegisterWalkthrough,
358
+ {
359
+ /**
360
+ * The workflow uuid containing the walkthrough to display. If not defined, the walkthrough slides screen is skipped.
361
+ */
362
+ workflowUuid?: string
340
363
  }
341
364
  >
342
365
 
@@ -563,6 +586,7 @@ export interface HydratedPracticeConfigs {
563
586
  [PracticeConfigKind.PractitionerChatbox]?: PracticeConfigPractitionerChatbox
564
587
  [PracticeConfigKind.PractitionerConsultList]?: PracticeConfigPractitionerConsultList
565
588
  [PracticeConfigKind.PractitionerSearch]?: PracticeConfigPractitionerSearch
589
+ [PracticeConfigKind.PracticeRegisterWalkthrough]?: PracticeConfigPracticeRegisterWalkthrough
566
590
  }
567
591
 
568
592
  export interface Practice {
@@ -642,4 +666,4 @@ export interface PracticeSecret {
642
666
  * It's decrypted on the fly when returned by the api.
643
667
  */
644
668
  payload: string
645
- }
669
+ }