oro-sdk-apis 1.54.0-dev1 → 1.54.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/package.json
CHANGED
package/src/models/practice.ts
CHANGED
@@ -556,7 +556,7 @@ export interface ConsultRequestMetadata {
|
|
556
556
|
|
557
557
|
/**
|
558
558
|
* This interface is used as metadata when creating Stripe Invoice.
|
559
|
-
* It will be used to
|
559
|
+
* It will be used to refill a treatment plan of a consult.
|
560
560
|
*/
|
561
561
|
export interface RefillTreatmentRequestMetadata {
|
562
562
|
/**
|
@@ -567,11 +567,15 @@ export interface RefillTreatmentRequestMetadata {
|
|
567
567
|
* The consult uuid to refill
|
568
568
|
*/
|
569
569
|
consultUuid: string
|
570
|
+
/**
|
571
|
+
* The treatment plan uuid to refill
|
572
|
+
*/
|
573
|
+
uuidTreatmentPlan: string
|
570
574
|
}
|
571
575
|
|
572
576
|
/**
|
573
577
|
* This interface is used as metadata when creating Stripe Invoice.
|
574
|
-
* It will be used when stripe
|
578
|
+
* It will be used when stripe uses our hook.
|
575
579
|
*/
|
576
580
|
export type PaymentIntentRequestMetadata = ConsultRequestMetadata | RefillTreatmentRequestMetadata
|
577
581
|
|