echadospalante-core 11.3.1 → 11.3.3
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/events/event-contact.d.ts +2 -2
- package/dist/app/modules/infrastructure/database/entities/event-contact.data.d.ts +2 -2
- package/dist/app/modules/infrastructure/database/entities/event-contact.data.js +2 -2
- package/package.json +1 -1
- package/src/app/modules/domain/events/event-contact.ts +2 -2
- package/src/app/modules/infrastructure/database/entities/event-contact.data.ts +2 -2
@@ -25,11 +25,11 @@ __decorate([
|
|
25
25
|
], EventContactData.prototype, "id", void 0);
|
26
26
|
__decorate([
|
27
27
|
(0, typeorm_1.Column)("varchar", { nullable: true }),
|
28
|
-
__metadata("design:type",
|
28
|
+
__metadata("design:type", String)
|
29
29
|
], EventContactData.prototype, "contactPhoneNumber", void 0);
|
30
30
|
__decorate([
|
31
31
|
(0, typeorm_1.Column)("varchar", { nullable: true }),
|
32
|
-
__metadata("design:type",
|
32
|
+
__metadata("design:type", String)
|
33
33
|
], EventContactData.prototype, "contactEmail", void 0);
|
34
34
|
__decorate([
|
35
35
|
(0, typeorm_1.OneToOne)(() => venture_event_data_1.VentureEventData, (ventureEvent) => ventureEvent.contact),
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "echadospalante-core",
|
3
|
-
"version": "11.3.
|
3
|
+
"version": "11.3.3",
|
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",
|
@@ -7,10 +7,10 @@ export class EventContactData {
|
|
7
7
|
id: string;
|
8
8
|
|
9
9
|
@Column("varchar", { nullable: true })
|
10
|
-
contactPhoneNumber?:
|
10
|
+
contactPhoneNumber?: string;
|
11
11
|
|
12
12
|
@Column("varchar", { nullable: true })
|
13
|
-
contactEmail?:
|
13
|
+
contactEmail?: string;
|
14
14
|
|
15
15
|
@OneToOne(() => VentureEventData, (ventureEvent) => ventureEvent.contact)
|
16
16
|
event?: VentureEventData;
|