@wix/ditto-codegen-public 1.0.277 → 1.0.279

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.
@@ -14,6 +14,7 @@ export default tool({
14
14
  .describe("Number of UUIDs to generate."),
15
15
  },
16
16
  async execute(args) {
17
- return Array.from({ length: args.count }, () => randomUUID()).join("\n");
17
+ const count = args.count ?? 1;
18
+ return Array.from({ length: count }, () => randomUUID()).join("\n");
18
19
  },
19
20
  });
package/dist/out.js CHANGED
@@ -17624,7 +17624,11 @@ var require_pre_run_decision = __commonJS({
17624
17624
  function applyTypeToBlueprint(blueprint, extensionName, type) {
17625
17625
  return {
17626
17626
  ...blueprint,
17627
- extensions: blueprint.extensions?.map((ext) => ext.name === extensionName ? { ...ext, type } : ext)
17627
+ extensions: blueprint.extensions?.map((ext) => ext.name === extensionName ? {
17628
+ ...ext,
17629
+ type,
17630
+ _userDecision: "IMPORTANT: The user explicitly chose this extension type. You MUST use this exact type."
17631
+ } : ext)
17628
17632
  };
17629
17633
  }
17630
17634
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/ditto-codegen-public",
3
- "version": "1.0.277",
3
+ "version": "1.0.279",
4
4
  "description": "AI-powered Wix CLI app generator - standalone executable",
5
5
  "scripts": {
6
6
  "build": "node build.mjs",
@@ -27,5 +27,5 @@
27
27
  "@wix/ditto-codegen": "1.0.0",
28
28
  "esbuild": "^0.27.2"
29
29
  },
30
- "falconPackageHash": "f0059fd4e9e9e0c38f0aed2736cc7fece45c525cd38c430c579da505"
30
+ "falconPackageHash": "3bb5e7854894bf44daae2d3f91f2088165562ac7d5c017e8479f7dd3"
31
31
  }