echadospalante-core 3.0.0 → 5.0.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.
@@ -1,3 +1,4 @@
1
+ import { User } from "../auth";
1
2
  import { Venture } from "./venture";
2
3
  export interface VentureCategory {
3
4
  id: string;
@@ -5,4 +6,5 @@ export interface VentureCategory {
5
6
  slug: string;
6
7
  description: string;
7
8
  ventures: Venture[];
9
+ users: User[];
8
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "echadospalante-core",
3
- "version": "3.0.0",
3
+ "version": "5.0.0",
4
4
  "description": "This package contains the core of the echadospalante project, it contains the domain entities, helpers, and other utilities that are shared between the different services.",
5
5
  "main": "dist/index.js",
6
6
  "private": false,
@@ -9,7 +9,7 @@
9
9
  "dev": "concurrently \"tsc --watch\" \"node dist/src/index.js --watch\"",
10
10
  "start": "tsc && node dist/src/index.js",
11
11
  "build": "tsc",
12
- "publish": "tsc && npm publish"
12
+ "release": "npm run build && npm publish"
13
13
  },
14
14
  "author": "Juan Camilo Cardona Calderón, Maria Carolina Cardona Calderón",
15
15
  "keywords": [
@@ -24,8 +24,5 @@
24
24
  "license": "MIT",
25
25
  "devDependencies": {
26
26
  "typescript": "^5.5.4"
27
- },
28
- "dependencies": {
29
- "echadospalante-core": "^1.0.1"
30
27
  }
31
28
  }
@@ -7,5 +7,5 @@ export interface VentureCategory {
7
7
  slug: string;
8
8
  description: string;
9
9
  ventures: Venture[];
10
- users: User[];
10
+ users: User[]; // Prueba
11
11
  }