@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.mjs
CHANGED
|
@@ -2184,6 +2184,7 @@ var PostPurchaseSettings = z36.object({
|
|
|
2184
2184
|
reviewsSingular: z36.string().optional().default("Review"),
|
|
2185
2185
|
save: z36.union([z36.string(), z36.unknown().transform(() => "Save")]).optional().default("Save"),
|
|
2186
2186
|
shipping: z36.string().default("Shipping"),
|
|
2187
|
+
subscriptionOption: z36.string().optional().default("Subscribe and Save"),
|
|
2187
2188
|
subtotal: z36.string().default("Subtotal"),
|
|
2188
2189
|
taxes: z36.string().default("Taxes"),
|
|
2189
2190
|
total: z36.string().default("Total")
|
|
@@ -2202,6 +2203,7 @@ var PostPurchaseSettings = z36.object({
|
|
|
2202
2203
|
reviewsSingular: "Review",
|
|
2203
2204
|
save: "Save",
|
|
2204
2205
|
shipping: "Shipping",
|
|
2206
|
+
subscriptionOption: "Subscribe and Save",
|
|
2205
2207
|
subtotal: "Subtotal",
|
|
2206
2208
|
taxes: "Taxes",
|
|
2207
2209
|
total: "Total"
|