@rebuy/rebuy 3.18.0 → 3.19.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.cjs +4 -0
- package/dist/index.mjs +4 -0
- package/dist/schema/checkout-and-beyond/index.cjs +4 -0
- package/dist/schema/checkout-and-beyond/index.mjs +4 -0
- package/dist/schema/widget-data.cjs +4 -0
- package/dist/schema/widget-data.mjs +4 -0
- package/dist/schema/widgetData.d.ts +3 -0
- package/dist/schema/widgets/checkout-and-beyond/root.d.ts +2 -0
- package/dist/schema/widgets/checkout-and-beyond/uiLabels.d.ts +4 -0
- package/dist/schema/widgets/contentBlock.d.ts +1 -0
- package/dist/schema/widgets/lineItemEditor.d.ts +1 -0
- package/dist/schema/widgets/rebuyButton.d.ts +1 -0
- package/dist/server/index.cjs +4 -0
- package/dist/server/index.mjs +4 -0
- package/dist/transforms/index.cjs +4 -0
- package/dist/transforms/index.mjs +4 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3077,6 +3077,8 @@ var UI_LABELS = {
|
|
|
3077
3077
|
guest: { en: "guest" },
|
|
3078
3078
|
loadingOptions: { en: "Loading subscription options" },
|
|
3079
3079
|
nextPage: { en: "Next" },
|
|
3080
|
+
/** The paged offers list's region name — what a screen reader hears when a page turns (Allyant #140, REB-23881). */
|
|
3081
|
+
offerCarousel: { en: "Offer Carousel" },
|
|
3080
3082
|
offerDialog: { en: "Offer" },
|
|
3081
3083
|
page: { en: "Page {{page}}" },
|
|
3082
3084
|
previousPage: { en: "Previous" },
|
|
@@ -3092,6 +3094,7 @@ var CABUILabels = import_zod30.z.object({
|
|
|
3092
3094
|
guest: localized(UI_LABELS.guest),
|
|
3093
3095
|
loadingOptions: localized(UI_LABELS.loadingOptions),
|
|
3094
3096
|
nextPage: localized(UI_LABELS.nextPage),
|
|
3097
|
+
offerCarousel: localized(UI_LABELS.offerCarousel),
|
|
3095
3098
|
offerDialog: localized(UI_LABELS.offerDialog),
|
|
3096
3099
|
page: localized(UI_LABELS.page),
|
|
3097
3100
|
previousPage: localized(UI_LABELS.previousPage),
|
|
@@ -3103,6 +3106,7 @@ var CABUILabels = import_zod30.z.object({
|
|
|
3103
3106
|
guest: { ...UI_LABELS.guest },
|
|
3104
3107
|
loadingOptions: { ...UI_LABELS.loadingOptions },
|
|
3105
3108
|
nextPage: { ...UI_LABELS.nextPage },
|
|
3109
|
+
offerCarousel: { ...UI_LABELS.offerCarousel },
|
|
3106
3110
|
offerDialog: { ...UI_LABELS.offerDialog },
|
|
3107
3111
|
page: { ...UI_LABELS.page },
|
|
3108
3112
|
previousPage: { ...UI_LABELS.previousPage },
|
package/dist/index.mjs
CHANGED
|
@@ -2791,6 +2791,8 @@ var UI_LABELS = {
|
|
|
2791
2791
|
guest: { en: "guest" },
|
|
2792
2792
|
loadingOptions: { en: "Loading subscription options" },
|
|
2793
2793
|
nextPage: { en: "Next" },
|
|
2794
|
+
/** The paged offers list's region name — what a screen reader hears when a page turns (Allyant #140, REB-23881). */
|
|
2795
|
+
offerCarousel: { en: "Offer Carousel" },
|
|
2794
2796
|
offerDialog: { en: "Offer" },
|
|
2795
2797
|
page: { en: "Page {{page}}" },
|
|
2796
2798
|
previousPage: { en: "Previous" },
|
|
@@ -2806,6 +2808,7 @@ var CABUILabels = z30.object({
|
|
|
2806
2808
|
guest: localized(UI_LABELS.guest),
|
|
2807
2809
|
loadingOptions: localized(UI_LABELS.loadingOptions),
|
|
2808
2810
|
nextPage: localized(UI_LABELS.nextPage),
|
|
2811
|
+
offerCarousel: localized(UI_LABELS.offerCarousel),
|
|
2809
2812
|
offerDialog: localized(UI_LABELS.offerDialog),
|
|
2810
2813
|
page: localized(UI_LABELS.page),
|
|
2811
2814
|
previousPage: localized(UI_LABELS.previousPage),
|
|
@@ -2817,6 +2820,7 @@ var CABUILabels = z30.object({
|
|
|
2817
2820
|
guest: { ...UI_LABELS.guest },
|
|
2818
2821
|
loadingOptions: { ...UI_LABELS.loadingOptions },
|
|
2819
2822
|
nextPage: { ...UI_LABELS.nextPage },
|
|
2823
|
+
offerCarousel: { ...UI_LABELS.offerCarousel },
|
|
2820
2824
|
offerDialog: { ...UI_LABELS.offerDialog },
|
|
2821
2825
|
page: { ...UI_LABELS.page },
|
|
2822
2826
|
previousPage: { ...UI_LABELS.previousPage },
|
|
@@ -1839,6 +1839,8 @@ var UI_LABELS = {
|
|
|
1839
1839
|
guest: { en: "guest" },
|
|
1840
1840
|
loadingOptions: { en: "Loading subscription options" },
|
|
1841
1841
|
nextPage: { en: "Next" },
|
|
1842
|
+
/** The paged offers list's region name — what a screen reader hears when a page turns (Allyant #140, REB-23881). */
|
|
1843
|
+
offerCarousel: { en: "Offer Carousel" },
|
|
1842
1844
|
offerDialog: { en: "Offer" },
|
|
1843
1845
|
page: { en: "Page {{page}}" },
|
|
1844
1846
|
previousPage: { en: "Previous" },
|
|
@@ -1854,6 +1856,7 @@ var CABUILabels = import_zod21.z.object({
|
|
|
1854
1856
|
guest: localized(UI_LABELS.guest),
|
|
1855
1857
|
loadingOptions: localized(UI_LABELS.loadingOptions),
|
|
1856
1858
|
nextPage: localized(UI_LABELS.nextPage),
|
|
1859
|
+
offerCarousel: localized(UI_LABELS.offerCarousel),
|
|
1857
1860
|
offerDialog: localized(UI_LABELS.offerDialog),
|
|
1858
1861
|
page: localized(UI_LABELS.page),
|
|
1859
1862
|
previousPage: localized(UI_LABELS.previousPage),
|
|
@@ -1865,6 +1868,7 @@ var CABUILabels = import_zod21.z.object({
|
|
|
1865
1868
|
guest: { ...UI_LABELS.guest },
|
|
1866
1869
|
loadingOptions: { ...UI_LABELS.loadingOptions },
|
|
1867
1870
|
nextPage: { ...UI_LABELS.nextPage },
|
|
1871
|
+
offerCarousel: { ...UI_LABELS.offerCarousel },
|
|
1868
1872
|
offerDialog: { ...UI_LABELS.offerDialog },
|
|
1869
1873
|
page: { ...UI_LABELS.page },
|
|
1870
1874
|
previousPage: { ...UI_LABELS.previousPage },
|
|
@@ -1642,6 +1642,8 @@ var UI_LABELS = {
|
|
|
1642
1642
|
guest: { en: "guest" },
|
|
1643
1643
|
loadingOptions: { en: "Loading subscription options" },
|
|
1644
1644
|
nextPage: { en: "Next" },
|
|
1645
|
+
/** The paged offers list's region name — what a screen reader hears when a page turns (Allyant #140, REB-23881). */
|
|
1646
|
+
offerCarousel: { en: "Offer Carousel" },
|
|
1645
1647
|
offerDialog: { en: "Offer" },
|
|
1646
1648
|
page: { en: "Page {{page}}" },
|
|
1647
1649
|
previousPage: { en: "Previous" },
|
|
@@ -1657,6 +1659,7 @@ var CABUILabels = z21.object({
|
|
|
1657
1659
|
guest: localized(UI_LABELS.guest),
|
|
1658
1660
|
loadingOptions: localized(UI_LABELS.loadingOptions),
|
|
1659
1661
|
nextPage: localized(UI_LABELS.nextPage),
|
|
1662
|
+
offerCarousel: localized(UI_LABELS.offerCarousel),
|
|
1660
1663
|
offerDialog: localized(UI_LABELS.offerDialog),
|
|
1661
1664
|
page: localized(UI_LABELS.page),
|
|
1662
1665
|
previousPage: localized(UI_LABELS.previousPage),
|
|
@@ -1668,6 +1671,7 @@ var CABUILabels = z21.object({
|
|
|
1668
1671
|
guest: { ...UI_LABELS.guest },
|
|
1669
1672
|
loadingOptions: { ...UI_LABELS.loadingOptions },
|
|
1670
1673
|
nextPage: { ...UI_LABELS.nextPage },
|
|
1674
|
+
offerCarousel: { ...UI_LABELS.offerCarousel },
|
|
1671
1675
|
offerDialog: { ...UI_LABELS.offerDialog },
|
|
1672
1676
|
page: { ...UI_LABELS.page },
|
|
1673
1677
|
previousPage: { ...UI_LABELS.previousPage },
|
|
@@ -1451,6 +1451,8 @@ var UI_LABELS = {
|
|
|
1451
1451
|
guest: { en: "guest" },
|
|
1452
1452
|
loadingOptions: { en: "Loading subscription options" },
|
|
1453
1453
|
nextPage: { en: "Next" },
|
|
1454
|
+
/** The paged offers list's region name — what a screen reader hears when a page turns (Allyant #140, REB-23881). */
|
|
1455
|
+
offerCarousel: { en: "Offer Carousel" },
|
|
1454
1456
|
offerDialog: { en: "Offer" },
|
|
1455
1457
|
page: { en: "Page {{page}}" },
|
|
1456
1458
|
previousPage: { en: "Previous" },
|
|
@@ -1466,6 +1468,7 @@ var CABUILabels = import_zod23.z.object({
|
|
|
1466
1468
|
guest: localized(UI_LABELS.guest),
|
|
1467
1469
|
loadingOptions: localized(UI_LABELS.loadingOptions),
|
|
1468
1470
|
nextPage: localized(UI_LABELS.nextPage),
|
|
1471
|
+
offerCarousel: localized(UI_LABELS.offerCarousel),
|
|
1469
1472
|
offerDialog: localized(UI_LABELS.offerDialog),
|
|
1470
1473
|
page: localized(UI_LABELS.page),
|
|
1471
1474
|
previousPage: localized(UI_LABELS.previousPage),
|
|
@@ -1477,6 +1480,7 @@ var CABUILabels = import_zod23.z.object({
|
|
|
1477
1480
|
guest: { ...UI_LABELS.guest },
|
|
1478
1481
|
loadingOptions: { ...UI_LABELS.loadingOptions },
|
|
1479
1482
|
nextPage: { ...UI_LABELS.nextPage },
|
|
1483
|
+
offerCarousel: { ...UI_LABELS.offerCarousel },
|
|
1480
1484
|
offerDialog: { ...UI_LABELS.offerDialog },
|
|
1481
1485
|
page: { ...UI_LABELS.page },
|
|
1482
1486
|
previousPage: { ...UI_LABELS.previousPage },
|
|
@@ -1426,6 +1426,8 @@ var UI_LABELS = {
|
|
|
1426
1426
|
guest: { en: "guest" },
|
|
1427
1427
|
loadingOptions: { en: "Loading subscription options" },
|
|
1428
1428
|
nextPage: { en: "Next" },
|
|
1429
|
+
/** The paged offers list's region name — what a screen reader hears when a page turns (Allyant #140, REB-23881). */
|
|
1430
|
+
offerCarousel: { en: "Offer Carousel" },
|
|
1429
1431
|
offerDialog: { en: "Offer" },
|
|
1430
1432
|
page: { en: "Page {{page}}" },
|
|
1431
1433
|
previousPage: { en: "Previous" },
|
|
@@ -1441,6 +1443,7 @@ var CABUILabels = z23.object({
|
|
|
1441
1443
|
guest: localized(UI_LABELS.guest),
|
|
1442
1444
|
loadingOptions: localized(UI_LABELS.loadingOptions),
|
|
1443
1445
|
nextPage: localized(UI_LABELS.nextPage),
|
|
1446
|
+
offerCarousel: localized(UI_LABELS.offerCarousel),
|
|
1444
1447
|
offerDialog: localized(UI_LABELS.offerDialog),
|
|
1445
1448
|
page: localized(UI_LABELS.page),
|
|
1446
1449
|
previousPage: localized(UI_LABELS.previousPage),
|
|
@@ -1452,6 +1455,7 @@ var CABUILabels = z23.object({
|
|
|
1452
1455
|
guest: { ...UI_LABELS.guest },
|
|
1453
1456
|
loadingOptions: { ...UI_LABELS.loadingOptions },
|
|
1454
1457
|
nextPage: { ...UI_LABELS.nextPage },
|
|
1458
|
+
offerCarousel: { ...UI_LABELS.offerCarousel },
|
|
1455
1459
|
offerDialog: { ...UI_LABELS.offerDialog },
|
|
1456
1460
|
page: { ...UI_LABELS.page },
|
|
1457
1461
|
previousPage: { ...UI_LABELS.previousPage },
|
|
@@ -364,6 +364,7 @@ export declare const WidgetData: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
364
364
|
guest: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
365
365
|
loadingOptions: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
366
366
|
nextPage: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
367
|
+
offerCarousel: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
367
368
|
offerDialog: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
368
369
|
page: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
369
370
|
previousPage: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
@@ -715,6 +716,7 @@ export declare const WidgetData: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
715
716
|
guest: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
716
717
|
loadingOptions: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
717
718
|
nextPage: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
719
|
+
offerCarousel: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
718
720
|
offerDialog: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
719
721
|
page: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
720
722
|
previousPage: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
@@ -1043,6 +1045,7 @@ export declare const WidgetData: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1043
1045
|
guest: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
1044
1046
|
loadingOptions: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
1045
1047
|
nextPage: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
1048
|
+
offerCarousel: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
1046
1049
|
offerDialog: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
1047
1050
|
page: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
1048
1051
|
previousPage: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
@@ -13,6 +13,7 @@ export declare const CABUILabels: z.ZodDefault<z.ZodObject<{
|
|
|
13
13
|
guest: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
14
14
|
loadingOptions: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
15
15
|
nextPage: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
16
|
+
offerCarousel: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
16
17
|
offerDialog: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
17
18
|
page: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
18
19
|
previousPage: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
@@ -406,6 +407,7 @@ export declare const CABRootSection: z.ZodObject<{
|
|
|
406
407
|
guest: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
407
408
|
loadingOptions: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
408
409
|
nextPage: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
410
|
+
offerCarousel: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
409
411
|
offerDialog: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
410
412
|
page: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
411
413
|
previousPage: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
@@ -23,6 +23,10 @@ export declare const UI_LABELS: {
|
|
|
23
23
|
nextPage: {
|
|
24
24
|
en: string;
|
|
25
25
|
};
|
|
26
|
+
/** The paged offers list's region name — what a screen reader hears when a page turns (Allyant #140, REB-23881). */
|
|
27
|
+
offerCarousel: {
|
|
28
|
+
en: string;
|
|
29
|
+
};
|
|
26
30
|
offerDialog: {
|
|
27
31
|
en: string;
|
|
28
32
|
};
|
|
@@ -407,6 +407,7 @@ export declare const ContentBlock: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
407
407
|
guest: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
408
408
|
loadingOptions: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
409
409
|
nextPage: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
410
|
+
offerCarousel: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
410
411
|
offerDialog: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
411
412
|
page: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
412
413
|
previousPage: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
@@ -372,6 +372,7 @@ export declare const LineItemEditor: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
372
372
|
guest: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
373
373
|
loadingOptions: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
374
374
|
nextPage: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
375
|
+
offerCarousel: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
375
376
|
offerDialog: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
376
377
|
page: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
377
378
|
previousPage: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
@@ -319,6 +319,7 @@ export declare const RebuyButton: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
319
319
|
guest: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
320
320
|
loadingOptions: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
321
321
|
nextPage: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
322
|
+
offerCarousel: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
322
323
|
offerDialog: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
323
324
|
page: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
|
324
325
|
previousPage: z.ZodPipe<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodTransform<Record<string, string>, Record<string, string>>>;
|
package/dist/server/index.cjs
CHANGED
|
@@ -2221,6 +2221,8 @@ var UI_LABELS = {
|
|
|
2221
2221
|
guest: { en: "guest" },
|
|
2222
2222
|
loadingOptions: { en: "Loading subscription options" },
|
|
2223
2223
|
nextPage: { en: "Next" },
|
|
2224
|
+
/** The paged offers list's region name — what a screen reader hears when a page turns (Allyant #140, REB-23881). */
|
|
2225
|
+
offerCarousel: { en: "Offer Carousel" },
|
|
2224
2226
|
offerDialog: { en: "Offer" },
|
|
2225
2227
|
page: { en: "Page {{page}}" },
|
|
2226
2228
|
previousPage: { en: "Previous" },
|
|
@@ -2236,6 +2238,7 @@ var CABUILabels = import_zod27.z.object({
|
|
|
2236
2238
|
guest: localized(UI_LABELS.guest),
|
|
2237
2239
|
loadingOptions: localized(UI_LABELS.loadingOptions),
|
|
2238
2240
|
nextPage: localized(UI_LABELS.nextPage),
|
|
2241
|
+
offerCarousel: localized(UI_LABELS.offerCarousel),
|
|
2239
2242
|
offerDialog: localized(UI_LABELS.offerDialog),
|
|
2240
2243
|
page: localized(UI_LABELS.page),
|
|
2241
2244
|
previousPage: localized(UI_LABELS.previousPage),
|
|
@@ -2247,6 +2250,7 @@ var CABUILabels = import_zod27.z.object({
|
|
|
2247
2250
|
guest: { ...UI_LABELS.guest },
|
|
2248
2251
|
loadingOptions: { ...UI_LABELS.loadingOptions },
|
|
2249
2252
|
nextPage: { ...UI_LABELS.nextPage },
|
|
2253
|
+
offerCarousel: { ...UI_LABELS.offerCarousel },
|
|
2250
2254
|
offerDialog: { ...UI_LABELS.offerDialog },
|
|
2251
2255
|
page: { ...UI_LABELS.page },
|
|
2252
2256
|
previousPage: { ...UI_LABELS.previousPage },
|
package/dist/server/index.mjs
CHANGED
|
@@ -2170,6 +2170,8 @@ var UI_LABELS = {
|
|
|
2170
2170
|
guest: { en: "guest" },
|
|
2171
2171
|
loadingOptions: { en: "Loading subscription options" },
|
|
2172
2172
|
nextPage: { en: "Next" },
|
|
2173
|
+
/** The paged offers list's region name — what a screen reader hears when a page turns (Allyant #140, REB-23881). */
|
|
2174
|
+
offerCarousel: { en: "Offer Carousel" },
|
|
2173
2175
|
offerDialog: { en: "Offer" },
|
|
2174
2176
|
page: { en: "Page {{page}}" },
|
|
2175
2177
|
previousPage: { en: "Previous" },
|
|
@@ -2185,6 +2187,7 @@ var CABUILabels = z27.object({
|
|
|
2185
2187
|
guest: localized(UI_LABELS.guest),
|
|
2186
2188
|
loadingOptions: localized(UI_LABELS.loadingOptions),
|
|
2187
2189
|
nextPage: localized(UI_LABELS.nextPage),
|
|
2190
|
+
offerCarousel: localized(UI_LABELS.offerCarousel),
|
|
2188
2191
|
offerDialog: localized(UI_LABELS.offerDialog),
|
|
2189
2192
|
page: localized(UI_LABELS.page),
|
|
2190
2193
|
previousPage: localized(UI_LABELS.previousPage),
|
|
@@ -2196,6 +2199,7 @@ var CABUILabels = z27.object({
|
|
|
2196
2199
|
guest: { ...UI_LABELS.guest },
|
|
2197
2200
|
loadingOptions: { ...UI_LABELS.loadingOptions },
|
|
2198
2201
|
nextPage: { ...UI_LABELS.nextPage },
|
|
2202
|
+
offerCarousel: { ...UI_LABELS.offerCarousel },
|
|
2199
2203
|
offerDialog: { ...UI_LABELS.offerDialog },
|
|
2200
2204
|
page: { ...UI_LABELS.page },
|
|
2201
2205
|
previousPage: { ...UI_LABELS.previousPage },
|
|
@@ -1624,6 +1624,8 @@ var UI_LABELS = {
|
|
|
1624
1624
|
guest: { en: "guest" },
|
|
1625
1625
|
loadingOptions: { en: "Loading subscription options" },
|
|
1626
1626
|
nextPage: { en: "Next" },
|
|
1627
|
+
/** The paged offers list's region name — what a screen reader hears when a page turns (Allyant #140, REB-23881). */
|
|
1628
|
+
offerCarousel: { en: "Offer Carousel" },
|
|
1627
1629
|
offerDialog: { en: "Offer" },
|
|
1628
1630
|
page: { en: "Page {{page}}" },
|
|
1629
1631
|
previousPage: { en: "Previous" },
|
|
@@ -1639,6 +1641,7 @@ var CABUILabels = import_zod21.z.object({
|
|
|
1639
1641
|
guest: localized(UI_LABELS.guest),
|
|
1640
1642
|
loadingOptions: localized(UI_LABELS.loadingOptions),
|
|
1641
1643
|
nextPage: localized(UI_LABELS.nextPage),
|
|
1644
|
+
offerCarousel: localized(UI_LABELS.offerCarousel),
|
|
1642
1645
|
offerDialog: localized(UI_LABELS.offerDialog),
|
|
1643
1646
|
page: localized(UI_LABELS.page),
|
|
1644
1647
|
previousPage: localized(UI_LABELS.previousPage),
|
|
@@ -1650,6 +1653,7 @@ var CABUILabels = import_zod21.z.object({
|
|
|
1650
1653
|
guest: { ...UI_LABELS.guest },
|
|
1651
1654
|
loadingOptions: { ...UI_LABELS.loadingOptions },
|
|
1652
1655
|
nextPage: { ...UI_LABELS.nextPage },
|
|
1656
|
+
offerCarousel: { ...UI_LABELS.offerCarousel },
|
|
1653
1657
|
offerDialog: { ...UI_LABELS.offerDialog },
|
|
1654
1658
|
page: { ...UI_LABELS.page },
|
|
1655
1659
|
previousPage: { ...UI_LABELS.previousPage },
|
|
@@ -1565,6 +1565,8 @@ var UI_LABELS = {
|
|
|
1565
1565
|
guest: { en: "guest" },
|
|
1566
1566
|
loadingOptions: { en: "Loading subscription options" },
|
|
1567
1567
|
nextPage: { en: "Next" },
|
|
1568
|
+
/** The paged offers list's region name — what a screen reader hears when a page turns (Allyant #140, REB-23881). */
|
|
1569
|
+
offerCarousel: { en: "Offer Carousel" },
|
|
1568
1570
|
offerDialog: { en: "Offer" },
|
|
1569
1571
|
page: { en: "Page {{page}}" },
|
|
1570
1572
|
previousPage: { en: "Previous" },
|
|
@@ -1580,6 +1582,7 @@ var CABUILabels = z21.object({
|
|
|
1580
1582
|
guest: localized(UI_LABELS.guest),
|
|
1581
1583
|
loadingOptions: localized(UI_LABELS.loadingOptions),
|
|
1582
1584
|
nextPage: localized(UI_LABELS.nextPage),
|
|
1585
|
+
offerCarousel: localized(UI_LABELS.offerCarousel),
|
|
1583
1586
|
offerDialog: localized(UI_LABELS.offerDialog),
|
|
1584
1587
|
page: localized(UI_LABELS.page),
|
|
1585
1588
|
previousPage: localized(UI_LABELS.previousPage),
|
|
@@ -1591,6 +1594,7 @@ var CABUILabels = z21.object({
|
|
|
1591
1594
|
guest: { ...UI_LABELS.guest },
|
|
1592
1595
|
loadingOptions: { ...UI_LABELS.loadingOptions },
|
|
1593
1596
|
nextPage: { ...UI_LABELS.nextPage },
|
|
1597
|
+
offerCarousel: { ...UI_LABELS.offerCarousel },
|
|
1594
1598
|
offerDialog: { ...UI_LABELS.offerDialog },
|
|
1595
1599
|
page: { ...UI_LABELS.page },
|
|
1596
1600
|
previousPage: { ...UI_LABELS.previousPage },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rebuy/rebuy",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.19.0",
|
|
4
4
|
"description": "Shared zod schemas, legacy-to-CAB widget transforms, and server orchestrators for Rebuy's Shopify consumers (rebuy-api, admin-nextjs, rebuy-shopify-extensions)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Rebuy, Inc.",
|