@thryveai/theme-interfaces 2.7.155-1.zod → 2.7.155-3.zod

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.
@@ -1540,7 +1540,7 @@ export declare const iCoreRetailerSettingsSchema: z.ZodObject<{
1540
1540
  numericPhonePayload: z.ZodBoolean;
1541
1541
  houseAccountRegExValidation: z.ZodString;
1542
1542
  minimumCreditCardAmount: z.ZodNumber;
1543
- paymentCards: z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"AmExpCard">, z.ZodLiteral<"ApplePay">, z.ZodLiteral<"DiscoverCard">, z.ZodLiteral<"EBT">, z.ZodLiteral<"PayPal">, z.ZodLiteral<"GooglePay">, z.ZodLiteral<"MasterCard">, z.ZodLiteral<"MasterCardDebit">, z.ZodLiteral<"VisaCard">, z.ZodLiteral<"Paze">]>, z.ZodBoolean>;
1543
+ paymentCards: z.ZodRecord<z.ZodEnum<["AmExpCard", "ApplePay", "DiscoverCard", "EBT", "PayPal", "GooglePay", "MasterCard", "MasterCardDebit", "VisaCard", "Paze"]>, z.ZodBoolean>;
1544
1544
  checkoutValidation: z.ZodObject<{
1545
1545
  instructions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1546
1546
  _type: z.ZodLiteral<"overYears">;
@@ -1876,22 +1876,18 @@ export declare const iCoreRetailerSettingsSchema: z.ZodObject<{
1876
1876
  allowPastPurchases: z.ZodBoolean;
1877
1877
  advertSettings: z.ZodObject<{
1878
1878
  page_homepage: z.ZodOptional<z.ZodObject<{
1879
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
1879
+ leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
1880
1880
  }, "strip", z.ZodTypeAny, {
1881
1881
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1882
1882
  }, {
1883
1883
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1884
1884
  }>>;
1885
- page_search: z.ZodOptional<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1886
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
1887
- }, "strip", z.ZodTypeAny, {
1888
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1885
+ page_search: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1886
+ leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
1889
1887
  }, {
1890
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1891
- }>, z.ZodObject<{
1892
1888
  productGrid: z.ZodOptional<z.ZodObject<{
1893
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
1894
- productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
1889
+ leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
1890
+ productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
1895
1891
  }, "strip", z.ZodTypeAny, {
1896
1892
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1897
1893
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
@@ -1899,46 +1895,40 @@ export declare const iCoreRetailerSettingsSchema: z.ZodObject<{
1899
1895
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1900
1896
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1901
1897
  }>>;
1902
- }, "strip", z.ZodTypeAny, {
1898
+ }>, {
1899
+ skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
1900
+ }>, "strip", z.ZodTypeAny, {
1901
+ leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1903
1902
  productGrid?: {
1904
1903
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1905
1904
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1906
1905
  };
1906
+ skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
1907
1907
  }, {
1908
+ leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1908
1909
  productGrid?: {
1909
1910
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1910
1911
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1911
1912
  };
1912
- }>>, z.ZodObject<{
1913
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>;
1914
- }, "strip", z.ZodTypeAny, {
1915
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
1916
- }, {
1917
1913
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
1918
- }>>>;
1919
- page_cart: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
1920
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
1921
- }, "strip", z.ZodTypeAny, {
1922
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1914
+ }>>;
1915
+ page_cart: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
1916
+ leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
1923
1917
  }, {
1918
+ skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
1919
+ }>, "strip", z.ZodTypeAny, {
1924
1920
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1925
- }>, z.ZodObject<{
1926
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>;
1927
- }, "strip", z.ZodTypeAny, {
1928
1921
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
1929
1922
  }, {
1930
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
1931
- }>>>;
1932
- "page_product-categories": z.ZodOptional<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1933
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
1934
- }, "strip", z.ZodTypeAny, {
1935
1923
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1924
+ skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
1925
+ }>>;
1926
+ "page_product-categories": z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1927
+ leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
1936
1928
  }, {
1937
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1938
- }>, z.ZodObject<{
1939
1929
  productGrid: z.ZodOptional<z.ZodObject<{
1940
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
1941
- productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
1930
+ leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
1931
+ productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
1942
1932
  }, "strip", z.ZodTypeAny, {
1943
1933
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1944
1934
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
@@ -1946,33 +1936,29 @@ export declare const iCoreRetailerSettingsSchema: z.ZodObject<{
1946
1936
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1947
1937
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1948
1938
  }>>;
1949
- }, "strip", z.ZodTypeAny, {
1939
+ }>, {
1940
+ skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
1941
+ }>, "strip", z.ZodTypeAny, {
1942
+ leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1950
1943
  productGrid?: {
1951
1944
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1952
1945
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1953
1946
  };
1947
+ skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
1954
1948
  }, {
1949
+ leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1955
1950
  productGrid?: {
1956
1951
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1957
1952
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1958
1953
  };
1959
- }>>, z.ZodObject<{
1960
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>;
1961
- }, "strip", z.ZodTypeAny, {
1962
1954
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
1955
+ }>>;
1956
+ "page_product-listing": z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1957
+ leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
1963
1958
  }, {
1964
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
1965
- }>>>;
1966
- "page_product-listing": z.ZodOptional<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1967
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
1968
- }, "strip", z.ZodTypeAny, {
1969
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1970
- }, {
1971
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1972
- }>, z.ZodObject<{
1973
1959
  productGrid: z.ZodOptional<z.ZodObject<{
1974
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
1975
- productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
1960
+ leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
1961
+ productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
1976
1962
  }, "strip", z.ZodTypeAny, {
1977
1963
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1978
1964
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
@@ -1980,60 +1966,53 @@ export declare const iCoreRetailerSettingsSchema: z.ZodObject<{
1980
1966
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1981
1967
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1982
1968
  }>>;
1983
- }, "strip", z.ZodTypeAny, {
1969
+ }>, {
1970
+ skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
1971
+ }>, "strip", z.ZodTypeAny, {
1972
+ leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1984
1973
  productGrid?: {
1985
1974
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1986
1975
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1987
1976
  };
1977
+ skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
1988
1978
  }, {
1979
+ leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1989
1980
  productGrid?: {
1990
1981
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1991
1982
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
1992
1983
  };
1993
- }>>, z.ZodObject<{
1994
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>;
1995
- }, "strip", z.ZodTypeAny, {
1996
1984
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
1997
- }, {
1998
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
1999
- }>>>;
1985
+ }>>;
2000
1986
  }, "strip", z.ZodTypeAny, {
2001
1987
  page_homepage?: {
2002
1988
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2003
1989
  };
2004
1990
  page_search?: {
2005
1991
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2006
- } & {
2007
1992
  productGrid?: {
2008
1993
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2009
1994
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2010
1995
  };
2011
- } & {
2012
1996
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
2013
1997
  };
2014
1998
  page_cart?: {
2015
1999
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2016
- } & {
2017
2000
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
2018
2001
  };
2019
2002
  "page_product-categories"?: {
2020
2003
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2021
- } & {
2022
2004
  productGrid?: {
2023
2005
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2024
2006
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2025
2007
  };
2026
- } & {
2027
2008
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
2028
2009
  };
2029
2010
  "page_product-listing"?: {
2030
2011
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2031
- } & {
2032
2012
  productGrid?: {
2033
2013
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2034
2014
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2035
2015
  };
2036
- } & {
2037
2016
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
2038
2017
  };
2039
2018
  }, {
@@ -2042,37 +2021,30 @@ export declare const iCoreRetailerSettingsSchema: z.ZodObject<{
2042
2021
  };
2043
2022
  page_search?: {
2044
2023
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2045
- } & {
2046
2024
  productGrid?: {
2047
2025
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2048
2026
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2049
2027
  };
2050
- } & {
2051
2028
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
2052
2029
  };
2053
2030
  page_cart?: {
2054
2031
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2055
- } & {
2056
2032
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
2057
2033
  };
2058
2034
  "page_product-categories"?: {
2059
2035
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2060
- } & {
2061
2036
  productGrid?: {
2062
2037
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2063
2038
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2064
2039
  };
2065
- } & {
2066
2040
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
2067
2041
  };
2068
2042
  "page_product-listing"?: {
2069
2043
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2070
- } & {
2071
2044
  productGrid?: {
2072
2045
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2073
2046
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2074
2047
  };
2075
- } & {
2076
2048
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
2077
2049
  };
2078
2050
  }>;
