oro-sdk-apis 4.1.0 → 4.2.1
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 +5 -0
- package/dist/models/workflow.d.ts +1 -0
- package/dist/oro-sdk-apis.cjs.development.js +3 -8
- 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 +3 -8
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/models/practice.ts +6 -0
- package/src/models/workflow.ts +1 -0
package/package.json
CHANGED
package/src/models/practice.ts
CHANGED
@@ -450,6 +450,12 @@ export type PracticeConfigPracticeInfoLetterDiscount = PracticeConfig<
|
|
450
450
|
* The discount code to be applied when the info letter is accepted
|
451
451
|
*/
|
452
452
|
discountCode?: string
|
453
|
+
|
454
|
+
/**
|
455
|
+
* Show the info letter subscription without a Discount code before the patient confirms his email,
|
456
|
+
* if he confirms his email but still didn't check the subscription, then display a discount code for subscribing
|
457
|
+
*/
|
458
|
+
promptInfoLetterBeforeEmailConfirmed?: boolean
|
453
459
|
}
|
454
460
|
>
|
455
461
|
|
package/src/models/workflow.ts
CHANGED
@@ -269,6 +269,7 @@ export interface WorkflowData {
|
|
269
269
|
summaryImageFieldName?: string // this field is used to show the consult summary image
|
270
270
|
summarySymptomsFieldName?: string // this field is used to show the consult summary symptoms
|
271
271
|
selectedAnswers?: SelectedAnswersData
|
272
|
+
serviceImage?: string
|
272
273
|
walkthroughSlides?: SlideData[]
|
273
274
|
/**
|
274
275
|
* (optional) the service name this workflow provides
|