oro-sdk-apis 1.32.0 → 1.34.1-dev1

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.
@@ -74,6 +74,19 @@ export declare enum TaskStatus {
74
74
  Blocked = "Blocked",
75
75
  Done = "Done"
76
76
  }
77
+ export declare enum ClosedReasonType {
78
+ Completed = "Completed",
79
+ NotADisease = "NotADisease",
80
+ NotAppropriateForVirtual = "NotAppropriateForVirtual",
81
+ Other = "Other",
82
+ RequiresInPerson = "RequiresInPerson"
83
+ }
84
+ export interface ConsultClosedReason {
85
+ id?: number;
86
+ closedReasonType: ClosedReasonType;
87
+ closedReasonDescription: string;
88
+ createdAt?: string;
89
+ }
77
90
  export interface ConsultRequest {
78
91
  uuidPractice: string;
79
92
  tagSpecialtyRequired: string;
@@ -96,6 +109,7 @@ export interface Consult {
96
109
  statusTask?: TaskStatus;
97
110
  hasTransmissions?: boolean;
98
111
  assignedAssistant?: ConsultAssignedAssistant[];
112
+ closeConsultReason?: any;
99
113
  shortId?: string;
100
114
  createdAt?: string;
101
115
  expiresAt?: string;