@experts_hub/shared 1.0.409 → 1.0.410

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
@@ -2518,6 +2518,8 @@ declare class CreateFreelancerTimesheetDto {
2518
2518
  startTime?: string;
2519
2519
  endTime?: string;
2520
2520
  taskId: number;
2521
+ projectName?: string;
2522
+ deliverable?: string;
2521
2523
  taskName?: string;
2522
2524
  description?: string;
2523
2525
  }
@@ -2529,6 +2531,8 @@ declare class UpdateFreelancerTimesheetDto {
2529
2531
  startTime?: string;
2530
2532
  endTime?: string;
2531
2533
  taskId: number;
2534
+ projectName?: string;
2535
+ deliverable?: string;
2532
2536
  taskName?: string;
2533
2537
  description?: string;
2534
2538
  }
package/dist/index.d.ts CHANGED
@@ -2518,6 +2518,8 @@ declare class CreateFreelancerTimesheetDto {
2518
2518
  startTime?: string;
2519
2519
  endTime?: string;
2520
2520
  taskId: number;
2521
+ projectName?: string;
2522
+ deliverable?: string;
2521
2523
  taskName?: string;
2522
2524
  description?: string;
2523
2525
  }
@@ -2529,6 +2531,8 @@ declare class UpdateFreelancerTimesheetDto {
2529
2531
  startTime?: string;
2530
2532
  endTime?: string;
2531
2533
  taskId: number;
2534
+ projectName?: string;
2535
+ deliverable?: string;
2532
2536
  taskName?: string;
2533
2537
  description?: string;
2534
2538
  }
package/dist/index.js CHANGED
@@ -6285,6 +6285,14 @@ __decorateClass([
6285
6285
  (0, import_class_validator73.IsOptional)(),
6286
6286
  (0, import_class_validator73.IsInt)()
6287
6287
  ], CreateFreelancerTimesheetDto.prototype, "taskId", 2);
6288
+ __decorateClass([
6289
+ (0, import_class_validator73.IsOptional)(),
6290
+ (0, import_class_validator73.IsString)()
6291
+ ], CreateFreelancerTimesheetDto.prototype, "projectName", 2);
6292
+ __decorateClass([
6293
+ (0, import_class_validator73.IsOptional)(),
6294
+ (0, import_class_validator73.IsString)()
6295
+ ], CreateFreelancerTimesheetDto.prototype, "deliverable", 2);
6288
6296
  __decorateClass([
6289
6297
  (0, import_class_validator73.IsOptional)(),
6290
6298
  (0, import_class_validator73.IsString)()
@@ -6325,6 +6333,14 @@ __decorateClass([
6325
6333
  (0, import_class_validator74.IsOptional)(),
6326
6334
  (0, import_class_validator74.IsInt)()
6327
6335
  ], UpdateFreelancerTimesheetDto.prototype, "taskId", 2);
6336
+ __decorateClass([
6337
+ (0, import_class_validator74.IsOptional)(),
6338
+ (0, import_class_validator74.IsString)()
6339
+ ], UpdateFreelancerTimesheetDto.prototype, "projectName", 2);
6340
+ __decorateClass([
6341
+ (0, import_class_validator74.IsOptional)(),
6342
+ (0, import_class_validator74.IsString)()
6343
+ ], UpdateFreelancerTimesheetDto.prototype, "deliverable", 2);
6328
6344
  __decorateClass([
6329
6345
  (0, import_class_validator74.IsOptional)(),
6330
6346
  (0, import_class_validator74.IsString)()
package/dist/index.mjs CHANGED
@@ -6423,6 +6423,14 @@ __decorateClass([
6423
6423
  IsOptional38(),
6424
6424
  IsInt8()
6425
6425
  ], CreateFreelancerTimesheetDto.prototype, "taskId", 2);
6426
+ __decorateClass([
6427
+ IsOptional38(),
6428
+ IsString41()
6429
+ ], CreateFreelancerTimesheetDto.prototype, "projectName", 2);
6430
+ __decorateClass([
6431
+ IsOptional38(),
6432
+ IsString41()
6433
+ ], CreateFreelancerTimesheetDto.prototype, "deliverable", 2);
6426
6434
  __decorateClass([
6427
6435
  IsOptional38(),
6428
6436
  IsString41()
@@ -6471,6 +6479,14 @@ __decorateClass([
6471
6479
  IsOptional39(),
6472
6480
  IsInt9()
6473
6481
  ], UpdateFreelancerTimesheetDto.prototype, "taskId", 2);
6482
+ __decorateClass([
6483
+ IsOptional39(),
6484
+ IsString42()
6485
+ ], UpdateFreelancerTimesheetDto.prototype, "projectName", 2);
6486
+ __decorateClass([
6487
+ IsOptional39(),
6488
+ IsString42()
6489
+ ], UpdateFreelancerTimesheetDto.prototype, "deliverable", 2);
6474
6490
  __decorateClass([
6475
6491
  IsOptional39(),
6476
6492
  IsString42()
@@ -5,6 +5,8 @@ export declare class CreateFreelancerTimesheetDto {
5
5
  startTime?: string;
6
6
  endTime?: string;
7
7
  taskId: number;
8
+ projectName?: string;
9
+ deliverable?: string;
8
10
  taskName?: string;
9
11
  description?: string;
10
12
  }
@@ -5,6 +5,8 @@ export declare class UpdateFreelancerTimesheetDto {
5
5
  startTime?: string;
6
6
  endTime?: string;
7
7
  taskId: number;
8
+ projectName?: string;
9
+ deliverable?: string;
8
10
  taskName?: string;
9
11
  description?: string;
10
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.409",
3
+ "version": "1.0.410",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",