@@ -2370,37 +2342,30 @@ export declare const iCoreRetailerSettingsSchema: z.ZodObject<{
2370
2342
  };
2371
2343
  page_search?: {
2372
2344
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2373
- } & {
2374
2345
  productGrid?: {
2375
2346
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2376
2347
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2377
2348
  };
2378
- } & {
2379
2349
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
2380
2350
  };
2381
2351
  page_cart?: {
2382
2352
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2383
- } & {
2384
2353
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
2385
2354
  };
2386
2355
  "page_product-categories"?: {
2387
2356
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2388
- } & {
2389
2357
  productGrid?: {
2390
2358
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2391
2359
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2392
2360
  };
2393
- } & {
2394
2361
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
2395
2362
  };
2396
2363
  "page_product-listing"?: {
2397
2364
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2398
- } & {
2399
2365
  productGrid?: {
2400
2366
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2401
2367
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2402
2368
  };
2403
- } & {
2404
2369
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
2405
2370
  };
2406
2371
  };
@@ -2540,37 +2505,30 @@ export declare const iCoreRetailerSettingsSchema: z.ZodObject<{
2540
2505
  };
2541
2506
  page_search?: {
2542
2507
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2543
- } & {
2544
2508
  productGrid?: {
2545
2509
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2546
2510
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2547
2511
  };
2548
- } & {
2549
2512
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
2550
2513
  };
2551
2514
  page_cart?: {
2552
2515
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2553
- } & {
2554
2516
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
2555
2517
  };
2556
2518
  "page_product-categories"?: {
2557
2519
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2558
- } & {
2559
2520
  productGrid?: {
2560
2521
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2561
2522
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2562
2523
  };
2563
- } & {
2564
2524
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
2565
2525
  };
2566
2526
  "page_product-listing"?: {
2567
2527
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2568
- } & {
2569
2528
  productGrid?: {
2570
2529
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2571
2530
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
2572
2531
  };
2573
- } & {
2574
2532
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
2575
2533
  };
2576
2534
  };
