@integrity-labs/agt-cli 0.28.243 → 0.28.245

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.
@@ -14339,7 +14339,14 @@ function renderSlackBlocks(blocks) {
14339
14339
  const out = [];
14340
14340
  try {
14341
14341
  for (const block of asArray(blocks)) {
14342
- if (!isRecord(block) || asString(block.type) !== "rich_text") continue;
14342
+ if (!isRecord(block)) continue;
14343
+ if (isTableElement(block)) {
14344
+ hadTable = true;
14345
+ const rendered = renderTable(block);
14346
+ if (rendered.trim().length > 0) out.push(rendered);
14347
+ continue;
14348
+ }
14349
+ if (asString(block.type) !== "rich_text") continue;
14343
14350
  for (const section of asArray(block.elements)) {
14344
14351
  if (isTableElement(section)) hadTable = true;
14345
14352
  const rendered = renderSection(section, 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.243",
3
+ "version": "0.28.245",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {