oro-sdk-apis 1.20.0 → 1.22.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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.20.0",
2
+ "version": "1.22.0",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -148,6 +148,13 @@ 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 =
152
+ | 'consult.consults.get'
153
+ | 'consult.consults.post'
154
+ | 'practice.assignments.post'
155
+ | 'practice.configs.get'
156
+ | 'practice.invoices.get'
157
+ | 'practice.payments.get'
158
+ | 'teller.emails.post'
152
159
 
153
160
  export type AllScopes = RoleBasedScopes | PermissionBasedScopes
@@ -448,6 +448,7 @@ export interface PracticeSubscription {
448
448
 
449
449
  export interface PracticeInvoice {
450
450
  id: string //Stripe invoice ID
451
+ customerEmail: string
451
452
  total: number
452
453
  subtotal: number
453
454
  currency: string