@@ -2822,8 +2780,8 @@ export declare const iCoreRetailerSettingsSchema: z.ZodObject<{
2822
2780
  limitProductCardTitleHeight: z.ZodBoolean;
2823
2781
  productCardTitleHeight: z.ZodNumber;
2824
2782
  productCards: z.ZodObject<{
2825
- gridRowLength: z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodNumber>;
2826
- carouselsRowLength: z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodNumber>;
2783
+ gridRowLength: z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodNumber>;
2784
+ carouselsRowLength: z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodNumber>;
2827
2785
  productCard: z.ZodObject<{
2828
2786
  enabled: z.ZodBoolean;
2829
2787
  layouts: z.ZodObject<{
@@ -3142,7 +3100,7 @@ export declare const iCoreRetailerSettingsSchema: z.ZodObject<{
3142
3100
  anonymousCart: z.ZodBoolean;
3143
3101
  ctaButtons: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
3144
3102
  iconAlignment: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"right">]>>;
3145
- iconName: z.ZodUnion<[z.ZodLiteral<"AccountOutline">, z.ZodLiteral<"AccountSolid">, z.ZodLiteral<"Addresses">, z.ZodLiteral<"ApplePay">, z.ZodLiteral<"ArrowDown">, z.ZodLiteral<"ArrowUp">, z.ZodLiteral<"ArrowRight">, z.ZodLiteral<"ArrowUpdown">, z.ZodLiteral<"BarScan">, z.ZodLiteral<"Bell">, z.ZodLiteral<"Blog">, z.ZodLiteral<"Cart">, z.ZodLiteral<"Check">, z.ZodLiteral<"CheckCircle">, z.ZodLiteral<"ChevronDown">, z.ZodLiteral<"ChevronLeft">, z.ZodLiteral<"ChevronRight">, z.ZodLiteral<"ChevronUp">, z.ZodLiteral<"Circular">, z.ZodLiteral<"Clear">, z.ZodLiteral<"Close">, z.ZodLiteral<"Coupon">, z.ZodLiteral<"Credit">, z.ZodLiteral<"Dashboard">, z.ZodLiteral<"DeliveryOutline">, z.ZodLiteral<"DeliverySolid">, z.ZodLiteral<"Dietary">, z.ZodLiteral<"DoubleArrows">, z.ZodLiteral<"Download">, z.ZodLiteral<"Dropship">, z.ZodLiteral<"EBT">, z.ZodLiteral<"Eco">, z.ZodLiteral<"Edit">, z.ZodLiteral<"Error">, z.ZodLiteral<"FaceHappy">, z.ZodLiteral<"FaceSad">, z.ZodLiteral<"Facebook">, z.ZodLiteral<"Fav">, z.ZodLiteral<"FavSolid">, z.ZodLiteral<"Filter">, z.ZodLiteral<"Flag">, z.ZodLiteral<"Geolocate">, z.ZodLiteral<"GooglePay">, z.ZodLiteral<"Hamburger">, z.ZodLiteral<"Help">, z.ZodLiteral<"Home">, z.ZodLiteral<"Info">, z.ZodLiteral<"Instacart">, z.ZodLiteral<"InstacartLogo">, z.ZodLiteral<"Instagram">, z.ZodLiteral<"InstructionsFilled">, z.ZodLiteral<"ItemLocation">, z.ZodLiteral<"ListCheck">, z.ZodLiteral<"ListItems">, z.ZodLiteral<"ListLarge">, z.ZodLiteral<"ListRemove">, z.ZodLiteral<"ListSave">, z.ZodLiteral<"ListSearch">, z.ZodLiteral<"LocationDistance">, z.ZodLiteral<"LocationPin">, z.ZodLiteral<"LoyaltyCard">, z.ZodLiteral<"Mail">, z.ZodLiteral<"Minus">, z.ZodLiteral<"MoreOptionsH">, z.ZodLiteral<"MoreOptionsV">, z.ZodLiteral<"None">, z.ZodLiteral<"Note">, z.ZodLiteral<"NoteFilled">, z.ZodLiteral<"Notifications">, z.ZodLiteral<"Orders">, z.ZodLiteral<"PastPurchases">, z.ZodLiteral<"PayPal">, z.ZodLiteral<"Pause">, z.ZodLiteral<"PaymentOutline">, z.ZodLiteral<"PaymentSolid">, z.ZodLiteral<"Phone">, z.ZodLiteral<"PhoneMobile">, z.ZodLiteral<"Pickup">, z.ZodLiteral<"PickupInfo">, z.ZodLiteral<"Pinterest">, z.ZodLiteral<"Plus">, z.ZodLiteral<"Print">, z.ZodLiteral<"PromoOutline">, z.ZodLiteral<"PromoSolid">, z.ZodLiteral<"RadioActive">, z.ZodLiteral<"RadioEmpty">, z.ZodLiteral<"RecipeCalories">, z.ZodLiteral<"RecipeCooktime">, z.ZodLiteral<"RecipeIngredients">, z.ZodLiteral<"RecipePreptime">, z.ZodLiteral<"RecipeServings">, z.ZodLiteral<"RecommendedSub">, z.ZodLiteral<"Remove">, z.ZodLiteral<"Reserve">, z.ZodLiteral<"ReserveDate">, z.ZodLiteral<"ReserveTime">, z.ZodLiteral<"Search">, z.ZodLiteral<"SelectCheck">, z.ZodLiteral<"SelectEmpty">, z.ZodLiteral<"SelectMark">, z.ZodLiteral<"Send">, z.ZodLiteral<"Settings">, z.ZodLiteral<"Share">, z.ZodLiteral<"SodiumWarning">, z.ZodLiteral<"SortGrid">, z.ZodLiteral<"SortList">, z.ZodLiteral<"StarOutline">, z.ZodLiteral<"StarSolid">, z.ZodLiteral<"Subscription">, z.ZodLiteral<"Substitute">, z.ZodLiteral<"SubstituteBestmatch">, z.ZodLiteral<"SubstituteNone">, z.ZodLiteral<"SubstituteProduct">, z.ZodLiteral<"TikTok">, z.ZodLiteral<"Trash">, z.ZodLiteral<"Twitter">, z.ZodLiteral<"Unavailable">, z.ZodLiteral<"Voice">, z.ZodLiteral<"Warning">, z.ZodLiteral<"YourLocation">, z.ZodLiteral<"Youtube">, z.ZodUnion<[z.ZodLiteral<"AmExpCard">, z.ZodLiteral<"AmExpLogo">, z.ZodLiteral<"Comodo">, z.ZodLiteral<"DiscoverCard">, z.ZodLiteral<"DiscoverLogo">, z.ZodLiteral<"MasterLogo">, z.ZodLiteral<"MasterSecure">, z.ZodLiteral<"VisaLogo">, z.ZodLiteral<"VisaVerified">]>, z.ZodUnion<[z.ZodLiteral<"AmExpCard">, z.ZodLiteral<"ApplePay">, z.ZodLiteral<"DiscoverCard">, z.ZodLiteral<"EBT">, z.ZodLiteral<"PayPal">, z.ZodLiteral<"GooglePay">, z.ZodLiteral<"MasterCard">, z.ZodLiteral<"MasterCardDebit">, z.ZodLiteral<"VisaCard">, z.ZodLiteral<"Paze">]>, z.ZodUnion<[z.ZodLiteral<"GlutenFree">, z.ZodLiteral<"Organic">, z.ZodLiteral<"Local">, z.ZodLiteral<"DairyFree">, z.ZodLiteral<"DiabetesFriendly">, z.ZodLiteral<"EggFree">, z.ZodLiteral<"FairTrade">, z.ZodLiteral<"NoArtificialIngredients">, z.ZodLiteral<"Halal">, z.ZodLiteral<"HeartHealth">, z.ZodLiteral<"NoHighFructoseCornSyrup">, z.ZodLiteral<"KetoFriendly">, z.ZodLiteral<"Kosher">, z.ZodLiteral<"LactoseFree">, z.ZodLiteral<"LowFODMAP">, z.ZodLiteral<"LowSodium">, z.ZodLiteral<"NoAddedSugar">, z.ZodLiteral<"NonGMO">, z.ZodLiteral<"Paleo">, z.ZodLiteral<"PeanutFree">, z.ZodLiteral<"PlantGoodness">, z.ZodLiteral<"SoyFree">, z.ZodLiteral<"Vegan">, z.ZodLiteral<"WholeGrain">, z.ZodLiteral<"BottleDeposit">, z.ZodLiteral<"LimitedIngredients">, z.ZodLiteral<"MinimallyProcessed">, z.ZodLiteral<"Fsa">]>, z.ZodUnion<[z.ZodLiteral<"en-au">, z.ZodLiteral<"en-ca">, z.ZodLiteral<"en-gb">, z.ZodLiteral<"en-ie">, z.ZodLiteral<"en-us">, z.ZodLiteral<"es-es">, z.ZodLiteral<"es-mx">, z.ZodLiteral<"es-us">, z.ZodLiteral<"fr-ca">]>]>;
3103
+ iconName: z.ZodUnion<[z.ZodLiteral<"AccountOutline">, z.ZodLiteral<"AccountSolid">, z.ZodLiteral<"Addresses">, z.ZodLiteral<"ApplePay">, z.ZodLiteral<"ArrowDown">, z.ZodLiteral<"ArrowUp">, z.ZodLiteral<"ArrowRight">, z.ZodLiteral<"ArrowUpdown">, z.ZodLiteral<"BarScan">, z.ZodLiteral<"Bell">, z.ZodLiteral<"Blog">, z.ZodLiteral<"Cart">, z.ZodLiteral<"Check">, z.ZodLiteral<"CheckCircle">, z.ZodLiteral<"ChevronDown">, z.ZodLiteral<"ChevronLeft">, z.ZodLiteral<"ChevronRight">, z.ZodLiteral<"ChevronUp">, z.ZodLiteral<"Circular">, z.ZodLiteral<"Clear">, z.ZodLiteral<"Close">, z.ZodLiteral<"Coupon">, z.ZodLiteral<"Credit">, z.ZodLiteral<"Dashboard">, z.ZodLiteral<"DeliveryOutline">, z.ZodLiteral<"DeliverySolid">, z.ZodLiteral<"Dietary">, z.ZodLiteral<"DoubleArrows">, z.ZodLiteral<"Download">, z.ZodLiteral<"Dropship">, z.ZodLiteral<"EBT">, z.ZodLiteral<"Eco">, z.ZodLiteral<"Edit">, z.ZodLiteral<"Error">, z.ZodLiteral<"FaceHappy">, z.ZodLiteral<"FaceSad">, z.ZodLiteral<"Facebook">, z.ZodLiteral<"Fav">, z.ZodLiteral<"FavSolid">, z.ZodLiteral<"Filter">, z.ZodLiteral<"Flag">, z.ZodLiteral<"Geolocate">, z.ZodLiteral<"GooglePay">, z.ZodLiteral<"Hamburger">, z.ZodLiteral<"Help">, z.ZodLiteral<"Home">, z.ZodLiteral<"Info">, z.ZodLiteral<"Instacart">, z.ZodLiteral<"InstacartLogo">, z.ZodLiteral<"Instagram">, z.ZodLiteral<"InstructionsFilled">, z.ZodLiteral<"ItemLocation">, z.ZodLiteral<"ListCheck">, z.ZodLiteral<"ListItems">, z.ZodLiteral<"ListLarge">, z.ZodLiteral<"ListRemove">, z.ZodLiteral<"ListSave">, z.ZodLiteral<"ListSearch">, z.ZodLiteral<"LocationDistance">, z.ZodLiteral<"LocationPin">, z.ZodLiteral<"LoyaltyCard">, z.ZodLiteral<"Mail">, z.ZodLiteral<"Minus">, z.ZodLiteral<"MoreOptionsH">, z.ZodLiteral<"MoreOptionsV">, z.ZodLiteral<"None">, z.ZodLiteral<"Note">, z.ZodLiteral<"NoteFilled">, z.ZodLiteral<"Notifications">, z.ZodLiteral<"Orders">, z.ZodLiteral<"PastPurchases">, z.ZodLiteral<"PayPal">, z.ZodLiteral<"Pause">, z.ZodLiteral<"PaymentOutline">, z.ZodLiteral<"PaymentSolid">, z.ZodLiteral<"Phone">, z.ZodLiteral<"PhoneMobile">, z.ZodLiteral<"Pickup">, z.ZodLiteral<"PickupInfo">, z.ZodLiteral<"Pinterest">, z.ZodLiteral<"Plus">, z.ZodLiteral<"Print">, z.ZodLiteral<"PromoOutline">, z.ZodLiteral<"PromoSolid">, z.ZodLiteral<"RadioActive">, z.ZodLiteral<"RadioEmpty">, z.ZodLiteral<"RecipeCalories">, z.ZodLiteral<"RecipeCooktime">, z.ZodLiteral<"RecipeIngredients">, z.ZodLiteral<"RecipePreptime">, z.ZodLiteral<"RecipeServings">, z.ZodLiteral<"RecommendedSub">, z.ZodLiteral<"Remove">, z.ZodLiteral<"Reserve">, z.ZodLiteral<"ReserveDate">, z.ZodLiteral<"ReserveTime">, z.ZodLiteral<"Search">, z.ZodLiteral<"SelectCheck">, z.ZodLiteral<"SelectEmpty">, z.ZodLiteral<"SelectMark">, z.ZodLiteral<"Send">, z.ZodLiteral<"Settings">, z.ZodLiteral<"Share">, z.ZodLiteral<"SodiumWarning">, z.ZodLiteral<"SortGrid">, z.ZodLiteral<"SortList">, z.ZodLiteral<"StarOutline">, z.ZodLiteral<"StarSolid">, z.ZodLiteral<"Subscription">, z.ZodLiteral<"Substitute">, z.ZodLiteral<"SubstituteBestmatch">, z.ZodLiteral<"SubstituteNone">, z.ZodLiteral<"SubstituteProduct">, z.ZodLiteral<"TikTok">, z.ZodLiteral<"Trash">, z.ZodLiteral<"Twitter">, z.ZodLiteral<"Unavailable">, z.ZodLiteral<"Voice">, z.ZodLiteral<"Warning">, z.ZodLiteral<"YourLocation">, z.ZodLiteral<"Youtube">, z.ZodUnion<[z.ZodLiteral<"AmExpCard">, z.ZodLiteral<"AmExpLogo">, z.ZodLiteral<"Comodo">, z.ZodLiteral<"DiscoverCard">, z.ZodLiteral<"DiscoverLogo">, z.ZodLiteral<"MasterLogo">, z.ZodLiteral<"MasterSecure">, z.ZodLiteral<"VisaLogo">, z.ZodLiteral<"VisaVerified">]>, z.ZodEnum<["AmExpCard", "ApplePay", "DiscoverCard", "EBT", "PayPal", "GooglePay", "MasterCard", "MasterCardDebit", "VisaCard", "Paze"]>, z.ZodUnion<[z.ZodLiteral<"GlutenFree">, z.ZodLiteral<"Organic">, z.ZodLiteral<"Local">, z.ZodLiteral<"DairyFree">, z.ZodLiteral<"DiabetesFriendly">, z.ZodLiteral<"EggFree">, z.ZodLiteral<"FairTrade">, z.ZodLiteral<"NoArtificialIngredients">, z.ZodLiteral<"Halal">, z.ZodLiteral<"HeartHealth">, z.ZodLiteral<"NoHighFructoseCornSyrup">, z.ZodLiteral<"KetoFriendly">, z.ZodLiteral<"Kosher">, z.ZodLiteral<"LactoseFree">, z.ZodLiteral<"LowFODMAP">, z.ZodLiteral<"LowSodium">, z.ZodLiteral<"NoAddedSugar">, z.ZodLiteral<"NonGMO">, z.ZodLiteral<"Paleo">, z.ZodLiteral<"PeanutFree">, z.ZodLiteral<"PlantGoodness">, z.ZodLiteral<"SoyFree">, z.ZodLiteral<"Vegan">, z.ZodLiteral<"WholeGrain">, z.ZodLiteral<"BottleDeposit">, z.ZodLiteral<"LimitedIngredients">, z.ZodLiteral<"MinimallyProcessed">, z.ZodLiteral<"Fsa">]>, z.ZodUnion<[z.ZodLiteral<"en-au">, z.ZodLiteral<"en-ca">, z.ZodLiteral<"en-gb">, z.ZodLiteral<"en-ie">, z.ZodLiteral<"en-us">, z.ZodLiteral<"es-es">, z.ZodLiteral<"es-mx">, z.ZodLiteral<"es-us">, z.ZodLiteral<"fr-ca">]>]>;
3146
3104
  }, "strip", z.ZodTypeAny, {
3147
3105
  iconAlignment?: "left" | "right";
3148
3106
  iconName?: "AmExpCard" | "ApplePay" | "DiscoverCard" | "EBT" | "PayPal" | "GooglePay" | "MasterCard" | "MasterCardDebit" | "VisaCard" | "Paze" | "AmExpLogo" | "Comodo" | "DiscoverLogo" | "MasterLogo" | "MasterSecure" | "VisaLogo" | "VisaVerified" | "GlutenFree" | "Organic" | "Local" | "DairyFree" | "DiabetesFriendly" | "EggFree" | "FairTrade" | "NoArtificialIngredients" | "Halal" | "HeartHealth" | "NoHighFructoseCornSyrup" | "KetoFriendly" | "Kosher" | "LactoseFree" | "LowFODMAP" | "LowSodium" | "NoAddedSugar" | "NonGMO" | "Paleo" | "PeanutFree" | "PlantGoodness" | "SoyFree" | "Vegan" | "WholeGrain" | "BottleDeposit" | "LimitedIngredients" | "MinimallyProcessed" | "Fsa" | "en-au" | "en-ca" | "en-gb" | "en-ie" | "en-us" | "es-es" | "es-mx" | "es-us" | "fr-ca" | "AccountOutline" | "AccountSolid" | "Addresses" | "ArrowDown" | "ArrowUp" | "ArrowRight" | "ArrowUpdown" | "BarScan" | "Bell" | "Blog" | "Cart" | "Check" | "CheckCircle" | "ChevronDown" | "ChevronLeft" | "ChevronRight" | "ChevronUp" | "Circular" | "Clear" | "Close" | "Coupon" | "Credit" | "Dashboard" | "DeliveryOutline" | "DeliverySolid" | "Dietary" | "DoubleArrows" | "Download" | "Dropship" | "Eco" | "Edit" | "Error" | "FaceHappy" | "FaceSad" | "Facebook" | "Fav" | "FavSolid" | "Filter" | "Flag" | "Geolocate" | "Hamburger" | "Help" | "Home" | "Info" | "Instacart" | "InstacartLogo" | "Instagram" | "InstructionsFilled" | "ItemLocation" | "ListCheck" | "ListItems" | "ListLarge" | "ListRemove" | "ListSave" | "ListSearch" | "LocationDistance" | "LocationPin" | "LoyaltyCard" | "Mail" | "Minus" | "MoreOptionsH" | "MoreOptionsV" | "None" | "Note" | "NoteFilled" | "Notifications" | "Orders" | "PastPurchases" | "Pause" | "PaymentOutline" | "PaymentSolid" | "Phone" | "PhoneMobile" | "Pickup" | "PickupInfo" | "Pinterest" | "Plus" | "Print" | "PromoOutline" | "PromoSolid" | "RadioActive" | "RadioEmpty" | "RecipeCalories" | "RecipeCooktime" | "RecipeIngredients" | "RecipePreptime" | "RecipeServings" | "RecommendedSub" | "Remove" | "Reserve" | "ReserveDate" | "ReserveTime" | "Search" | "SelectCheck" | "SelectEmpty" | "SelectMark" | "Send" | "Settings" | "Share" | "SodiumWarning" | "SortGrid" | "SortList" | "StarOutline" | "StarSolid" | "Subscription" | "Substitute" | "SubstituteBestmatch" | "SubstituteNone" | "SubstituteProduct" | "TikTok" | "Trash" | "Twitter" | "Unavailable" | "Voice" | "Warning" | "YourLocation" | "Youtube";
@@ -3247,7 +3205,7 @@ export declare const iCoreRetailerSettingsSchema: z.ZodObject<{
3247
3205
  maintainCustomerJourney: z.ZodBoolean;
3248
3206
  maintainCustomerPreferences: z.ZodObject<{
3249
3207
  enabled: z.ZodBoolean;
3250
- sections: z.ZodRecord<z.ZodLiteral<"marketingPreferences">, z.ZodArray<z.ZodString, "many">>;
3208
+ sections: z.ZodRecord<z.ZodEnum<["marketingPreferences"]>, z.ZodArray<z.ZodString, "many">>;
3251
3209
  optInMarketingPreferences: z.ZodBoolean;
3252
3210
  selectOptInMarketingPreferencesStore: z.ZodBoolean;
3253
3211
  }, "strip", z.ZodTypeAny, {
@@ -4053,37 +4011,30 @@ export declare const iCoreRetailerSettingsSchema: z.ZodObject<{
4053
4011
  };
4054
4012
  page_search?: {
4055
4013
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4056
- } & {
4057
4014
  productGrid?: {
4058
4015
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4059
4016
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4060
4017
  };
4061
- } & {
4062
4018
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
4063
4019
  };
4064
4020
  page_cart?: {
4065
4021
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4066
- } & {
4067
4022
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
4068
4023
  };
4069
4024
  "page_product-categories"?: {
4070
4025
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4071
- } & {
4072
4026
  productGrid?: {
4073
4027
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4074
4028
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4075
4029
  };
4076
- } & {
4077
4030
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
4078
4031
  };
4079
4032
  "page_product-listing"?: {
4080
4033
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4081
- } & {
4082
4034
  productGrid?: {
4083
4035
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4084
4036
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4085
4037
  };
4086
- } & {
4087
4038
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
4088
4039
  };
4089
4040
  };
@@ -4680,37 +4631,30 @@ export declare const iCoreRetailerSettingsSchema: z.ZodObject<{
4680
4631
  };
4681
4632
  page_search?: {
4682
4633
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4683
- } & {
4684
4634
  productGrid?: {
4685
4635
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4686
4636
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4687
4637
  };
4688
- } & {
4689
4638
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
4690
4639
  };
4691
4640
  page_cart?: {
4692
4641
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4693
- } & {
4694
4642
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
4695
4643
  };
4696
4644
  "page_product-categories"?: {
4697
4645
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4698
- } & {
4699
4646
  productGrid?: {
4700
4647
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4701
4648
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4702
4649
  };
4703
- } & {
4704
4650
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
4705
4651
  };
4706
4652
  "page_product-listing"?: {
4707
4653
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4708
- } & {
4709
4654
  productGrid?: {
4710
4655
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4711
4656
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
4712
4657
  };
4713
- } & {
4714
4658
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
4715
4659
  };
4716
4660
  };
@@ -6498,7 +6442,7 @@ export declare const iCoreRetailerSettingsBannerSchema: z.ZodRecord<z.ZodString,
6498
6442
  numericPhonePayload: z.ZodBoolean;
6499
6443
  houseAccountRegExValidation: z.ZodString;
6500
6444
  minimumCreditCardAmount: z.ZodNumber;
6501
- paymentCards: z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"AmExpCard">, z.ZodLiteral<"ApplePay">, z.ZodLiteral<"DiscoverCard">, z.ZodLiteral<"EBT">, z.ZodLiteral<"PayPal">, z.ZodLiteral<"GooglePay">, z.ZodLiteral<"MasterCard">, z.ZodLiteral<"MasterCardDebit">, z.ZodLiteral<"VisaCard">, z.ZodLiteral<"Paze">]>, z.ZodBoolean>;
6445
+ paymentCards: z.ZodRecord<z.ZodEnum<["AmExpCard", "ApplePay", "DiscoverCard", "EBT", "PayPal", "GooglePay", "MasterCard", "MasterCardDebit", "VisaCard", "Paze"]>, z.ZodBoolean>;
6502
6446
  checkoutValidation: z.ZodObject<{
6503
6447
  instructions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
6504
6448
  _type: z.ZodLiteral<"overYears">;
@@ -6834,22 +6778,18 @@ export declare const iCoreRetailerSettingsBannerSchema: z.ZodRecord<z.ZodString,
6834
6778
  allowPastPurchases: z.ZodBoolean;
6835
6779
  advertSettings: z.ZodObject<{
6836
6780
  page_homepage: z.ZodOptional<z.ZodObject<{
6837
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
6781
+ leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
6838
6782
  }, "strip", z.ZodTypeAny, {
6839
6783
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6840
6784
  }, {
6841
6785
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6842
6786
  }>>;
6843
- page_search: z.ZodOptional<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
6844
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
6845
- }, "strip", z.ZodTypeAny, {
6846
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6787
+ page_search: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
6788
+ leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
6847
6789
  }, {
6848
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6849
- }>, z.ZodObject<{
6850
6790
  productGrid: z.ZodOptional<z.ZodObject<{
6851
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
6852
- productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
6791
+ leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
6792
+ productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
6853
6793
  }, "strip", z.ZodTypeAny, {
6854
6794
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6855
6795
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
@@ -6857,46 +6797,40 @@ export declare const iCoreRetailerSettingsBannerSchema: z.ZodRecord<z.ZodString,
6857
6797
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6858
6798
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6859
6799
  }>>;
6860
- }, "strip", z.ZodTypeAny, {
6800
+ }>, {
6801
+ skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
6802
+ }>, "strip", z.ZodTypeAny, {
6803
+ leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6861
6804
  productGrid?: {
6862
6805
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6863
6806
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6864
6807
  };
6808
+ skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
6865
6809
  }, {
6810
+ leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6866
6811
  productGrid?: {
6867
6812
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6868
6813
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6869
6814
  };
6870
- }>>, z.ZodObject<{
6871
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>;
6872
- }, "strip", z.ZodTypeAny, {
6873
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
6874
- }, {
6875
6815
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
6876
- }>>>;
6877
- page_cart: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
6878
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
6879
- }, "strip", z.ZodTypeAny, {
6880
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6816
+ }>>;
6817
+ page_cart: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
6818
+ leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
6881
6819
  }, {
6820
+ skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
6821
+ }>, "strip", z.ZodTypeAny, {
6882
6822
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6883
- }>, z.ZodObject<{
6884
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>;
6885
- }, "strip", z.ZodTypeAny, {
6886
6823
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
6887
6824
  }, {
6888
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
6889
- }>>>;
6890
- "page_product-categories": z.ZodOptional<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
6891
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
6892
- }, "strip", z.ZodTypeAny, {
6893
6825
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6826
+ skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
6827
+ }>>;
6828
+ "page_product-categories": z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
6829
+ leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
6894
6830
  }, {
6895
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6896
- }>, z.ZodObject<{
6897
6831
  productGrid: z.ZodOptional<z.ZodObject<{
6898
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
6899
- productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
6832
+ leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
6833
+ productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
6900
6834
  }, "strip", z.ZodTypeAny, {
6901
6835
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6902
6836
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
@@ -6904,33 +6838,29 @@ export declare const iCoreRetailerSettingsBannerSchema: z.ZodRecord<z.ZodString,
6904
6838
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6905
6839
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6906
6840
  }>>;
6907
- }, "strip", z.ZodTypeAny, {
6841
+ }>, {
6842
+ skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
6843
+ }>, "strip", z.ZodTypeAny, {
6844
+ leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6908
6845
  productGrid?: {
6909
6846
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6910
6847
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6911
6848
  };
6849
+ skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
6912
6850
  }, {
6851
+ leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6913
6852
  productGrid?: {
6914
6853
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6915
6854
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6916
6855
  };
6917
- }>>, z.ZodObject<{
6918
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>;
6919
- }, "strip", z.ZodTypeAny, {
6920
6856
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
6857
+ }>>;
6858
+ "page_product-listing": z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
6859
+ leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
6921
6860
  }, {
6922
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
6923
- }>>>;
6924
- "page_product-listing": z.ZodOptional<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
6925
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
6926
- }, "strip", z.ZodTypeAny, {
6927
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6928
- }, {
6929
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6930
- }>, z.ZodObject<{
6931
6861
  productGrid: z.ZodOptional<z.ZodObject<{
6932
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
6933
- productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
6862
+ leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
6863
+ productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
6934
6864
  }, "strip", z.ZodTypeAny, {
6935
6865
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6936
6866
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
@@ -6938,60 +6868,53 @@ export declare const iCoreRetailerSettingsBannerSchema: z.ZodRecord<z.ZodString,
6938
6868
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6939
6869
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6940
6870
  }>>;
6941
- }, "strip", z.ZodTypeAny, {
6871
+ }>, {
6872
+ skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
6873
+ }>, "strip", z.ZodTypeAny, {
6874
+ leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6942
6875
  productGrid?: {
6943
6876
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6944
6877
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6945
6878
  };
6879
+ skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
6946
6880
  }, {
6881
+ leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6947
6882
  productGrid?: {
6948
6883
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6949
6884
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6950
6885
  };
6951
- }>>, z.ZodObject<{
6952
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>;
6953
- }, "strip", z.ZodTypeAny, {
6954
6886
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
6955
- }, {
6956
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
6957
- }>>>;
6887
+ }>>;
6958
6888
  }, "strip", z.ZodTypeAny, {
6959
6889
  page_homepage?: {
6960
6890
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6961
6891
  };
6962
6892
  page_search?: {
6963
6893
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6964
- } & {
6965
6894
  productGrid?: {
6966
6895
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6967
6896
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6968
6897
  };
6969
- } & {
6970
6898
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
6971
6899
  };
6972
6900
  page_cart?: {
6973
6901
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6974
- } & {
6975
6902
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
6976
6903
  };
6977
6904
  "page_product-categories"?: {
6978
6905
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6979
- } & {
6980
6906
  productGrid?: {
6981
6907
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6982
6908
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6983
6909
  };
6984
- } & {
6985
6910
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
6986
6911
  };
6987
6912
  "page_product-listing"?: {
6988
6913
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6989
- } & {
6990
6914
  productGrid?: {
6991
6915
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6992
6916
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
6993
6917
  };
6994
- } & {
6995
6918
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
6996
6919
  };
6997
6920
  }, {
@@ -7000,37 +6923,30 @@ export declare const iCoreRetailerSettingsBannerSchema: z.ZodRecord<z.ZodString,
7000
6923
  };
