@pi-unipi/core 0.1.12 → 0.1.14

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.
Files changed (2) hide show
  1. package/constants.ts +9 -0
  2. package/package.json +1 -1
package/constants.ts CHANGED
@@ -35,6 +35,7 @@ export const MODULES = {
35
35
  BTW: "@pi-unipi/btw",
36
36
  MILESTONE: "@pi-unipi/milestone",
37
37
  KANBOARD: "@pi-unipi/kanboard",
38
+ FOOTER: "@pi-unipi/footer",
38
39
  } as const;
39
40
 
40
41
  /** Workflow command names */
@@ -268,7 +269,9 @@ export const NOTIFY_COMMANDS = {
268
269
  SETTINGS: "notify-settings",
269
270
  SET_GOTIFY: "notify-set-gotify",
270
271
  SET_TG: "notify-set-tg",
272
+ SET_NTFY: "notify-set-ntfy",
271
273
  TEST: "notify-test",
274
+ RECAP_MODEL: "notify-recap-model",
272
275
  } as const;
273
276
 
274
277
  /** Notify tool names */
@@ -292,6 +295,12 @@ export const MILESTONE_DIRS = {
292
295
  MILESTONES: ".unipi/docs/MILESTONES.md",
293
296
  } as const;
294
297
 
298
+ /** Footer command names */
299
+ export const FOOTER_COMMANDS = {
300
+ FOOTER: "footer",
301
+ FOOTER_SETTINGS: "footer-settings",
302
+ } as const;
303
+
295
304
  /** Compactor defaults */
296
305
  export const COMPACTOR_DEFAULTS = {
297
306
  MAX_EVENTS_PER_SESSION: 1000,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-unipi/core",
3
- "version": "0.1.12",
3
+ "version": "0.1.14",
4
4
  "description": "Shared utilities, event types, and constants for Unipi extension suite",
5
5
  "type": "module",
6
6
  "license": "MIT",