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
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.54.0-dev1",
2
+ "version": "1.54.0",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -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 create the consult when stripe use our hook.
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 use our hook.
578
+ * It will be used when stripe uses our hook.
575
579
  */
576
580
  export type PaymentIntentRequestMetadata = ConsultRequestMetadata | RefillTreatmentRequestMetadata
577
581