oro-sdk-apis 1.5.0 → 1.6.0
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/diagnosis.d.ts +1 -0
- package/dist/models/practice.d.ts +7 -0
- package/dist/models/workflow.d.ts +5 -1
- package/dist/oro-sdk-apis.cjs.development.js +10 -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 +10 -0
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/dist/services/practice.d.ts +7 -1
- package/package.json +1 -1
- package/src/models/diagnosis.ts +1 -0
- package/src/models/practice.ts +9 -4
- package/src/models/workflow.ts +11 -18
- package/src/services/practice.ts +15 -0
- package/LICENSE +0 -21
package/dist/oro-sdk-apis.esm.js
CHANGED
|
@@ -2459,6 +2459,16 @@ var PracticeService = /*#__PURE__*/function () {
|
|
|
2459
2459
|
promotionCode: promotionCode
|
|
2460
2460
|
}
|
|
2461
2461
|
});
|
|
2462
|
+
}
|
|
2463
|
+
/**
|
|
2464
|
+
* Invoice
|
|
2465
|
+
* @param practiceUuid UUID of the practice to get the invoice from
|
|
2466
|
+
* @param invoiceId ID of the invoice in stripe
|
|
2467
|
+
*/
|
|
2468
|
+
;
|
|
2469
|
+
|
|
2470
|
+
_proto.getInvoice = function getInvoice(practiceUuid, invoiceId) {
|
|
2471
|
+
return this.api.get(this.baseURL + "/v1/practices/" + practiceUuid + "/payments/invoices/" + invoiceId);
|
|
2462
2472
|
} // Practitioner
|
|
2463
2473
|
;
|
|
2464
2474
|
|