oro-sdk-apis 1.31.0 → 1.32.0-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,13 @@ 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
+ }
77
84
  export interface ConsultRequest {
78
85
  uuidPractice: string;
79
86
  tagSpecialtyRequired: string;
@@ -94,6 +101,8 @@ export interface Consult {
94
101
  uuidAssignedDoctor: string;
95
102
  uuidCurrentAssigned: string;
96
103
  statusTask?: TaskStatus;
104
+ closedReasonType?: ClosedReasonType;
105
+ closedReasonLogs?: string;
97
106
  hasTransmissions?: boolean;
98
107
  assignedAssistant?: ConsultAssignedAssistant[];
99
108
  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;