finamaze_schema 1.32.0 → 1.34.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/entity/email.entity.d.ts +6 -0
- package/dist/entity/email.entity.js +33 -0
- package/dist/entity/email.entity.js.map +1 -0
- package/dist/entity/goalPlan.entity.d.ts +13 -0
- package/dist/entity/goalPlan.entity.js +64 -0
- package/dist/entity/goalPlan.entity.js.map +1 -0
- package/dist/entity/manager.entity.js +1 -1
- package/dist/entity/manager.entity.js.map +1 -1
- package/dist/entity/user.entity.d.ts +16 -11
- package/dist/entity/user.entity.js +42 -20
- package/dist/entity/user.entity.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -3
- package/src/entity/email.entity.ts +14 -0
- package/src/entity/goalPlan.entity.ts +38 -0
- package/src/entity/manager.entity.ts +48 -53
- package/src/entity/phone-number.entity.ts +14 -0
- package/src/entity/user.entity.ts +56 -47
- package/src/index.ts +3 -0
- package/src/migrations/1733323133759-v1.ts +0 -37
- package/src/migrations/1734104865215-v2.ts +0 -24
@@ -0,0 +1,33 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
7
|
+
};
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
10
|
+
};
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
12
|
+
exports.Email = void 0;
|
13
|
+
const typeorm_1 = require("typeorm");
|
14
|
+
const user_entity_1 = require("./user.entity");
|
15
|
+
let Email = class Email {
|
16
|
+
};
|
17
|
+
exports.Email = Email;
|
18
|
+
__decorate([
|
19
|
+
(0, typeorm_1.PrimaryGeneratedColumn)(),
|
20
|
+
__metadata("design:type", Number)
|
21
|
+
], Email.prototype, "id", void 0);
|
22
|
+
__decorate([
|
23
|
+
(0, typeorm_1.Column)({ nullable: false }),
|
24
|
+
__metadata("design:type", String)
|
25
|
+
], Email.prototype, "address", void 0);
|
26
|
+
__decorate([
|
27
|
+
(0, typeorm_1.ManyToOne)(() => user_entity_1.User, (user) => user.emails, { nullable: false }),
|
28
|
+
__metadata("design:type", user_entity_1.User)
|
29
|
+
], Email.prototype, "user", void 0);
|
30
|
+
exports.Email = Email = __decorate([
|
31
|
+
(0, typeorm_1.Entity)()
|
32
|
+
], Email);
|
33
|
+
//# sourceMappingURL=email.entity.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"email.entity.js","sourceRoot":"","sources":["../../src/entity/email.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAA4E;AAC5E,+CAAqC;AAG9B,IAAM,KAAK,GAAX,MAAM,KAAK;CASjB,CAAA;AATY,sBAAK;AAEhB;IADC,IAAA,gCAAsB,GAAE;;iCACd;AAGX;IADC,IAAA,gBAAM,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;sCACb;AAGhB;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;8BAC5D,kBAAI;mCAAC;gBARA,KAAK;IADjB,IAAA,gBAAM,GAAE;GACI,KAAK,CASjB"}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { User } from './user.entity';
|
2
|
+
export declare class GoalPlan {
|
3
|
+
id: number;
|
4
|
+
objective: string;
|
5
|
+
currency: 'USD' | 'SAR';
|
6
|
+
initial_amount: number;
|
7
|
+
target_amount: number;
|
8
|
+
contribution_amount: number;
|
9
|
+
contribution_frequency: string;
|
10
|
+
start_date: string;
|
11
|
+
investment_duration: number;
|
12
|
+
user: User;
|
13
|
+
}
|
@@ -0,0 +1,64 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
7
|
+
};
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
10
|
+
};
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
12
|
+
exports.GoalPlan = void 0;
|
13
|
+
const typeorm_1 = require("typeorm");
|
14
|
+
const user_entity_1 = require("./user.entity");
|
15
|
+
let GoalPlan = class GoalPlan {
|
16
|
+
};
|
17
|
+
exports.GoalPlan = GoalPlan;
|
18
|
+
__decorate([
|
19
|
+
(0, typeorm_1.PrimaryGeneratedColumn)(),
|
20
|
+
__metadata("design:type", Number)
|
21
|
+
], GoalPlan.prototype, "id", void 0);
|
22
|
+
__decorate([
|
23
|
+
(0, typeorm_1.Column)(),
|
24
|
+
__metadata("design:type", String)
|
25
|
+
], GoalPlan.prototype, "objective", void 0);
|
26
|
+
__decorate([
|
27
|
+
(0, typeorm_1.Column)({
|
28
|
+
type: 'varchar',
|
29
|
+
length: 3,
|
30
|
+
}),
|
31
|
+
__metadata("design:type", String)
|
32
|
+
], GoalPlan.prototype, "currency", void 0);
|
33
|
+
__decorate([
|
34
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
35
|
+
__metadata("design:type", Number)
|
36
|
+
], GoalPlan.prototype, "initial_amount", void 0);
|
37
|
+
__decorate([
|
38
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
39
|
+
__metadata("design:type", Number)
|
40
|
+
], GoalPlan.prototype, "target_amount", void 0);
|
41
|
+
__decorate([
|
42
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
43
|
+
__metadata("design:type", Number)
|
44
|
+
], GoalPlan.prototype, "contribution_amount", void 0);
|
45
|
+
__decorate([
|
46
|
+
(0, typeorm_1.Column)(),
|
47
|
+
__metadata("design:type", String)
|
48
|
+
], GoalPlan.prototype, "contribution_frequency", void 0);
|
49
|
+
__decorate([
|
50
|
+
(0, typeorm_1.Column)(),
|
51
|
+
__metadata("design:type", String)
|
52
|
+
], GoalPlan.prototype, "start_date", void 0);
|
53
|
+
__decorate([
|
54
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
55
|
+
__metadata("design:type", Number)
|
56
|
+
], GoalPlan.prototype, "investment_duration", void 0);
|
57
|
+
__decorate([
|
58
|
+
(0, typeorm_1.ManyToOne)(() => user_entity_1.User, (user) => user.goal_plans, { nullable: false }),
|
59
|
+
__metadata("design:type", user_entity_1.User)
|
60
|
+
], GoalPlan.prototype, "user", void 0);
|
61
|
+
exports.GoalPlan = GoalPlan = __decorate([
|
62
|
+
(0, typeorm_1.Entity)()
|
63
|
+
], GoalPlan);
|
64
|
+
//# sourceMappingURL=goalPlan.entity.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"goalPlan.entity.js","sourceRoot":"","sources":["../../src/entity/goalPlan.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAA2E;AAC3E,+CAAqC;AAG9B,IAAM,QAAQ,GAAd,MAAM,QAAQ;CAiCpB,CAAA;AAjCY,4BAAQ;AAEnB;IADC,IAAA,gCAAsB,GAAE;;oCACd;AAGX;IADC,IAAA,gBAAM,GAAE;;2CACS;AAMlB;IAJC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,CAAC;KACV,CAAC;;0CACsB;AAGxB;IADC,IAAA,gBAAM,EAAC,EAAC,QAAQ,EAAE,IAAI,EAAC,CAAC;;gDACF;AAGvB;IADC,IAAA,gBAAM,EAAC,EAAC,QAAQ,EAAE,IAAI,EAAC,CAAC;;+CACH;AAGtB;IADC,IAAA,gBAAM,EAAC,EAAC,QAAQ,EAAE,IAAI,EAAC,CAAC;;qDACG;AAG5B;IADC,IAAA,gBAAM,GAAE;;wDACsB;AAG/B;IADC,IAAA,gBAAM,GAAE;;4CACU;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAC,QAAQ,EAAE,IAAI,EAAC,CAAC;;qDACG;AAG5B;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,UAAU,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;8BAChE,kBAAI;sCAAC;mBAhCA,QAAQ;IADpB,IAAA,gBAAM,GAAE;GACI,QAAQ,CAiCpB"}
|
@@ -76,6 +76,6 @@ __decorate([
|
|
76
76
|
], Manager.prototype, "updated_at", void 0);
|
77
77
|
exports.Manager = Manager = __decorate([
|
78
78
|
(0, typeorm_1.Entity)(),
|
79
|
-
(0, typeorm_1.Unique)([
|
79
|
+
(0, typeorm_1.Unique)(['email'])
|
80
80
|
], Manager);
|
81
81
|
//# sourceMappingURL=manager.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"manager.entity.js","sourceRoot":"","sources":["../../src/entity/manager.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,
|
1
|
+
{"version":3,"file":"manager.entity.js","sourceRoot":"","sources":["../../src/entity/manager.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAA2F;AAIpF,IAAM,OAAO,GAAb,MAAM,OAAO;CA8CnB,CAAA;AA9CY,0BAAO;AAEhB;IADC,IAAA,gCAAsB,GAAE;;mCACd;AAGX;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yCACV;AAGjB;IADC,IAAA,gBAAM,GAAE;;sCACK;AAGd;IADC,IAAA,gBAAM,GAAE;;yCACQ;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CACR;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0CACT;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACN;AAGrB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CACL;AAItB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CACR;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACJ;AAGvB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sCACb;AAGd;IADC,IAAA,gBAAM,GAAE;;qCACI;AAGb;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CACP;AAGpB;IADC,IAAA,0BAAgB,GAAE;8BACP,IAAI;2CAAC;AAGjB;IADC,IAAA,0BAAgB,GAAE;8BACP,IAAI;2CAAC;kBA7CR,OAAO;IAFnB,IAAA,gBAAM,GAAE;IACR,IAAA,gBAAM,EAAC,CAAC,OAAO,CAAC,CAAC;GACL,OAAO,CA8CnB"}
|
@@ -1,21 +1,26 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
}
|
1
|
+
import { PhoneNumber } from './phone-number.entity';
|
2
|
+
import { Email } from './email.entity';
|
3
|
+
import { GoalPlan } from './goalPlan.entity';
|
5
4
|
export declare class User {
|
6
5
|
id: number;
|
7
6
|
username: string;
|
8
7
|
email: string;
|
8
|
+
emails: Email[];
|
9
9
|
password: string;
|
10
10
|
phone_number: string;
|
11
|
-
|
12
|
-
|
13
|
-
|
11
|
+
phone_numbers: PhoneNumber[];
|
12
|
+
iqama_number: string;
|
13
|
+
is_profile_complete: boolean;
|
14
|
+
registration_step: string;
|
14
15
|
smartcore_reference_id: number;
|
15
|
-
|
16
|
-
|
17
|
-
|
16
|
+
tcs_reference_id: string;
|
17
|
+
name: string;
|
18
|
+
type: string;
|
19
|
+
status: string;
|
20
|
+
risk_profile: string;
|
21
|
+
is_username_set: boolean;
|
22
|
+
external_status: string;
|
18
23
|
created_at: Date;
|
19
24
|
updated_at: Date;
|
20
|
-
|
25
|
+
goal_plans: GoalPlan[];
|
21
26
|
}
|
@@ -9,13 +9,11 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
10
10
|
};
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
|
-
exports.User =
|
12
|
+
exports.User = void 0;
|
13
13
|
const typeorm_1 = require("typeorm");
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
RegistrationStep["COMPLETED"] = "COMPLETED";
|
18
|
-
})(RegistrationStep || (exports.RegistrationStep = RegistrationStep = {}));
|
14
|
+
const phone_number_entity_1 = require("./phone-number.entity");
|
15
|
+
const email_entity_1 = require("./email.entity");
|
16
|
+
const goalPlan_entity_1 = require("./goalPlan.entity");
|
19
17
|
let User = class User {
|
20
18
|
};
|
21
19
|
exports.User = User;
|
@@ -24,7 +22,7 @@ __decorate([
|
|
24
22
|
__metadata("design:type", Number)
|
25
23
|
], User.prototype, "id", void 0);
|
26
24
|
__decorate([
|
27
|
-
(0, typeorm_1.Column)({ nullable:
|
25
|
+
(0, typeorm_1.Column)({ nullable: false }),
|
28
26
|
__metadata("design:type", String)
|
29
27
|
], User.prototype, "username", void 0);
|
30
28
|
__decorate([
|
@@ -32,23 +30,31 @@ __decorate([
|
|
32
30
|
__metadata("design:type", String)
|
33
31
|
], User.prototype, "email", void 0);
|
34
32
|
__decorate([
|
35
|
-
(0, typeorm_1.
|
33
|
+
(0, typeorm_1.OneToMany)(() => email_entity_1.Email, (email) => email.user, { cascade: true }),
|
34
|
+
__metadata("design:type", Array)
|
35
|
+
], User.prototype, "emails", void 0);
|
36
|
+
__decorate([
|
37
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
36
38
|
__metadata("design:type", String)
|
37
39
|
], User.prototype, "password", void 0);
|
38
40
|
__decorate([
|
39
41
|
(0, typeorm_1.Column)({ nullable: true }),
|
40
42
|
__metadata("design:type", String)
|
41
43
|
], User.prototype, "phone_number", void 0);
|
44
|
+
__decorate([
|
45
|
+
(0, typeorm_1.OneToMany)(() => phone_number_entity_1.PhoneNumber, (phoneNumber) => phoneNumber.user, { cascade: true }),
|
46
|
+
__metadata("design:type", Array)
|
47
|
+
], User.prototype, "phone_numbers", void 0);
|
42
48
|
__decorate([
|
43
49
|
(0, typeorm_1.Column)({ nullable: true }),
|
44
50
|
__metadata("design:type", String)
|
45
|
-
], User.prototype, "
|
51
|
+
], User.prototype, "iqama_number", void 0);
|
46
52
|
__decorate([
|
47
|
-
(0, typeorm_1.Column)({
|
53
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
48
54
|
__metadata("design:type", Boolean)
|
49
|
-
], User.prototype, "
|
55
|
+
], User.prototype, "is_profile_complete", void 0);
|
50
56
|
__decorate([
|
51
|
-
(0, typeorm_1.Column)({
|
57
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
52
58
|
__metadata("design:type", String)
|
53
59
|
], User.prototype, "registration_step", void 0);
|
54
60
|
__decorate([
|
@@ -58,15 +64,31 @@ __decorate([
|
|
58
64
|
__decorate([
|
59
65
|
(0, typeorm_1.Column)({ nullable: true }),
|
60
66
|
__metadata("design:type", String)
|
61
|
-
], User.prototype, "
|
67
|
+
], User.prototype, "tcs_reference_id", void 0);
|
62
68
|
__decorate([
|
63
69
|
(0, typeorm_1.Column)({ nullable: true }),
|
64
70
|
__metadata("design:type", String)
|
65
|
-
], User.prototype, "
|
71
|
+
], User.prototype, "name", void 0);
|
66
72
|
__decorate([
|
67
|
-
(0, typeorm_1.Column)({
|
73
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
74
|
+
__metadata("design:type", String)
|
75
|
+
], User.prototype, "type", void 0);
|
76
|
+
__decorate([
|
77
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
68
78
|
__metadata("design:type", String)
|
69
|
-
], User.prototype, "
|
79
|
+
], User.prototype, "status", void 0);
|
80
|
+
__decorate([
|
81
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
82
|
+
__metadata("design:type", String)
|
83
|
+
], User.prototype, "risk_profile", void 0);
|
84
|
+
__decorate([
|
85
|
+
(0, typeorm_1.Column)({ default: false }),
|
86
|
+
__metadata("design:type", Boolean)
|
87
|
+
], User.prototype, "is_username_set", void 0);
|
88
|
+
__decorate([
|
89
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
90
|
+
__metadata("design:type", String)
|
91
|
+
], User.prototype, "external_status", void 0);
|
70
92
|
__decorate([
|
71
93
|
(0, typeorm_1.CreateDateColumn)(),
|
72
94
|
__metadata("design:type", Date)
|
@@ -76,11 +98,11 @@ __decorate([
|
|
76
98
|
__metadata("design:type", Date)
|
77
99
|
], User.prototype, "updated_at", void 0);
|
78
100
|
__decorate([
|
79
|
-
(0, typeorm_1.
|
80
|
-
__metadata("design:type",
|
81
|
-
], User.prototype, "
|
101
|
+
(0, typeorm_1.OneToMany)(() => goalPlan_entity_1.GoalPlan, (goalPlan) => goalPlan.user, { cascade: true }),
|
102
|
+
__metadata("design:type", Array)
|
103
|
+
], User.prototype, "goal_plans", void 0);
|
82
104
|
exports.User = User = __decorate([
|
83
105
|
(0, typeorm_1.Entity)(),
|
84
|
-
(0, typeorm_1.Unique)([
|
106
|
+
(0, typeorm_1.Unique)(['username'])
|
85
107
|
], User);
|
86
108
|
//# sourceMappingURL=user.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"user.entity.js","sourceRoot":"","sources":["../../src/entity/user.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,
|
1
|
+
{"version":3,"file":"user.entity.js","sourceRoot":"","sources":["../../src/entity/user.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAA+H;AAC/H,+DAAoD;AACpD,iDAAuC;AACvC,uDAA6C;AAItC,IAAM,IAAI,GAAV,MAAM,IAAI;CAkEhB,CAAA;AAlEY,oBAAI;AAEb;IADC,IAAA,gCAAsB,GAAE;;gCACd;AAGX;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;sCACX;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mCACb;AAGd;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,oBAAK,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;;oCACjD;AAGhB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sCACV;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0CACN;AAGrB;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,iCAAW,EAAE,CAAC,WAAW,EAAE,EAAE,CAAC,WAAW,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;;2CACtD;AAG7B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0CACN;AAGrB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACE;AAG7B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACD;AAG1B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDACI;AAG/B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CACF;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kCACd;AAGb;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kCACd;AAGb;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAG,CAAC;;oCACb;AAGf;IADC,IAAA,gBAAM,EAAC,EAAC,QAAQ,EAAE,IAAI,EAAE,CAAC;;0CACL;AAGrB;IADC,IAAA,gBAAM,EAAC,EAAC,OAAO,EAAE,KAAK,EAAC,CAAC;;6CACA;AAIzB;IADC,IAAA,gBAAM,EAAC,EAAC,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACF;AAIxB;IADC,IAAA,0BAAgB,GAAE;8BACP,IAAI;wCAAC;AAIjB;IADC,IAAA,0BAAgB,GAAE;8BACP,IAAI;wCAAC;AAGjB;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,0BAAQ,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;;wCACnD;eAjEd,IAAI;IAFhB,IAAA,gBAAM,GAAE;IACR,IAAA,gBAAM,EAAC,CAAC,UAAU,CAAC,CAAC;GACR,IAAI,CAkEhB"}
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
@@ -16,4 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
17
|
__exportStar(require("./entity/user.entity"), exports);
|
18
18
|
__exportStar(require("./entity/manager.entity"), exports);
|
19
|
+
__exportStar(require("./entity/phone-number.entity"), exports);
|
20
|
+
__exportStar(require("./entity/email.entity"), exports);
|
21
|
+
__exportStar(require("./entity/goalPlan.entity"), exports);
|
19
22
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAQA,uDAAqC;AACrC,0DAAwC"}
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAQA,uDAAqC;AACrC,0DAAwC;AACxC,+DAA6C;AAC7C,wDAAsC;AACtC,2DAAyC"}
|