oro-sdk-apis 4.2.1 → 4.2.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -21,6 +21,10 @@ export interface Diagnosis extends DiagnosisRequest {
21
21
  uuidPractitioner?: string;
22
22
  createdAt: string;
23
23
  }
24
+ export interface TreatmentAssociatedConsultData {
25
+ uuidConsult: string;
26
+ consultKind: string;
27
+ }
24
28
  export interface TreatmentRequest {
25
29
  uuid?: string;
26
30
  uuidDiagnosis?: string;
@@ -37,6 +41,7 @@ export interface Treatment extends TreatmentRequest {
37
41
  uuidDiagnosis: string;
38
42
  uuidPractitioner?: string;
39
43
  createdAt: string;
44
+ associatedConsultsData: TreatmentAssociatedConsultData[];
40
45
  }
41
46
  export declare enum DrugType {
42
47
  Generic = "Generic",
@@ -138,5 +138,5 @@ export interface LegalData {
138
138
  subscribedAudience?: string;
139
139
  }
140
140
  export declare type RoleBasedScopes = AllRoleType;
141
- export declare type PermissionBasedScopes = 'consult.consults.get' | 'consult.consults.post' | 'consult.consults.put' | 'practice.assignments.post' | 'practice.emails.get' | 'practice.configs.get' | 'practice.invoices.get' | 'practice.payments.get' | 'practice.secrets.get' | 'teller.emails.post';
141
+ export declare type PermissionBasedScopes = 'consult.consults.get' | 'consult.consults.post' | 'consult.consults.put' | 'practice.assignments.post' | 'practice.emails.get' | 'practice.configs.get' | 'practice.practitioners.get' | 'practice.invoices.get' | 'practice.payments.get' | 'practice.secrets.get' | 'teller.emails.post';
142
142
  export declare type AllScopes = RoleBasedScopes | PermissionBasedScopes;