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.
@@ -456,7 +456,7 @@ export interface ConsultRequestMetadata {
|
|
456
456
|
}
|
457
457
|
/**
|
458
458
|
* This interface is used as metadata when creating Stripe Invoice.
|
459
|
-
* It will be used to
|
459
|
+
* It will be used to refill a treatment plan of a consult.
|
460
460
|
*/
|
461
461
|
export interface RefillTreatmentRequestMetadata {
|
462
462
|
/**
|
@@ -467,10 +467,14 @@ export interface RefillTreatmentRequestMetadata {
|
|
467
467
|
* The consult uuid to refill
|
468
468
|
*/
|
469
469
|
consultUuid: string;
|
470
|
+
/**
|
471
|
+
* The treatment plan uuid to refill
|
472
|
+
*/
|
473
|
+
uuidTreatmentPlan: string;
|
470
474
|
}
|
471
475
|
/**
|
472
476
|
* This interface is used as metadata when creating Stripe Invoice.
|
473
|
-
* It will be used when stripe
|
477
|
+
* It will be used when stripe uses our hook.
|
474
478
|
*/
|
475
479
|
export declare type PaymentIntentRequestMetadata = ConsultRequestMetadata | RefillTreatmentRequestMetadata;
|
476
480
|
export interface AssignmentRequest {
|