oro-sdk-apis 1.43.0 → 1.44.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.44.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
  /**
@@ -335,11 +336,24 @@ export type PracticeConfigPracticePrescriptionFields = PracticeConfig<
335
336
  export type PracticeConfigPractitionerSearch = PracticeConfig<
336
337
  PracticeConfigKind.PractitionerSearch,
337
338
  {
338
- disableIndexing?: boolean,
339
+ disableIndexing?: boolean
339
340
  disableSearch?: boolean
340
341
  }
341
342
  >
342
343
 
344
+ /**
345
+ * This config is used to configure the register walkthrough
346
+ */
347
+ export type PracticeConfigPracticeRegisterWalkthrough = PracticeConfig<
348
+ PracticeConfigKind.PracticeRegisterWalkthrough,
349
+ {
350
+ /**
351
+ * The workflow uuid containing the walkthrough to display. If not defined, the walkthrough slides screen is skipped.
352
+ */
353
+ workflowUuid?: string
354
+ }
355
+ >
356
+
343
357
  export type PracticeConfigs =
344
358
  | PracticeConfigPractitionerSearch
345
359
  | PracticeConfigPractitionerConsultList
@@ -563,6 +577,7 @@ export interface HydratedPracticeConfigs {
563
577
  [PracticeConfigKind.PractitionerChatbox]?: PracticeConfigPractitionerChatbox
564
578
  [PracticeConfigKind.PractitionerConsultList]?: PracticeConfigPractitionerConsultList
565
579
  [PracticeConfigKind.PractitionerSearch]?: PracticeConfigPractitionerSearch
580
+ [PracticeConfigKind.PracticeRegisterWalkthrough]?: PracticeConfigPractitionerSearch
566
581
  }
567
582
 
568
583
  export interface Practice {
@@ -642,4 +657,4 @@ export interface PracticeSecret {
642
657
  * It's decrypted on the fly when returned by the api.
643
658
  */
644
659
  payload: string
645
- }
660
+ }