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.
@@ -130,5 +130,5 @@ export interface LegalData {
130
130
  rpAcceptedAtIP?: string;
131
131
  }
132
132
  export declare type RoleBasedScopes = AllRoleType;
133
- export declare type PermissionBasedScopes = 'consult.consults.get' | 'consult.consults.post' | 'practice.assignments.post';
133
+ export declare type PermissionBasedScopes = 'consult.consults.get' | 'consult.consults.post' | 'practice.assignments.post' | 'practice.configs.get' | 'teller.emails.post';
134
134
  export declare type AllScopes = RoleBasedScopes | PermissionBasedScopes;
@@ -386,6 +386,7 @@ export interface PracticeSubscription {
386
386
  }
387
387
  export interface PracticeInvoice {
388
388
  id: string;
389
+ customerEmail: string;
389
390
  total: number;
390
391
  subtotal: number;
391
392
  currency: string;
@@ -131,6 +131,10 @@ export interface WorkflowPageData {
131
131
  questions: IndexedData<QuestionData>;
132
132
  title?: string;
133
133
  triggers?: string[];
134
+ /**
135
+ * This field represents a list of `ids` which will be spliced from the workflow groups and inserted into a designated location
136
+ */
137
+ prioritizeIds?: string[];
134
138
  }
135
139
  export interface WorkflowData {
136
140
  createdAt: string;