@redotech/redo-api-schema 2.2.90 → 2.2.92

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/lib/openapi.d.ts CHANGED
@@ -694,10 +694,10 @@ export interface components {
694
694
  */
695
695
  lineItems: {
696
696
  coupons?: {
697
- code?: string;
697
+ code: string;
698
698
  /** @description The amount this coupon discounts in dollars for this line item. */
699
- discountAmount?: components["schemas"]["money.schema"];
700
- id?: string;
699
+ discountAmount: components["schemas"]["money.schema"];
700
+ id: string;
701
701
  }[];
702
702
  /**
703
703
  * ID
package/lib/openapi.yaml CHANGED
@@ -724,6 +724,10 @@ components:
724
724
  description: The amount this coupon discounts in dollars for this line item.
725
725
  id:
726
726
  type: string
727
+ required:
728
+ - id
729
+ - code
730
+ - discountAmount
727
731
  type: object
728
732
  type: array
729
733
  id:
package/package.json CHANGED
@@ -31,5 +31,5 @@
31
31
  ]
32
32
  }
33
33
  },
34
- "version": "2.2.90"
34
+ "version": "2.2.92"
35
35
  }