oro-sdk-apis 5.15.1-dev1 → 5.15.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/practice.d.ts +4 -0
- package/dist/oro-sdk-apis.cjs.development.js +1 -3
- 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 +1 -3
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/models/practice.ts +5 -0
- package/src/services/consult.ts +1 -5
package/package.json
CHANGED
package/src/models/practice.ts
CHANGED
@@ -452,6 +452,11 @@ export type PracticeConfigPracticeInfoLetterDiscount = PracticeConfig<
|
|
452
452
|
*/
|
453
453
|
discountCode?: string
|
454
454
|
|
455
|
+
/**
|
456
|
+
* The text to display for the discount code
|
457
|
+
*/
|
458
|
+
discountText?: string
|
459
|
+
|
455
460
|
/**
|
456
461
|
* Show the info letter subscription without a Discount code before the patient confirms his email,
|
457
462
|
* if he confirms his email but still didn't check the subscription, then display a discount code for subscribing
|
package/src/services/consult.ts
CHANGED
@@ -215,13 +215,9 @@ export class ConsultService {
|
|
215
215
|
data.append('txtTransmissionNotes', txtTransmissionNotes)
|
216
216
|
}
|
217
217
|
|
218
|
-
|
218
|
+
return this.api.post<ConsultTransmission>(`${this.baseURL}/v1/consults/${uuidConsult}/transmissions`, data, {
|
219
219
|
headers: { 'Content-Type': 'multipart/form-data;' },
|
220
220
|
})
|
221
|
-
|
222
|
-
console.log(res)
|
223
|
-
|
224
|
-
return res
|
225
221
|
}
|
226
222
|
|
227
223
|
public postConsultFax(
|