@rex0220/kintone-sql-tools 1.12.0 → 1.12.1

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-cli/ksql.js CHANGED
@@ -6908,7 +6908,7 @@ function normalizeAppKey(v) {
6908
6908
  }
6909
6909
  function extractAppIds(sql) {
6910
6910
  const out = /* @__PURE__ */ new Set();
6911
- for (const m of sql.matchAll(/\bAPP(\d+)\b/gi)) out.add(Number(m[1]));
6911
+ for (const t of collectAppProfileTokens(sql)) out.add(t.appId);
6912
6912
  return [...out];
6913
6913
  }
6914
6914
  function isSqlIdentContinue(ch) {
@@ -37690,7 +37690,7 @@ function normalizeAppKey(v) {
37690
37690
  }
37691
37691
  function extractAppIds(sql) {
37692
37692
  const out = /* @__PURE__ */ new Set();
37693
- for (const m of sql.matchAll(/\bAPP(\d+)\b/gi)) out.add(Number(m[1]));
37693
+ for (const t of collectAppProfileTokens(sql)) out.add(t.appId);
37694
37694
  return [...out];
37695
37695
  }
37696
37696
  function isSqlIdentContinue(ch) {
@@ -39275,7 +39275,7 @@ Options:
39275
39275
  -h, --help Show help
39276
39276
  `);
39277
39277
  }
39278
- var SERVER_VERSION = true ? "1.12.0" : "0.0.0-dev";
39278
+ var SERVER_VERSION = true ? "1.12.1" : "0.0.0-dev";
39279
39279
  function createServer(args) {
39280
39280
  const server = new McpServer({
39281
39281
  name: "ksql-mcp",
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rex0220/kintone-sql-tools",
3
- "version": "1.12.0",
3
+ "version": "1.12.1",
4
4
  "description": "kintone SQL plugin, CLI, and MCP tools (ksql)",
5
5
  "publishConfig": {
6
6
  "access": "public"