7001
6924
  page_search?: {
7002
6925
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7003
- } & {
7004
6926
  productGrid?: {
7005
6927
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7006
6928
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7007
6929
  };
7008
- } & {
7009
6930
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
7010
6931
  };
7011
6932
  page_cart?: {
7012
6933
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7013
- } & {
7014
6934
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
7015
6935
  };
7016
6936
  "page_product-categories"?: {
7017
6937
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7018
- } & {
7019
6938
  productGrid?: {
7020
6939
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7021
6940
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7022
6941
  };
7023
- } & {
7024
6942
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
7025
6943
  };
7026
6944
  "page_product-listing"?: {
7027
6945
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7028
- } & {
7029
6946
  productGrid?: {
7030
6947
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7031
6948
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7032
6949
  };
7033
- } & {
7034
6950
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
7035
6951
  };
7036
6952
  }>;
@@ -7328,37 +7244,30 @@ export declare const iCoreRetailerSettingsBannerSchema: z.ZodRecord<z.ZodString,
7328
7244
  };
7329
7245
  page_search?: {
7330
7246
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7331
- } & {
7332
7247
  productGrid?: {
7333
7248
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7334
7249
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7335
7250
  };
7336
- } & {
7337
7251
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
7338
7252
  };
7339
7253
  page_cart?: {
7340
7254
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7341
- } & {
7342
7255
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
7343
7256
  };
