@interfere/constants 1.0.0 → 1.0.2

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/api.d.mts ADDED
@@ -0,0 +1,8 @@
1
+ //#region src/api.d.ts
2
+ declare const API_URL = "https://in.interfere.com";
3
+ declare const API_PATHS: {
4
+ readonly INGEST: "/v1/ingest";
5
+ readonly SESSION: "/v1/session";
6
+ };
7
+ //#endregion
8
+ export { API_PATHS, API_URL };
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api.d.mts","names":[],"sources":["../src/api.ts"],"mappings":";cAAa,OAAA;AAAA,cAEA,SAAA;EAAA,SAGH,MAAA;EAAA,SAAA,OAAA;AAAA"}
package/dist/api.mjs ADDED
@@ -0,0 +1,8 @@
1
+ //#region src/api.ts
2
+ const API_URL = "https://in.interfere.com";
3
+ const API_PATHS = {
4
+ INGEST: "/v1/ingest",
5
+ SESSION: "/v1/session"
6
+ };
7
+ //#endregion
8
+ export { API_PATHS, API_URL };
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api.mjs","names":[],"sources":["../src/api.ts"],"sourcesContent":["export const API_URL = \"https://in.interfere.com\";\n\nexport const API_PATHS = {\n INGEST: \"/v1/ingest\",\n SESSION: \"/v1/session\",\n} as const;\n"],"mappings":";AAAA,MAAa,UAAU;AAEvB,MAAa,YAAY;CACvB,QAAQ;CACR,SAAS;CACV"}
@@ -0,0 +1,2 @@
1
+ import { Status, StatusText } from "better-status-codes";
2
+ export { Status, StatusText };
package/dist/http.mjs ADDED
@@ -0,0 +1,2 @@
1
+ import { Status, StatusText } from "better-status-codes";
2
+ export { Status, StatusText };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@interfere/constants",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "license": "MIT",
5
5
  "description": "Build apps that never break.",
6
6
  "keywords": [
@@ -50,12 +50,12 @@
50
50
  "typecheck": "tsc --noEmit --incremental"
51
51
  },
52
52
  "dependencies": {
53
- "better-status-codes": "catalog:"
53
+ "better-status-codes": "^2.1.5"
54
54
  },
55
55
  "devDependencies": {
56
- "@interfere/typescript-config": "workspace:*",
57
- "@types/node": "catalog:",
58
- "tsdown": "catalog:",
59
- "typescript": "catalog:"
56
+ "@interfere/typescript-config": "2.0.0",
57
+ "@types/node": "^24.12.0",
58
+ "tsdown": "^0.21.2",
59
+ "typescript": "5.9.3"
60
60
  }
61
61
  }