@spfn/core 0.1.0-alpha.74 → 0.1.0-alpha.81

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.
@@ -1,7 +1,7 @@
1
1
  import { G as Generator, a as GeneratorTrigger } from '../index-DHiAqhKv.js';
2
2
  export { C as ContractGeneratorConfig, b as GeneratorOptions, c as createContractGenerator } from '../index-DHiAqhKv.js';
3
3
  import '../auto-loader-JFaZ9gON.js';
4
- import { H as HttpMethod } from '../types-Dzggq1Yb.js';
4
+ import { H as HttpMethod } from '../types-DYueuoD6.js';
5
5
  import 'hono';
6
6
  import 'hono/utils/http-status';
7
7
  import '@sinclair/typebox';
@@ -1399,7 +1399,7 @@ function generateIndexFile(grouped, options) {
1399
1399
  }
1400
1400
  }
1401
1401
  if (typeNames.length > 0) {
1402
- code += `export type { ${typeNames.join(", ")} } from './${kebabName}.js';
1402
+ code += `export type { ${typeNames.join(", ")} } from './${kebabName}';
1403
1403
  `;
1404
1404
  }
1405
1405
  }
@@ -1410,7 +1410,7 @@ function generateIndexFile(grouped, options) {
1410
1410
  const routes = grouped[resourceName];
1411
1411
  const kebabName = toKebabCase(resourceName);
1412
1412
  const functionNames = routes.map((route) => generateFunctionName(route));
1413
- code += `import { ${functionNames.join(", ")} } from './${kebabName}.js';
1413
+ code += `import { ${functionNames.join(", ")} } from './${kebabName}';
1414
1414
  `;
1415
1415
  }
1416
1416
  code += `