@experts_hub/shared 1.0.695 → 1.0.697
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/index.d.mts
CHANGED
|
@@ -227,6 +227,7 @@ declare class FreelancerCreateAccountDto {
|
|
|
227
227
|
mobile: string;
|
|
228
228
|
countryISOCode: string;
|
|
229
229
|
onBoardedBy: string;
|
|
230
|
+
ip: string;
|
|
230
231
|
referralCode?: string;
|
|
231
232
|
}
|
|
232
233
|
|
|
@@ -2042,6 +2043,7 @@ declare class User extends BaseEntity {
|
|
|
2042
2043
|
googleId: string;
|
|
2043
2044
|
gitLabsId: string;
|
|
2044
2045
|
onBoardedBy: string;
|
|
2046
|
+
ip: string;
|
|
2045
2047
|
otps: Otp[];
|
|
2046
2048
|
senseloafLogs: SenseloafLog[];
|
|
2047
2049
|
companyProfile: CompanyProfile;
|
package/dist/index.d.ts
CHANGED
|
@@ -227,6 +227,7 @@ declare class FreelancerCreateAccountDto {
|
|
|
227
227
|
mobile: string;
|
|
228
228
|
countryISOCode: string;
|
|
229
229
|
onBoardedBy: string;
|
|
230
|
+
ip: string;
|
|
230
231
|
referralCode?: string;
|
|
231
232
|
}
|
|
232
233
|
|
|
@@ -2042,6 +2043,7 @@ declare class User extends BaseEntity {
|
|
|
2042
2043
|
googleId: string;
|
|
2043
2044
|
gitLabsId: string;
|
|
2044
2045
|
onBoardedBy: string;
|
|
2046
|
+
ip: string;
|
|
2045
2047
|
otps: Otp[];
|
|
2046
2048
|
senseloafLogs: SenseloafLog[];
|
|
2047
2049
|
companyProfile: CompanyProfile;
|
package/dist/index.js
CHANGED
|
@@ -1106,6 +1106,9 @@ __decorateClass([
|
|
|
1106
1106
|
__decorateClass([
|
|
1107
1107
|
(0, import_class_validator23.IsOptional)()
|
|
1108
1108
|
], FreelancerCreateAccountDto.prototype, "onBoardedBy", 2);
|
|
1109
|
+
__decorateClass([
|
|
1110
|
+
(0, import_class_validator23.IsOptional)()
|
|
1111
|
+
], FreelancerCreateAccountDto.prototype, "ip", 2);
|
|
1109
1112
|
__decorateClass([
|
|
1110
1113
|
(0, import_class_validator23.IsOptional)()
|
|
1111
1114
|
], FreelancerCreateAccountDto.prototype, "referralCode", 2);
|
|
@@ -6839,6 +6842,9 @@ __decorateClass([
|
|
|
6839
6842
|
__decorateClass([
|
|
6840
6843
|
(0, import_typeorm79.Column)({ name: "onboarded_by", type: "varchar", nullable: true })
|
|
6841
6844
|
], User.prototype, "onBoardedBy", 2);
|
|
6845
|
+
__decorateClass([
|
|
6846
|
+
(0, import_typeorm79.Column)({ name: "ip", type: "varchar", nullable: true })
|
|
6847
|
+
], User.prototype, "ip", 2);
|
|
6842
6848
|
__decorateClass([
|
|
6843
6849
|
(0, import_typeorm79.OneToMany)(() => Otp, (otp) => otp.user)
|
|
6844
6850
|
], User.prototype, "otps", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -657,6 +657,9 @@ __decorateClass([
|
|
|
657
657
|
__decorateClass([
|
|
658
658
|
IsOptional7()
|
|
659
659
|
], FreelancerCreateAccountDto.prototype, "onBoardedBy", 2);
|
|
660
|
+
__decorateClass([
|
|
661
|
+
IsOptional7()
|
|
662
|
+
], FreelancerCreateAccountDto.prototype, "ip", 2);
|
|
660
663
|
__decorateClass([
|
|
661
664
|
IsOptional7()
|
|
662
665
|
], FreelancerCreateAccountDto.prototype, "referralCode", 2);
|
|
@@ -6644,6 +6647,9 @@ __decorateClass([
|
|
|
6644
6647
|
__decorateClass([
|
|
6645
6648
|
Column79({ name: "onboarded_by", type: "varchar", nullable: true })
|
|
6646
6649
|
], User.prototype, "onBoardedBy", 2);
|
|
6650
|
+
__decorateClass([
|
|
6651
|
+
Column79({ name: "ip", type: "varchar", nullable: true })
|
|
6652
|
+
], User.prototype, "ip", 2);
|
|
6647
6653
|
__decorateClass([
|
|
6648
6654
|
OneToMany27(() => Otp, (otp) => otp.user)
|
|
6649
6655
|
], User.prototype, "otps", 2);
|