Skip to content

Conversation

@guitavano
Copy link
Contributor

@guitavano guitavano commented Jan 6, 2026

The default has to be empty

Summary by CodeRabbit

  • Chores
    • Optimized search request parameter handling to improve efficiency by conditionally including the fuzzy search parameter only when applicable, reducing unnecessary payload overhead.

✏️ Tip: You can customize this high-level summary in your review settings.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jan 6, 2026

📝 Walkthrough

Walkthrough

The default value of the fuzzy parameter in the intelligent search utility changed from "auto" to an empty string, and the parameter is now conditionally added to the request payload only when truthy, rather than being always present.

Changes

Cohort / File(s) Summary
Fuzzy Parameter Default & Conditional Inclusion
vtex/utils/intelligentSearch.ts
Changed fuzzy default from "auto" to "" and modified payload composition to conditionally include fuzzy only when truthy via spread operator

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~8 minutes

Poem

🐰 A fuzzy logic twist, so neat,
From "auto" down to empty's beat,
Now only truthy values stay,
In payloads sent on search's way!
Cleaner requests, we celebrate—
Less chatter makes them lightweight!

Pre-merge checks and finishing touches

❌ Failed checks (1 warning, 1 inconclusive)
Check name Status Explanation Resolution
Description check ⚠️ Warning The pull request description is significantly incomplete, missing most required sections including a detailed explanation of changes, issue link, Loom video, and demonstration link. Complete the description template by adding a detailed explanation of why the fuzzy default changed, link the relevant issue, and provide any supporting materials or demonstration links.
Title check ❓ Inconclusive The title 'fix fuzzy' is vague and generic, using a non-specific term 'fix' without conveying what the actual change accomplishes or why it matters. Provide a more descriptive title such as 'Change fuzzy default from auto to empty string' to clearly communicate the specific change being made.
✅ Passed checks (1 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
✨ Finishing touches
  • 📝 Generate docstrings

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions
Copy link
Contributor

github-actions bot commented Jan 6, 2026

Tagging Options

Should a new tag be published when this PR is merged?

  • 👍 for Patch 0.133.23 update
  • 🎉 for Minor 0.134.0 update
  • 🚀 for Major 1.0.0 update

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
vtex/utils/intelligentSearch.ts (1)

70-70: Consider explicit empty string check for clarity.

The truthiness check (fuzzy ? { fuzzy } : {}) will exclude the parameter when fuzzy is any falsy value (empty string, null, undefined, etc.). While this works for the current use case, it could be more explicit.

If the intent is specifically to exclude empty strings, consider:

🔎 More explicit alternative
-  ...(fuzzy ? { fuzzy } : {}),
+  ...(fuzzy !== "" ? { fuzzy } : {}),

This makes it clearer that you're specifically handling the empty string case, though the current implementation is also acceptable.

📜 Review details

Configuration used: defaults

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 30ca287 and 3cbde8b.

📒 Files selected for processing (1)
  • vtex/utils/intelligentSearch.ts
🔇 Additional comments (1)
vtex/utils/intelligentSearch.ts (1)

61-61: No action required—the fuzzy parameter change has no functional impact.

The default value of fuzzy changed from "auto" to "". Combined with the conditional inclusion on line 70, the fuzzy parameter is now omitted from requests when not explicitly provided. According to VTEX Intelligent Search API documentation, when fuzzy is not included in the request, the API applies its default fuzzy matching behavior automatically (based on query term length: 1 for 3–5 characters, 2 for 6+ characters). This behavior is identical to explicitly sending fuzzy="auto", so there is no change in search result behavior. All five call sites rely on the default value and will continue to work as expected.

@guitavano guitavano merged commit d05f11e into main Jan 6, 2026
6 checks passed
@guitavano guitavano deleted the tavano/fix-fuzzy branch January 6, 2026 16:32
vitoUwu added a commit to vitoUwu/apps that referenced this pull request Jan 20, 2026
commit ecac91e
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Mon Jan 19 16:04:08 2026 +0000

    Update version to 0.133.25

commit 80b2920
Author: guitavano <tavano62@gmail.com>
Date:   Mon Jan 19 13:03:53 2026 -0300

    Tavano/add cacheable matchers (deco-cx#1511)

    * add cacheable matchers

    * fmt

commit dee3782
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Wed Jan 7 19:54:04 2026 +0000

    Update version to 0.133.24

commit 800e3a9
Author: guitavano <tavano62@gmail.com>
Date:   Wed Jan 7 16:53:54 2026 -0300

    optmize magento (deco-cx#1507)

    * optmize magento

    * fmt

commit e5f8a84
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Tue Jan 6 16:32:31 2026 +0000

    Update version to 0.133.23

commit d05f11e
Author: guitavano <tavano62@gmail.com>
Date:   Tue Jan 6 13:32:20 2026 -0300

    fix fuzzy (deco-cx#1506)

commit 30ca287
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Tue Dec 23 21:38:11 2025 +0000

    Update version to 0.133.22

commit a42a08e
Author: guitavano <tavano62@gmail.com>
Date:   Tue Dec 23 18:38:01 2025 -0300

    Refactor _Controls component by removing unused DomInspector code and related logic (deco-cx#1504)

commit 9dd7e8a
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Wed Dec 17 19:40:34 2025 +0000

    Update version to 0.133.21

commit fa0c5a8
Author: Pedro Bernardina <pedro.bernardina@guidance.dev>
Date:   Wed Dec 17 16:40:21 2025 -0300

    feat(vtex): add schema parameter to Masterdata loaders and actions (deco-cx#1502)

    Co-authored-by: decobot <capy@deco.cx>

commit 05e5834
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Wed Dec 10 19:42:04 2025 +0000

    Update version to 0.133.20

commit 46f346d
Author: guitavano <tavano62@gmail.com>
Date:   Wed Dec 10 16:41:51 2025 -0300

    add wake optimization for images (deco-cx#1501)

    * add wake optimization for images

    * fmt

commit 2b0d583
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Wed Dec 10 16:27:37 2025 +0000

    Update version to 0.133.19

commit 47bb82e
Author: guitavano <tavano62@gmail.com>
Date:   Wed Dec 10 13:27:25 2025 -0300

    remove console.warn from Image Component (deco-cx#1499)

commit 6b8525b
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Wed Dec 10 16:25:05 2025 +0000

    Update version to 0.133.18

commit 3c7a7be
Author: guitavano <tavano62@gmail.com>
Date:   Wed Dec 10 13:24:53 2025 -0300

    add Vary Cookie (deco-cx#1483)

    * add Vary Cookie

    * only vary cookie if includes checkout

    * clear cookie if mismatch

    * improve log

    * only clear specific orderFormIds

    * clear blocklist even if it is not mismatch

    * Add orderFormIdsToClear variable for improved cart handling

    * handling better with logged cases

    * removed clear cart cookie

    * removed custom header from checkout

    ---------

    Co-authored-by: decobot <capy@deco.cx>

commit 7f44e26
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Wed Dec 10 15:26:23 2025 +0000

    Update version to 0.133.17

commit 535e9ac
Author: L. Sacci <167649583+aka-sacci-ccr@users.noreply.github.com>
Date:   Wed Dec 10 12:26:11 2025 -0300

    added inventory (deco-cx#1498)

    Co-authored-by: decobot <capy@deco.cx>

commit a94f6ad
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Mon Dec 8 17:09:48 2025 +0000

    Update version to 0.133.16

commit c1ceeef
Author: guitavano <tavano62@gmail.com>
Date:   Mon Dec 8 14:09:32 2025 -0300

    add data.decoassets.com (deco-cx#1496)

    * add data.decoassets.com

    * fmt

commit ecc4a9d
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Fri Dec 5 16:56:50 2025 +0000

    Update version to 0.133.15

commit 7c8f79d
Author: L. Sacci <167649583+aka-sacci-ccr@users.noreply.github.com>
Date:   Fri Dec 5 13:56:40 2025 -0300

    feat(hubspot): update ticket tool (deco-cx#1495)

    * feat(hubspot): update ticket tool

    * updated gen

    * updated gen

    ---------

    Co-authored-by: decobot <capy@deco.cx>

commit 3337db5
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Thu Dec 4 23:33:04 2025 +0000

    Update version to 0.133.14

commit e2b9abe
Author: L. Sacci <167649583+aka-sacci-ccr@users.noreply.github.com>
Date:   Thu Dec 4 20:32:53 2025 -0300

    fix(hubspot): thread params (deco-cx#1494)

    Co-authored-by: decobot <capy@deco.cx>

commit cd8a9eb
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Tue Dec 2 13:35:08 2025 +0000

    Update version to 0.133.13

commit 3afb7e1
Author: L. Sacci <167649583+aka-sacci-ccr@users.noreply.github.com>
Date:   Tue Dec 2 10:34:51 2025 -0300

    fix(linx): added forcing source (deco-cx#1490)

    * fix(linx): added forcing source

    * fmt

    * regen drive manifest

    ---------

    Co-authored-by: decobot <capy@deco.cx>

commit 3831358
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Tue Dec 2 13:33:55 2025 +0000

    Update version to 0.133.12

commit 4bfe751
Author: L. Sacci <167649583+aka-sacci-ccr@users.noreply.github.com>
Date:   Tue Dec 2 10:33:34 2025 -0300

    fix(vtex): listingPage loader sort (deco-cx#1491)

    Co-authored-by: decobot <capy@deco.cx>

commit 7fcdb23
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Mon Dec 1 19:01:09 2025 +0000

    Update version to 0.133.11

commit 5887e18
Author: L. Sacci <167649583+aka-sacci-ccr@users.noreply.github.com>
Date:   Mon Dec 1 16:00:55 2025 -0300

    small fix in hub client (deco-cx#1492)

    * small fix in hub client

    * fix in drive manifest

    ---------

    Co-authored-by: decobot <capy@deco.cx>

commit 67f142f
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Thu Nov 27 05:00:50 2025 +0000

    Update version to 0.133.10

commit 3f1c594
Author: Jonas Jesus <jonasjesus@carcara.tech>
Date:   Thu Nov 27 02:00:39 2025 -0300

    feat: add download file action for Google Drive with multiple output formats (deco-cx#1489)

    - Add DownloadFileParams and DownloadFileResult interfaces in types.ts
    - Add download endpoint to Client interface in client.ts
    - Add error constants for download operations in constant.ts
    - Create new download.ts action with support for 3 output formats:
      * link: Returns webContentLink without actual file download
      * base64: Downloads file and returns as base64 string
      * blob: Downloads file and returns as ArrayBuffer
    - Update mod.ts to include new error handlers

commit 9bf0b5a
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Tue Nov 25 19:21:39 2025 +0000

    Update version to 0.133.9

commit 52100b1
Author: Renan Henrique <93907598+RenanHCosta@users.noreply.github.com>
Date:   Tue Nov 25 16:21:24 2025 -0300

    feat: VNDA productListingPage default sorting param (deco-cx#1481)

    * feat: VNDA productListingPage default sorting param

    * fix: cacheKey sort precedence order

commit 278fcbf
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Fri Nov 21 13:43:21 2025 +0000

    Update version to 0.133.8

commit 5906a99
Author: L. Sacci <167649583+aka-sacci-ccr@users.noreply.github.com>
Date:   Fri Nov 21 10:43:10 2025 -0300

    fmt (deco-cx#1485)

    Co-authored-by: decobot <capy@deco.cx>

commit 91ea12e
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Fri Nov 21 13:38:56 2025 +0000

    Update version to 0.133.7

commit a708ba7
Author: Rafael Oliveira <87982042+pandeiro7@users.noreply.github.com>
Date:   Fri Nov 21 10:38:40 2025 -0300

    feat: simulationBehavior productDetails (deco-cx#1453)

    * feat: simulationBehavior productDetails

    * fix(pdp): simulation behaviour fallback

    ---------

    Co-authored-by: pandeiro7 <dev@tec4udigital.com>
    Co-authored-by: L. Sacci <167649583+aka-sacci-ccr@users.noreply.github.com>

commit 4fae26e
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Wed Nov 19 13:01:00 2025 +0000

    Update version to 0.133.6

commit 60cbaf2
Author: Tiago Gimenes <tlgimenes@gmail.com>
Date:   Wed Nov 19 10:00:46 2025 -0300

    chore: add logs to cart (deco-cx#1482)

    * add logs to cart

    * add logs to cart

commit 8ca84a8
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Wed Nov 19 00:29:24 2025 +0000

    Update version to 0.133.5

commit 728a967
Author: Marcos Candeia <marrcooos@gmail.com>
Date:   Tue Nov 18 21:29:12 2025 -0300

    Deduplicate vtex cookie (deco-cx#1480)

    * Deduplicate vtex cookie

    Signed-off-by: Marcos Candeia <marrcooos@gmail.com>

    * Use cookie with orderFormId on marketing data

    Signed-off-by: Marcos Candeia <marrcooos@gmail.com>

    * Fix orderform fn

    Signed-off-by: Marcos Candeia <marrcooos@gmail.com>

    * Format ts

    Signed-off-by: Marcos Candeia <marrcooos@gmail.com>

    * Adds cache no store

    Signed-off-by: Marcos Candeia <marrcooos@gmail.com>

    ---------

    Signed-off-by: Marcos Candeia <marrcooos@gmail.com>

commit 3b1a4a5
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Mon Nov 17 15:03:05 2025 +0000

    Update version to 0.133.4

commit e1aa80f
Author: Jonas Jesus <jonasjesus@carcara.tech>
Date:   Mon Nov 17 12:02:48 2025 -0300

    Error docs (deco-cx#1478)

    * fix: adjust return errors

    * fix: adjust return type to handle document retrieval errors properly

    * refactor: remove listDocuments and searchDocuments loaders to streamline document handling

    * refactor: update manifest to remove unused loaders and streamline imports

commit 89cd94c
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Mon Nov 17 14:13:49 2025 +0000

    Update version to 0.133.3

commit 09732ef
Author: Jonas Jesus <jonasjesus@carcara.tech>
Date:   Mon Nov 17 11:13:36 2025 -0300

    fix: adjust return errors (deco-cx#1477)

    * fix: adjust return errors

    * fix: adjust return type to handle document retrieval errors properly
vitoUwu added a commit to vitoUwu/apps that referenced this pull request Jan 23, 2026
commit 240ea15
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Thu Jan 22 21:24:51 2026 +0000

    Update version to 0.133.26

commit 6644343
Author: guitavano <tavano62@gmail.com>
Date:   Thu Jan 22 18:24:37 2026 -0300

    optionally remove UTMs from VTEX cachekeys (deco-cx#1517)

    * optionally remove UTMs from VTEX cachekeys

    * remove comments

    * coderabitai suggestion

commit ecac91e
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Mon Jan 19 16:04:08 2026 +0000

    Update version to 0.133.25

commit 80b2920
Author: guitavano <tavano62@gmail.com>
Date:   Mon Jan 19 13:03:53 2026 -0300

    Tavano/add cacheable matchers (deco-cx#1511)

    * add cacheable matchers

    * fmt

commit dee3782
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Wed Jan 7 19:54:04 2026 +0000

    Update version to 0.133.24

commit 800e3a9
Author: guitavano <tavano62@gmail.com>
Date:   Wed Jan 7 16:53:54 2026 -0300

    optmize magento (deco-cx#1507)

    * optmize magento

    * fmt

commit e5f8a84
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Tue Jan 6 16:32:31 2026 +0000

    Update version to 0.133.23

commit d05f11e
Author: guitavano <tavano62@gmail.com>
Date:   Tue Jan 6 13:32:20 2026 -0300

    fix fuzzy (deco-cx#1506)

commit 30ca287
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Tue Dec 23 21:38:11 2025 +0000

    Update version to 0.133.22

commit a42a08e
Author: guitavano <tavano62@gmail.com>
Date:   Tue Dec 23 18:38:01 2025 -0300

    Refactor _Controls component by removing unused DomInspector code and related logic (deco-cx#1504)

commit 9dd7e8a
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Wed Dec 17 19:40:34 2025 +0000

    Update version to 0.133.21

commit fa0c5a8
Author: Pedro Bernardina <pedro.bernardina@guidance.dev>
Date:   Wed Dec 17 16:40:21 2025 -0300

    feat(vtex): add schema parameter to Masterdata loaders and actions (deco-cx#1502)

    Co-authored-by: decobot <capy@deco.cx>

commit 05e5834
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Wed Dec 10 19:42:04 2025 +0000

    Update version to 0.133.20

commit 46f346d
Author: guitavano <tavano62@gmail.com>
Date:   Wed Dec 10 16:41:51 2025 -0300

    add wake optimization for images (deco-cx#1501)

    * add wake optimization for images

    * fmt

commit 2b0d583
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Wed Dec 10 16:27:37 2025 +0000

    Update version to 0.133.19

commit 47bb82e
Author: guitavano <tavano62@gmail.com>
Date:   Wed Dec 10 13:27:25 2025 -0300

    remove console.warn from Image Component (deco-cx#1499)

commit 6b8525b
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Wed Dec 10 16:25:05 2025 +0000

    Update version to 0.133.18

commit 3c7a7be
Author: guitavano <tavano62@gmail.com>
Date:   Wed Dec 10 13:24:53 2025 -0300

    add Vary Cookie (deco-cx#1483)

    * add Vary Cookie

    * only vary cookie if includes checkout

    * clear cookie if mismatch

    * improve log

    * only clear specific orderFormIds

    * clear blocklist even if it is not mismatch

    * Add orderFormIdsToClear variable for improved cart handling

    * handling better with logged cases

    * removed clear cart cookie

    * removed custom header from checkout

    ---------

    Co-authored-by: decobot <capy@deco.cx>

commit 7f44e26
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Wed Dec 10 15:26:23 2025 +0000

    Update version to 0.133.17

commit 535e9ac
Author: L. Sacci <167649583+aka-sacci-ccr@users.noreply.github.com>
Date:   Wed Dec 10 12:26:11 2025 -0300

    added inventory (deco-cx#1498)

    Co-authored-by: decobot <capy@deco.cx>

commit a94f6ad
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Mon Dec 8 17:09:48 2025 +0000

    Update version to 0.133.16

commit c1ceeef
Author: guitavano <tavano62@gmail.com>
Date:   Mon Dec 8 14:09:32 2025 -0300

    add data.decoassets.com (deco-cx#1496)

    * add data.decoassets.com

    * fmt

commit ecc4a9d
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Fri Dec 5 16:56:50 2025 +0000

    Update version to 0.133.15

commit 7c8f79d
Author: L. Sacci <167649583+aka-sacci-ccr@users.noreply.github.com>
Date:   Fri Dec 5 13:56:40 2025 -0300

    feat(hubspot): update ticket tool (deco-cx#1495)

    * feat(hubspot): update ticket tool

    * updated gen

    * updated gen

    ---------

    Co-authored-by: decobot <capy@deco.cx>

commit 3337db5
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Thu Dec 4 23:33:04 2025 +0000

    Update version to 0.133.14

commit e2b9abe
Author: L. Sacci <167649583+aka-sacci-ccr@users.noreply.github.com>
Date:   Thu Dec 4 20:32:53 2025 -0300

    fix(hubspot): thread params (deco-cx#1494)

    Co-authored-by: decobot <capy@deco.cx>

commit cd8a9eb
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Tue Dec 2 13:35:08 2025 +0000

    Update version to 0.133.13

commit 3afb7e1
Author: L. Sacci <167649583+aka-sacci-ccr@users.noreply.github.com>
Date:   Tue Dec 2 10:34:51 2025 -0300

    fix(linx): added forcing source (deco-cx#1490)

    * fix(linx): added forcing source

    * fmt

    * regen drive manifest

    ---------

    Co-authored-by: decobot <capy@deco.cx>

commit 3831358
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Tue Dec 2 13:33:55 2025 +0000

    Update version to 0.133.12

commit 4bfe751
Author: L. Sacci <167649583+aka-sacci-ccr@users.noreply.github.com>
Date:   Tue Dec 2 10:33:34 2025 -0300

    fix(vtex): listingPage loader sort (deco-cx#1491)

    Co-authored-by: decobot <capy@deco.cx>

commit 7fcdb23
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Mon Dec 1 19:01:09 2025 +0000

    Update version to 0.133.11

commit 5887e18
Author: L. Sacci <167649583+aka-sacci-ccr@users.noreply.github.com>
Date:   Mon Dec 1 16:00:55 2025 -0300

    small fix in hub client (deco-cx#1492)

    * small fix in hub client

    * fix in drive manifest

    ---------

    Co-authored-by: decobot <capy@deco.cx>

commit 67f142f
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Thu Nov 27 05:00:50 2025 +0000

    Update version to 0.133.10

commit 3f1c594
Author: Jonas Jesus <jonasjesus@carcara.tech>
Date:   Thu Nov 27 02:00:39 2025 -0300

    feat: add download file action for Google Drive with multiple output formats (deco-cx#1489)

    - Add DownloadFileParams and DownloadFileResult interfaces in types.ts
    - Add download endpoint to Client interface in client.ts
    - Add error constants for download operations in constant.ts
    - Create new download.ts action with support for 3 output formats:
      * link: Returns webContentLink without actual file download
      * base64: Downloads file and returns as base64 string
      * blob: Downloads file and returns as ArrayBuffer
    - Update mod.ts to include new error handlers

commit 9bf0b5a
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Tue Nov 25 19:21:39 2025 +0000

    Update version to 0.133.9

commit 52100b1
Author: Renan Henrique <93907598+RenanHCosta@users.noreply.github.com>
Date:   Tue Nov 25 16:21:24 2025 -0300

    feat: VNDA productListingPage default sorting param (deco-cx#1481)

    * feat: VNDA productListingPage default sorting param

    * fix: cacheKey sort precedence order

commit 278fcbf
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Fri Nov 21 13:43:21 2025 +0000

    Update version to 0.133.8

commit 5906a99
Author: L. Sacci <167649583+aka-sacci-ccr@users.noreply.github.com>
Date:   Fri Nov 21 10:43:10 2025 -0300

    fmt (deco-cx#1485)

    Co-authored-by: decobot <capy@deco.cx>

commit 91ea12e
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Fri Nov 21 13:38:56 2025 +0000

    Update version to 0.133.7

commit a708ba7
Author: Rafael Oliveira <87982042+pandeiro7@users.noreply.github.com>
Date:   Fri Nov 21 10:38:40 2025 -0300

    feat: simulationBehavior productDetails (deco-cx#1453)

    * feat: simulationBehavior productDetails

    * fix(pdp): simulation behaviour fallback

    ---------

    Co-authored-by: pandeiro7 <dev@tec4udigital.com>
    Co-authored-by: L. Sacci <167649583+aka-sacci-ccr@users.noreply.github.com>

commit 4fae26e
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Wed Nov 19 13:01:00 2025 +0000

    Update version to 0.133.6

commit 60cbaf2
Author: Tiago Gimenes <tlgimenes@gmail.com>
Date:   Wed Nov 19 10:00:46 2025 -0300

    chore: add logs to cart (deco-cx#1482)

    * add logs to cart

    * add logs to cart

commit 8ca84a8
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Wed Nov 19 00:29:24 2025 +0000

    Update version to 0.133.5

commit 728a967
Author: Marcos Candeia <marrcooos@gmail.com>
Date:   Tue Nov 18 21:29:12 2025 -0300

    Deduplicate vtex cookie (deco-cx#1480)

    * Deduplicate vtex cookie

    Signed-off-by: Marcos Candeia <marrcooos@gmail.com>

    * Use cookie with orderFormId on marketing data

    Signed-off-by: Marcos Candeia <marrcooos@gmail.com>

    * Fix orderform fn

    Signed-off-by: Marcos Candeia <marrcooos@gmail.com>

    * Format ts

    Signed-off-by: Marcos Candeia <marrcooos@gmail.com>

    * Adds cache no store

    Signed-off-by: Marcos Candeia <marrcooos@gmail.com>

    ---------

    Signed-off-by: Marcos Candeia <marrcooos@gmail.com>

commit 3b1a4a5
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Mon Nov 17 15:03:05 2025 +0000

    Update version to 0.133.4

commit e1aa80f
Author: Jonas Jesus <jonasjesus@carcara.tech>
Date:   Mon Nov 17 12:02:48 2025 -0300

    Error docs (deco-cx#1478)

    * fix: adjust return errors

    * fix: adjust return type to handle document retrieval errors properly

    * refactor: remove listDocuments and searchDocuments loaders to streamline document handling

    * refactor: update manifest to remove unused loaders and streamline imports

commit 89cd94c
Author: decobot <github-actions[bot]@users.noreply.github.com>
Date:   Mon Nov 17 14:13:49 2025 +0000

    Update version to 0.133.3

commit 09732ef
Author: Jonas Jesus <jonasjesus@carcara.tech>
Date:   Mon Nov 17 11:13:36 2025 -0300

    fix: adjust return errors (deco-cx#1477)

    * fix: adjust return errors

    * fix: adjust return type to handle document retrieval errors properly
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants