@acedatacloud/skills 2026.622.2 → 2026.622.3
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acedatacloud/skills",
|
|
3
|
-
"version": "2026.622.
|
|
3
|
+
"version": "2026.622.3",
|
|
4
4
|
"description": "Agent Skills for AceDataCloud AI services — music, image, video generation, LLM chat, web search. Compatible with Claude Code, GitHub Copilot, Gemini CLI, OpenAI Codex, and 30+ AI coding agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-skills",
|
|
@@ -24,6 +24,14 @@ Failures are `{"error":{"code","message"}}` — show `message` verbatim. `401` =
|
|
|
24
24
|
re-install. `403`/`Forbidden` on send = the user granted read-only
|
|
25
25
|
(`Chat.Read`) → re-connect with `Chat.ReadWrite` + `ChatMessage.Send`.
|
|
26
26
|
|
|
27
|
+
**`403 "No authorization information present on the request"` on `/me/chats` =
|
|
28
|
+
the connected account is a *personal* Microsoft account.** Teams chat is a
|
|
29
|
+
work/school (organization) feature — Microsoft Graph does not expose `/me/chats`
|
|
30
|
+
or grant the `Chat.*` scopes for personal MSA accounts (outlook.com/hotmail/etc).
|
|
31
|
+
Tell the user plainly: "Microsoft Teams chat needs a work or school account;
|
|
32
|
+
your connected account is a personal Microsoft account. Reconnect Teams and
|
|
33
|
+
choose a work/school account." Do not retry — it cannot succeed for that account.
|
|
34
|
+
|
|
27
35
|
```bash
|
|
28
36
|
G="https://graph.microsoft.com/v1.0"; AUTH="Authorization: Bearer $MICROSOFT_TEAMS_TOKEN"
|
|
29
37
|
# My chats (1:1 + group), most recent first; expand members for names
|