7344
7257
  "page_product-categories"?: {
7345
7258
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7346
- } & {
7347
7259
  productGrid?: {
7348
7260
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7349
7261
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7350
7262
  };
7351
- } & {
7352
7263
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
7353
7264
  };
7354
7265
  "page_product-listing"?: {
7355
7266
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7356
- } & {
7357
7267
  productGrid?: {
7358
7268
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7359
7269
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7360
7270
  };
7361
- } & {
7362
7271
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
7363
7272
  };
7364
7273
  };
@@ -7498,37 +7407,30 @@ export declare const iCoreRetailerSettingsBannerSchema: z.ZodRecord<z.ZodString,
7498
7407
  };
7499
7408
  page_search?: {
7500
7409
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7501
- } & {
7502
7410
  productGrid?: {
7503
7411
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7504
7412
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7505
7413
  };
7506
- } & {
7507
7414
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
7508
7415
  };
7509
7416
  page_cart?: {
7510
7417
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7511
- } & {
7512
7418
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
7513
7419
  };
7514
7420
  "page_product-categories"?: {
7515
7421
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7516
- } & {
7517
7422
  productGrid?: {
7518
7423
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7519
7424
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7520
7425
  };
7521
- } & {
7522
7426
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
7523
7427
  };
7524
7428
  "page_product-listing"?: {
7525
7429
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7526
- } & {
7527
7430
  productGrid?: {
7528
7431
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7529
7432
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
7530
7433
  };
7531
- } & {
7532
7434
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
7533
7435
  };
