oro-sdk-apis 3.2.1 → 3.2.2
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 +7 -3
- package/dist/oro-sdk-apis.cjs.development.js +5 -2
- 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 +8 -3
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/models/consult.ts +7 -2
package/package.json
CHANGED
package/src/models/consult.ts
CHANGED
@@ -55,6 +55,11 @@ export interface ConsultTransmission {
|
|
55
55
|
keyWebhookSecret: string
|
56
56
|
}
|
57
57
|
|
58
|
+
export enum ConsultType {
|
59
|
+
Onboard = 'Onboard',
|
60
|
+
Refill = 'Refill',
|
61
|
+
}
|
62
|
+
|
58
63
|
export enum FeeStatus {
|
59
64
|
NoFee = 'NoFee',
|
60
65
|
Pending = 'Pending',
|
@@ -73,8 +78,6 @@ export enum MedicalStatus {
|
|
73
78
|
Reopened = 'Reopened',
|
74
79
|
Archived = 'Archived',
|
75
80
|
Failed = 'Failed',
|
76
|
-
ToRefill = 'ToRefill',
|
77
|
-
Refilled = 'Refilled',
|
78
81
|
}
|
79
82
|
|
80
83
|
export enum TaskStatus {
|
@@ -140,6 +143,7 @@ export interface ConsultClosedReason {
|
|
140
143
|
|
141
144
|
export interface ConsultRequest {
|
142
145
|
uuidPractice: string
|
146
|
+
consultType?: ConsultType
|
143
147
|
tagSpecialtyRequired: string
|
144
148
|
idStripeInvoiceOrPaymentIntent: string
|
145
149
|
isoLocalityRequired?: string
|
@@ -156,6 +160,7 @@ export interface Consult {
|
|
156
160
|
statusFee?: FeeStatus
|
157
161
|
isoLocalityRequired: string
|
158
162
|
statusMedical?: MedicalStatus
|
163
|
+
consultType: ConsultType
|
159
164
|
uuidAssignedDoctor: string
|
160
165
|
uuidCurrentAssigned: string
|
161
166
|
uuidParent?: string
|