@rebuy/rebuy 2.5.0 → 2.5.1
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.js +367 -305
- package/dist/index.js.map +4 -4
- package/dist/index.mjs +367 -305
- package/dist/index.mjs.map +4 -4
- package/dist/schema/index.d.ts +1 -0
- package/dist/schema/index.d.ts.map +1 -1
- package/dist/schema/metadata.d.ts +666 -0
- package/dist/schema/metadata.d.ts.map +1 -0
- package/dist/schema/shopConfig.d.ts +1 -1
- package/dist/schema/userConfig.d.ts +1 -1
- package/dist/schema/widgets/checkout-and-beyond/common.d.ts +2 -2
- package/package.json +1 -1
|
@@ -56,7 +56,7 @@ export declare const ShopConfig: z.ZodObject<{
|
|
|
56
56
|
reviewsio: "reviewsio";
|
|
57
57
|
stamped: "stamped";
|
|
58
58
|
yotpo: "yotpo";
|
|
59
|
-
}>, z.ZodBoolean
|
|
59
|
+
}>, z.ZodUnion<readonly [z.ZodBoolean, z.ZodUnknown]>>;
|
|
60
60
|
markets: z.ZodObject<{
|
|
61
61
|
enabled: z.ZodBoolean;
|
|
62
62
|
}, z.core.$strip>;
|
|
@@ -56,7 +56,7 @@ export declare const UserConfig: z.ZodObject<{
|
|
|
56
56
|
reviewsio: "reviewsio";
|
|
57
57
|
stamped: "stamped";
|
|
58
58
|
yotpo: "yotpo";
|
|
59
|
-
}>, z.ZodBoolean
|
|
59
|
+
}>, z.ZodUnion<readonly [z.ZodBoolean, z.ZodUnknown]>>;
|
|
60
60
|
markets: z.ZodObject<{
|
|
61
61
|
enabled: z.ZodBoolean;
|
|
62
62
|
}, z.core.$strip>;
|
|
@@ -242,11 +242,11 @@ declare const sectionType: z.ZodEnum<{
|
|
|
242
242
|
product: "product";
|
|
243
243
|
variants: "variants";
|
|
244
244
|
image: "image";
|
|
245
|
+
products: "products";
|
|
245
246
|
button: "button";
|
|
246
247
|
dataSource: "dataSource";
|
|
247
248
|
layout: "layout";
|
|
248
249
|
offers: "offers";
|
|
249
|
-
products: "products";
|
|
250
250
|
quantity: "quantity";
|
|
251
251
|
reviews: "reviews";
|
|
252
252
|
subscription: "subscription";
|
|
@@ -257,11 +257,11 @@ export declare const SectionType: {
|
|
|
257
257
|
product: "product";
|
|
258
258
|
variants: "variants";
|
|
259
259
|
image: "image";
|
|
260
|
+
products: "products";
|
|
260
261
|
button: "button";
|
|
261
262
|
dataSource: "dataSource";
|
|
262
263
|
layout: "layout";
|
|
263
264
|
offers: "offers";
|
|
264
|
-
products: "products";
|
|
265
265
|
quantity: "quantity";
|
|
266
266
|
reviews: "reviews";
|
|
267
267
|
subscription: "subscription";
|