@pi-unipi/core 0.1.13 → 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 +7 -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 */
@@ -294,6 +295,12 @@ export const MILESTONE_DIRS = {
294
295
  MILESTONES: ".unipi/docs/MILESTONES.md",
295
296
  } as const;
296
297
 
298
+ /** Footer command names */
299
+ export const FOOTER_COMMANDS = {
300
+ FOOTER: "footer",
301
+ FOOTER_SETTINGS: "footer-settings",
302
+ } as const;
303
+
297
304
  /** Compactor defaults */
298
305
  export const COMPACTOR_DEFAULTS = {
299
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.13",
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",