chatBskyGroupEnableJoinLink top-level constant
chat.bsky.group.enableJoinLink
Implementation
const chatBskyGroupEnableJoinLink = <String, dynamic>{
"lexicon": 1,
"id": "chat.bsky.group.enableJoinLink",
"defs": {
"main": {
"type": "procedure",
"description":
"Re-enables a previously disabled join link for the group convo.",
"input": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["convoId"],
"properties": {
"convoId": {"type": "string"},
},
},
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["joinLink"],
"properties": {
"joinLink": {
"type": "ref",
"ref": "chat.bsky.group.defs#joinLinkView",
},
},
},
},
"errors": [
{"name": "InvalidConvo"},
{"name": "InsufficientRole"},
{"name": "NoJoinLink"},
{"name": "LinkAlreadyEnabled"},
],
},
},
};