oro-sdk-apis 1.19.0 → 1.21.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/dist/models/guard.d.ts +1 -1
- package/dist/models/practice.d.ts +1 -0
- package/dist/models/workflow.d.ts +4 -0
- package/dist/oro-sdk-apis.cjs.development.js.map +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/models/guard.ts +1 -1
- package/src/models/practice.ts +1 -0
- package/src/models/workflow.ts +4 -0
package/package.json
CHANGED
package/src/models/guard.ts
CHANGED
|
@@ -148,6 +148,6 @@ export interface LegalData {
|
|
|
148
148
|
|
|
149
149
|
export type RoleBasedScopes = AllRoleType
|
|
150
150
|
|
|
151
|
-
export type PermissionBasedScopes = 'consult.consults.get' | 'consult.consults.post' | 'practice.assignments.post'
|
|
151
|
+
export type PermissionBasedScopes = 'consult.consults.get' | 'consult.consults.post' | 'practice.assignments.post' | 'practice.configs.get' | 'teller.emails.post'
|
|
152
152
|
|
|
153
153
|
export type AllScopes = RoleBasedScopes | PermissionBasedScopes
|
package/src/models/practice.ts
CHANGED
package/src/models/workflow.ts
CHANGED
|
@@ -167,6 +167,10 @@ export interface WorkflowPageData {
|
|
|
167
167
|
questions: IndexedData<QuestionData>
|
|
168
168
|
title?: string
|
|
169
169
|
triggers?: string[]
|
|
170
|
+
/**
|
|
171
|
+
* This field represents a list of `ids` which will be spliced from the workflow groups and inserted into a designated location
|
|
172
|
+
*/
|
|
173
|
+
prioritizeIds?: string[]
|
|
170
174
|
}
|
|
171
175
|
|
|
172
176
|
export interface WorkflowData {
|