@neobiotechlabs/neobiotech-dev-agent 0.1.11 → 0.1.12

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.
@@ -10,7 +10,7 @@
10
10
  "source": "npm",
11
11
  "package": "@neobiotechlabs/neobiotech-dev-agent",
12
12
  "registry": "https://registry.npmjs.org",
13
- "version": "0.1.11"
13
+ "version": "0.1.12"
14
14
  },
15
15
  "description": "의료기기 SW 규제 개발 자동화 (Jira·Confluence·Risk·CVSS·Xray·IEC 62304/62366·MDR·문서 렌더)",
16
16
  "category": "medical-device",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neobiotech-dev-agent",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "displayName": "NeoBiotech Dev Agent (MedDev)",
5
5
  "description": "의료기기 SW 규제 개발 자동화 — Jira·Confluence·Risk·CVSS·Xray·IEC 62304/62366·MDR·문서 렌더",
6
6
  "author": {
package/dist/index.js CHANGED
@@ -14734,7 +14734,12 @@ function listItemToBlocks(item) {
14734
14734
  const subs = Array.isArray(item?.tokens) ? item.tokens : [];
14735
14735
  const blocks = [];
14736
14736
  for (const sub of subs) {
14737
- const b2 = tokenToAdfBlock(sub);
14737
+ const tok = sub;
14738
+ if (tok?.type === "text" && Array.isArray(tok.tokens)) {
14739
+ blocks.push(paragraphFromTokens(tok.text, tok.tokens));
14740
+ continue;
14741
+ }
14742
+ const b2 = tokenToAdfBlock(tok);
14738
14743
  if (b2) blocks.push(b2);
14739
14744
  }
14740
14745
  if (!blocks.length) {
@@ -34008,7 +34013,7 @@ var xrayClientSecret = process.env.XRAY_CLIENT_SECRET || "";
34008
34013
  var xray = xrayClientId && xrayClientSecret ? new XrayClient(xrayClientId, xrayClientSecret, jiraUrl, jiraEmail, jiraToken) : null;
34009
34014
  var server = new McpServer({
34010
34015
  name: "jira-confluence",
34011
- version: "0.1.11"
34016
+ version: "0.1.12"
34012
34017
  });
34013
34018
  var ctx = { server, jira, confluence, risk, xray };
34014
34019
  registerJiraCrudTools(ctx);