oro-sdk-apis 1.34.1-dev1 → 1.35.0-dev2
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.
- package/dist/models/consult.d.ts +44 -3
- package/dist/models/guard.d.ts +1 -1
- package/dist/models/practice.d.ts +12 -1
- package/dist/oro-sdk-apis.cjs.development.js +20 -0
- package/dist/oro-sdk-apis.cjs.development.js.map +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk-apis.esm.js +20 -0
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/models/consult.ts +50 -8
- package/src/models/guard.ts +2 -0
- package/src/models/practice.ts +17 -1
package/dist/oro-sdk-apis.esm.js
CHANGED
@@ -925,10 +925,29 @@ var TaskStatus;
|
|
925
925
|
var ClosedReasonType;
|
926
926
|
|
927
927
|
(function (ClosedReasonType) {
|
928
|
+
/**
|
929
|
+
* A completed consultation
|
930
|
+
*/
|
928
931
|
ClosedReasonType["Completed"] = "Completed";
|
932
|
+
/**
|
933
|
+
* The conclusion was that what the patient submitted was not a disease
|
934
|
+
*/
|
935
|
+
|
929
936
|
ClosedReasonType["NotADisease"] = "NotADisease";
|
937
|
+
/**
|
938
|
+
* The consultation was not appropriate for virtual
|
939
|
+
*/
|
940
|
+
|
930
941
|
ClosedReasonType["NotAppropriateForVirtual"] = "NotAppropriateForVirtual";
|
942
|
+
/**
|
943
|
+
* Any other reason why the consultation was closed
|
944
|
+
*/
|
945
|
+
|
931
946
|
ClosedReasonType["Other"] = "Other";
|
947
|
+
/**
|
948
|
+
* A consultation that is required to be done in person
|
949
|
+
*/
|
950
|
+
|
932
951
|
ClosedReasonType["RequiresInPerson"] = "RequiresInPerson";
|
933
952
|
})(ClosedReasonType || (ClosedReasonType = {}));
|
934
953
|
|
@@ -1176,6 +1195,7 @@ var PracticeConfigKind;
|
|
1176
1195
|
PracticeConfigKind["PracticeFontsLinks"] = "PracticeFontsLinks";
|
1177
1196
|
PracticeConfigKind["PracticeLocaleSwitcher"] = "PracticeLocaleSwitcher";
|
1178
1197
|
PracticeConfigKind["PracticePharmacyPicker"] = "PracticePharmacyPicker";
|
1198
|
+
PracticeConfigKind["PracticePrescriptionFields"] = "PracticePrescriptionFields";
|
1179
1199
|
PracticeConfigKind["PractitionerChatbox"] = "PractitionerChatbox";
|
1180
1200
|
PracticeConfigKind["PractitionerConsultList"] = "PractitionerConsultList";
|
1181
1201
|
})(PracticeConfigKind || (PracticeConfigKind = {}));
|