@standardagents/builder 0.9.12 → 0.9.13

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.
package/dist/plugin.js CHANGED
@@ -1683,7 +1683,7 @@ function scanApiDirectory(dir, baseRoute = "") {
1683
1683
  routes.push(...scanApiDirectory(fullPath, subRoute));
1684
1684
  } else if (entry.isFile() && entry.name.endsWith(".ts")) {
1685
1685
  const fileName = entry.name.replace(/\.ts$/, "");
1686
- let method = "GET";
1686
+ let method = "";
1687
1687
  let routePath = baseRoute;
1688
1688
  if (fileName.includes(".")) {
1689
1689
  const parts = fileName.split(".");