@rebuy/rebuy 2.23.0 → 2.24.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/dist/index.js +2 -0
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +2 -2
- package/dist/schema/widgets/post-purchase-offer/postPurchaseOffer.d.ts +1 -0
- package/dist/schema/widgets/post-purchase-offer/postPurchaseOffer.d.ts.map +1 -1
- package/dist/schema/widgets/post-purchase-offer/postPurchaseSettings.d.ts +1 -0
- package/dist/schema/widgets/post-purchase-offer/postPurchaseSettings.d.ts.map +1 -1
- package/dist/schema/widgets/post-purchase-offer/postPurchaseWidget.d.ts +1 -0
- package/dist/schema/widgets/post-purchase-offer/postPurchaseWidget.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2406,6 +2406,7 @@ var PostPurchaseSettings = import_v436.z.object({
|
|
|
2406
2406
|
reviewsSingular: import_v436.z.string().optional().default("Review"),
|
|
2407
2407
|
save: import_v436.z.union([import_v436.z.string(), import_v436.z.unknown().transform(() => "Save")]).optional().default("Save"),
|
|
2408
2408
|
shipping: import_v436.z.string().default("Shipping"),
|
|
2409
|
+
subscriptionOption: import_v436.z.string().optional().default("Subscribe and Save"),
|
|
2409
2410
|
subtotal: import_v436.z.string().default("Subtotal"),
|
|
2410
2411
|
taxes: import_v436.z.string().default("Taxes"),
|
|
2411
2412
|
total: import_v436.z.string().default("Total")
|
|
@@ -2424,6 +2425,7 @@ var PostPurchaseSettings = import_v436.z.object({
|
|
|
2424
2425
|
reviewsSingular: "Review",
|
|
2425
2426
|
save: "Save",
|
|
2426
2427
|
shipping: "Shipping",
|
|
2428
|
+
subscriptionOption: "Subscribe and Save",
|
|
2427
2429
|
subtotal: "Subtotal",
|
|
2428
2430
|
taxes: "Taxes",
|
|
2429
2431
|
total: "Total"
|