echadospalante-core 12.3.0 → 13.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.
- package/dist/app/modules/domain/common/content-type.d.ts +7 -0
- package/dist/app/modules/domain/common/content-type.js +11 -0
- package/dist/app/modules/domain/common/geo.d.ts +16 -0
- package/dist/app/modules/domain/common/geo.js +2 -0
- package/dist/app/modules/domain/common/index.js +5 -0
- package/dist/app/modules/domain/common/pagination.d.ts +4 -0
- package/dist/app/modules/domain/common/pagination.js +2 -0
- package/dist/app/modules/domain/publications/content.d.ts +1 -1
- package/dist/app/modules/domain/publications/publication.d.ts +1 -1
- package/dist/app/modules/domain/user/detail.d.ts +1 -1
- package/dist/app/modules/infrastructure/database/entities/publication-content.data.d.ts +1 -1
- package/dist/app/modules/infrastructure/database/entities/publication-content.data.js +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/app/modules/domain/common/index.ts +3 -0
- package/src/app/modules/domain/publications/content.ts +1 -1
- package/src/app/modules/domain/publications/publication.ts +1 -1
- package/src/app/modules/domain/user/detail.ts +1 -1
- package/src/app/modules/infrastructure/database/entities/publication-content.data.ts +1 -1
- package/src/index.ts +1 -1
- /package/{src/app/modules/domain/shared/index.ts → dist/app/modules/domain/common/index.d.ts} +0 -0
- /package/src/app/modules/domain/{shared → common}/content-type.ts +0 -0
- /package/src/app/modules/domain/{shared → common}/geo.ts +0 -0
- /package/src/app/modules/domain/{shared → common}/pagination.ts +0 -0
@@ -0,0 +1,11 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.ContentType = void 0;
|
4
|
+
var ContentType;
|
5
|
+
(function (ContentType) {
|
6
|
+
ContentType["TEXT"] = "TEXT";
|
7
|
+
ContentType["IMAGE"] = "IMAGE";
|
8
|
+
ContentType["VIDEO"] = "VIDEO";
|
9
|
+
ContentType["LINK"] = "LINK";
|
10
|
+
ContentType["FILE"] = "FILE";
|
11
|
+
})(ContentType || (exports.ContentType = ContentType = {}));
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { UserDetail } from "../user";
|
2
|
+
export interface Department {
|
3
|
+
id: number;
|
4
|
+
name: string;
|
5
|
+
municipalities: Municipality[];
|
6
|
+
createdAt: Date;
|
7
|
+
updatedAt: Date;
|
8
|
+
}
|
9
|
+
export interface Municipality {
|
10
|
+
id: number;
|
11
|
+
name: string;
|
12
|
+
department: Department;
|
13
|
+
userDetails: UserDetail[];
|
14
|
+
createdAt: Date;
|
15
|
+
updatedAt: Date;
|
16
|
+
}
|
@@ -0,0 +1,5 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.ContentType = void 0;
|
4
|
+
var content_type_1 = require("./content-type");
|
5
|
+
Object.defineProperty(exports, "ContentType", { enumerable: true, get: function () { return content_type_1.ContentType; } });
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { EventDonation, VentureSponsorship } from "../contributions";
|
2
2
|
import { PublicationClap, PublicationComment } from "../publications";
|
3
|
-
import { Municipality } from "../
|
3
|
+
import { Municipality } from "../common/geo";
|
4
4
|
import { Venture, VentureSubscription } from "../ventures";
|
5
5
|
import { User } from "./user";
|
6
6
|
import { Notification } from "../notifications";
|
@@ -11,7 +11,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
12
|
exports.PublicationContentData = void 0;
|
13
13
|
const typeorm_1 = require("typeorm");
|
14
|
-
const
|
14
|
+
const common_1 = require("../../../domain/common");
|
15
15
|
const venture_publication_data_1 = require("./venture-publication.data");
|
16
16
|
let PublicationContentData = class PublicationContentData {
|
17
17
|
id;
|
@@ -27,7 +27,7 @@ __decorate([
|
|
27
27
|
__metadata("design:type", String)
|
28
28
|
], PublicationContentData.prototype, "id", void 0);
|
29
29
|
__decorate([
|
30
|
-
(0, typeorm_1.Column)({ type: "enum", enum:
|
30
|
+
(0, typeorm_1.Column)({ type: "enum", enum: common_1.ContentType }),
|
31
31
|
__metadata("design:type", String)
|
32
32
|
], PublicationContentData.prototype, "type", void 0);
|
33
33
|
__decorate([
|
package/dist/index.d.ts
CHANGED
@@ -3,9 +3,9 @@ export * from "./app/modules/domain/auth";
|
|
3
3
|
export * from "./app/modules/domain/contributions";
|
4
4
|
export * from "./app/modules/domain/publications";
|
5
5
|
export * from "./app/modules/domain/notifications";
|
6
|
-
export * from "./app/modules/domain/shared";
|
7
6
|
export * from "./app/modules/domain/user";
|
8
7
|
export * from "./app/modules/domain/events";
|
9
8
|
export * from "./app/modules/domain/ventures";
|
9
|
+
export * from "./app/modules/domain/common";
|
10
10
|
export * from "./app/modules/infrastructure/database/entities";
|
11
11
|
export * from "./app/modules/utilities";
|
package/dist/index.js
CHANGED
@@ -19,9 +19,9 @@ __exportStar(require("./app/modules/domain/auth"), exports);
|
|
19
19
|
__exportStar(require("./app/modules/domain/contributions"), exports);
|
20
20
|
__exportStar(require("./app/modules/domain/publications"), exports);
|
21
21
|
__exportStar(require("./app/modules/domain/notifications"), exports);
|
22
|
-
__exportStar(require("./app/modules/domain/shared"), exports);
|
23
22
|
__exportStar(require("./app/modules/domain/user"), exports);
|
24
23
|
__exportStar(require("./app/modules/domain/events"), exports);
|
25
24
|
__exportStar(require("./app/modules/domain/ventures"), exports);
|
25
|
+
__exportStar(require("./app/modules/domain/common"), exports);
|
26
26
|
__exportStar(require("./app/modules/infrastructure/database/entities"), exports);
|
27
27
|
__exportStar(require("./app/modules/utilities"), exports);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "echadospalante-core",
|
3
|
-
"version": "
|
3
|
+
"version": "13.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
|
"types": "dist/index.d.ts",
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { EventDonation, VentureSponsorship } from "../contributions";
|
2
2
|
import { PublicationClap, PublicationComment } from "../publications";
|
3
3
|
// import { NewsClap } from "../news";
|
4
|
-
import { Municipality } from "../
|
4
|
+
import { Municipality } from "../common/geo";
|
5
5
|
import { Venture, VentureCategory, VentureSubscription } from "../ventures";
|
6
6
|
import { User } from "./user";
|
7
7
|
import { Notification } from "../notifications";
|
@@ -8,7 +8,7 @@ import {
|
|
8
8
|
UpdateDateColumn,
|
9
9
|
} from "typeorm";
|
10
10
|
|
11
|
-
import { ContentType } from "../../../domain/
|
11
|
+
import { ContentType } from "../../../domain/common";
|
12
12
|
import { VenturePublicationData } from "./venture-publication.data";
|
13
13
|
|
14
14
|
@Entity({ name: "publication_content" })
|
package/src/index.ts
CHANGED
@@ -4,9 +4,9 @@ export * from "./app/modules/domain/auth";
|
|
4
4
|
export * from "./app/modules/domain/contributions";
|
5
5
|
export * from "./app/modules/domain/publications";
|
6
6
|
export * from "./app/modules/domain/notifications";
|
7
|
-
export * from "./app/modules/domain/shared";
|
8
7
|
export * from "./app/modules/domain/user";
|
9
8
|
export * from "./app/modules/domain/events";
|
10
9
|
export * from "./app/modules/domain/ventures";
|
10
|
+
export * from "./app/modules/domain/common";
|
11
11
|
export * from "./app/modules/infrastructure/database/entities";
|
12
12
|
export * from "./app/modules/utilities";
|
/package/{src/app/modules/domain/shared/index.ts → dist/app/modules/domain/common/index.d.ts}
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|