@mikitasazan/notify 1.18.0 → 1.19.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/events.d.ts +1 -1
- package/dist/routes.d.ts +1 -1
- package/dist/routes.js +3 -2
- package/package.json +1 -1
package/dist/events.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* - required fields are never added — only a new event type.
|
|
11
11
|
* That keeps old caller code and a new package compatible both ways.
|
|
12
12
|
*/
|
|
13
|
-
export type Project = 'playhub' | 'one-q' | 'zabukai' | 'game-publisher' | 'vault' | 'mac-config' | 'alitools' | '
|
|
13
|
+
export type Project = 'playhub' | 'one-q' | 'zabukai' | 'game-publisher' | 'vault' | 'mac-config' | 'alitools' | 'htmlg';
|
|
14
14
|
/**
|
|
15
15
|
* A stable machine key for the task — the instance tag on the FIRST line of
|
|
16
16
|
* every card, shaped as `#key` (with no project name: the card already sits
|
package/dist/routes.d.ts
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* (people's live chat). A project the owner runs alone is a plain
|
|
9
9
|
* supergroup without topics — the robots post straight into it and there
|
|
10
10
|
* is nobody to talk to in a Dev tab (owner's rule of 2026-09-05; the first
|
|
11
|
-
* such chat is `
|
|
11
|
+
* such chat is `htmlg`). A plain chat has no `ops` number: the message
|
|
12
12
|
* goes to the chat itself.
|
|
13
13
|
*
|
|
14
14
|
* Why not one shared forum with a topic per project — that was the first
|
package/dist/routes.js
CHANGED
|
@@ -23,8 +23,9 @@ export const ROUTES = {
|
|
|
23
23
|
alitools: { chat: '-1003904331479', ops: 3 },
|
|
24
24
|
// Solo project, plain supergroup without topics (owner's rule 05.09.2026):
|
|
25
25
|
// no `ops`, no `dev`, the bot posts into the chat itself. Created
|
|
26
|
-
// 05.09.2026 as «
|
|
27
|
-
|
|
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).
|
|
28
|
+
htmlg: { chat: '-1004334723487' }
|
|
28
29
|
};
|
|
29
30
|
/**
|
|
30
31
|
* Where an event goes. Everything goes to its own project's "Ops" tab; a
|
package/package.json
CHANGED