oro-sdk-apis 1.29.0 → 1.31.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/LICENSE +21 -0
- package/dist/models/practice.d.ts +7 -3
- package/dist/models/workflow.d.ts +1 -0
- package/dist/oro-sdk-apis.cjs.development.js +816 -401
- 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 +816 -401
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/models/practice.ts +7 -3
- package/src/models/workflow.ts +3 -1
package/package.json
CHANGED
package/src/models/practice.ts
CHANGED
|
@@ -299,15 +299,19 @@ export type PracticeConfigPractitionerConsultList = PracticeConfig<
|
|
|
299
299
|
PracticeConfigKind.PractitionerConsultList,
|
|
300
300
|
{
|
|
301
301
|
/**
|
|
302
|
-
*
|
|
302
|
+
* Hides the locality column
|
|
303
303
|
*/
|
|
304
304
|
hideLocality?: boolean
|
|
305
305
|
/**
|
|
306
|
-
*
|
|
306
|
+
* Hides the plan name column
|
|
307
|
+
*/
|
|
308
|
+
hidePlan?: boolean
|
|
309
|
+
/**
|
|
310
|
+
* Hides the fax column
|
|
307
311
|
*/
|
|
308
312
|
hideFax?: boolean
|
|
309
313
|
/**
|
|
310
|
-
*
|
|
314
|
+
* Hides the expires at column
|
|
311
315
|
*/
|
|
312
316
|
hideExpiresAt?: boolean
|
|
313
317
|
}
|
package/src/models/workflow.ts
CHANGED
|
@@ -85,6 +85,8 @@ export interface EntryData {
|
|
|
85
85
|
* This field represents a list of `StateTrigger` that must be fulfilled for this entry to be displayed.
|
|
86
86
|
*/
|
|
87
87
|
stateTriggers?: StateTrigger[]
|
|
88
|
+
// represents the modal that it will be rendered as
|
|
89
|
+
componentKind?: string
|
|
88
90
|
}
|
|
89
91
|
|
|
90
92
|
export interface SlideData {
|
|
@@ -243,4 +245,4 @@ export interface PopulatedWorkflowData {
|
|
|
243
245
|
workflowCreatedAt: string // The workflow version
|
|
244
246
|
locale?: string
|
|
245
247
|
fields: Record<string, PopulatedWorkflowField> // key corresponds to the QuestionData key in the workflow
|
|
246
|
-
}
|
|
248
|
+
}
|