oro-sdk-apis 1.54.0-dev1 → 1.54.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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 create the consult when stripe use our hook.
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 use our hook.
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 {