@rync/moorline-discord-default 0.0.2
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/index.mjs +9 -0
- package/manifest.json +21 -0
- package/moorline.dist.json +26 -0
- package/package.json +36 -0
- package/packages/plugins/rync/discord-runtime/index.mjs +1195 -0
- package/packages/plugins/rync/discord-runtime/manifest.json +37 -0
- package/packages/plugins/rync/discord-runtime/modules/routing/coordination.md +9 -0
- package/packages/plugins/rync/discord-runtime/modules/routing/session.md +7 -0
- package/packages/plugins/rync/discord-runtime/moorline.dist.json +8 -0
- package/packages/transports/rync/discord/index.mjs +76839 -0
- package/packages/transports/rync/discord/manifest.json +48 -0
- package/packages/transports/rync/discord/moorline.dist.json +26 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "rync/discord",
|
|
3
|
+
"name": "rync/discord",
|
|
4
|
+
"version": "0.0.2",
|
|
5
|
+
"type": "transport",
|
|
6
|
+
"description": "Rync Discord transport package.",
|
|
7
|
+
"entrypoint": "index.mjs",
|
|
8
|
+
"displayCategory": "Rync Transports",
|
|
9
|
+
"activation": {
|
|
10
|
+
"uniqueKey": "transport"
|
|
11
|
+
},
|
|
12
|
+
"configSchema": {
|
|
13
|
+
"type": "object",
|
|
14
|
+
"required": [
|
|
15
|
+
"authToken",
|
|
16
|
+
"scopeId"
|
|
17
|
+
],
|
|
18
|
+
"properties": {
|
|
19
|
+
"authToken": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"title": "Bot token",
|
|
22
|
+
"description": "Discord bot token for the managed application.",
|
|
23
|
+
"secret": true
|
|
24
|
+
},
|
|
25
|
+
"scopeId": {
|
|
26
|
+
"type": "string",
|
|
27
|
+
"title": "Server ID",
|
|
28
|
+
"description": "Discord server or scope id."
|
|
29
|
+
},
|
|
30
|
+
"applicationId": {
|
|
31
|
+
"type": "string",
|
|
32
|
+
"title": "Application ID",
|
|
33
|
+
"description": "System-managed Discord application id derived from the bot token."
|
|
34
|
+
},
|
|
35
|
+
"actorId": {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"title": "Bot user ID",
|
|
38
|
+
"description": "System-managed Discord bot user id derived from the bot token."
|
|
39
|
+
},
|
|
40
|
+
"invitePermissions": {
|
|
41
|
+
"type": "string",
|
|
42
|
+
"title": "Invite permissions",
|
|
43
|
+
"description": "System-managed Discord invite permissions bitfield required for the managed surface.",
|
|
44
|
+
"default": "268528720"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"display": {
|
|
4
|
+
"name": "Discord Transport",
|
|
5
|
+
"description": "Rync Discord transport package for Moorline.",
|
|
6
|
+
"version": "0.0.2",
|
|
7
|
+
"category": "Rync Transports",
|
|
8
|
+
"tags": [
|
|
9
|
+
"rync",
|
|
10
|
+
"discord",
|
|
11
|
+
"transport"
|
|
12
|
+
],
|
|
13
|
+
"publisher": "Rync",
|
|
14
|
+
"experimental": false
|
|
15
|
+
},
|
|
16
|
+
"distribution": {
|
|
17
|
+
"audiences": [
|
|
18
|
+
"advanced"
|
|
19
|
+
],
|
|
20
|
+
"setupOrder": 10
|
|
21
|
+
},
|
|
22
|
+
"release": {
|
|
23
|
+
"recommendedRef": "v0.0.2",
|
|
24
|
+
"channel": "stable"
|
|
25
|
+
}
|
|
26
|
+
}
|