7534
7436
  };
@@ -7780,8 +7682,8 @@ export declare const iCoreRetailerSettingsBannerSchema: z.ZodRecord<z.ZodString,
7780
7682
  limitProductCardTitleHeight: z.ZodBoolean;
7781
7683
  productCardTitleHeight: z.ZodNumber;
7782
7684
  productCards: z.ZodObject<{
7783
- gridRowLength: z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodNumber>;
7784
- carouselsRowLength: z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodNumber>;
7685
+ gridRowLength: z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodNumber>;
7686
+ carouselsRowLength: z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodNumber>;
7785
7687
  productCard: z.ZodObject<{
7786
7688
  enabled: z.ZodBoolean;
7787
7689
  layouts: z.ZodObject<{
@@ -8100,7 +8002,7 @@ export declare const iCoreRetailerSettingsBannerSchema: z.ZodRecord<z.ZodString,
8100
8002
  anonymousCart: z.ZodBoolean;
8101
8003
  ctaButtons: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
8102
8004
  iconAlignment: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"right">]>>;
8103
- iconName: z.ZodUnion<[z.ZodLiteral<"AccountOutline">, z.ZodLiteral<"AccountSolid">, z.ZodLiteral<"Addresses">, z.ZodLiteral<"ApplePay">, z.ZodLiteral<"ArrowDown">, z.ZodLiteral<"ArrowUp">, z.ZodLiteral<"ArrowRight">, z.ZodLiteral<"ArrowUpdown">, z.ZodLiteral<"BarScan">, z.ZodLiteral<"Bell">, z.ZodLiteral<"Blog">, z.ZodLiteral<"Cart">, z.ZodLiteral<"Check">, z.ZodLiteral<"CheckCircle">, z.ZodLiteral<"ChevronDown">, z.ZodLiteral<"ChevronLeft">, z.ZodLiteral<"ChevronRight">, z.ZodLiteral<"ChevronUp">, z.ZodLiteral<"Circular">, z.ZodLiteral<"Clear">, z.ZodLiteral<"Close">, z.ZodLiteral<"Coupon">, z.ZodLiteral<"Credit">, z.ZodLiteral<"Dashboard">, z.ZodLiteral<"DeliveryOutline">, z.ZodLiteral<"DeliverySolid">, z.ZodLiteral<"Dietary">, z.ZodLiteral<"DoubleArrows">, z.ZodLiteral<"Download">, z.ZodLiteral<"Dropship">, z.ZodLiteral<"EBT">, z.ZodLiteral<"Eco">, z.ZodLiteral<"Edit">, z.ZodLiteral<"Error">, z.ZodLiteral<"FaceHappy">, z.ZodLiteral<"FaceSad">, z.ZodLiteral<"Facebook">, z.ZodLiteral<"Fav">, z.ZodLiteral<"FavSolid">, z.ZodLiteral<"Filter">, z.ZodLiteral<"Flag">, z.ZodLiteral<"Geolocate">, z.ZodLiteral<"GooglePay">, z.ZodLiteral<"Hamburger">, z.ZodLiteral<"Help">, z.ZodLiteral<"Home">, z.ZodLiteral<"Info">, z.ZodLiteral<"Instacart">, z.ZodLiteral<"InstacartLogo">, z.ZodLiteral<"Instagram">, z.ZodLiteral<"InstructionsFilled">, z.ZodLiteral<"ItemLocation">, z.ZodLiteral<"ListCheck">, z.ZodLiteral<"ListItems">, z.ZodLiteral<"ListLarge">, z.ZodLiteral<"ListRemove">, z.ZodLiteral<"ListSave">, z.ZodLiteral<"ListSearch">, z.ZodLiteral<"LocationDistance">, z.ZodLiteral<"LocationPin">, z.ZodLiteral<"LoyaltyCard">, z.ZodLiteral<"Mail">, z.ZodLiteral<"Minus">, z.ZodLiteral<"MoreOptionsH">, z.ZodLiteral<"MoreOptionsV">, z.ZodLiteral<"None">, z.ZodLiteral<"Note">, z.ZodLiteral<"NoteFilled">, z.ZodLiteral<"Notifications">, z.ZodLiteral<"Orders">, z.ZodLiteral<"PastPurchases">, z.ZodLiteral<"PayPal">, z.ZodLiteral<"Pause">, z.ZodLiteral<"PaymentOutline">, z.ZodLiteral<"PaymentSolid">, z.ZodLiteral<"Phone">, z.ZodLiteral<"PhoneMobile">, z.ZodLiteral<"Pickup">, z.ZodLiteral<"PickupInfo">, z.ZodLiteral<"Pinterest">, z.ZodLiteral<"Plus">, z.ZodLiteral<"Print">, z.ZodLiteral<"PromoOutline">, z.ZodLiteral<"PromoSolid">, z.ZodLiteral<"RadioActive">, z.ZodLiteral<"RadioEmpty">, z.ZodLiteral<"RecipeCalories">, z.ZodLiteral<"RecipeCooktime">, z.ZodLiteral<"RecipeIngredients">, z.ZodLiteral<"RecipePreptime">, z.ZodLiteral<"RecipeServings">, z.ZodLiteral<"RecommendedSub">, z.ZodLiteral<"Remove">, z.ZodLiteral<"Reserve">, z.ZodLiteral<"ReserveDate">, z.ZodLiteral<"ReserveTime">, z.ZodLiteral<"Search">, z.ZodLiteral<"SelectCheck">, z.ZodLiteral<"SelectEmpty">, z.ZodLiteral<"SelectMark">, z.ZodLiteral<"Send">, z.ZodLiteral<"Settings">, z.ZodLiteral<"Share">, z.ZodLiteral<"SodiumWarning">, z.ZodLiteral<"SortGrid">, z.ZodLiteral<"SortList">, z.ZodLiteral<"StarOutline">, z.ZodLiteral<"StarSolid">, z.ZodLiteral<"Subscription">, z.ZodLiteral<"Substitute">, z.ZodLiteral<"SubstituteBestmatch">, z.ZodLiteral<"SubstituteNone">, z.ZodLiteral<"SubstituteProduct">, z.ZodLiteral<"TikTok">, z.ZodLiteral<"Trash">, z.ZodLiteral<"Twitter">, z.ZodLiteral<"Unavailable">, z.ZodLiteral<"Voice">, z.ZodLiteral<"Warning">, z.ZodLiteral<"YourLocation">, z.ZodLiteral<"Youtube">, z.ZodUnion<[z.ZodLiteral<"AmExpCard">, z.ZodLiteral<"AmExpLogo">, z.ZodLiteral<"Comodo">, z.ZodLiteral<"DiscoverCard">, z.ZodLiteral<"DiscoverLogo">, z.ZodLiteral<"MasterLogo">, z.ZodLiteral<"MasterSecure">, z.ZodLiteral<"VisaLogo">, z.ZodLiteral<"VisaVerified">]>, z.ZodUnion<[z.ZodLiteral<"AmExpCard">, z.ZodLiteral<"ApplePay">, z.ZodLiteral<"DiscoverCard">, z.ZodLiteral<"EBT">, z.ZodLiteral<"PayPal">, z.ZodLiteral<"GooglePay">, z.ZodLiteral<"MasterCard">, z.ZodLiteral<"MasterCardDebit">, z.ZodLiteral<"VisaCard">, z.ZodLiteral<"Paze">]>, z.ZodUnion<[z.ZodLiteral<"GlutenFree">, z.ZodLiteral<"Organic">, z.ZodLiteral<"Local">, z.ZodLiteral<"DairyFree">, z.ZodLiteral<"DiabetesFriendly">, z.ZodLiteral<"EggFree">, z.ZodLiteral<"FairTrade">, z.ZodLiteral<"NoArtificialIngredients">, z.ZodLiteral<"Halal">, z.ZodLiteral<"HeartHealth">, z.ZodLiteral<"NoHighFructoseCornSyrup">, z.ZodLiteral<"KetoFriendly">, z.ZodLiteral<"Kosher">, z.ZodLiteral<"LactoseFree">, z.ZodLiteral<"LowFODMAP">, z.ZodLiteral<"LowSodium">, z.ZodLiteral<"NoAddedSugar">, z.ZodLiteral<"NonGMO">, z.ZodLiteral<"Paleo">, z.ZodLiteral<"PeanutFree">, z.ZodLiteral<"PlantGoodness">, z.ZodLiteral<"SoyFree">, z.ZodLiteral<"Vegan">, z.ZodLiteral<"WholeGrain">, z.ZodLiteral<"BottleDeposit">, z.ZodLiteral<"LimitedIngredients">, z.ZodLiteral<"MinimallyProcessed">, z.ZodLiteral<"Fsa">]>, z.ZodUnion<[z.ZodLiteral<"en-au">, z.ZodLiteral<"en-ca">, z.ZodLiteral<"en-gb">, z.ZodLiteral<"en-ie">, z.ZodLiteral<"en-us">, z.ZodLiteral<"es-es">, z.ZodLiteral<"es-mx">, z.ZodLiteral<"es-us">, z.ZodLiteral<"fr-ca">]>]>;
8005
+ iconName: z.ZodUnion<[z.ZodLiteral<"AccountOutline">, z.ZodLiteral<"AccountSolid">, z.ZodLiteral<"Addresses">, z.ZodLiteral<"ApplePay">, z.ZodLiteral<"ArrowDown">, z.ZodLiteral<"ArrowUp">, z.ZodLiteral<"ArrowRight">, z.ZodLiteral<"ArrowUpdown">, z.ZodLiteral<"BarScan">, z.ZodLiteral<"Bell">, z.ZodLiteral<"Blog">, z.ZodLiteral<"Cart">, z.ZodLiteral<"Check">, z.ZodLiteral<"CheckCircle">, z.ZodLiteral<"ChevronDown">, z.ZodLiteral<"ChevronLeft">, z.ZodLiteral<"ChevronRight">, z.ZodLiteral<"ChevronUp">, z.ZodLiteral<"Circular">, z.ZodLiteral<"Clear">, z.ZodLiteral<"Close">, z.ZodLiteral<"Coupon">, z.ZodLiteral<"Credit">, z.ZodLiteral<"Dashboard">, z.ZodLiteral<"DeliveryOutline">, z.ZodLiteral<"DeliverySolid">, z.ZodLiteral<"Dietary">, z.ZodLiteral<"DoubleArrows">, z.ZodLiteral<"Download">, z.ZodLiteral<"Dropship">, z.ZodLiteral<"EBT">, z.ZodLiteral<"Eco">, z.ZodLiteral<"Edit">, z.ZodLiteral<"Error">, z.ZodLiteral<"FaceHappy">, z.ZodLiteral<"FaceSad">, z.ZodLiteral<"Facebook">, z.ZodLiteral<"Fav">, z.ZodLiteral<"FavSolid">, z.ZodLiteral<"Filter">, z.ZodLiteral<"Flag">, z.ZodLiteral<"Geolocate">, z.ZodLiteral<"GooglePay">, z.ZodLiteral<"Hamburger">, z.ZodLiteral<"Help">, z.ZodLiteral<"Home">, z.ZodLiteral<"Info">, z.ZodLiteral<"Instacart">, z.ZodLiteral<"InstacartLogo">, z.ZodLiteral<"Instagram">, z.ZodLiteral<"InstructionsFilled">, z.ZodLiteral<"ItemLocation">, z.ZodLiteral<"ListCheck">, z.ZodLiteral<"ListItems">, z.ZodLiteral<"ListLarge">, z.ZodLiteral<"ListRemove">, z.ZodLiteral<"ListSave">, z.ZodLiteral<"ListSearch">, z.ZodLiteral<"LocationDistance">, z.ZodLiteral<"LocationPin">, z.ZodLiteral<"LoyaltyCard">, z.ZodLiteral<"Mail">, z.ZodLiteral<"Minus">, z.ZodLiteral<"MoreOptionsH">, z.ZodLiteral<"MoreOptionsV">, z.ZodLiteral<"None">, z.ZodLiteral<"Note">, z.ZodLiteral<"NoteFilled">, z.ZodLiteral<"Notifications">, z.ZodLiteral<"Orders">, z.ZodLiteral<"PastPurchases">, z.ZodLiteral<"PayPal">, z.ZodLiteral<"Pause">, z.ZodLiteral<"PaymentOutline">, z.ZodLiteral<"PaymentSolid">, z.ZodLiteral<"Phone">, z.ZodLiteral<"PhoneMobile">, z.ZodLiteral<"Pickup">, z.ZodLiteral<"PickupInfo">, z.ZodLiteral<"Pinterest">, z.ZodLiteral<"Plus">, z.ZodLiteral<"Print">, z.ZodLiteral<"PromoOutline">, z.ZodLiteral<"PromoSolid">, z.ZodLiteral<"RadioActive">, z.ZodLiteral<"RadioEmpty">, z.ZodLiteral<"RecipeCalories">, z.ZodLiteral<"RecipeCooktime">, z.ZodLiteral<"RecipeIngredients">, z.ZodLiteral<"RecipePreptime">, z.ZodLiteral<"RecipeServings">, z.ZodLiteral<"RecommendedSub">, z.ZodLiteral<"Remove">, z.ZodLiteral<"Reserve">, z.ZodLiteral<"ReserveDate">, z.ZodLiteral<"ReserveTime">, z.ZodLiteral<"Search">, z.ZodLiteral<"SelectCheck">, z.ZodLiteral<"SelectEmpty">, z.ZodLiteral<"SelectMark">, z.ZodLiteral<"Send">, z.ZodLiteral<"Settings">, z.ZodLiteral<"Share">, z.ZodLiteral<"SodiumWarning">, z.ZodLiteral<"SortGrid">, z.ZodLiteral<"SortList">, z.ZodLiteral<"StarOutline">, z.ZodLiteral<"StarSolid">, z.ZodLiteral<"Subscription">, z.ZodLiteral<"Substitute">, z.ZodLiteral<"SubstituteBestmatch">, z.ZodLiteral<"SubstituteNone">, z.ZodLiteral<"SubstituteProduct">, z.ZodLiteral<"TikTok">, z.ZodLiteral<"Trash">, z.ZodLiteral<"Twitter">, z.ZodLiteral<"Unavailable">, z.ZodLiteral<"Voice">, z.ZodLiteral<"Warning">, z.ZodLiteral<"YourLocation">, z.ZodLiteral<"Youtube">, z.ZodUnion<[z.ZodLiteral<"AmExpCard">, z.ZodLiteral<"AmExpLogo">, z.ZodLiteral<"Comodo">, z.ZodLiteral<"DiscoverCard">, z.ZodLiteral<"DiscoverLogo">, z.ZodLiteral<"MasterLogo">, z.ZodLiteral<"MasterSecure">, z.ZodLiteral<"VisaLogo">, z.ZodLiteral<"VisaVerified">]>, z.ZodEnum<["AmExpCard", "ApplePay", "DiscoverCard", "EBT", "PayPal", "GooglePay", "MasterCard", "MasterCardDebit", "VisaCard", "Paze"]>, z.ZodUnion<[z.ZodLiteral<"GlutenFree">, z.ZodLiteral<"Organic">, z.ZodLiteral<"Local">, z.ZodLiteral<"DairyFree">, z.ZodLiteral<"DiabetesFriendly">, z.ZodLiteral<"EggFree">, z.ZodLiteral<"FairTrade">, z.ZodLiteral<"NoArtificialIngredients">, z.ZodLiteral<"Halal">, z.ZodLiteral<"HeartHealth">, z.ZodLiteral<"NoHighFructoseCornSyrup">, z.ZodLiteral<"KetoFriendly">, z.ZodLiteral<"Kosher">, z.ZodLiteral<"LactoseFree">, z.ZodLiteral<"LowFODMAP">, z.ZodLiteral<"LowSodium">, z.ZodLiteral<"NoAddedSugar">, z.ZodLiteral<"NonGMO">, z.ZodLiteral<"Paleo">, z.ZodLiteral<"PeanutFree">, z.ZodLiteral<"PlantGoodness">, z.ZodLiteral<"SoyFree">, z.ZodLiteral<"Vegan">, z.ZodLiteral<"WholeGrain">, z.ZodLiteral<"BottleDeposit">, z.ZodLiteral<"LimitedIngredients">, z.ZodLiteral<"MinimallyProcessed">, z.ZodLiteral<"Fsa">]>, z.ZodUnion<[z.ZodLiteral<"en-au">, z.ZodLiteral<"en-ca">, z.ZodLiteral<"en-gb">, z.ZodLiteral<"en-ie">, z.ZodLiteral<"en-us">, z.ZodLiteral<"es-es">, z.ZodLiteral<"es-mx">, z.ZodLiteral<"es-us">, z.ZodLiteral<"fr-ca">]>]>;
8104
8006
  }, "strip", z.ZodTypeAny, {
8105
8007
  iconAlignment?: "left" | "right";
8106
8008
  iconName?: "AmExpCard" | "ApplePay" | "DiscoverCard" | "EBT" | "PayPal" | "GooglePay" | "MasterCard" | "MasterCardDebit" | "VisaCard" | "Paze" | "AmExpLogo" | "Comodo" | "DiscoverLogo" | "MasterLogo" | "MasterSecure" | "VisaLogo" | "VisaVerified" | "GlutenFree" | "Organic" | "Local" | "DairyFree" | "DiabetesFriendly" | "EggFree" | "FairTrade" | "NoArtificialIngredients" | "Halal" | "HeartHealth" | "NoHighFructoseCornSyrup" | "KetoFriendly" | "Kosher" | "LactoseFree" | "LowFODMAP" | "LowSodium" | "NoAddedSugar" | "NonGMO" | "Paleo" | "PeanutFree" | "PlantGoodness" | "SoyFree" | "Vegan" | "WholeGrain" | "BottleDeposit" | "LimitedIngredients" | "MinimallyProcessed" | "Fsa" | "en-au" | "en-ca" | "en-gb" | "en-ie" | "en-us" | "es-es" | "es-mx" | "es-us" | "fr-ca" | "AccountOutline" | "AccountSolid" | "Addresses" | "ArrowDown" | "ArrowUp" | "ArrowRight" | "ArrowUpdown" | "BarScan" | "Bell" | "Blog" | "Cart" | "Check" | "CheckCircle" | "ChevronDown" | "ChevronLeft" | "ChevronRight" | "ChevronUp" | "Circular" | "Clear" | "Close" | "Coupon" | "Credit" | "Dashboard" | "DeliveryOutline" | "DeliverySolid" | "Dietary" | "DoubleArrows" | "Download" | "Dropship" | "Eco" | "Edit" | "Error" | "FaceHappy" | "FaceSad" | "Facebook" | "Fav" | "FavSolid" | "Filter" | "Flag" | "Geolocate" | "Hamburger" | "Help" | "Home" | "Info" | "Instacart" | "InstacartLogo" | "Instagram" | "InstructionsFilled" | "ItemLocation" | "ListCheck" | "ListItems" | "ListLarge" | "ListRemove" | "ListSave" | "ListSearch" | "LocationDistance" | "LocationPin" | "LoyaltyCard" | "Mail" | "Minus" | "MoreOptionsH" | "MoreOptionsV" | "None" | "Note" | "NoteFilled" | "Notifications" | "Orders" | "PastPurchases" | "Pause" | "PaymentOutline" | "PaymentSolid" | "Phone" | "PhoneMobile" | "Pickup" | "PickupInfo" | "Pinterest" | "Plus" | "Print" | "PromoOutline" | "PromoSolid" | "RadioActive" | "RadioEmpty" | "RecipeCalories" | "RecipeCooktime" | "RecipeIngredients" | "RecipePreptime" | "RecipeServings" | "RecommendedSub" | "Remove" | "Reserve" | "ReserveDate" | "ReserveTime" | "Search" | "SelectCheck" | "SelectEmpty" | "SelectMark" | "Send" | "Settings" | "Share" | "SodiumWarning" | "SortGrid" | "SortList" | "StarOutline" | "StarSolid" | "Subscription" | "Substitute" | "SubstituteBestmatch" | "SubstituteNone" | "SubstituteProduct" | "TikTok" | "Trash" | "Twitter" | "Unavailable" | "Voice" | "Warning" | "YourLocation" | "Youtube";
@@ -8205,7 +8107,7 @@ export declare const iCoreRetailerSettingsBannerSchema: z.ZodRecord<z.ZodString,
8205
8107
  maintainCustomerJourney: z.ZodBoolean;
8206
8108
  maintainCustomerPreferences: z.ZodObject<{
8207
8109
  enabled: z.ZodBoolean;
8208
- sections: z.ZodRecord<z.ZodLiteral<"marketingPreferences">, z.ZodArray<z.ZodString, "many">>;
8110
+ sections: z.ZodRecord<z.ZodEnum<["marketingPreferences"]>, z.ZodArray<z.ZodString, "many">>;
8209
8111
  optInMarketingPreferences: z.ZodBoolean;
8210
8112
  selectOptInMarketingPreferencesStore: z.ZodBoolean;
8211
8113
  }, "strip", z.ZodTypeAny, {
@@ -9011,37 +8913,30 @@ export declare const iCoreRetailerSettingsBannerSchema: z.ZodRecord<z.ZodString,
9011
8913
  };
9012
8914
  page_search?: {
9013
8915
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9014
- } & {
9015
8916
  productGrid?: {
9016
8917
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9017
8918
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9018
8919
  };
9019
- } & {
9020
8920
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
9021
8921
  };
9022
8922
  page_cart?: {
9023
8923
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9024
- } & {
9025
8924
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
9026
8925
  };
9027
8926
  "page_product-categories"?: {
9028
8927
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9029
- } & {
9030
8928
  productGrid?: {
9031
8929
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9032
8930
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9033
8931
  };
9034
- } & {
9035
8932
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
9036
8933
  };
9037
8934
  "page_product-listing"?: {
9038
8935
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9039
- } & {
9040
8936
  productGrid?: {
9041
8937
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9042
8938
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9043
8939
  };
9044
- } & {
9045
8940
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
9046
8941
  };
9047
8942
  };
@@ -9638,37 +9533,30 @@ export declare const iCoreRetailerSettingsBannerSchema: z.ZodRecord<z.ZodString,
9638
9533
  };
9639
9534
  page_search?: {
9640
9535
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9641
- } & {
9642
9536
  productGrid?: {
9643
9537
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9644
9538
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9645
9539
  };
9646
- } & {
9647
9540
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
9648
9541
  };
9649
9542
  page_cart?: {
9650
9543
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9651
- } & {
9652
9544
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
9653
9545
  };
9654
9546
  "page_product-categories"?: {
9655
9547
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9656
- } & {
9657
9548
  productGrid?: {
9658
9549
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9659
9550
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9660
9551
  };
9661
- } & {
9662
9552
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
9663
9553
  };
9664
9554
  "page_product-listing"?: {
9665
9555
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9666
- } & {
9667
9556
  productGrid?: {
9668
9557
  leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9669
9558
  productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
9670
9559
  };
9671
- } & {
9672
9560
  skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
9673
9561
  };
9674
9562
  };