@soma-vertical-web/multi-lib 1.0.22 → 1.0.24

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.
Files changed (48) hide show
  1. package/cms/ContentTypes/NotFoundPage/NotFoundContent.d.ts +3 -0
  2. package/cms/server.d.ts +1 -0
  3. package/data/api/catalog/index.d.ts +1 -0
  4. package/data/api/catalog/pageInfo/index.d.ts +7 -0
  5. package/{index-BhiCzrut.mjs → index-3re_PcOZ.mjs} +717 -738
  6. package/index-5ycwc4R2.mjs +2230 -0
  7. package/index-BngdrDvh.js +4 -0
  8. package/index-ByLB8d6o.js +4 -0
  9. package/{index-D61YFVi9.mjs → index-DjjGiBzS.mjs} +697 -742
  10. package/index-Rwk0NGoh.js +4 -0
  11. package/index.js +13 -13
  12. package/index.mjs +3431 -3348
  13. package/index2.js +2 -2
  14. package/index2.mjs +351 -319
  15. package/layout/index.d.ts +4 -0
  16. package/layout/template/ErrorTemplate/ErrorTemplate.d.ts +7 -0
  17. package/layout/template/ErrorTemplate/index.d.ts +1 -0
  18. package/layout/template/QuickShop/Composite/Body.d.ts +1 -1
  19. package/layout/template/QuickShop/Composite/Similars.d.ts +1 -1
  20. package/package.json +1 -1
  21. package/style.css +1 -1
  22. package/types/cms/ContentTypes/NotFoundPage/index.d.ts +6 -1
  23. package/types/data/api/index.d.ts +13 -0
  24. package/types/layout/templates/ErrorTemplate/index.d.ts +12 -0
  25. package/types/layout/templates/QuickShop/index.d.ts +2 -1
  26. package/cms/ContentTypes/LPLojas/typing.d.ts +0 -33
  27. package/contexts/contexts/search/QueryFacets.d.ts +0 -5
  28. package/contexts/contexts/search/QueryProducts.d.ts +0 -5
  29. package/contexts/contexts/search/RootTank.d.ts +0 -9
  30. package/index-4tOP7lCS.js +0 -4
  31. package/index-67k__dSl.mjs +0 -1908
  32. package/index-BFX4NpXJ.js +0 -4
  33. package/index-BlwJMBFA.mjs +0 -1890
  34. package/index-ByhWQJ9Z.mjs +0 -1844
  35. package/index-CkpbvnLx.mjs +0 -1830
  36. package/index-CpUjW-m9.mjs +0 -1877
  37. package/index-D0LSqsck.js +0 -4
  38. package/index-DZ1MbO8M.js +0 -4
  39. package/index-Dj1bg0lu.mjs +0 -1826
  40. package/index-DvhdPe3b.js +0 -4
  41. package/index-DyKuIyRP.js +0 -4
  42. package/index-dtcYsqh-.js +0 -4
  43. package/index-xWhZ_YcF.js +0 -4
  44. package/layout/template/LPLojas/Composite/Details/interfaces.d.ts +0 -18
  45. package/layout/template/LPLojas/Composite/DropDown/interfaces.d.ts +0 -10
  46. package/layout/template/LPLojas/constant.d.ts +0 -1
  47. package/layout/template/LPLojas/interfaces.d.ts +0 -18
  48. package/layout/template/SearchResult/Composite/Products.d.ts +0 -7
@@ -0,0 +1,3 @@
1
+ import { NotFoundPageContentProps } from '../../../types/cms/ContentTypes/NotFoundPage';
2
+
3
+ export declare const NotFoundContent: ({ ERROR_TEMPLATE_RETURN_BUTTON, ErrorTemplate, ...props }: NotFoundPageContentProps) => Promise<import("react/jsx-runtime").JSX.Element>;
package/cms/server.d.ts CHANGED
@@ -43,5 +43,6 @@ export declare const serverCMS: {
43
43
  LPCadastroContent: ({ SectionZone, LPCadastro, ...props }: import('../types/layout/templates/LPCadastro').LPCadastroContentTypeProps) => Promise<import("react/jsx-runtime").JSX.Element | null>;
44
44
  LPLojasContent: ({ LPLOJAS_TEMPLATE_RETURN_BUTTON, ICONS, entity, showVendor, LPStoresClientWrapper, ...props }: import('../types/cms/ContentTypes/LPLojas').LPLojasContentProps) => Promise<import("react/jsx-runtime").JSX.Element>;
45
45
  PolicyPageContent: ({ slug, Politicas, SectionZone, oneTrust, ...props }: import('../types/cms/ContentTypes/PolicyPage').PolicyPageContentProps) => Promise<import("react/jsx-runtime").JSX.Element | null>;
46
+ NotFoundContent: ({ ERROR_TEMPLATE_RETURN_BUTTON, ErrorTemplate, ...props }: import('../types/cms/ContentTypes/NotFoundPage').NotFoundPageContentProps) => Promise<import("react/jsx-runtime").JSX.Element>;
46
47
  };
47
48
  };
@@ -1,3 +1,4 @@
1
1
  export * from './kit';
2
2
  export * from './product/info';
3
3
  export * from './product/similars';
4
+ export * from './pageInfo';
@@ -0,0 +1,7 @@
1
+ import { FetchPageInfoProps } from '../../../../types/data/api';
2
+
3
+ type Params = {
4
+ slug: string;
5
+ };
6
+ export declare function getCatalogPageInfo({ apiUrl, params, fetchOptions, }: FetchPageInfoProps<never, Params>): Promise<any>;
7
+ export {};