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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.2.1",
2
+ "version": "3.2.2",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -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