@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 CHANGED
@@ -979,9 +979,9 @@ declare const FREELANCER_EXPERIENCE_PATTERN: {
979
979
  };
980
980
 
981
981
  declare class CreateExperienceDto {
982
- company: string;
982
+ companyName: string;
983
983
  designation: string;
984
- duration: string;
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
- company: string;
993
+ companyName: string;
994
994
  designation: string;
995
- duration: string;
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
- company: string;
982
+ companyName: string;
983
983
  designation: string;
984
- duration: string;
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
- company: string;
993
+ companyName: string;
994
994
  designation: string;
995
- duration: string;
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, "company", 2);
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, "duration", 2);
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, "company", 2);
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, "duration", 2);
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, "company", 2);
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, "duration", 2);
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, "company", 2);
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, "duration", 2);
2249
+ ], UpdateExperienceDto.prototype, "jobDuration", 2);
2250
2250
  __decorateClass([
2251
2251
  IsString19()
2252
2252
  ], UpdateExperienceDto.prototype, "description", 2);
@@ -1,7 +1,7 @@
1
1
  export declare class CreateExperienceDto {
2
- company: string;
2
+ companyName: string;
3
3
  designation: string;
4
- duration: string;
4
+ jobDuration: string;
5
5
  description: string;
6
6
  }
7
7
  export declare class CreateFreelancerExperienceDto {
@@ -1,8 +1,8 @@
1
1
  export declare class UpdateExperienceDto {
2
2
  id?: string;
3
- company: string;
3
+ companyName: string;
4
4
  designation: string;
5
- duration: string;
5
+ jobDuration: string;
6
6
  description: string;
7
7
  }
8
8
  export declare class UpdateFreelancerExperienceDto {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.128",
3
+ "version": "1.0.129",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",