@experts_hub/shared 1.0.128 → 1.0.129
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 +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/dist/modules/user/freelancer-experience/dto/create-freelancer-experience.dto.d.ts +2 -2
- package/dist/modules/user/freelancer-experience/dto/update-freelancer-experience.dto.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -979,9 +979,9 @@ declare const FREELANCER_EXPERIENCE_PATTERN: {
|
|
|
979
979
|
};
|
|
980
980
|
|
|
981
981
|
declare class CreateExperienceDto {
|
|
982
|
-
|
|
982
|
+
companyName: string;
|
|
983
983
|
designation: string;
|
|
984
|
-
|
|
984
|
+
jobDuration: string;
|
|
985
985
|
description: string;
|
|
986
986
|
}
|
|
987
987
|
declare class CreateFreelancerExperienceDto {
|
|
@@ -990,9 +990,9 @@ declare class CreateFreelancerExperienceDto {
|
|
|
990
990
|
|
|
991
991
|
declare class UpdateExperienceDto {
|
|
992
992
|
id?: string;
|
|
993
|
-
|
|
993
|
+
companyName: string;
|
|
994
994
|
designation: string;
|
|
995
|
-
|
|
995
|
+
jobDuration: string;
|
|
996
996
|
description: string;
|
|
997
997
|
}
|
|
998
998
|
declare class UpdateFreelancerExperienceDto {
|
package/dist/index.d.ts
CHANGED
|
@@ -979,9 +979,9 @@ declare const FREELANCER_EXPERIENCE_PATTERN: {
|
|
|
979
979
|
};
|
|
980
980
|
|
|
981
981
|
declare class CreateExperienceDto {
|
|
982
|
-
|
|
982
|
+
companyName: string;
|
|
983
983
|
designation: string;
|
|
984
|
-
|
|
984
|
+
jobDuration: string;
|
|
985
985
|
description: string;
|
|
986
986
|
}
|
|
987
987
|
declare class CreateFreelancerExperienceDto {
|
|
@@ -990,9 +990,9 @@ declare class CreateFreelancerExperienceDto {
|
|
|
990
990
|
|
|
991
991
|
declare class UpdateExperienceDto {
|
|
992
992
|
id?: string;
|
|
993
|
-
|
|
993
|
+
companyName: string;
|
|
994
994
|
designation: string;
|
|
995
|
-
|
|
995
|
+
jobDuration: string;
|
|
996
996
|
description: string;
|
|
997
997
|
}
|
|
998
998
|
declare class UpdateFreelancerExperienceDto {
|
package/dist/index.js
CHANGED
|
@@ -2167,7 +2167,7 @@ var CreateExperienceDto = class {
|
|
|
2167
2167
|
__decorateClass([
|
|
2168
2168
|
(0, import_class_validator33.IsString)(),
|
|
2169
2169
|
(0, import_class_validator33.IsNotEmpty)()
|
|
2170
|
-
], CreateExperienceDto.prototype, "
|
|
2170
|
+
], CreateExperienceDto.prototype, "companyName", 2);
|
|
2171
2171
|
__decorateClass([
|
|
2172
2172
|
(0, import_class_validator33.IsString)(),
|
|
2173
2173
|
(0, import_class_validator33.IsNotEmpty)()
|
|
@@ -2175,7 +2175,7 @@ __decorateClass([
|
|
|
2175
2175
|
__decorateClass([
|
|
2176
2176
|
(0, import_class_validator33.IsString)(),
|
|
2177
2177
|
(0, import_class_validator33.IsNotEmpty)()
|
|
2178
|
-
], CreateExperienceDto.prototype, "
|
|
2178
|
+
], CreateExperienceDto.prototype, "jobDuration", 2);
|
|
2179
2179
|
__decorateClass([
|
|
2180
2180
|
(0, import_class_validator33.IsString)()
|
|
2181
2181
|
], CreateExperienceDto.prototype, "description", 2);
|
|
@@ -2198,7 +2198,7 @@ __decorateClass([
|
|
|
2198
2198
|
__decorateClass([
|
|
2199
2199
|
(0, import_class_validator34.IsNotEmpty)(),
|
|
2200
2200
|
(0, import_class_validator34.IsString)()
|
|
2201
|
-
], UpdateExperienceDto.prototype, "
|
|
2201
|
+
], UpdateExperienceDto.prototype, "companyName", 2);
|
|
2202
2202
|
__decorateClass([
|
|
2203
2203
|
(0, import_class_validator34.IsNotEmpty)(),
|
|
2204
2204
|
(0, import_class_validator34.IsString)()
|
|
@@ -2206,7 +2206,7 @@ __decorateClass([
|
|
|
2206
2206
|
__decorateClass([
|
|
2207
2207
|
(0, import_class_validator34.IsNotEmpty)(),
|
|
2208
2208
|
(0, import_class_validator34.IsString)()
|
|
2209
|
-
], UpdateExperienceDto.prototype, "
|
|
2209
|
+
], UpdateExperienceDto.prototype, "jobDuration", 2);
|
|
2210
2210
|
__decorateClass([
|
|
2211
2211
|
(0, import_class_validator34.IsString)()
|
|
2212
2212
|
], UpdateExperienceDto.prototype, "description", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -2207,7 +2207,7 @@ var CreateExperienceDto = class {
|
|
|
2207
2207
|
__decorateClass([
|
|
2208
2208
|
IsString18(),
|
|
2209
2209
|
IsNotEmpty25()
|
|
2210
|
-
], CreateExperienceDto.prototype, "
|
|
2210
|
+
], CreateExperienceDto.prototype, "companyName", 2);
|
|
2211
2211
|
__decorateClass([
|
|
2212
2212
|
IsString18(),
|
|
2213
2213
|
IsNotEmpty25()
|
|
@@ -2215,7 +2215,7 @@ __decorateClass([
|
|
|
2215
2215
|
__decorateClass([
|
|
2216
2216
|
IsString18(),
|
|
2217
2217
|
IsNotEmpty25()
|
|
2218
|
-
], CreateExperienceDto.prototype, "
|
|
2218
|
+
], CreateExperienceDto.prototype, "jobDuration", 2);
|
|
2219
2219
|
__decorateClass([
|
|
2220
2220
|
IsString18()
|
|
2221
2221
|
], CreateExperienceDto.prototype, "description", 2);
|
|
@@ -2238,7 +2238,7 @@ __decorateClass([
|
|
|
2238
2238
|
__decorateClass([
|
|
2239
2239
|
IsNotEmpty26(),
|
|
2240
2240
|
IsString19()
|
|
2241
|
-
], UpdateExperienceDto.prototype, "
|
|
2241
|
+
], UpdateExperienceDto.prototype, "companyName", 2);
|
|
2242
2242
|
__decorateClass([
|
|
2243
2243
|
IsNotEmpty26(),
|
|
2244
2244
|
IsString19()
|
|
@@ -2246,7 +2246,7 @@ __decorateClass([
|
|
|
2246
2246
|
__decorateClass([
|
|
2247
2247
|
IsNotEmpty26(),
|
|
2248
2248
|
IsString19()
|
|
2249
|
-
], UpdateExperienceDto.prototype, "
|
|
2249
|
+
], UpdateExperienceDto.prototype, "jobDuration", 2);
|
|
2250
2250
|
__decorateClass([
|
|
2251
2251
|
IsString19()
|
|
2252
2252
|
], UpdateExperienceDto.prototype, "description", 2);
|