@moonbase.sh/storefront-api 0.3.18 → 0.3.19

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/dist/index.cjs CHANGED
@@ -95,14 +95,16 @@ var percentageOffDiscountSchema = import_zod.z.object({
95
95
  description: import_zod.z.string().optional(),
96
96
  percentage: import_zod.z.number(),
97
97
  total: priceCollectionSchema.optional(),
98
- isExclusive: import_zod.z.boolean()
98
+ isExclusive: import_zod.z.boolean(),
99
+ recurringPaymentUseCount: import_zod.z.number().optional()
99
100
  });
100
101
  var flatAmountOffDiscountSchema = import_zod.z.object({
101
102
  type: import_zod.z.literal("FlatAmountOffDiscount"),
102
103
  name: import_zod.z.string(),
103
104
  description: import_zod.z.string().optional(),
104
105
  total: priceCollectionSchema.optional(),
105
- isExclusive: import_zod.z.boolean()
106
+ isExclusive: import_zod.z.boolean(),
107
+ recurringPaymentUseCount: import_zod.z.number().optional()
106
108
  });
107
109
  var moneySchema = import_zod.z.object({
108
110
  currency: import_zod.z.string(),