@circlesac/holla 26.3.10 → 26.3.11

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/package.json CHANGED
@@ -42,5 +42,5 @@
42
42
  "test": "vitest run"
43
43
  },
44
44
  "type": "module",
45
- "version": "26.3.10"
45
+ "version": "26.3.11"
46
46
  }
@@ -92,15 +92,9 @@ holla slack search messages --query "keyword" -w <ws> --json
92
92
 
93
93
  Options: `--sort timestamp|score`, `--sort-dir asc|desc`, `--limit <n>`, `--page <n>`
94
94
 
95
- ### Thread link caveat
95
+ ### Permalink in search results
96
96
 
97
- `search messages` returns the **reply's ts**, not the parent thread ts (`thread_ts`). This is a Slack Search API limitation.
98
- Building a URL from the reply ts (`https://...slack.com/archives/CH_ID/pTS`) will **highlight the wrong message or fail to scroll to the thread**.
99
-
100
- **To build a correct thread link:**
101
- 1. Fetch the thread: `channels history --channel CH_ID --thread TS`
102
- 2. Read `thread_ts` from the first message (= parent ts)
103
- 3. Build URL with the parent ts: `https://WORKSPACE.slack.com/archives/CH_ID/p{thread_ts without dot}`
97
+ Since v26.3.10, `search messages` returns a `permalink` field in `--json` output use it directly instead of constructing URLs manually. The permalink correctly points to the message within its thread.
104
98
 
105
99
  ## Canvases
106
100