Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/channel-listings-fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@saleor/configurator": patch
---

Implemented channel listings for products and variants. Products can now be published to specific channels with pricing and visibility settings. Fixed entity identification to use slugs instead of names for categories, channels, and products to prevent duplicate detection issues.
5 changes: 5 additions & 0 deletions .changeset/four-sides-press.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@saleor/configurator": patch
---

Implemented channel listings for products and variants. Products can now be published to specific channels with pricing and visibility settings. Fixed entity identification to use slugs instead of names for categories, channels, and products to prevent duplicate detection issues.
4 changes: 2 additions & 2 deletions bin/cli.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

// ESM wrapper for better npx compatibility
async function main() {
const { runCLI } = await import('../dist/main.js');
const { runCLI } = await import("../dist/main.js");
await runCLI();
}

main().catch(console.error);
main().catch(console.error);
Loading