@mikitasazan/notify 1.19.0 → 1.20.0
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/routes.js +19 -24
- package/package.json +1 -1
package/dist/routes.js
CHANGED
|
@@ -1,30 +1,25 @@
|
|
|
1
1
|
import { severity } from "./events.js";
|
|
2
2
|
export const ROUTES = {
|
|
3
|
-
//
|
|
4
|
-
//
|
|
5
|
-
//
|
|
6
|
-
// message, it is
|
|
3
|
+
// The only project with a team, and so the only forum left. ops/dev =
|
|
4
|
+
// 22/23, not 3/4: the old tabs were deleted by hand on 27.07.2026, and
|
|
5
|
+
// Telegram removes a topic's messages along with it. A recreated topic
|
|
6
|
+
// gets a NEW id — a topic's id is the id of its first message, it is
|
|
7
|
+
// never reused.
|
|
7
8
|
zabukai: { chat: '-1004299939100', ops: 22, dev: 23 },
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
//
|
|
12
|
-
//
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
//
|
|
20
|
-
//
|
|
21
|
-
//
|
|
22
|
-
// were getting lost on "unknown project" for weeks.
|
|
23
|
-
alitools: { chat: '-1003904331479', ops: 3 },
|
|
24
|
-
// Solo project, plain supergroup without topics (owner's rule 05.09.2026):
|
|
25
|
-
// no `ops`, no `dev`, the bot posts into the chat itself. Created
|
|
26
|
-
// 05.09.2026 as «HTMLG · Ops» (HTMLG is the HTML5-games business; the brand
|
|
27
|
-
// and domain of its portal may change, the project name does not).
|
|
9
|
+
// Every row below is a project the owner runs alone. Their Topics were
|
|
10
|
+
// turned off on 06.09.2026 and their `ops` numbers went with them: a card
|
|
11
|
+
// now goes to the chat itself. Sending a thread id into a chat that is no
|
|
12
|
+
// longer a forum fails with "message thread not found", so a row here and
|
|
13
|
+
// the chat's own setting must always agree.
|
|
14
|
+
playhub: { chat: '-1004418379613' },
|
|
15
|
+
'game-publisher': { chat: '-1004292453693' },
|
|
16
|
+
'one-q': { chat: '-1004466909784' },
|
|
17
|
+
vault: { chat: '-1004459314999' },
|
|
18
|
+
'mac-config': { chat: '-1004442522004' },
|
|
19
|
+
alitools: { chat: '-1003904331479' },
|
|
20
|
+
// Created 05.09.2026 as «HTMLG · Ops», the first chat built this way
|
|
21
|
+
// (HTMLG is the HTML5-games business; the brand and domain of its portal
|
|
22
|
+
// may change, the project name does not).
|
|
28
23
|
htmlg: { chat: '-1004334723487' }
|
|
29
24
|
};
|
|
30
25
|
/**
|
package/package.json
CHANGED