@enricai/barnacle 1.12.55 → 1.12.56

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.
@@ -9878,7 +9878,7 @@ ${dataFoldMergeBlock} return { data };`;
9878
9878
  export const ${pascal}InternalRequestReference = ${internalRequestReferenceExpr};
9879
9879
  `
9880
9880
  : "";
9881
- const camel = siteId.replace(/-([a-z])/g, (_, c) => c.toUpperCase());
9881
+ const camel = siteId.replace(/-([a-z0-9])/g, (_, c) => c.toUpperCase());
9882
9882
  // Browser-flow-only plugins need neither Bottleneck (no rate-limited HTTP
9883
9883
  // client) nor BASE_HEADERS (no per-call headers to bake in) — both would
9884
9884
  // sit unreferenced and trip Biome's `noUnusedVariables`.
@@ -10455,7 +10455,7 @@ ${flowStepsBlock}
10455
10455
  * test can drive the emitter directly without spawning the CLI. */
10456
10456
  function emitIndexTs(opts) {
10457
10457
  const { siteId } = opts;
10458
- const camel = siteId.replace(/-([a-z])/g, (_, c) => c.toUpperCase());
10458
+ const camel = siteId.replace(/-([a-z0-9])/g, (_, c) => c.toUpperCase());
10459
10459
  return `/**
10460
10460
  * Generated by recon-generate.ts.
10461
10461
  * Build this package, then point BARNACLE_PLUGINS at the compiled module —