oro-sdk-apis 1.32.0-dev2 → 1.32.0-dev3

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.
@@ -81,6 +81,11 @@ export declare enum ClosedReasonType {
81
81
  Other = "Other",
82
82
  RequiresInPerson = "RequiresInPerson"
83
83
  }
84
+ export interface ConsultClosedReason {
85
+ uuid: string;
86
+ closedReasonType: ClosedReasonType;
87
+ closedReasonDescription: string;
88
+ }
84
89
  export interface ConsultRequest {
85
90
  uuidPractice: string;
86
91
  tagSpecialtyRequired: string;
@@ -101,9 +106,7 @@ export interface Consult {
101
106
  uuidAssignedDoctor: string;
102
107
  uuidCurrentAssigned: string;
103
108
  statusTask?: TaskStatus;
104
- closedReasonType?: ClosedReasonType;
105
- closedReasonLogs?: string;
106
- testReason?: string;
109
+ consultClosedReasons?: ConsultClosedReason[];
107
110
  hasTransmissions?: boolean;
108
111
  assignedAssistant?: ConsultAssignedAssistant[];
109
112
  shortId?: string;