@moonbase.sh/storefront-api 0.1.81 → 0.1.83

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
@@ -345,6 +345,8 @@ var storefrontProductSchema = import_zod6.z.object({
345
345
  tagline: import_zod6.z.string(),
346
346
  iconUrl: import_zod6.z.string().nullable(),
347
347
  owned: import_zod6.z.boolean(),
348
+ currentVersion: import_zod6.z.string().optional(),
349
+ downloads: downloadSchema.array().optional(),
348
350
  defaultVariation: pricingVariationSchema.optional(),
349
351
  variations: pricingVariationSchema.array().optional(),
350
352
  type: import_zod6.z.void().transform(() => "product").pipe(import_zod6.z.literal("product"))