@experts_hub/shared 1.0.145 → 1.0.146
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/freelancer-casestudy.entity.d.ts +9 -0
- package/dist/entities/freelancer-project.entity.d.ts +12 -0
- package/dist/entities/index.d.ts +2 -0
- package/dist/entities/user.entity.d.ts +4 -0
- package/dist/index.d.mts +54 -1
- package/dist/index.d.ts +54 -1
- package/dist/index.js +249 -88
- package/dist/index.mjs +234 -69
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/user/freelancer-project/dto/index.d.ts +2 -0
- package/dist/modules/user/freelancer-project/dto/update-freelancer-casestudy.dto.d.ts +9 -0
- package/dist/modules/user/freelancer-project/dto/update-freelancer-project.dto.d.ts +12 -0
- package/dist/modules/user/freelancer-project/index.d.ts +2 -0
- package/dist/modules/user/freelancer-project/pattern/pattern.d.ts +8 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -955,10 +955,10 @@ import {
|
|
|
955
955
|
} from "class-validator";
|
|
956
956
|
|
|
957
957
|
// src/entities/rating.entity.ts
|
|
958
|
-
import { Entity as
|
|
958
|
+
import { Entity as Entity20, Column as Column21, ManyToOne as ManyToOne19, JoinColumn as JoinColumn19, Index as Index17 } from "typeorm";
|
|
959
959
|
|
|
960
960
|
// src/entities/user.entity.ts
|
|
961
|
-
import { Entity as
|
|
961
|
+
import { Entity as Entity19, Column as Column20, OneToMany as OneToMany7, OneToOne, Index as Index16, ManyToOne as ManyToOne18, JoinColumn as JoinColumn18 } from "typeorm";
|
|
962
962
|
|
|
963
963
|
// src/entities/base.entity.ts
|
|
964
964
|
import {
|
|
@@ -2020,6 +2020,79 @@ FreelancerEducation = __decorateClass([
|
|
|
2020
2020
|
Entity16("freelancer_educations")
|
|
2021
2021
|
], FreelancerEducation);
|
|
2022
2022
|
|
|
2023
|
+
// src/entities/freelancer-project.entity.ts
|
|
2024
|
+
import {
|
|
2025
|
+
Entity as Entity17,
|
|
2026
|
+
Column as Column18,
|
|
2027
|
+
Index as Index14,
|
|
2028
|
+
ManyToOne as ManyToOne16,
|
|
2029
|
+
JoinColumn as JoinColumn16
|
|
2030
|
+
} from "typeorm";
|
|
2031
|
+
var FreelancerProject = class extends BaseEntity {
|
|
2032
|
+
};
|
|
2033
|
+
// individual index to find project by user
|
|
2034
|
+
__decorateClass([
|
|
2035
|
+
Column18({ name: "user_id", type: "integer", nullable: true }),
|
|
2036
|
+
Index14()
|
|
2037
|
+
], FreelancerProject.prototype, "userId", 2);
|
|
2038
|
+
__decorateClass([
|
|
2039
|
+
ManyToOne16(() => User, (user) => user.freelancerProject),
|
|
2040
|
+
JoinColumn16({ name: "user_id" })
|
|
2041
|
+
], FreelancerProject.prototype, "user", 2);
|
|
2042
|
+
__decorateClass([
|
|
2043
|
+
Column18({ name: "project_name", type: "varchar", nullable: true })
|
|
2044
|
+
], FreelancerProject.prototype, "projectName", 2);
|
|
2045
|
+
__decorateClass([
|
|
2046
|
+
Column18({ name: "start_date", type: "date", nullable: true })
|
|
2047
|
+
], FreelancerProject.prototype, "startDate", 2);
|
|
2048
|
+
__decorateClass([
|
|
2049
|
+
Column18({ name: "end_date", type: "date", nullable: true })
|
|
2050
|
+
], FreelancerProject.prototype, "endDate", 2);
|
|
2051
|
+
__decorateClass([
|
|
2052
|
+
Column18({ name: "client_name", type: "varchar", nullable: true })
|
|
2053
|
+
], FreelancerProject.prototype, "clientName", 2);
|
|
2054
|
+
__decorateClass([
|
|
2055
|
+
Column18({ name: "git_link", type: "varchar", nullable: true })
|
|
2056
|
+
], FreelancerProject.prototype, "gitLink", 2);
|
|
2057
|
+
__decorateClass([
|
|
2058
|
+
Column18({ name: "description", type: "varchar", nullable: true })
|
|
2059
|
+
], FreelancerProject.prototype, "description", 2);
|
|
2060
|
+
FreelancerProject = __decorateClass([
|
|
2061
|
+
Entity17("freelancer_projects")
|
|
2062
|
+
], FreelancerProject);
|
|
2063
|
+
|
|
2064
|
+
// src/entities/freelancer-casestudy.entity.ts
|
|
2065
|
+
import {
|
|
2066
|
+
Entity as Entity18,
|
|
2067
|
+
Column as Column19,
|
|
2068
|
+
Index as Index15,
|
|
2069
|
+
ManyToOne as ManyToOne17,
|
|
2070
|
+
JoinColumn as JoinColumn17
|
|
2071
|
+
} from "typeorm";
|
|
2072
|
+
var FreelancerCaseStudy = class extends BaseEntity {
|
|
2073
|
+
};
|
|
2074
|
+
// individual index to find case study by user
|
|
2075
|
+
__decorateClass([
|
|
2076
|
+
Column19({ name: "user_id", type: "integer", nullable: true }),
|
|
2077
|
+
Index15()
|
|
2078
|
+
], FreelancerCaseStudy.prototype, "userId", 2);
|
|
2079
|
+
__decorateClass([
|
|
2080
|
+
ManyToOne17(() => User, (user) => user.freelancerCaseStudy),
|
|
2081
|
+
JoinColumn17({ name: "user_id" })
|
|
2082
|
+
], FreelancerCaseStudy.prototype, "user", 2);
|
|
2083
|
+
__decorateClass([
|
|
2084
|
+
Column19({ name: "project_name", type: "varchar", nullable: true })
|
|
2085
|
+
], FreelancerCaseStudy.prototype, "projectName", 2);
|
|
2086
|
+
__decorateClass([
|
|
2087
|
+
Column19({ name: "case_study_link", type: "varchar", nullable: true })
|
|
2088
|
+
], FreelancerCaseStudy.prototype, "CaseStudyLink", 2);
|
|
2089
|
+
__decorateClass([
|
|
2090
|
+
Column19({ name: "description", type: "varchar", nullable: true })
|
|
2091
|
+
], FreelancerCaseStudy.prototype, "description", 2);
|
|
2092
|
+
FreelancerCaseStudy = __decorateClass([
|
|
2093
|
+
Entity18("freelancer_case_studies")
|
|
2094
|
+
], FreelancerCaseStudy);
|
|
2095
|
+
|
|
2023
2096
|
// src/entities/user.entity.ts
|
|
2024
2097
|
var AccountType = /* @__PURE__ */ ((AccountType2) => {
|
|
2025
2098
|
AccountType2["ADMIN"] = "ADMIN";
|
|
@@ -2045,55 +2118,55 @@ var Provider = /* @__PURE__ */ ((Provider2) => {
|
|
|
2045
2118
|
var User = class extends BaseEntity {
|
|
2046
2119
|
};
|
|
2047
2120
|
__decorateClass([
|
|
2048
|
-
|
|
2121
|
+
Column20({ name: "unique_id", type: "varchar", unique: true })
|
|
2049
2122
|
], User.prototype, "uniqueId", 2);
|
|
2050
2123
|
__decorateClass([
|
|
2051
|
-
|
|
2052
|
-
|
|
2124
|
+
Column20({ name: "parent_id", type: "integer", nullable: true }),
|
|
2125
|
+
Index16()
|
|
2053
2126
|
], User.prototype, "parentId", 2);
|
|
2054
2127
|
__decorateClass([
|
|
2055
|
-
|
|
2056
|
-
|
|
2128
|
+
Column20({ name: "company_role_id", type: "integer", nullable: true }),
|
|
2129
|
+
Index16()
|
|
2057
2130
|
], User.prototype, "companyRoleId", 2);
|
|
2058
2131
|
__decorateClass([
|
|
2059
|
-
|
|
2060
|
-
|
|
2132
|
+
ManyToOne18(() => User, (user) => user.children, { nullable: true }),
|
|
2133
|
+
JoinColumn18({ name: "parent_id" })
|
|
2061
2134
|
], User.prototype, "parent", 2);
|
|
2062
2135
|
__decorateClass([
|
|
2063
2136
|
OneToMany7(() => User, (user) => user.parent)
|
|
2064
2137
|
], User.prototype, "children", 2);
|
|
2065
2138
|
__decorateClass([
|
|
2066
|
-
|
|
2139
|
+
Column20({ name: "username", type: "varchar", unique: true, nullable: true })
|
|
2067
2140
|
], User.prototype, "username", 2);
|
|
2068
2141
|
__decorateClass([
|
|
2069
|
-
|
|
2142
|
+
Column20({ name: "first_name", type: "varchar", length: 100, nullable: true })
|
|
2070
2143
|
], User.prototype, "firstName", 2);
|
|
2071
2144
|
__decorateClass([
|
|
2072
|
-
|
|
2145
|
+
Column20({ name: "last_name", type: "varchar", length: 100, nullable: true })
|
|
2073
2146
|
], User.prototype, "lastName", 2);
|
|
2074
2147
|
__decorateClass([
|
|
2075
|
-
|
|
2148
|
+
Column20({ name: "date_of_birth", type: "date", nullable: true })
|
|
2076
2149
|
], User.prototype, "dateOfBirth", 2);
|
|
2077
2150
|
__decorateClass([
|
|
2078
|
-
|
|
2151
|
+
Column20({ name: "gender", type: "varchar", length: 10, nullable: true })
|
|
2079
2152
|
], User.prototype, "gender", 2);
|
|
2080
2153
|
__decorateClass([
|
|
2081
|
-
|
|
2154
|
+
Column20({ name: "profile_picture_url", type: "text", nullable: true })
|
|
2082
2155
|
], User.prototype, "profilePictureUrl", 2);
|
|
2083
2156
|
__decorateClass([
|
|
2084
|
-
|
|
2157
|
+
Column20({ name: "email", type: "varchar", unique: true })
|
|
2085
2158
|
], User.prototype, "email", 2);
|
|
2086
2159
|
__decorateClass([
|
|
2087
|
-
|
|
2160
|
+
Column20({ name: "mobile_code", type: "varchar", nullable: true })
|
|
2088
2161
|
], User.prototype, "mobileCode", 2);
|
|
2089
2162
|
__decorateClass([
|
|
2090
|
-
|
|
2163
|
+
Column20({ name: "mobile", type: "varchar", unique: true, nullable: true })
|
|
2091
2164
|
], User.prototype, "mobile", 2);
|
|
2092
2165
|
__decorateClass([
|
|
2093
|
-
|
|
2166
|
+
Column20({ name: "password", type: "varchar", nullable: true })
|
|
2094
2167
|
], User.prototype, "password", 2);
|
|
2095
2168
|
__decorateClass([
|
|
2096
|
-
|
|
2169
|
+
Column20({
|
|
2097
2170
|
name: "account_type",
|
|
2098
2171
|
type: "enum",
|
|
2099
2172
|
enum: AccountType,
|
|
@@ -2101,7 +2174,7 @@ __decorateClass([
|
|
|
2101
2174
|
})
|
|
2102
2175
|
], User.prototype, "accountType", 2);
|
|
2103
2176
|
__decorateClass([
|
|
2104
|
-
|
|
2177
|
+
Column20({
|
|
2105
2178
|
name: "account_status",
|
|
2106
2179
|
type: "enum",
|
|
2107
2180
|
enum: AccountStatus,
|
|
@@ -2109,26 +2182,26 @@ __decorateClass([
|
|
|
2109
2182
|
})
|
|
2110
2183
|
], User.prototype, "accountStatus", 2);
|
|
2111
2184
|
__decorateClass([
|
|
2112
|
-
|
|
2185
|
+
Column20({ name: "is_email_verified", type: "boolean", default: false })
|
|
2113
2186
|
], User.prototype, "isEmailVerified", 2);
|
|
2114
2187
|
__decorateClass([
|
|
2115
|
-
|
|
2188
|
+
Column20({ name: "is_mobile_verified", type: "boolean", default: false })
|
|
2116
2189
|
], User.prototype, "isMobileVerified", 2);
|
|
2117
2190
|
__decorateClass([
|
|
2118
|
-
|
|
2191
|
+
Column20({
|
|
2119
2192
|
name: "last_login_at",
|
|
2120
2193
|
type: "timestamp with time zone",
|
|
2121
2194
|
nullable: true
|
|
2122
2195
|
})
|
|
2123
2196
|
], User.prototype, "lastLoginAt", 2);
|
|
2124
2197
|
__decorateClass([
|
|
2125
|
-
|
|
2198
|
+
Column20({ name: "last_login_ip", type: "varchar", nullable: true })
|
|
2126
2199
|
], User.prototype, "lastLoginIp", 2);
|
|
2127
2200
|
__decorateClass([
|
|
2128
|
-
|
|
2201
|
+
Column20({ name: "reset_token", type: "varchar", nullable: true })
|
|
2129
2202
|
], User.prototype, "resetToken", 2);
|
|
2130
2203
|
__decorateClass([
|
|
2131
|
-
|
|
2204
|
+
Column20({
|
|
2132
2205
|
name: "reset_token_expire_at",
|
|
2133
2206
|
type: "timestamp with time zone",
|
|
2134
2207
|
nullable: true
|
|
@@ -2138,7 +2211,7 @@ __decorateClass([
|
|
|
2138
2211
|
OneToMany7(() => RefreshToken, (token) => token.user)
|
|
2139
2212
|
], User.prototype, "refreshTokens", 2);
|
|
2140
2213
|
__decorateClass([
|
|
2141
|
-
|
|
2214
|
+
Column20({
|
|
2142
2215
|
name: "provider",
|
|
2143
2216
|
type: "enum",
|
|
2144
2217
|
enum: Provider,
|
|
@@ -2147,16 +2220,16 @@ __decorateClass([
|
|
|
2147
2220
|
})
|
|
2148
2221
|
], User.prototype, "provider", 2);
|
|
2149
2222
|
__decorateClass([
|
|
2150
|
-
|
|
2223
|
+
Column20({ name: "provider_token", type: "varchar", nullable: true })
|
|
2151
2224
|
], User.prototype, "providerToken", 2);
|
|
2152
2225
|
__decorateClass([
|
|
2153
|
-
|
|
2226
|
+
Column20({ name: "linkedin_id", type: "varchar", nullable: true })
|
|
2154
2227
|
], User.prototype, "linkedInId", 2);
|
|
2155
2228
|
__decorateClass([
|
|
2156
|
-
|
|
2229
|
+
Column20({ name: "google_id", type: "varchar", nullable: true })
|
|
2157
2230
|
], User.prototype, "googleId", 2);
|
|
2158
2231
|
__decorateClass([
|
|
2159
|
-
|
|
2232
|
+
Column20({ name: "gitlabs_id", type: "varchar", nullable: true })
|
|
2160
2233
|
], User.prototype, "gitLabsId", 2);
|
|
2161
2234
|
__decorateClass([
|
|
2162
2235
|
OneToMany7(() => Otp, (otp) => otp.user)
|
|
@@ -2206,8 +2279,14 @@ __decorateClass([
|
|
|
2206
2279
|
__decorateClass([
|
|
2207
2280
|
OneToOne(() => FreelancerEducation, (freelancerEducation) => freelancerEducation.user)
|
|
2208
2281
|
], User.prototype, "freelancerEducation", 2);
|
|
2282
|
+
__decorateClass([
|
|
2283
|
+
OneToOne(() => FreelancerProject, (freelancerProject) => freelancerProject.user)
|
|
2284
|
+
], User.prototype, "freelancerProject", 2);
|
|
2285
|
+
__decorateClass([
|
|
2286
|
+
OneToOne(() => FreelancerCaseStudy, (freelancerCaseStudy) => freelancerCaseStudy.user)
|
|
2287
|
+
], User.prototype, "freelancerCaseStudy", 2);
|
|
2209
2288
|
User = __decorateClass([
|
|
2210
|
-
|
|
2289
|
+
Entity19("users")
|
|
2211
2290
|
], User);
|
|
2212
2291
|
|
|
2213
2292
|
// src/entities/rating.entity.ts
|
|
@@ -2219,36 +2298,36 @@ var RatingTypeEnum = /* @__PURE__ */ ((RatingTypeEnum2) => {
|
|
|
2219
2298
|
var Rating = class extends BaseEntity {
|
|
2220
2299
|
};
|
|
2221
2300
|
__decorateClass([
|
|
2222
|
-
|
|
2223
|
-
|
|
2301
|
+
Column21({ name: "reviewer_id", type: "integer" }),
|
|
2302
|
+
Index17()
|
|
2224
2303
|
], Rating.prototype, "reviewer_id", 2);
|
|
2225
2304
|
__decorateClass([
|
|
2226
|
-
|
|
2227
|
-
|
|
2305
|
+
ManyToOne19(() => User, { onDelete: "CASCADE" }),
|
|
2306
|
+
JoinColumn19({ name: "reviewer_id" })
|
|
2228
2307
|
], Rating.prototype, "reviewer", 2);
|
|
2229
2308
|
__decorateClass([
|
|
2230
|
-
|
|
2231
|
-
|
|
2309
|
+
Column21({ name: "reviewee_id", type: "integer" }),
|
|
2310
|
+
Index17()
|
|
2232
2311
|
], Rating.prototype, "reviewee_id", 2);
|
|
2233
2312
|
__decorateClass([
|
|
2234
|
-
|
|
2235
|
-
|
|
2313
|
+
ManyToOne19(() => User, { onDelete: "CASCADE" }),
|
|
2314
|
+
JoinColumn19({ name: "reviewee_id" })
|
|
2236
2315
|
], Rating.prototype, "reviewee", 2);
|
|
2237
2316
|
__decorateClass([
|
|
2238
|
-
|
|
2317
|
+
Column21({
|
|
2239
2318
|
type: "enum",
|
|
2240
2319
|
enum: RatingTypeEnum,
|
|
2241
2320
|
nullable: true
|
|
2242
2321
|
})
|
|
2243
2322
|
], Rating.prototype, "ratingType", 2);
|
|
2244
2323
|
__decorateClass([
|
|
2245
|
-
|
|
2324
|
+
Column21({ type: "integer", nullable: true })
|
|
2246
2325
|
], Rating.prototype, "rating", 2);
|
|
2247
2326
|
__decorateClass([
|
|
2248
|
-
|
|
2327
|
+
Column21({ type: "text", nullable: true })
|
|
2249
2328
|
], Rating.prototype, "review", 2);
|
|
2250
2329
|
Rating = __decorateClass([
|
|
2251
|
-
|
|
2330
|
+
Entity20("ratings")
|
|
2252
2331
|
], Rating);
|
|
2253
2332
|
|
|
2254
2333
|
// src/modules/rating/dto/add.rating.dto.ts
|
|
@@ -2497,6 +2576,84 @@ __decorateClass([
|
|
|
2497
2576
|
Type5(() => UpdateEducationDto)
|
|
2498
2577
|
], UpdateFreelancerEducationDto.prototype, "education", 2);
|
|
2499
2578
|
|
|
2579
|
+
// src/modules/user/freelancer-project/pattern/pattern.ts
|
|
2580
|
+
var FREELANCER_PROJECT_PATTERN = {
|
|
2581
|
+
fetchFreelancerProject: "fetch.freelancer.project",
|
|
2582
|
+
updateFreelancerProject: "update.freelancer.project"
|
|
2583
|
+
};
|
|
2584
|
+
var FREELANCER_CASESTUDY_PATTERN = {
|
|
2585
|
+
fetchFreelancerCaseStudy: "fetch.freelancer.casestudy",
|
|
2586
|
+
updateFreelancerCaseStudy: "update.freelancer.casestudy"
|
|
2587
|
+
};
|
|
2588
|
+
|
|
2589
|
+
// src/modules/user/freelancer-project/dto/update-freelancer-project.dto.ts
|
|
2590
|
+
import { IsArray as IsArray6, ValidateNested as ValidateNested5, IsString as IsString24, IsNotEmpty as IsNotEmpty32, IsOptional as IsOptional16 } from "class-validator";
|
|
2591
|
+
import { Type as Type6 } from "class-transformer";
|
|
2592
|
+
var UpdateProjectDto = class {
|
|
2593
|
+
};
|
|
2594
|
+
__decorateClass([
|
|
2595
|
+
IsOptional16()
|
|
2596
|
+
], UpdateProjectDto.prototype, "uuid", 2);
|
|
2597
|
+
__decorateClass([
|
|
2598
|
+
IsString24(),
|
|
2599
|
+
IsNotEmpty32()
|
|
2600
|
+
], UpdateProjectDto.prototype, "projectName", 2);
|
|
2601
|
+
__decorateClass([
|
|
2602
|
+
IsString24(),
|
|
2603
|
+
IsNotEmpty32()
|
|
2604
|
+
], UpdateProjectDto.prototype, "startDate", 2);
|
|
2605
|
+
__decorateClass([
|
|
2606
|
+
IsString24(),
|
|
2607
|
+
IsNotEmpty32()
|
|
2608
|
+
], UpdateProjectDto.prototype, "endDate", 2);
|
|
2609
|
+
__decorateClass([
|
|
2610
|
+
IsOptional16(),
|
|
2611
|
+
IsString24()
|
|
2612
|
+
], UpdateProjectDto.prototype, "clientName", 2);
|
|
2613
|
+
__decorateClass([
|
|
2614
|
+
IsOptional16(),
|
|
2615
|
+
IsString24()
|
|
2616
|
+
], UpdateProjectDto.prototype, "gitLink", 2);
|
|
2617
|
+
__decorateClass([
|
|
2618
|
+
IsOptional16(),
|
|
2619
|
+
IsString24()
|
|
2620
|
+
], UpdateProjectDto.prototype, "description", 2);
|
|
2621
|
+
var UpdateFreelancerProjectDto = class {
|
|
2622
|
+
};
|
|
2623
|
+
__decorateClass([
|
|
2624
|
+
IsArray6(),
|
|
2625
|
+
ValidateNested5({ each: true }),
|
|
2626
|
+
Type6(() => UpdateProjectDto)
|
|
2627
|
+
], UpdateFreelancerProjectDto.prototype, "project", 2);
|
|
2628
|
+
|
|
2629
|
+
// src/modules/user/freelancer-project/dto/update-freelancer-casestudy.dto.ts
|
|
2630
|
+
import { IsArray as IsArray7, ValidateNested as ValidateNested6, IsString as IsString25, IsNotEmpty as IsNotEmpty33, IsOptional as IsOptional17 } from "class-validator";
|
|
2631
|
+
import { Type as Type7 } from "class-transformer";
|
|
2632
|
+
var UpdateCaseStudyDto = class {
|
|
2633
|
+
};
|
|
2634
|
+
__decorateClass([
|
|
2635
|
+
IsOptional17()
|
|
2636
|
+
], UpdateCaseStudyDto.prototype, "uuid", 2);
|
|
2637
|
+
__decorateClass([
|
|
2638
|
+
IsString25(),
|
|
2639
|
+
IsNotEmpty33()
|
|
2640
|
+
], UpdateCaseStudyDto.prototype, "projectName", 2);
|
|
2641
|
+
__decorateClass([
|
|
2642
|
+
IsString25(),
|
|
2643
|
+
IsNotEmpty33()
|
|
2644
|
+
], UpdateCaseStudyDto.prototype, "CaseStudyLink", 2);
|
|
2645
|
+
__decorateClass([
|
|
2646
|
+
IsOptional17(),
|
|
2647
|
+
IsString25()
|
|
2648
|
+
], UpdateCaseStudyDto.prototype, "description", 2);
|
|
2649
|
+
var UpdateFreelancerCaseStudyDto = class {
|
|
2650
|
+
};
|
|
2651
|
+
__decorateClass([
|
|
2652
|
+
IsArray7(),
|
|
2653
|
+
ValidateNested6({ each: true }),
|
|
2654
|
+
Type7(() => UpdateCaseStudyDto)
|
|
2655
|
+
], UpdateFreelancerCaseStudyDto.prototype, "casestudy", 2);
|
|
2656
|
+
|
|
2500
2657
|
// src/adapters/tcp/user.tcp.adapter.ts
|
|
2501
2658
|
import { config } from "dotenv";
|
|
2502
2659
|
import { Transport } from "@nestjs/microservices";
|
|
@@ -2714,7 +2871,7 @@ var NotificationRMQAdapter = (mode = "microservice") => {
|
|
|
2714
2871
|
};
|
|
2715
2872
|
|
|
2716
2873
|
// src/entities/question.entity.ts
|
|
2717
|
-
import { Entity as
|
|
2874
|
+
import { Entity as Entity21, Column as Column22 } from "typeorm";
|
|
2718
2875
|
var QuestionFor = /* @__PURE__ */ ((QuestionFor2) => {
|
|
2719
2876
|
QuestionFor2["CLIENT"] = "CLIENT";
|
|
2720
2877
|
QuestionFor2["FREELANCER"] = "FREELANCER";
|
|
@@ -2723,16 +2880,16 @@ var QuestionFor = /* @__PURE__ */ ((QuestionFor2) => {
|
|
|
2723
2880
|
var Question = class extends BaseEntity {
|
|
2724
2881
|
};
|
|
2725
2882
|
__decorateClass([
|
|
2726
|
-
|
|
2883
|
+
Column22({ name: "question", type: "varchar" })
|
|
2727
2884
|
], Question.prototype, "question", 2);
|
|
2728
2885
|
__decorateClass([
|
|
2729
|
-
|
|
2886
|
+
Column22({ name: "hint", type: "varchar", nullable: true })
|
|
2730
2887
|
], Question.prototype, "hint", 2);
|
|
2731
2888
|
__decorateClass([
|
|
2732
|
-
|
|
2889
|
+
Column22({ name: "slug", type: "varchar", nullable: true, unique: true })
|
|
2733
2890
|
], Question.prototype, "slug", 2);
|
|
2734
2891
|
__decorateClass([
|
|
2735
|
-
|
|
2892
|
+
Column22({
|
|
2736
2893
|
name: "question_for",
|
|
2737
2894
|
type: "enum",
|
|
2738
2895
|
enum: QuestionFor,
|
|
@@ -2740,76 +2897,76 @@ __decorateClass([
|
|
|
2740
2897
|
})
|
|
2741
2898
|
], Question.prototype, "questionFor", 2);
|
|
2742
2899
|
__decorateClass([
|
|
2743
|
-
|
|
2900
|
+
Column22({ name: "type", type: "varchar", nullable: true })
|
|
2744
2901
|
], Question.prototype, "type", 2);
|
|
2745
2902
|
__decorateClass([
|
|
2746
|
-
|
|
2903
|
+
Column22({ name: "options", type: "jsonb", nullable: true })
|
|
2747
2904
|
], Question.prototype, "options", 2);
|
|
2748
2905
|
__decorateClass([
|
|
2749
|
-
|
|
2906
|
+
Column22({ name: "is_active", type: "boolean", default: false })
|
|
2750
2907
|
], Question.prototype, "isActive", 2);
|
|
2751
2908
|
Question = __decorateClass([
|
|
2752
|
-
|
|
2909
|
+
Entity21("questions")
|
|
2753
2910
|
], Question);
|
|
2754
2911
|
|
|
2755
2912
|
// src/entities/job-role.entity.ts
|
|
2756
|
-
import { Entity as
|
|
2913
|
+
import { Entity as Entity22, Column as Column23 } from "typeorm";
|
|
2757
2914
|
var JobRoles = class extends BaseEntity {
|
|
2758
2915
|
};
|
|
2759
2916
|
__decorateClass([
|
|
2760
|
-
|
|
2917
|
+
Column23({ name: "slug", type: "varchar", nullable: true, unique: true })
|
|
2761
2918
|
], JobRoles.prototype, "slug", 2);
|
|
2762
2919
|
__decorateClass([
|
|
2763
|
-
|
|
2920
|
+
Column23({ name: "name", type: "varchar", nullable: true })
|
|
2764
2921
|
], JobRoles.prototype, "name", 2);
|
|
2765
2922
|
__decorateClass([
|
|
2766
|
-
|
|
2923
|
+
Column23({ name: "is_active", type: "boolean", default: true })
|
|
2767
2924
|
], JobRoles.prototype, "isActive", 2);
|
|
2768
2925
|
JobRoles = __decorateClass([
|
|
2769
|
-
|
|
2926
|
+
Entity22("job_roles")
|
|
2770
2927
|
], JobRoles);
|
|
2771
2928
|
|
|
2772
2929
|
// src/entities/plan.entity.ts
|
|
2773
|
-
import { Entity as
|
|
2930
|
+
import { Entity as Entity24, Column as Column25, ManyToMany as ManyToMany2, JoinTable } from "typeorm";
|
|
2774
2931
|
|
|
2775
2932
|
// src/entities/feature.entity.ts
|
|
2776
|
-
import { Entity as
|
|
2933
|
+
import { Entity as Entity23, Column as Column24, ManyToMany } from "typeorm";
|
|
2777
2934
|
var Feature = class extends BaseEntity {
|
|
2778
2935
|
};
|
|
2779
2936
|
__decorateClass([
|
|
2780
|
-
|
|
2937
|
+
Column24({ name: "name", type: "varchar", unique: true })
|
|
2781
2938
|
], Feature.prototype, "name", 2);
|
|
2782
2939
|
__decorateClass([
|
|
2783
2940
|
ManyToMany(() => Plan, (plan) => plan.features)
|
|
2784
2941
|
], Feature.prototype, "plans", 2);
|
|
2785
2942
|
Feature = __decorateClass([
|
|
2786
|
-
|
|
2943
|
+
Entity23("features")
|
|
2787
2944
|
], Feature);
|
|
2788
2945
|
|
|
2789
2946
|
// src/entities/plan.entity.ts
|
|
2790
2947
|
var Plan = class extends BaseEntity {
|
|
2791
2948
|
};
|
|
2792
2949
|
__decorateClass([
|
|
2793
|
-
|
|
2950
|
+
Column25({ name: "name", type: "varchar", unique: true })
|
|
2794
2951
|
], Plan.prototype, "name", 2);
|
|
2795
2952
|
__decorateClass([
|
|
2796
|
-
|
|
2953
|
+
Column25({ name: "description", type: "varchar", nullable: true })
|
|
2797
2954
|
], Plan.prototype, "description", 2);
|
|
2798
2955
|
__decorateClass([
|
|
2799
|
-
|
|
2956
|
+
Column25({ name: "price", type: "decimal", precision: 10, scale: 2 })
|
|
2800
2957
|
], Plan.prototype, "price", 2);
|
|
2801
2958
|
__decorateClass([
|
|
2802
|
-
|
|
2959
|
+
Column25({ name: "billing_period", type: "varchar" })
|
|
2803
2960
|
], Plan.prototype, "billingPeriod", 2);
|
|
2804
2961
|
__decorateClass([
|
|
2805
|
-
|
|
2962
|
+
Column25({ name: "is_current", type: "boolean", default: false })
|
|
2806
2963
|
], Plan.prototype, "isCurrent", 2);
|
|
2807
2964
|
__decorateClass([
|
|
2808
2965
|
ManyToMany2(() => Feature, (feature) => feature.plans, { cascade: true }),
|
|
2809
2966
|
JoinTable()
|
|
2810
2967
|
], Plan.prototype, "features", 2);
|
|
2811
2968
|
Plan = __decorateClass([
|
|
2812
|
-
|
|
2969
|
+
Entity24("plans")
|
|
2813
2970
|
], Plan);
|
|
2814
2971
|
export {
|
|
2815
2972
|
AUTHENTICATION_PATTERN,
|
|
@@ -2841,11 +2998,14 @@ export {
|
|
|
2841
2998
|
CreateSubAdminDto,
|
|
2842
2999
|
DurationTypeEnum,
|
|
2843
3000
|
EmploymentType,
|
|
3001
|
+
FREELANCER_CASESTUDY_PATTERN,
|
|
2844
3002
|
FREELANCER_EDUCATION_PATTERN,
|
|
2845
3003
|
FREELANCER_EXPERIENCE_PATTERN,
|
|
3004
|
+
FREELANCER_PROJECT_PATTERN,
|
|
2846
3005
|
Feature,
|
|
2847
3006
|
ForgotPasswordDto,
|
|
2848
3007
|
FreelancerBankDetailsDto,
|
|
3008
|
+
FreelancerCaseStudy,
|
|
2849
3009
|
FreelancerChangePasswordDto,
|
|
2850
3010
|
FreelancerCreateAccountDto,
|
|
2851
3011
|
FreelancerDevelopmentPreferenceDto,
|
|
@@ -2853,6 +3013,7 @@ export {
|
|
|
2853
3013
|
FreelancerExperience,
|
|
2854
3014
|
FreelancerProfile,
|
|
2855
3015
|
FreelancerProfileQuestionDto,
|
|
3016
|
+
FreelancerProject,
|
|
2856
3017
|
FreelancerUploadResumeDto,
|
|
2857
3018
|
FreelancerWorkShowcaseDto,
|
|
2858
3019
|
FromUsOn,
|
|
@@ -2916,14 +3077,18 @@ export {
|
|
|
2916
3077
|
ToggleCompanyMemberVisibilityDto,
|
|
2917
3078
|
ToggleCompanyRoleVisibilityDto,
|
|
2918
3079
|
TypeOfEmploymentEnum,
|
|
3080
|
+
UpdateCaseStudyDto,
|
|
2919
3081
|
UpdateCompanyMemberDto,
|
|
2920
3082
|
UpdateCompanyProfileDto,
|
|
2921
3083
|
UpdateCompanyRoleDto,
|
|
2922
3084
|
UpdateEducationDto,
|
|
2923
3085
|
UpdateExperienceDto,
|
|
3086
|
+
UpdateFreelancerCaseStudyDto,
|
|
2924
3087
|
UpdateFreelancerEducationDto,
|
|
2925
3088
|
UpdateFreelancerExperienceDto,
|
|
2926
3089
|
UpdateFreelancerProfileDto,
|
|
3090
|
+
UpdateFreelancerProjectDto,
|
|
3091
|
+
UpdateProjectDto,
|
|
2927
3092
|
UpdateSubAdminAccountStatusDto,
|
|
2928
3093
|
UpdateSubAdminDto,
|
|
2929
3094
|
User,
|
package/dist/modules/index.d.ts
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare class UpdateProjectDto {
|
|
2
|
+
uuid?: string;
|
|
3
|
+
projectName: string;
|
|
4
|
+
startDate: string;
|
|
5
|
+
endDate: string;
|
|
6
|
+
clientName: string;
|
|
7
|
+
gitLink: string;
|
|
8
|
+
description: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class UpdateFreelancerProjectDto {
|
|
11
|
+
project: UpdateProjectDto[];
|
|
12
|
+
}
|