@townco/core 0.0.90 → 0.0.92

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@townco/core",
3
3
  "type": "module",
4
- "version": "0.0.90",
4
+ "version": "0.0.92",
5
5
  "description": "core",
6
6
  "license": "UNLICENSED",
7
7
  "main": "./dist/index.js",
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "devDependencies": {
32
32
  "@typescript/native-preview": "^7.0.0-dev.20251207.1",
33
- "@townco/tsconfig": "0.1.109"
33
+ "@townco/tsconfig": "0.1.111"
34
34
  },
35
35
  "scripts": {
36
36
  "build": "tsgo",
@@ -1,10 +0,0 @@
1
- /**
2
- * Shared API route name constants.
3
- * These constants ensure that route names stay in sync between
4
- * the API definition and API consumers (like the CLI).
5
- */
6
- export declare const API_ROUTES: {
7
- readonly GREET: "greet";
8
- readonly UPLOAD_ARCHIVE: "uploadArchive";
9
- readonly DEPLOY: "deploy";
10
- };
@@ -1,10 +0,0 @@
1
- /**
2
- * Shared API route name constants.
3
- * These constants ensure that route names stay in sync between
4
- * the API definition and API consumers (like the CLI).
5
- */
6
- export const API_ROUTES = {
7
- GREET: "greet",
8
- UPLOAD_ARCHIVE: "uploadArchive",
9
- DEPLOY: "deploy",
10
- };