@experts_hub/shared 1.0.183 → 1.0.185
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/entities/company-members-roles.entity.d.ts +10 -0
- package/dist/entities/company-profile.entity.d.ts +6 -1
- package/dist/entities/index.d.ts +1 -0
- package/dist/entities/user.entity.d.ts +2 -2
- package/dist/index.d.mts +44 -28
- package/dist/index.d.ts +44 -28
- package/dist/index.js +328 -270
- package/dist/index.mjs +374 -318
- package/dist/modules/company-member/company-member.interface.d.ts +2 -1
- package/dist/modules/company-member/dto/create-company-member.dto.d.ts +1 -0
- package/dist/modules/company-member/dto/update-company-member.dto.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -48,6 +48,8 @@ __export(index_exports, {
|
|
|
48
48
|
ClientCreateAccountDto: () => ClientCreateAccountDto,
|
|
49
49
|
ClientProfileQuestionDto: () => ClientProfileQuestionDto,
|
|
50
50
|
Cms: () => Cms,
|
|
51
|
+
CompanyMemberRole: () => CompanyMemberRole,
|
|
52
|
+
CompanyOnboardingStepEnum: () => CompanyOnboardingStepEnum,
|
|
51
53
|
CompanyProfile: () => CompanyProfile,
|
|
52
54
|
CompanyRole: () => CompanyRole,
|
|
53
55
|
CompanyRolePermission: () => CompanyRolePermission,
|
|
@@ -1131,10 +1133,10 @@ var RATING_PATTERN = {
|
|
|
1131
1133
|
var import_class_validator35 = require("class-validator");
|
|
1132
1134
|
|
|
1133
1135
|
// src/entities/rating.entity.ts
|
|
1134
|
-
var
|
|
1136
|
+
var import_typeorm29 = require("typeorm");
|
|
1135
1137
|
|
|
1136
1138
|
// src/entities/user.entity.ts
|
|
1137
|
-
var
|
|
1139
|
+
var import_typeorm28 = require("typeorm");
|
|
1138
1140
|
|
|
1139
1141
|
// src/entities/base.entity.ts
|
|
1140
1142
|
var import_typeorm = require("typeorm");
|
|
@@ -1444,6 +1446,11 @@ var FromUsOn = /* @__PURE__ */ ((FromUsOn2) => {
|
|
|
1444
1446
|
FromUsOn2["OTHER"] = "OTHER";
|
|
1445
1447
|
return FromUsOn2;
|
|
1446
1448
|
})(FromUsOn || {});
|
|
1449
|
+
var CompanyOnboardingStepEnum = /* @__PURE__ */ ((CompanyOnboardingStepEnum2) => {
|
|
1450
|
+
CompanyOnboardingStepEnum2["SIGN_UP"] = "SIGN_UP";
|
|
1451
|
+
CompanyOnboardingStepEnum2["PROFILE_COMPLETION"] = "PROFILE_COMPLETION";
|
|
1452
|
+
return CompanyOnboardingStepEnum2;
|
|
1453
|
+
})(CompanyOnboardingStepEnum || {});
|
|
1447
1454
|
var CompanyProfile = class extends BaseEntity {
|
|
1448
1455
|
};
|
|
1449
1456
|
// individual index to find company profile by user
|
|
@@ -1468,7 +1475,11 @@ __decorateClass([
|
|
|
1468
1475
|
(0, import_typeorm6.Column)({ name: "about_company", type: "varchar", nullable: true })
|
|
1469
1476
|
], CompanyProfile.prototype, "aboutCompany", 2);
|
|
1470
1477
|
__decorateClass([
|
|
1471
|
-
(0, import_typeorm6.Column)({
|
|
1478
|
+
(0, import_typeorm6.Column)({
|
|
1479
|
+
name: "is_service_aggrement_signed",
|
|
1480
|
+
type: "boolean",
|
|
1481
|
+
default: false
|
|
1482
|
+
})
|
|
1472
1483
|
], CompanyProfile.prototype, "isServiceAgreementSigned", 2);
|
|
1473
1484
|
__decorateClass([
|
|
1474
1485
|
(0, import_typeorm6.Column)({ name: "company_address", type: "varchar", nullable: true })
|
|
@@ -1509,6 +1520,14 @@ __decorateClass([
|
|
|
1509
1520
|
__decorateClass([
|
|
1510
1521
|
(0, import_typeorm6.Column)({ name: "found_us_on_detail", type: "varchar", nullable: true })
|
|
1511
1522
|
], CompanyProfile.prototype, "foundUsOnDetail", 2);
|
|
1523
|
+
__decorateClass([
|
|
1524
|
+
(0, import_typeorm6.Column)({
|
|
1525
|
+
name: "onboarding_step_completed",
|
|
1526
|
+
type: "enum",
|
|
1527
|
+
enum: CompanyOnboardingStepEnum,
|
|
1528
|
+
nullable: true
|
|
1529
|
+
})
|
|
1530
|
+
], CompanyProfile.prototype, "onboardingStepCompleted", 2);
|
|
1512
1531
|
CompanyProfile = __decorateClass([
|
|
1513
1532
|
(0, import_typeorm6.Entity)("company_profiles")
|
|
1514
1533
|
], CompanyProfile);
|
|
@@ -2036,270 +2055,184 @@ SystemPreference = __decorateClass([
|
|
|
2036
2055
|
(0, import_typeorm14.Entity)("system_preferences")
|
|
2037
2056
|
], SystemPreference);
|
|
2038
2057
|
|
|
2039
|
-
// src/entities/company-role.entity.ts
|
|
2040
|
-
var import_typeorm17 = require("typeorm");
|
|
2041
|
-
|
|
2042
|
-
// src/entities/company-role-permission.entity.ts
|
|
2043
|
-
var import_typeorm16 = require("typeorm");
|
|
2044
|
-
|
|
2045
|
-
// src/entities/permission.entity.ts
|
|
2046
|
-
var import_typeorm15 = require("typeorm");
|
|
2047
|
-
var Permission = class extends BaseEntity {
|
|
2048
|
-
};
|
|
2049
|
-
__decorateClass([
|
|
2050
|
-
(0, import_typeorm15.Column)({ name: "name", type: "varchar", nullable: true })
|
|
2051
|
-
], Permission.prototype, "name", 2);
|
|
2052
|
-
__decorateClass([
|
|
2053
|
-
(0, import_typeorm15.Column)({ name: "slug", type: "varchar", nullable: true, unique: true }),
|
|
2054
|
-
(0, import_typeorm15.Index)()
|
|
2055
|
-
], Permission.prototype, "slug", 2);
|
|
2056
|
-
__decorateClass([
|
|
2057
|
-
(0, import_typeorm15.Column)({ name: "description", type: "text", nullable: true })
|
|
2058
|
-
], Permission.prototype, "description", 2);
|
|
2059
|
-
__decorateClass([
|
|
2060
|
-
(0, import_typeorm15.Column)({ name: "is_active", type: "boolean", default: true })
|
|
2061
|
-
], Permission.prototype, "isActive", 2);
|
|
2062
|
-
Permission = __decorateClass([
|
|
2063
|
-
(0, import_typeorm15.Entity)("permissions")
|
|
2064
|
-
], Permission);
|
|
2065
|
-
|
|
2066
|
-
// src/entities/company-role-permission.entity.ts
|
|
2067
|
-
var CompanyRolePermission = class extends BaseEntity {
|
|
2068
|
-
};
|
|
2069
|
-
__decorateClass([
|
|
2070
|
-
(0, import_typeorm16.Column)({ name: "company_role_id", type: "integer", nullable: true }),
|
|
2071
|
-
(0, import_typeorm16.Index)()
|
|
2072
|
-
], CompanyRolePermission.prototype, "companyRoleId", 2);
|
|
2073
|
-
__decorateClass([
|
|
2074
|
-
(0, import_typeorm16.ManyToOne)(() => CompanyRole, (role) => role.rolePermissions, {
|
|
2075
|
-
onDelete: "CASCADE"
|
|
2076
|
-
}),
|
|
2077
|
-
(0, import_typeorm16.JoinColumn)({ name: "company_role_id" })
|
|
2078
|
-
], CompanyRolePermission.prototype, "companyRole", 2);
|
|
2079
|
-
__decorateClass([
|
|
2080
|
-
(0, import_typeorm16.Column)({ name: "permission_id", type: "integer" }),
|
|
2081
|
-
(0, import_typeorm16.Index)()
|
|
2082
|
-
], CompanyRolePermission.prototype, "permissionId", 2);
|
|
2083
|
-
__decorateClass([
|
|
2084
|
-
(0, import_typeorm16.ManyToOne)(() => Permission, { onDelete: "CASCADE" }),
|
|
2085
|
-
(0, import_typeorm16.JoinColumn)({ name: "permission_id" })
|
|
2086
|
-
], CompanyRolePermission.prototype, "permission", 2);
|
|
2087
|
-
__decorateClass([
|
|
2088
|
-
(0, import_typeorm16.Column)({ name: "assigned_by", type: "integer", nullable: true })
|
|
2089
|
-
], CompanyRolePermission.prototype, "assignedBy", 2);
|
|
2090
|
-
CompanyRolePermission = __decorateClass([
|
|
2091
|
-
(0, import_typeorm16.Entity)("company_role_permissions")
|
|
2092
|
-
], CompanyRolePermission);
|
|
2093
|
-
|
|
2094
|
-
// src/entities/company-role.entity.ts
|
|
2095
|
-
var CompanyRole = class extends BaseEntity {
|
|
2096
|
-
};
|
|
2097
|
-
__decorateClass([
|
|
2098
|
-
(0, import_typeorm17.Column)({ name: "user_id", type: "integer", nullable: true }),
|
|
2099
|
-
(0, import_typeorm17.Index)()
|
|
2100
|
-
], CompanyRole.prototype, "userId", 2);
|
|
2101
|
-
__decorateClass([
|
|
2102
|
-
(0, import_typeorm17.ManyToOne)(() => User, (user) => user.otps),
|
|
2103
|
-
(0, import_typeorm17.JoinColumn)({ name: "user_id" })
|
|
2104
|
-
], CompanyRole.prototype, "user", 2);
|
|
2105
|
-
__decorateClass([
|
|
2106
|
-
(0, import_typeorm17.Column)({ name: "name", type: "varchar" })
|
|
2107
|
-
], CompanyRole.prototype, "name", 2);
|
|
2108
|
-
__decorateClass([
|
|
2109
|
-
(0, import_typeorm17.Column)({ name: "slug", type: "varchar", nullable: true, unique: true }),
|
|
2110
|
-
(0, import_typeorm17.Index)()
|
|
2111
|
-
], CompanyRole.prototype, "slug", 2);
|
|
2112
|
-
__decorateClass([
|
|
2113
|
-
(0, import_typeorm17.Column)({ name: "description", type: "text", nullable: true })
|
|
2114
|
-
], CompanyRole.prototype, "description", 2);
|
|
2115
|
-
__decorateClass([
|
|
2116
|
-
(0, import_typeorm17.Column)({ name: "is_active", type: "boolean", default: true })
|
|
2117
|
-
], CompanyRole.prototype, "isActive", 2);
|
|
2118
|
-
__decorateClass([
|
|
2119
|
-
(0, import_typeorm17.OneToMany)(() => CompanyRolePermission, (rp) => rp.companyRole)
|
|
2120
|
-
], CompanyRole.prototype, "rolePermissions", 2);
|
|
2121
|
-
CompanyRole = __decorateClass([
|
|
2122
|
-
(0, import_typeorm17.Entity)("company_roles")
|
|
2123
|
-
], CompanyRole);
|
|
2124
|
-
|
|
2125
2058
|
// src/entities/freelancer-experience.entity.ts
|
|
2126
|
-
var
|
|
2059
|
+
var import_typeorm15 = require("typeorm");
|
|
2127
2060
|
var FreelancerExperience = class extends BaseEntity {
|
|
2128
2061
|
};
|
|
2129
2062
|
// individual index to find experence by user
|
|
2130
2063
|
__decorateClass([
|
|
2131
|
-
(0,
|
|
2132
|
-
(0,
|
|
2064
|
+
(0, import_typeorm15.Column)({ name: "user_id", type: "integer", nullable: true }),
|
|
2065
|
+
(0, import_typeorm15.Index)()
|
|
2133
2066
|
], FreelancerExperience.prototype, "userId", 2);
|
|
2134
2067
|
__decorateClass([
|
|
2135
|
-
(0,
|
|
2136
|
-
(0,
|
|
2068
|
+
(0, import_typeorm15.ManyToOne)(() => User, (user) => user.freelancerExperience),
|
|
2069
|
+
(0, import_typeorm15.JoinColumn)({ name: "user_id" })
|
|
2137
2070
|
], FreelancerExperience.prototype, "user", 2);
|
|
2138
2071
|
__decorateClass([
|
|
2139
|
-
(0,
|
|
2072
|
+
(0, import_typeorm15.Column)({ name: "company_name", type: "varchar", nullable: true })
|
|
2140
2073
|
], FreelancerExperience.prototype, "companyName", 2);
|
|
2141
2074
|
__decorateClass([
|
|
2142
|
-
(0,
|
|
2075
|
+
(0, import_typeorm15.Column)({ name: "designation", type: "varchar", nullable: true })
|
|
2143
2076
|
], FreelancerExperience.prototype, "designation", 2);
|
|
2144
2077
|
__decorateClass([
|
|
2145
|
-
(0,
|
|
2078
|
+
(0, import_typeorm15.Column)({ name: "job_duration", type: "varchar", nullable: true })
|
|
2146
2079
|
], FreelancerExperience.prototype, "jobDuration", 2);
|
|
2147
2080
|
__decorateClass([
|
|
2148
|
-
(0,
|
|
2081
|
+
(0, import_typeorm15.Column)({ name: "description", type: "varchar", nullable: true })
|
|
2149
2082
|
], FreelancerExperience.prototype, "description", 2);
|
|
2150
2083
|
FreelancerExperience = __decorateClass([
|
|
2151
|
-
(0,
|
|
2084
|
+
(0, import_typeorm15.Entity)("freelancer_experiences")
|
|
2152
2085
|
], FreelancerExperience);
|
|
2153
2086
|
|
|
2154
2087
|
// src/entities/freelancer-education.entity.ts
|
|
2155
|
-
var
|
|
2088
|
+
var import_typeorm16 = require("typeorm");
|
|
2156
2089
|
var FreelancerEducation = class extends BaseEntity {
|
|
2157
2090
|
};
|
|
2158
2091
|
// individual index to find education by user
|
|
2159
2092
|
__decorateClass([
|
|
2160
|
-
(0,
|
|
2161
|
-
(0,
|
|
2093
|
+
(0, import_typeorm16.Column)({ name: "user_id", type: "integer", nullable: true }),
|
|
2094
|
+
(0, import_typeorm16.Index)()
|
|
2162
2095
|
], FreelancerEducation.prototype, "userId", 2);
|
|
2163
2096
|
__decorateClass([
|
|
2164
|
-
(0,
|
|
2165
|
-
(0,
|
|
2097
|
+
(0, import_typeorm16.ManyToOne)(() => User, (user) => user.freelancerEducation),
|
|
2098
|
+
(0, import_typeorm16.JoinColumn)({ name: "user_id" })
|
|
2166
2099
|
], FreelancerEducation.prototype, "user", 2);
|
|
2167
2100
|
__decorateClass([
|
|
2168
|
-
(0,
|
|
2101
|
+
(0, import_typeorm16.Column)({ name: "degree", type: "varchar", nullable: true })
|
|
2169
2102
|
], FreelancerEducation.prototype, "degree", 2);
|
|
2170
2103
|
__decorateClass([
|
|
2171
|
-
(0,
|
|
2104
|
+
(0, import_typeorm16.Column)({ name: "university", type: "varchar", nullable: true })
|
|
2172
2105
|
], FreelancerEducation.prototype, "university", 2);
|
|
2173
2106
|
__decorateClass([
|
|
2174
|
-
(0,
|
|
2107
|
+
(0, import_typeorm16.Column)({ name: "year_of_graduation", type: "varchar", nullable: true })
|
|
2175
2108
|
], FreelancerEducation.prototype, "yearOfGraduation", 2);
|
|
2176
2109
|
FreelancerEducation = __decorateClass([
|
|
2177
|
-
(0,
|
|
2110
|
+
(0, import_typeorm16.Entity)("freelancer_educations")
|
|
2178
2111
|
], FreelancerEducation);
|
|
2179
2112
|
|
|
2180
2113
|
// src/entities/freelancer-project.entity.ts
|
|
2181
|
-
var
|
|
2114
|
+
var import_typeorm17 = require("typeorm");
|
|
2182
2115
|
var FreelancerProject = class extends BaseEntity {
|
|
2183
2116
|
};
|
|
2184
2117
|
// individual index to find project by user
|
|
2185
2118
|
__decorateClass([
|
|
2186
|
-
(0,
|
|
2187
|
-
(0,
|
|
2119
|
+
(0, import_typeorm17.Column)({ name: "user_id", type: "integer", nullable: true }),
|
|
2120
|
+
(0, import_typeorm17.Index)()
|
|
2188
2121
|
], FreelancerProject.prototype, "userId", 2);
|
|
2189
2122
|
__decorateClass([
|
|
2190
|
-
(0,
|
|
2191
|
-
(0,
|
|
2123
|
+
(0, import_typeorm17.ManyToOne)(() => User, (user) => user.freelancerProject),
|
|
2124
|
+
(0, import_typeorm17.JoinColumn)({ name: "user_id" })
|
|
2192
2125
|
], FreelancerProject.prototype, "user", 2);
|
|
2193
2126
|
__decorateClass([
|
|
2194
|
-
(0,
|
|
2127
|
+
(0, import_typeorm17.Column)({ name: "project_name", type: "varchar", nullable: true })
|
|
2195
2128
|
], FreelancerProject.prototype, "projectName", 2);
|
|
2196
2129
|
__decorateClass([
|
|
2197
|
-
(0,
|
|
2130
|
+
(0, import_typeorm17.Column)({ name: "start_date", type: "date", nullable: true })
|
|
2198
2131
|
], FreelancerProject.prototype, "startDate", 2);
|
|
2199
2132
|
__decorateClass([
|
|
2200
|
-
(0,
|
|
2133
|
+
(0, import_typeorm17.Column)({ name: "end_date", type: "date", nullable: true })
|
|
2201
2134
|
], FreelancerProject.prototype, "endDate", 2);
|
|
2202
2135
|
__decorateClass([
|
|
2203
|
-
(0,
|
|
2136
|
+
(0, import_typeorm17.Column)({ name: "client_name", type: "varchar", nullable: true })
|
|
2204
2137
|
], FreelancerProject.prototype, "clientName", 2);
|
|
2205
2138
|
__decorateClass([
|
|
2206
|
-
(0,
|
|
2139
|
+
(0, import_typeorm17.Column)({ name: "git_link", type: "varchar", nullable: true })
|
|
2207
2140
|
], FreelancerProject.prototype, "gitLink", 2);
|
|
2208
2141
|
__decorateClass([
|
|
2209
|
-
(0,
|
|
2142
|
+
(0, import_typeorm17.Column)({ name: "description", type: "varchar", nullable: true })
|
|
2210
2143
|
], FreelancerProject.prototype, "description", 2);
|
|
2211
2144
|
FreelancerProject = __decorateClass([
|
|
2212
|
-
(0,
|
|
2145
|
+
(0, import_typeorm17.Entity)("freelancer_projects")
|
|
2213
2146
|
], FreelancerProject);
|
|
2214
2147
|
|
|
2215
2148
|
// src/entities/freelancer-casestudy.entity.ts
|
|
2216
|
-
var
|
|
2149
|
+
var import_typeorm18 = require("typeorm");
|
|
2217
2150
|
var FreelancerCaseStudy = class extends BaseEntity {
|
|
2218
2151
|
};
|
|
2219
2152
|
// individual index to find case study by user
|
|
2220
2153
|
__decorateClass([
|
|
2221
|
-
(0,
|
|
2222
|
-
(0,
|
|
2154
|
+
(0, import_typeorm18.Column)({ name: "user_id", type: "integer", nullable: true }),
|
|
2155
|
+
(0, import_typeorm18.Index)()
|
|
2223
2156
|
], FreelancerCaseStudy.prototype, "userId", 2);
|
|
2224
2157
|
__decorateClass([
|
|
2225
|
-
(0,
|
|
2226
|
-
(0,
|
|
2158
|
+
(0, import_typeorm18.ManyToOne)(() => User, (user) => user.freelancerCaseStudy),
|
|
2159
|
+
(0, import_typeorm18.JoinColumn)({ name: "user_id" })
|
|
2227
2160
|
], FreelancerCaseStudy.prototype, "user", 2);
|
|
2228
2161
|
__decorateClass([
|
|
2229
|
-
(0,
|
|
2162
|
+
(0, import_typeorm18.Column)({ name: "project_name", type: "varchar", nullable: true })
|
|
2230
2163
|
], FreelancerCaseStudy.prototype, "projectName", 2);
|
|
2231
2164
|
__decorateClass([
|
|
2232
|
-
(0,
|
|
2165
|
+
(0, import_typeorm18.Column)({ name: "case_study_link", type: "varchar", nullable: true })
|
|
2233
2166
|
], FreelancerCaseStudy.prototype, "caseStudyLink", 2);
|
|
2234
2167
|
__decorateClass([
|
|
2235
|
-
(0,
|
|
2168
|
+
(0, import_typeorm18.Column)({ name: "description", type: "varchar", nullable: true })
|
|
2236
2169
|
], FreelancerCaseStudy.prototype, "description", 2);
|
|
2237
2170
|
FreelancerCaseStudy = __decorateClass([
|
|
2238
|
-
(0,
|
|
2171
|
+
(0, import_typeorm18.Entity)("freelancer_case_studies")
|
|
2239
2172
|
], FreelancerCaseStudy);
|
|
2240
2173
|
|
|
2241
2174
|
// src/entities/freelancer-coreskill.entity.ts
|
|
2242
|
-
var
|
|
2175
|
+
var import_typeorm19 = require("typeorm");
|
|
2243
2176
|
var FreelancerCoreSkill = class extends BaseEntity {
|
|
2244
2177
|
};
|
|
2245
2178
|
// individual index to find core skills by user
|
|
2246
2179
|
__decorateClass([
|
|
2247
|
-
(0,
|
|
2248
|
-
(0,
|
|
2180
|
+
(0, import_typeorm19.Column)({ name: "user_id", type: "integer", nullable: true }),
|
|
2181
|
+
(0, import_typeorm19.Index)()
|
|
2249
2182
|
], FreelancerCoreSkill.prototype, "userId", 2);
|
|
2250
2183
|
__decorateClass([
|
|
2251
|
-
(0,
|
|
2252
|
-
(0,
|
|
2184
|
+
(0, import_typeorm19.ManyToOne)(() => User, (user) => user.freelancerCoreSkill),
|
|
2185
|
+
(0, import_typeorm19.JoinColumn)({ name: "user_id" })
|
|
2253
2186
|
], FreelancerCoreSkill.prototype, "user", 2);
|
|
2254
2187
|
__decorateClass([
|
|
2255
|
-
(0,
|
|
2188
|
+
(0, import_typeorm19.Column)({ name: "skill_name", type: "varchar", nullable: true })
|
|
2256
2189
|
], FreelancerCoreSkill.prototype, "skillName", 2);
|
|
2257
2190
|
FreelancerCoreSkill = __decorateClass([
|
|
2258
|
-
(0,
|
|
2191
|
+
(0, import_typeorm19.Entity)("freelancer_coreskills")
|
|
2259
2192
|
], FreelancerCoreSkill);
|
|
2260
2193
|
|
|
2261
2194
|
// src/entities/freelancer-tool.entity.ts
|
|
2262
|
-
var
|
|
2195
|
+
var import_typeorm20 = require("typeorm");
|
|
2263
2196
|
var FreelancerTool = class extends BaseEntity {
|
|
2264
2197
|
};
|
|
2265
2198
|
// individual index to find tool by user
|
|
2266
2199
|
__decorateClass([
|
|
2267
|
-
(0,
|
|
2268
|
-
(0,
|
|
2200
|
+
(0, import_typeorm20.Column)({ name: "user_id", type: "integer", nullable: true }),
|
|
2201
|
+
(0, import_typeorm20.Index)()
|
|
2269
2202
|
], FreelancerTool.prototype, "userId", 2);
|
|
2270
2203
|
__decorateClass([
|
|
2271
|
-
(0,
|
|
2272
|
-
(0,
|
|
2204
|
+
(0, import_typeorm20.ManyToOne)(() => User, (user) => user.freelancerTool),
|
|
2205
|
+
(0, import_typeorm20.JoinColumn)({ name: "user_id" })
|
|
2273
2206
|
], FreelancerTool.prototype, "user", 2);
|
|
2274
2207
|
__decorateClass([
|
|
2275
|
-
(0,
|
|
2208
|
+
(0, import_typeorm20.Column)({ name: "tool_name", type: "varchar", nullable: true })
|
|
2276
2209
|
], FreelancerTool.prototype, "toolName", 2);
|
|
2277
2210
|
FreelancerTool = __decorateClass([
|
|
2278
|
-
(0,
|
|
2211
|
+
(0, import_typeorm20.Entity)("freelancer_tools")
|
|
2279
2212
|
], FreelancerTool);
|
|
2280
2213
|
|
|
2281
2214
|
// src/entities/freelancer-framework.entity.ts
|
|
2282
|
-
var
|
|
2215
|
+
var import_typeorm21 = require("typeorm");
|
|
2283
2216
|
var FreelancerFramework = class extends BaseEntity {
|
|
2284
2217
|
};
|
|
2285
2218
|
// individual index to find framework by user
|
|
2286
2219
|
__decorateClass([
|
|
2287
|
-
(0,
|
|
2288
|
-
(0,
|
|
2220
|
+
(0, import_typeorm21.Column)({ name: "user_id", type: "integer", nullable: true }),
|
|
2221
|
+
(0, import_typeorm21.Index)()
|
|
2289
2222
|
], FreelancerFramework.prototype, "userId", 2);
|
|
2290
2223
|
__decorateClass([
|
|
2291
|
-
(0,
|
|
2292
|
-
(0,
|
|
2224
|
+
(0, import_typeorm21.ManyToOne)(() => User, (user) => user.freelancerFramework),
|
|
2225
|
+
(0, import_typeorm21.JoinColumn)({ name: "user_id" })
|
|
2293
2226
|
], FreelancerFramework.prototype, "user", 2);
|
|
2294
2227
|
__decorateClass([
|
|
2295
|
-
(0,
|
|
2228
|
+
(0, import_typeorm21.Column)({ name: "framework_name", type: "varchar", nullable: true })
|
|
2296
2229
|
], FreelancerFramework.prototype, "frameworkName", 2);
|
|
2297
2230
|
FreelancerFramework = __decorateClass([
|
|
2298
|
-
(0,
|
|
2231
|
+
(0, import_typeorm21.Entity)("freelancer_frameworks")
|
|
2299
2232
|
], FreelancerFramework);
|
|
2300
2233
|
|
|
2301
2234
|
// src/entities/freelancer-assessment.entity.ts
|
|
2302
|
-
var
|
|
2235
|
+
var import_typeorm22 = require("typeorm");
|
|
2303
2236
|
var AssessmentStatusEnum = /* @__PURE__ */ ((AssessmentStatusEnum2) => {
|
|
2304
2237
|
AssessmentStatusEnum2["NOT_ATTEMPTED"] = "NOT_ATTEMPTED";
|
|
2305
2238
|
AssessmentStatusEnum2["ACTIVE"] = "ACTIVE";
|
|
@@ -2313,21 +2246,21 @@ var AssessmentStatusEnum = /* @__PURE__ */ ((AssessmentStatusEnum2) => {
|
|
|
2313
2246
|
var FreelancerAssessment = class extends BaseEntity {
|
|
2314
2247
|
};
|
|
2315
2248
|
__decorateClass([
|
|
2316
|
-
(0,
|
|
2317
|
-
(0,
|
|
2249
|
+
(0, import_typeorm22.Column)({ name: "user_id", type: "integer", nullable: true }),
|
|
2250
|
+
(0, import_typeorm22.Index)()
|
|
2318
2251
|
], FreelancerAssessment.prototype, "userId", 2);
|
|
2319
2252
|
__decorateClass([
|
|
2320
|
-
(0,
|
|
2321
|
-
(0,
|
|
2253
|
+
(0, import_typeorm22.ManyToOne)(() => User, (user) => user.assessments),
|
|
2254
|
+
(0, import_typeorm22.JoinColumn)({ name: "user_id" })
|
|
2322
2255
|
], FreelancerAssessment.prototype, "user", 2);
|
|
2323
2256
|
__decorateClass([
|
|
2324
|
-
(0,
|
|
2257
|
+
(0, import_typeorm22.Column)({ name: "interview_id", type: "varchar", nullable: true })
|
|
2325
2258
|
], FreelancerAssessment.prototype, "interviewId", 2);
|
|
2326
2259
|
__decorateClass([
|
|
2327
|
-
(0,
|
|
2260
|
+
(0, import_typeorm22.Column)({ name: "interview_link", type: "text", nullable: true })
|
|
2328
2261
|
], FreelancerAssessment.prototype, "interviewLink", 2);
|
|
2329
2262
|
__decorateClass([
|
|
2330
|
-
(0,
|
|
2263
|
+
(0, import_typeorm22.Column)({
|
|
2331
2264
|
name: "status",
|
|
2332
2265
|
type: "enum",
|
|
2333
2266
|
enum: AssessmentStatusEnum,
|
|
@@ -2335,11 +2268,11 @@ __decorateClass([
|
|
|
2335
2268
|
})
|
|
2336
2269
|
], FreelancerAssessment.prototype, "status", 2);
|
|
2337
2270
|
FreelancerAssessment = __decorateClass([
|
|
2338
|
-
(0,
|
|
2271
|
+
(0, import_typeorm22.Entity)("freelancer_assessments")
|
|
2339
2272
|
], FreelancerAssessment);
|
|
2340
2273
|
|
|
2341
2274
|
// src/entities/freelancer-declaration.entity.ts
|
|
2342
|
-
var
|
|
2275
|
+
var import_typeorm23 = require("typeorm");
|
|
2343
2276
|
var DocumentType = /* @__PURE__ */ ((DocumentType2) => {
|
|
2344
2277
|
DocumentType2["AADHAAR"] = "AADHAAR_CARD";
|
|
2345
2278
|
DocumentType2["PASSPORT"] = "PASSPORT";
|
|
@@ -2351,15 +2284,15 @@ var FreelancerDeclaration = class extends BaseEntity {
|
|
|
2351
2284
|
};
|
|
2352
2285
|
// individual index to find declaration by user
|
|
2353
2286
|
__decorateClass([
|
|
2354
|
-
(0,
|
|
2355
|
-
(0,
|
|
2287
|
+
(0, import_typeorm23.Column)({ name: "user_id", type: "integer", nullable: true }),
|
|
2288
|
+
(0, import_typeorm23.Index)()
|
|
2356
2289
|
], FreelancerDeclaration.prototype, "userId", 2);
|
|
2357
2290
|
__decorateClass([
|
|
2358
|
-
(0,
|
|
2359
|
-
(0,
|
|
2291
|
+
(0, import_typeorm23.ManyToOne)(() => User, (user) => user.freelancerDeclaration),
|
|
2292
|
+
(0, import_typeorm23.JoinColumn)({ name: "user_id" })
|
|
2360
2293
|
], FreelancerDeclaration.prototype, "user", 2);
|
|
2361
2294
|
__decorateClass([
|
|
2362
|
-
(0,
|
|
2295
|
+
(0, import_typeorm23.Column)({
|
|
2363
2296
|
name: "document_type",
|
|
2364
2297
|
type: "enum",
|
|
2365
2298
|
enum: DocumentType,
|
|
@@ -2367,21 +2300,136 @@ __decorateClass([
|
|
|
2367
2300
|
})
|
|
2368
2301
|
], FreelancerDeclaration.prototype, "documentType", 2);
|
|
2369
2302
|
__decorateClass([
|
|
2370
|
-
(0,
|
|
2303
|
+
(0, import_typeorm23.Column)({ name: "front_document_url", type: "varchar", nullable: true })
|
|
2371
2304
|
], FreelancerDeclaration.prototype, "frontDocumentUrl", 2);
|
|
2372
2305
|
__decorateClass([
|
|
2373
|
-
(0,
|
|
2306
|
+
(0, import_typeorm23.Column)({ name: "back_document_url", type: "varchar", nullable: true })
|
|
2374
2307
|
], FreelancerDeclaration.prototype, "backDocumentUrl", 2);
|
|
2375
2308
|
__decorateClass([
|
|
2376
|
-
(0,
|
|
2309
|
+
(0, import_typeorm23.Column)({ name: "declaration_accepted", type: "boolean", default: false })
|
|
2377
2310
|
], FreelancerDeclaration.prototype, "declarationAccepted", 2);
|
|
2378
2311
|
__decorateClass([
|
|
2379
|
-
(0,
|
|
2312
|
+
(0, import_typeorm23.Column)({ name: "digital_signature_url", type: "varchar", nullable: true })
|
|
2380
2313
|
], FreelancerDeclaration.prototype, "digitalSignatureUrl", 2);
|
|
2381
2314
|
FreelancerDeclaration = __decorateClass([
|
|
2382
|
-
(0,
|
|
2315
|
+
(0, import_typeorm23.Entity)("freelancer_declaration")
|
|
2383
2316
|
], FreelancerDeclaration);
|
|
2384
2317
|
|
|
2318
|
+
// src/entities/company-members-roles.entity.ts
|
|
2319
|
+
var import_typeorm27 = require("typeorm");
|
|
2320
|
+
|
|
2321
|
+
// src/entities/company-role.entity.ts
|
|
2322
|
+
var import_typeorm26 = require("typeorm");
|
|
2323
|
+
|
|
2324
|
+
// src/entities/company-role-permission.entity.ts
|
|
2325
|
+
var import_typeorm25 = require("typeorm");
|
|
2326
|
+
|
|
2327
|
+
// src/entities/permission.entity.ts
|
|
2328
|
+
var import_typeorm24 = require("typeorm");
|
|
2329
|
+
var Permission = class extends BaseEntity {
|
|
2330
|
+
};
|
|
2331
|
+
__decorateClass([
|
|
2332
|
+
(0, import_typeorm24.Column)({ name: "name", type: "varchar", nullable: true })
|
|
2333
|
+
], Permission.prototype, "name", 2);
|
|
2334
|
+
__decorateClass([
|
|
2335
|
+
(0, import_typeorm24.Column)({ name: "slug", type: "varchar", nullable: true, unique: true }),
|
|
2336
|
+
(0, import_typeorm24.Index)()
|
|
2337
|
+
], Permission.prototype, "slug", 2);
|
|
2338
|
+
__decorateClass([
|
|
2339
|
+
(0, import_typeorm24.Column)({ name: "description", type: "text", nullable: true })
|
|
2340
|
+
], Permission.prototype, "description", 2);
|
|
2341
|
+
__decorateClass([
|
|
2342
|
+
(0, import_typeorm24.Column)({ name: "is_active", type: "boolean", default: true })
|
|
2343
|
+
], Permission.prototype, "isActive", 2);
|
|
2344
|
+
Permission = __decorateClass([
|
|
2345
|
+
(0, import_typeorm24.Entity)("permissions")
|
|
2346
|
+
], Permission);
|
|
2347
|
+
|
|
2348
|
+
// src/entities/company-role-permission.entity.ts
|
|
2349
|
+
var CompanyRolePermission = class extends BaseEntity {
|
|
2350
|
+
};
|
|
2351
|
+
__decorateClass([
|
|
2352
|
+
(0, import_typeorm25.Column)({ name: "company_role_id", type: "integer", nullable: true }),
|
|
2353
|
+
(0, import_typeorm25.Index)()
|
|
2354
|
+
], CompanyRolePermission.prototype, "companyRoleId", 2);
|
|
2355
|
+
__decorateClass([
|
|
2356
|
+
(0, import_typeorm25.ManyToOne)(() => CompanyRole, (role) => role.rolePermissions, {
|
|
2357
|
+
onDelete: "CASCADE"
|
|
2358
|
+
}),
|
|
2359
|
+
(0, import_typeorm25.JoinColumn)({ name: "company_role_id" })
|
|
2360
|
+
], CompanyRolePermission.prototype, "companyRole", 2);
|
|
2361
|
+
__decorateClass([
|
|
2362
|
+
(0, import_typeorm25.Column)({ name: "permission_id", type: "integer" }),
|
|
2363
|
+
(0, import_typeorm25.Index)()
|
|
2364
|
+
], CompanyRolePermission.prototype, "permissionId", 2);
|
|
2365
|
+
__decorateClass([
|
|
2366
|
+
(0, import_typeorm25.ManyToOne)(() => Permission, { onDelete: "CASCADE" }),
|
|
2367
|
+
(0, import_typeorm25.JoinColumn)({ name: "permission_id" })
|
|
2368
|
+
], CompanyRolePermission.prototype, "permission", 2);
|
|
2369
|
+
__decorateClass([
|
|
2370
|
+
(0, import_typeorm25.Column)({ name: "assigned_by", type: "integer", nullable: true })
|
|
2371
|
+
], CompanyRolePermission.prototype, "assignedBy", 2);
|
|
2372
|
+
CompanyRolePermission = __decorateClass([
|
|
2373
|
+
(0, import_typeorm25.Entity)("company_role_permissions")
|
|
2374
|
+
], CompanyRolePermission);
|
|
2375
|
+
|
|
2376
|
+
// src/entities/company-role.entity.ts
|
|
2377
|
+
var CompanyRole = class extends BaseEntity {
|
|
2378
|
+
};
|
|
2379
|
+
__decorateClass([
|
|
2380
|
+
(0, import_typeorm26.Column)({ name: "user_id", type: "integer", nullable: true }),
|
|
2381
|
+
(0, import_typeorm26.Index)()
|
|
2382
|
+
], CompanyRole.prototype, "userId", 2);
|
|
2383
|
+
__decorateClass([
|
|
2384
|
+
(0, import_typeorm26.ManyToOne)(() => User, (user) => user.otps),
|
|
2385
|
+
(0, import_typeorm26.JoinColumn)({ name: "user_id" })
|
|
2386
|
+
], CompanyRole.prototype, "user", 2);
|
|
2387
|
+
__decorateClass([
|
|
2388
|
+
(0, import_typeorm26.Column)({ name: "name", type: "varchar" })
|
|
2389
|
+
], CompanyRole.prototype, "name", 2);
|
|
2390
|
+
__decorateClass([
|
|
2391
|
+
(0, import_typeorm26.Column)({ name: "slug", type: "varchar", nullable: true, unique: true }),
|
|
2392
|
+
(0, import_typeorm26.Index)()
|
|
2393
|
+
], CompanyRole.prototype, "slug", 2);
|
|
2394
|
+
__decorateClass([
|
|
2395
|
+
(0, import_typeorm26.Column)({ name: "description", type: "text", nullable: true })
|
|
2396
|
+
], CompanyRole.prototype, "description", 2);
|
|
2397
|
+
__decorateClass([
|
|
2398
|
+
(0, import_typeorm26.Column)({ name: "is_active", type: "boolean", default: true })
|
|
2399
|
+
], CompanyRole.prototype, "isActive", 2);
|
|
2400
|
+
__decorateClass([
|
|
2401
|
+
(0, import_typeorm26.OneToMany)(() => CompanyRolePermission, (rp) => rp.companyRole)
|
|
2402
|
+
], CompanyRole.prototype, "rolePermissions", 2);
|
|
2403
|
+
CompanyRole = __decorateClass([
|
|
2404
|
+
(0, import_typeorm26.Entity)("company_roles")
|
|
2405
|
+
], CompanyRole);
|
|
2406
|
+
|
|
2407
|
+
// src/entities/company-members-roles.entity.ts
|
|
2408
|
+
var CompanyMemberRole = class extends BaseEntity {
|
|
2409
|
+
};
|
|
2410
|
+
__decorateClass([
|
|
2411
|
+
(0, import_typeorm27.Column)({ name: "user_id", type: "integer", nullable: true }),
|
|
2412
|
+
(0, import_typeorm27.Index)()
|
|
2413
|
+
], CompanyMemberRole.prototype, "userId", 2);
|
|
2414
|
+
__decorateClass([
|
|
2415
|
+
(0, import_typeorm27.ManyToOne)(() => User),
|
|
2416
|
+
(0, import_typeorm27.JoinColumn)({ name: "user_id" })
|
|
2417
|
+
], CompanyMemberRole.prototype, "user", 2);
|
|
2418
|
+
__decorateClass([
|
|
2419
|
+
(0, import_typeorm27.ManyToOne)(() => CompanyRole),
|
|
2420
|
+
(0, import_typeorm27.JoinColumn)({ name: "company_role_id" })
|
|
2421
|
+
], CompanyMemberRole.prototype, "role", 2);
|
|
2422
|
+
__decorateClass([
|
|
2423
|
+
(0, import_typeorm27.Column)({ name: "company_role_id", type: "integer", nullable: true }),
|
|
2424
|
+
(0, import_typeorm27.Index)()
|
|
2425
|
+
], CompanyMemberRole.prototype, "companyRoleId", 2);
|
|
2426
|
+
__decorateClass([
|
|
2427
|
+
(0, import_typeorm27.Column)({ name: "assigned_by", type: "integer", nullable: true })
|
|
2428
|
+
], CompanyMemberRole.prototype, "assignedBy", 2);
|
|
2429
|
+
CompanyMemberRole = __decorateClass([
|
|
2430
|
+
(0, import_typeorm27.Entity)("company_member_roles")
|
|
2431
|
+
], CompanyMemberRole);
|
|
2432
|
+
|
|
2385
2433
|
// src/entities/user.entity.ts
|
|
2386
2434
|
var AccountType = /* @__PURE__ */ ((AccountType2) => {
|
|
2387
2435
|
AccountType2["ADMIN"] = "ADMIN";
|
|
@@ -2407,51 +2455,51 @@ var Provider = /* @__PURE__ */ ((Provider2) => {
|
|
|
2407
2455
|
var User = class extends BaseEntity {
|
|
2408
2456
|
};
|
|
2409
2457
|
__decorateClass([
|
|
2410
|
-
(0,
|
|
2458
|
+
(0, import_typeorm28.Column)({ name: "unique_id", type: "varchar", unique: true })
|
|
2411
2459
|
], User.prototype, "uniqueId", 2);
|
|
2412
2460
|
__decorateClass([
|
|
2413
|
-
(0,
|
|
2414
|
-
(0,
|
|
2461
|
+
(0, import_typeorm28.Column)({ name: "parent_id", type: "integer", nullable: true }),
|
|
2462
|
+
(0, import_typeorm28.Index)()
|
|
2415
2463
|
], User.prototype, "parentId", 2);
|
|
2416
2464
|
__decorateClass([
|
|
2417
|
-
(0,
|
|
2418
|
-
(0,
|
|
2465
|
+
(0, import_typeorm28.ManyToOne)(() => User, (user) => user.children, { nullable: true }),
|
|
2466
|
+
(0, import_typeorm28.JoinColumn)({ name: "parent_id" })
|
|
2419
2467
|
], User.prototype, "parent", 2);
|
|
2420
2468
|
__decorateClass([
|
|
2421
|
-
(0,
|
|
2469
|
+
(0, import_typeorm28.OneToMany)(() => User, (user) => user.parent)
|
|
2422
2470
|
], User.prototype, "children", 2);
|
|
2423
2471
|
__decorateClass([
|
|
2424
|
-
(0,
|
|
2472
|
+
(0, import_typeorm28.Column)({ name: "username", type: "varchar", unique: true, nullable: true })
|
|
2425
2473
|
], User.prototype, "username", 2);
|
|
2426
2474
|
__decorateClass([
|
|
2427
|
-
(0,
|
|
2475
|
+
(0, import_typeorm28.Column)({ name: "first_name", type: "varchar", length: 100, nullable: true })
|
|
2428
2476
|
], User.prototype, "firstName", 2);
|
|
2429
2477
|
__decorateClass([
|
|
2430
|
-
(0,
|
|
2478
|
+
(0, import_typeorm28.Column)({ name: "last_name", type: "varchar", length: 100, nullable: true })
|
|
2431
2479
|
], User.prototype, "lastName", 2);
|
|
2432
2480
|
__decorateClass([
|
|
2433
|
-
(0,
|
|
2481
|
+
(0, import_typeorm28.Column)({ name: "date_of_birth", type: "date", nullable: true })
|
|
2434
2482
|
], User.prototype, "dateOfBirth", 2);
|
|
2435
2483
|
__decorateClass([
|
|
2436
|
-
(0,
|
|
2484
|
+
(0, import_typeorm28.Column)({ name: "gender", type: "varchar", length: 10, nullable: true })
|
|
2437
2485
|
], User.prototype, "gender", 2);
|
|
2438
2486
|
__decorateClass([
|
|
2439
|
-
(0,
|
|
2487
|
+
(0, import_typeorm28.Column)({ name: "profile_picture_url", type: "text", nullable: true })
|
|
2440
2488
|
], User.prototype, "profilePictureUrl", 2);
|
|
2441
2489
|
__decorateClass([
|
|
2442
|
-
(0,
|
|
2490
|
+
(0, import_typeorm28.Column)({ name: "email", type: "varchar", unique: true })
|
|
2443
2491
|
], User.prototype, "email", 2);
|
|
2444
2492
|
__decorateClass([
|
|
2445
|
-
(0,
|
|
2493
|
+
(0, import_typeorm28.Column)({ name: "mobile_code", type: "varchar", nullable: true })
|
|
2446
2494
|
], User.prototype, "mobileCode", 2);
|
|
2447
2495
|
__decorateClass([
|
|
2448
|
-
(0,
|
|
2496
|
+
(0, import_typeorm28.Column)({ name: "mobile", type: "varchar", unique: true, nullable: true })
|
|
2449
2497
|
], User.prototype, "mobile", 2);
|
|
2450
2498
|
__decorateClass([
|
|
2451
|
-
(0,
|
|
2499
|
+
(0, import_typeorm28.Column)({ name: "password", type: "varchar", nullable: true })
|
|
2452
2500
|
], User.prototype, "password", 2);
|
|
2453
2501
|
__decorateClass([
|
|
2454
|
-
(0,
|
|
2502
|
+
(0, import_typeorm28.Column)({
|
|
2455
2503
|
name: "account_type",
|
|
2456
2504
|
type: "enum",
|
|
2457
2505
|
enum: AccountType,
|
|
@@ -2459,7 +2507,7 @@ __decorateClass([
|
|
|
2459
2507
|
})
|
|
2460
2508
|
], User.prototype, "accountType", 2);
|
|
2461
2509
|
__decorateClass([
|
|
2462
|
-
(0,
|
|
2510
|
+
(0, import_typeorm28.Column)({
|
|
2463
2511
|
name: "account_status",
|
|
2464
2512
|
type: "enum",
|
|
2465
2513
|
enum: AccountStatus,
|
|
@@ -2467,36 +2515,36 @@ __decorateClass([
|
|
|
2467
2515
|
})
|
|
2468
2516
|
], User.prototype, "accountStatus", 2);
|
|
2469
2517
|
__decorateClass([
|
|
2470
|
-
(0,
|
|
2518
|
+
(0, import_typeorm28.Column)({ name: "is_email_verified", type: "boolean", default: false })
|
|
2471
2519
|
], User.prototype, "isEmailVerified", 2);
|
|
2472
2520
|
__decorateClass([
|
|
2473
|
-
(0,
|
|
2521
|
+
(0, import_typeorm28.Column)({ name: "is_mobile_verified", type: "boolean", default: false })
|
|
2474
2522
|
], User.prototype, "isMobileVerified", 2);
|
|
2475
2523
|
__decorateClass([
|
|
2476
|
-
(0,
|
|
2524
|
+
(0, import_typeorm28.Column)({
|
|
2477
2525
|
name: "last_login_at",
|
|
2478
2526
|
type: "timestamp with time zone",
|
|
2479
2527
|
nullable: true
|
|
2480
2528
|
})
|
|
2481
2529
|
], User.prototype, "lastLoginAt", 2);
|
|
2482
2530
|
__decorateClass([
|
|
2483
|
-
(0,
|
|
2531
|
+
(0, import_typeorm28.Column)({ name: "last_login_ip", type: "varchar", nullable: true })
|
|
2484
2532
|
], User.prototype, "lastLoginIp", 2);
|
|
2485
2533
|
__decorateClass([
|
|
2486
|
-
(0,
|
|
2534
|
+
(0, import_typeorm28.Column)({ name: "reset_token", type: "varchar", nullable: true })
|
|
2487
2535
|
], User.prototype, "resetToken", 2);
|
|
2488
2536
|
__decorateClass([
|
|
2489
|
-
(0,
|
|
2537
|
+
(0, import_typeorm28.Column)({
|
|
2490
2538
|
name: "reset_token_expire_at",
|
|
2491
2539
|
type: "timestamp with time zone",
|
|
2492
2540
|
nullable: true
|
|
2493
2541
|
})
|
|
2494
2542
|
], User.prototype, "resetTokenExpireAt", 2);
|
|
2495
2543
|
__decorateClass([
|
|
2496
|
-
(0,
|
|
2544
|
+
(0, import_typeorm28.OneToMany)(() => RefreshToken, (token) => token.user)
|
|
2497
2545
|
], User.prototype, "refreshTokens", 2);
|
|
2498
2546
|
__decorateClass([
|
|
2499
|
-
(0,
|
|
2547
|
+
(0, import_typeorm28.Column)({
|
|
2500
2548
|
name: "provider",
|
|
2501
2549
|
type: "enum",
|
|
2502
2550
|
enum: Provider,
|
|
@@ -2505,114 +2553,114 @@ __decorateClass([
|
|
|
2505
2553
|
})
|
|
2506
2554
|
], User.prototype, "provider", 2);
|
|
2507
2555
|
__decorateClass([
|
|
2508
|
-
(0,
|
|
2556
|
+
(0, import_typeorm28.Column)({ name: "provider_token", type: "varchar", nullable: true })
|
|
2509
2557
|
], User.prototype, "providerToken", 2);
|
|
2510
2558
|
__decorateClass([
|
|
2511
|
-
(0,
|
|
2559
|
+
(0, import_typeorm28.Column)({ name: "linkedin_id", type: "varchar", nullable: true })
|
|
2512
2560
|
], User.prototype, "linkedInId", 2);
|
|
2513
2561
|
__decorateClass([
|
|
2514
|
-
(0,
|
|
2562
|
+
(0, import_typeorm28.Column)({ name: "google_id", type: "varchar", nullable: true })
|
|
2515
2563
|
], User.prototype, "googleId", 2);
|
|
2516
2564
|
__decorateClass([
|
|
2517
|
-
(0,
|
|
2565
|
+
(0, import_typeorm28.Column)({ name: "gitlabs_id", type: "varchar", nullable: true })
|
|
2518
2566
|
], User.prototype, "gitLabsId", 2);
|
|
2519
2567
|
__decorateClass([
|
|
2520
|
-
(0,
|
|
2568
|
+
(0, import_typeorm28.OneToMany)(() => Otp, (otp) => otp.user)
|
|
2521
2569
|
], User.prototype, "otps", 2);
|
|
2522
2570
|
__decorateClass([
|
|
2523
|
-
(0,
|
|
2571
|
+
(0, import_typeorm28.OneToMany)(() => SenseloafLog, (senseloafLog) => senseloafLog.user)
|
|
2524
2572
|
], User.prototype, "senseloafLogs", 2);
|
|
2525
2573
|
__decorateClass([
|
|
2526
|
-
(0,
|
|
2574
|
+
(0, import_typeorm28.OneToOne)(
|
|
2527
2575
|
() => FreelancerProfile,
|
|
2528
2576
|
(freelancerProfile) => freelancerProfile.user
|
|
2529
2577
|
)
|
|
2530
2578
|
], User.prototype, "freelancerProfile", 2);
|
|
2531
2579
|
__decorateClass([
|
|
2532
|
-
(0,
|
|
2580
|
+
(0, import_typeorm28.OneToOne)(() => CompanyProfile, (companyProfile) => companyProfile.user, {
|
|
2533
2581
|
cascade: true
|
|
2534
2582
|
})
|
|
2535
2583
|
], User.prototype, "companyProfile", 2);
|
|
2536
2584
|
__decorateClass([
|
|
2537
|
-
(0,
|
|
2538
|
-
], User.prototype, "
|
|
2585
|
+
(0, import_typeorm28.OneToMany)(() => CompanyMemberRole, (companyMemberRole) => companyMemberRole.user)
|
|
2586
|
+
], User.prototype, "companyMemberRoles", 2);
|
|
2539
2587
|
__decorateClass([
|
|
2540
|
-
(0,
|
|
2588
|
+
(0, import_typeorm28.OneToMany)(
|
|
2541
2589
|
() => FreelancerAssessment,
|
|
2542
2590
|
(freelancerAssessment) => freelancerAssessment.user
|
|
2543
2591
|
)
|
|
2544
2592
|
], User.prototype, "assessments", 2);
|
|
2545
2593
|
__decorateClass([
|
|
2546
|
-
(0,
|
|
2594
|
+
(0, import_typeorm28.OneToMany)(() => Job, (job) => job.user)
|
|
2547
2595
|
], User.prototype, "jobs", 2);
|
|
2548
2596
|
__decorateClass([
|
|
2549
|
-
(0,
|
|
2597
|
+
(0, import_typeorm28.OneToMany)(() => Interview, (interview) => interview.user)
|
|
2550
2598
|
], User.prototype, "interviews", 2);
|
|
2551
2599
|
__decorateClass([
|
|
2552
|
-
(0,
|
|
2600
|
+
(0, import_typeorm28.OneToMany)(() => BankDetail, (bankDetail) => bankDetail.user)
|
|
2553
2601
|
], User.prototype, "bankDetail", 2);
|
|
2554
2602
|
__decorateClass([
|
|
2555
|
-
(0,
|
|
2603
|
+
(0, import_typeorm28.OneToMany)(
|
|
2556
2604
|
() => SystemPreference,
|
|
2557
2605
|
(systemPreference) => systemPreference.user
|
|
2558
2606
|
)
|
|
2559
2607
|
], User.prototype, "systemPreference", 2);
|
|
2560
2608
|
__decorateClass([
|
|
2561
|
-
(0,
|
|
2609
|
+
(0, import_typeorm28.OneToMany)(() => Rating, (rating) => rating.reviewer)
|
|
2562
2610
|
], User.prototype, "givenRatings", 2);
|
|
2563
2611
|
__decorateClass([
|
|
2564
|
-
(0,
|
|
2612
|
+
(0, import_typeorm28.OneToMany)(() => Rating, (rating) => rating.reviewee)
|
|
2565
2613
|
], User.prototype, "receivedRatings", 2);
|
|
2566
2614
|
__decorateClass([
|
|
2567
|
-
(0,
|
|
2615
|
+
(0, import_typeorm28.OneToMany)(() => JobApplication, (jobApplication) => jobApplication.user)
|
|
2568
2616
|
], User.prototype, "jobApplications", 2);
|
|
2569
2617
|
__decorateClass([
|
|
2570
|
-
(0,
|
|
2618
|
+
(0, import_typeorm28.OneToOne)(
|
|
2571
2619
|
() => FreelancerExperience,
|
|
2572
2620
|
(freelancerExperience) => freelancerExperience.user
|
|
2573
2621
|
)
|
|
2574
2622
|
], User.prototype, "freelancerExperience", 2);
|
|
2575
2623
|
__decorateClass([
|
|
2576
|
-
(0,
|
|
2624
|
+
(0, import_typeorm28.OneToOne)(
|
|
2577
2625
|
() => FreelancerEducation,
|
|
2578
2626
|
(freelancerEducation) => freelancerEducation.user
|
|
2579
2627
|
)
|
|
2580
2628
|
], User.prototype, "freelancerEducation", 2);
|
|
2581
2629
|
__decorateClass([
|
|
2582
|
-
(0,
|
|
2630
|
+
(0, import_typeorm28.OneToOne)(
|
|
2583
2631
|
() => FreelancerProject,
|
|
2584
2632
|
(freelancerProject) => freelancerProject.user
|
|
2585
2633
|
)
|
|
2586
2634
|
], User.prototype, "freelancerProject", 2);
|
|
2587
2635
|
__decorateClass([
|
|
2588
|
-
(0,
|
|
2636
|
+
(0, import_typeorm28.OneToOne)(
|
|
2589
2637
|
() => FreelancerCaseStudy,
|
|
2590
2638
|
(freelancerCaseStudy) => freelancerCaseStudy.user
|
|
2591
2639
|
)
|
|
2592
2640
|
], User.prototype, "freelancerCaseStudy", 2);
|
|
2593
2641
|
__decorateClass([
|
|
2594
|
-
(0,
|
|
2642
|
+
(0, import_typeorm28.OneToOne)(
|
|
2595
2643
|
() => FreelancerCoreSkill,
|
|
2596
2644
|
(freelancerCoreSkill) => freelancerCoreSkill.user
|
|
2597
2645
|
)
|
|
2598
2646
|
], User.prototype, "freelancerCoreSkill", 2);
|
|
2599
2647
|
__decorateClass([
|
|
2600
|
-
(0,
|
|
2648
|
+
(0, import_typeorm28.OneToOne)(() => FreelancerTool, (freelancerTool) => freelancerTool.user)
|
|
2601
2649
|
], User.prototype, "freelancerTool", 2);
|
|
2602
2650
|
__decorateClass([
|
|
2603
|
-
(0,
|
|
2651
|
+
(0, import_typeorm28.OneToOne)(
|
|
2604
2652
|
() => FreelancerFramework,
|
|
2605
2653
|
(freelancerFramework) => freelancerFramework.user
|
|
2606
2654
|
)
|
|
2607
2655
|
], User.prototype, "freelancerFramework", 2);
|
|
2608
2656
|
__decorateClass([
|
|
2609
|
-
(0,
|
|
2657
|
+
(0, import_typeorm28.OneToOne)(
|
|
2610
2658
|
() => FreelancerDeclaration,
|
|
2611
2659
|
(freelancerDeclaration) => freelancerDeclaration.user
|
|
2612
2660
|
)
|
|
2613
2661
|
], User.prototype, "freelancerDeclaration", 2);
|
|
2614
2662
|
User = __decorateClass([
|
|
2615
|
-
(0,
|
|
2663
|
+
(0, import_typeorm28.Entity)("users")
|
|
2616
2664
|
], User);
|
|
2617
2665
|
|
|
2618
2666
|
// src/entities/rating.entity.ts
|
|
@@ -2624,36 +2672,36 @@ var RatingTypeEnum = /* @__PURE__ */ ((RatingTypeEnum2) => {
|
|
|
2624
2672
|
var Rating = class extends BaseEntity {
|
|
2625
2673
|
};
|
|
2626
2674
|
__decorateClass([
|
|
2627
|
-
(0,
|
|
2628
|
-
(0,
|
|
2675
|
+
(0, import_typeorm29.Column)({ name: "reviewer_id", type: "integer" }),
|
|
2676
|
+
(0, import_typeorm29.Index)()
|
|
2629
2677
|
], Rating.prototype, "reviewer_id", 2);
|
|
2630
2678
|
__decorateClass([
|
|
2631
|
-
(0,
|
|
2632
|
-
(0,
|
|
2679
|
+
(0, import_typeorm29.ManyToOne)(() => User, { onDelete: "CASCADE" }),
|
|
2680
|
+
(0, import_typeorm29.JoinColumn)({ name: "reviewer_id" })
|
|
2633
2681
|
], Rating.prototype, "reviewer", 2);
|
|
2634
2682
|
__decorateClass([
|
|
2635
|
-
(0,
|
|
2636
|
-
(0,
|
|
2683
|
+
(0, import_typeorm29.Column)({ name: "reviewee_id", type: "integer" }),
|
|
2684
|
+
(0, import_typeorm29.Index)()
|
|
2637
2685
|
], Rating.prototype, "reviewee_id", 2);
|
|
2638
2686
|
__decorateClass([
|
|
2639
|
-
(0,
|
|
2640
|
-
(0,
|
|
2687
|
+
(0, import_typeorm29.ManyToOne)(() => User, { onDelete: "CASCADE" }),
|
|
2688
|
+
(0, import_typeorm29.JoinColumn)({ name: "reviewee_id" })
|
|
2641
2689
|
], Rating.prototype, "reviewee", 2);
|
|
2642
2690
|
__decorateClass([
|
|
2643
|
-
(0,
|
|
2691
|
+
(0, import_typeorm29.Column)({
|
|
2644
2692
|
type: "enum",
|
|
2645
2693
|
enum: RatingTypeEnum,
|
|
2646
2694
|
nullable: true
|
|
2647
2695
|
})
|
|
2648
2696
|
], Rating.prototype, "ratingType", 2);
|
|
2649
2697
|
__decorateClass([
|
|
2650
|
-
(0,
|
|
2698
|
+
(0, import_typeorm29.Column)({ type: "integer", nullable: true })
|
|
2651
2699
|
], Rating.prototype, "rating", 2);
|
|
2652
2700
|
__decorateClass([
|
|
2653
|
-
(0,
|
|
2701
|
+
(0, import_typeorm29.Column)({ type: "text", nullable: true })
|
|
2654
2702
|
], Rating.prototype, "review", 2);
|
|
2655
2703
|
Rating = __decorateClass([
|
|
2656
|
-
(0,
|
|
2704
|
+
(0, import_typeorm29.Entity)("ratings")
|
|
2657
2705
|
], Rating);
|
|
2658
2706
|
|
|
2659
2707
|
// src/modules/rating/dto/add.rating.dto.ts
|
|
@@ -2797,8 +2845,6 @@ var COMPANY_MEMBERS_PATTERNS = {
|
|
|
2797
2845
|
// src/modules/company-member/dto/create-company-member.dto.ts
|
|
2798
2846
|
var import_class_validator40 = require("class-validator");
|
|
2799
2847
|
var CreateCompanyMemberDto = class {
|
|
2800
|
-
// @IsNotEmpty({ message: 'Please enter company role id' })
|
|
2801
|
-
// companyRoleId: number;
|
|
2802
2848
|
};
|
|
2803
2849
|
__decorateClass([
|
|
2804
2850
|
(0, import_class_validator40.IsNotEmpty)({ message: "Please enter name." })
|
|
@@ -2806,6 +2852,11 @@ __decorateClass([
|
|
|
2806
2852
|
__decorateClass([
|
|
2807
2853
|
(0, import_class_validator40.IsNotEmpty)({ message: "Please enter email" })
|
|
2808
2854
|
], CreateCompanyMemberDto.prototype, "email", 2);
|
|
2855
|
+
__decorateClass([
|
|
2856
|
+
(0, import_class_validator40.IsArray)({ message: "Role IDs must be an array." }),
|
|
2857
|
+
(0, import_class_validator40.ArrayNotEmpty)({ message: "Please select at least one role." }),
|
|
2858
|
+
(0, import_class_validator40.IsInt)({ each: true, message: "Each role ID must be an integer." })
|
|
2859
|
+
], CreateCompanyMemberDto.prototype, "roleIds", 2);
|
|
2809
2860
|
|
|
2810
2861
|
// src/modules/company-member/dto/update-company-member.dto.ts
|
|
2811
2862
|
var import_class_validator41 = require("class-validator");
|
|
@@ -2817,6 +2868,11 @@ __decorateClass([
|
|
|
2817
2868
|
__decorateClass([
|
|
2818
2869
|
(0, import_class_validator41.IsNotEmpty)({ message: "Please enter email" })
|
|
2819
2870
|
], UpdateCompanyMemberDto.prototype, "email", 2);
|
|
2871
|
+
__decorateClass([
|
|
2872
|
+
(0, import_class_validator41.IsArray)({ message: "Role IDs must be an array." }),
|
|
2873
|
+
(0, import_class_validator41.ArrayNotEmpty)({ message: "Please select at least one role." }),
|
|
2874
|
+
(0, import_class_validator41.IsInt)({ each: true, message: "Each role ID must be an integer." })
|
|
2875
|
+
], UpdateCompanyMemberDto.prototype, "roleIds", 2);
|
|
2820
2876
|
|
|
2821
2877
|
// src/modules/company-member/dto/toggle-company-member-visibility.dto.ts
|
|
2822
2878
|
var import_class_validator42 = require("class-validator");
|
|
@@ -3275,7 +3331,7 @@ var NotificationRMQAdapter = (mode = "microservice") => {
|
|
|
3275
3331
|
};
|
|
3276
3332
|
|
|
3277
3333
|
// src/entities/question.entity.ts
|
|
3278
|
-
var
|
|
3334
|
+
var import_typeorm30 = require("typeorm");
|
|
3279
3335
|
var QuestionFor = /* @__PURE__ */ ((QuestionFor2) => {
|
|
3280
3336
|
QuestionFor2["CLIENT"] = "CLIENT";
|
|
3281
3337
|
QuestionFor2["FREELANCER"] = "FREELANCER";
|
|
@@ -3284,16 +3340,16 @@ var QuestionFor = /* @__PURE__ */ ((QuestionFor2) => {
|
|
|
3284
3340
|
var Question = class extends BaseEntity {
|
|
3285
3341
|
};
|
|
3286
3342
|
__decorateClass([
|
|
3287
|
-
(0,
|
|
3343
|
+
(0, import_typeorm30.Column)({ name: "question", type: "varchar" })
|
|
3288
3344
|
], Question.prototype, "question", 2);
|
|
3289
3345
|
__decorateClass([
|
|
3290
|
-
(0,
|
|
3346
|
+
(0, import_typeorm30.Column)({ name: "hint", type: "varchar", nullable: true })
|
|
3291
3347
|
], Question.prototype, "hint", 2);
|
|
3292
3348
|
__decorateClass([
|
|
3293
|
-
(0,
|
|
3349
|
+
(0, import_typeorm30.Column)({ name: "slug", type: "varchar", nullable: true, unique: true })
|
|
3294
3350
|
], Question.prototype, "slug", 2);
|
|
3295
3351
|
__decorateClass([
|
|
3296
|
-
(0,
|
|
3352
|
+
(0, import_typeorm30.Column)({
|
|
3297
3353
|
name: "question_for",
|
|
3298
3354
|
type: "enum",
|
|
3299
3355
|
enum: QuestionFor,
|
|
@@ -3301,96 +3357,96 @@ __decorateClass([
|
|
|
3301
3357
|
})
|
|
3302
3358
|
], Question.prototype, "questionFor", 2);
|
|
3303
3359
|
__decorateClass([
|
|
3304
|
-
(0,
|
|
3360
|
+
(0, import_typeorm30.Column)({ name: "type", type: "varchar", nullable: true })
|
|
3305
3361
|
], Question.prototype, "type", 2);
|
|
3306
3362
|
__decorateClass([
|
|
3307
|
-
(0,
|
|
3363
|
+
(0, import_typeorm30.Column)({ name: "options", type: "jsonb", nullable: true })
|
|
3308
3364
|
], Question.prototype, "options", 2);
|
|
3309
3365
|
__decorateClass([
|
|
3310
|
-
(0,
|
|
3366
|
+
(0, import_typeorm30.Column)({ name: "is_active", type: "boolean", default: false })
|
|
3311
3367
|
], Question.prototype, "isActive", 2);
|
|
3312
3368
|
Question = __decorateClass([
|
|
3313
|
-
(0,
|
|
3369
|
+
(0, import_typeorm30.Entity)("questions")
|
|
3314
3370
|
], Question);
|
|
3315
3371
|
|
|
3316
3372
|
// src/entities/job-role.entity.ts
|
|
3317
|
-
var
|
|
3373
|
+
var import_typeorm31 = require("typeorm");
|
|
3318
3374
|
var JobRoles = class extends BaseEntity {
|
|
3319
3375
|
};
|
|
3320
3376
|
__decorateClass([
|
|
3321
|
-
(0,
|
|
3377
|
+
(0, import_typeorm31.Column)({ name: "slug", type: "varchar", nullable: true, unique: true })
|
|
3322
3378
|
], JobRoles.prototype, "slug", 2);
|
|
3323
3379
|
__decorateClass([
|
|
3324
|
-
(0,
|
|
3380
|
+
(0, import_typeorm31.Column)({ name: "name", type: "varchar", nullable: true })
|
|
3325
3381
|
], JobRoles.prototype, "name", 2);
|
|
3326
3382
|
__decorateClass([
|
|
3327
|
-
(0,
|
|
3383
|
+
(0, import_typeorm31.Column)({ name: "is_active", type: "boolean", default: true })
|
|
3328
3384
|
], JobRoles.prototype, "isActive", 2);
|
|
3329
3385
|
JobRoles = __decorateClass([
|
|
3330
|
-
(0,
|
|
3386
|
+
(0, import_typeorm31.Entity)("job_roles")
|
|
3331
3387
|
], JobRoles);
|
|
3332
3388
|
|
|
3333
3389
|
// src/entities/plan.entity.ts
|
|
3334
|
-
var
|
|
3390
|
+
var import_typeorm33 = require("typeorm");
|
|
3335
3391
|
|
|
3336
3392
|
// src/entities/feature.entity.ts
|
|
3337
|
-
var
|
|
3393
|
+
var import_typeorm32 = require("typeorm");
|
|
3338
3394
|
var Feature = class extends BaseEntity {
|
|
3339
3395
|
};
|
|
3340
3396
|
__decorateClass([
|
|
3341
|
-
(0,
|
|
3397
|
+
(0, import_typeorm32.Column)({ name: "name", type: "varchar", unique: true })
|
|
3342
3398
|
], Feature.prototype, "name", 2);
|
|
3343
3399
|
__decorateClass([
|
|
3344
|
-
(0,
|
|
3400
|
+
(0, import_typeorm32.ManyToMany)(() => Plan, (plan) => plan.features)
|
|
3345
3401
|
], Feature.prototype, "plans", 2);
|
|
3346
3402
|
Feature = __decorateClass([
|
|
3347
|
-
(0,
|
|
3403
|
+
(0, import_typeorm32.Entity)("features")
|
|
3348
3404
|
], Feature);
|
|
3349
3405
|
|
|
3350
3406
|
// src/entities/plan.entity.ts
|
|
3351
3407
|
var Plan = class extends BaseEntity {
|
|
3352
3408
|
};
|
|
3353
3409
|
__decorateClass([
|
|
3354
|
-
(0,
|
|
3410
|
+
(0, import_typeorm33.Column)({ name: "name", type: "varchar", unique: true })
|
|
3355
3411
|
], Plan.prototype, "name", 2);
|
|
3356
3412
|
__decorateClass([
|
|
3357
|
-
(0,
|
|
3413
|
+
(0, import_typeorm33.Column)({ name: "description", type: "varchar", nullable: true })
|
|
3358
3414
|
], Plan.prototype, "description", 2);
|
|
3359
3415
|
__decorateClass([
|
|
3360
|
-
(0,
|
|
3416
|
+
(0, import_typeorm33.Column)({ name: "price", type: "decimal", precision: 10, scale: 2 })
|
|
3361
3417
|
], Plan.prototype, "price", 2);
|
|
3362
3418
|
__decorateClass([
|
|
3363
|
-
(0,
|
|
3419
|
+
(0, import_typeorm33.Column)({ name: "billing_period", type: "varchar" })
|
|
3364
3420
|
], Plan.prototype, "billingPeriod", 2);
|
|
3365
3421
|
__decorateClass([
|
|
3366
|
-
(0,
|
|
3422
|
+
(0, import_typeorm33.Column)({ name: "is_current", type: "boolean", default: false })
|
|
3367
3423
|
], Plan.prototype, "isCurrent", 2);
|
|
3368
3424
|
__decorateClass([
|
|
3369
|
-
(0,
|
|
3370
|
-
(0,
|
|
3425
|
+
(0, import_typeorm33.ManyToMany)(() => Feature, (feature) => feature.plans, { cascade: true }),
|
|
3426
|
+
(0, import_typeorm33.JoinTable)()
|
|
3371
3427
|
], Plan.prototype, "features", 2);
|
|
3372
3428
|
Plan = __decorateClass([
|
|
3373
|
-
(0,
|
|
3429
|
+
(0, import_typeorm33.Entity)("plans")
|
|
3374
3430
|
], Plan);
|
|
3375
3431
|
|
|
3376
3432
|
// src/entities/cms.entity.ts
|
|
3377
|
-
var
|
|
3433
|
+
var import_typeorm34 = require("typeorm");
|
|
3378
3434
|
var Cms = class extends BaseEntity {
|
|
3379
3435
|
};
|
|
3380
3436
|
__decorateClass([
|
|
3381
|
-
(0,
|
|
3437
|
+
(0, import_typeorm34.Column)({ name: "title", type: "varchar", nullable: true })
|
|
3382
3438
|
], Cms.prototype, "title", 2);
|
|
3383
3439
|
__decorateClass([
|
|
3384
|
-
(0,
|
|
3440
|
+
(0, import_typeorm34.Column)({ name: "slug", type: "varchar", nullable: true, unique: true })
|
|
3385
3441
|
], Cms.prototype, "slug", 2);
|
|
3386
3442
|
__decorateClass([
|
|
3387
|
-
(0,
|
|
3443
|
+
(0, import_typeorm34.Column)({ name: "content", type: "varchar", nullable: true })
|
|
3388
3444
|
], Cms.prototype, "content", 2);
|
|
3389
3445
|
__decorateClass([
|
|
3390
|
-
(0,
|
|
3446
|
+
(0, import_typeorm34.Column)({ name: "is_active", type: "boolean", default: true })
|
|
3391
3447
|
], Cms.prototype, "isActive", 2);
|
|
3392
3448
|
Cms = __decorateClass([
|
|
3393
|
-
(0,
|
|
3449
|
+
(0, import_typeorm34.Entity)("cms")
|
|
3394
3450
|
], Cms);
|
|
3395
3451
|
// Annotate the CommonJS export names for ESM import in node:
|
|
3396
3452
|
0 && (module.exports = {
|
|
@@ -3415,6 +3471,8 @@ Cms = __decorateClass([
|
|
|
3415
3471
|
ClientCreateAccountDto,
|
|
3416
3472
|
ClientProfileQuestionDto,
|
|
3417
3473
|
Cms,
|
|
3474
|
+
CompanyMemberRole,
|
|
3475
|
+
CompanyOnboardingStepEnum,
|
|
3418
3476
|
CompanyProfile,
|
|
3419
3477
|
CompanyRole,
|
|
3420
3478
|
CompanyRolePermission,
|