@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.
- package/dist/bin/agt.js +3 -3
- package/dist/{chunk-U2WPXD6Q.js → chunk-NMSN674U.js} +2 -2
- package/dist/lib/manager-worker.js +22 -17
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +8 -1
- package/package.json +1 -1
- /package/dist/{chunk-U2WPXD6Q.js.map → chunk-NMSN674U.js.map} +0 -0
|
@@ -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)
|
|
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
|
File without changes
|