oro-sdk-apis 1.31.0 → 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.
@@ -74,6 +74,18 @@ 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
+ uuid: string;
86
+ closedReasonType: ClosedReasonType;
87
+ closedReasonDescription: string;
88
+ }
77
89
  export interface ConsultRequest {
78
90
  uuidPractice: string;
79
91
  tagSpecialtyRequired: string;
@@ -94,6 +106,7 @@ export interface Consult {
94
106
  uuidAssignedDoctor: string;
95
107
  uuidCurrentAssigned: string;
96
108
  statusTask?: TaskStatus;
109
+ consultClosedReasons?: ConsultClosedReason[];
97
110
  hasTransmissions?: boolean;
98
111
  assignedAssistant?: ConsultAssignedAssistant[];
99
112
  shortId?: string;
@@ -472,6 +472,7 @@ export interface Practice {
472
472
  keyGoogleTagNonProd: string;
473
473
  keyGoogleTagProd: string;
474
474
  txtAddress?: string;
475
+ emailBusiness?: string;
475
476
  phoneBusiness?: string;
476
477
  urlSupport?: string;
477
478
  emailSupport?: string;