@experts_hub/shared 1.0.346 → 1.0.347

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.
@@ -14,4 +14,6 @@ export declare class F2fInterviewRescheduleRequest extends BaseEntity {
14
14
  rescheduledDate: Date;
15
15
  rescheduledSlot: string;
16
16
  status: F2fInterviewRescheduleRequestStatusEnum;
17
+ clientRejectReason: string;
18
+ freelancerRequestReason: string;
17
19
  }
package/dist/index.d.mts CHANGED
@@ -907,6 +907,8 @@ declare class F2fInterviewRescheduleRequest extends BaseEntity {
907
907
  rescheduledDate: Date;
908
908
  rescheduledSlot: string;
909
909
  status: F2fInterviewRescheduleRequestStatusEnum;
910
+ clientRejectReason: string;
911
+ freelancerRequestReason: string;
910
912
  }
911
913
 
912
914
  declare enum F2fInterviewScheduleStatusEnum {
@@ -2186,6 +2188,8 @@ declare class CreateF2FInterviewRescheduleRequestDto {
2186
2188
  f2FInterviewId: string;
2187
2189
  rescheduledDate: string;
2188
2190
  rescheduledSlot: string;
2191
+ clientReason: string;
2192
+ freelancerReason: string;
2189
2193
  }
2190
2194
 
2191
2195
  declare const UserTCPAdapter: () => MicroserviceOptions;
package/dist/index.d.ts CHANGED
@@ -907,6 +907,8 @@ declare class F2fInterviewRescheduleRequest extends BaseEntity {
907
907
  rescheduledDate: Date;
908
908
  rescheduledSlot: string;
909
909
  status: F2fInterviewRescheduleRequestStatusEnum;
910
+ clientRejectReason: string;
911
+ freelancerRequestReason: string;
910
912
  }
911
913
 
912
914
  declare enum F2fInterviewScheduleStatusEnum {
@@ -2186,6 +2188,8 @@ declare class CreateF2FInterviewRescheduleRequestDto {
2186
2188
  f2FInterviewId: string;
2187
2189
  rescheduledDate: string;
2188
2190
  rescheduledSlot: string;
2191
+ clientReason: string;
2192
+ freelancerReason: string;
2189
2193
  }
2190
2194
 
2191
2195
  declare const UserTCPAdapter: () => MicroserviceOptions;
package/dist/index.js CHANGED
@@ -2588,6 +2588,12 @@ __decorateClass([
2588
2588
  default: "PENDING" /* PENDING */
2589
2589
  })
2590
2590
  ], F2fInterviewRescheduleRequest.prototype, "status", 2);
2591
+ __decorateClass([
2592
+ (0, import_typeorm16.Column)({ name: "client_reject_reason", type: "varchar", nullable: true })
2593
+ ], F2fInterviewRescheduleRequest.prototype, "clientRejectReason", 2);
2594
+ __decorateClass([
2595
+ (0, import_typeorm16.Column)({ name: "freelancer_request_reason", type: "varchar", nullable: true })
2596
+ ], F2fInterviewRescheduleRequest.prototype, "freelancerRequestReason", 2);
2591
2597
  F2fInterviewRescheduleRequest = __decorateClass([
2592
2598
  (0, import_typeorm16.Entity)("f2f_interview_reschedule_requests")
2593
2599
  ], F2fInterviewRescheduleRequest);
@@ -5342,6 +5348,14 @@ __decorateClass([
5342
5348
  (0, import_class_validator67.IsString)({ message: "Rescheduled slot must be a string." }),
5343
5349
  (0, import_class_validator67.IsNotEmpty)({ message: "Rescheduled slot is required." })
5344
5350
  ], CreateF2FInterviewRescheduleRequestDto.prototype, "rescheduledSlot", 2);
5351
+ __decorateClass([
5352
+ (0, import_class_validator67.IsOptional)(),
5353
+ (0, import_class_validator67.IsString)({ message: "Client reason must be a string." })
5354
+ ], CreateF2FInterviewRescheduleRequestDto.prototype, "clientReason", 2);
5355
+ __decorateClass([
5356
+ (0, import_class_validator67.IsOptional)(),
5357
+ (0, import_class_validator67.IsString)({ message: "Freelancer reason must be a string." })
5358
+ ], CreateF2FInterviewRescheduleRequestDto.prototype, "freelancerReason", 2);
5345
5359
 
5346
5360
  // src/adapters/tcp/user.tcp.adapter.ts
5347
5361
  var import_dotenv = require("dotenv");
package/dist/index.mjs CHANGED
@@ -2542,6 +2542,12 @@ __decorateClass([
2542
2542
  default: "PENDING" /* PENDING */
2543
2543
  })
2544
2544
  ], F2fInterviewRescheduleRequest.prototype, "status", 2);
2545
+ __decorateClass([
2546
+ Column16({ name: "client_reject_reason", type: "varchar", nullable: true })
2547
+ ], F2fInterviewRescheduleRequest.prototype, "clientRejectReason", 2);
2548
+ __decorateClass([
2549
+ Column16({ name: "freelancer_request_reason", type: "varchar", nullable: true })
2550
+ ], F2fInterviewRescheduleRequest.prototype, "freelancerRequestReason", 2);
2545
2551
  F2fInterviewRescheduleRequest = __decorateClass([
2546
2552
  Entity15("f2f_interview_reschedule_requests")
2547
2553
  ], F2fInterviewRescheduleRequest);
@@ -5481,7 +5487,8 @@ __decorateClass([
5481
5487
  // src/modules/interview/dto/create-f2f-interview-reschedule-request.dto.ts
5482
5488
  import {
5483
5489
  IsString as IsString39,
5484
- IsNotEmpty as IsNotEmpty57
5490
+ IsNotEmpty as IsNotEmpty57,
5491
+ IsOptional as IsOptional36
5485
5492
  } from "class-validator";
5486
5493
  var CreateF2FInterviewRescheduleRequestDto = class {
5487
5494
  };
@@ -5495,6 +5502,14 @@ __decorateClass([
5495
5502
  IsString39({ message: "Rescheduled slot must be a string." }),
5496
5503
  IsNotEmpty57({ message: "Rescheduled slot is required." })
5497
5504
  ], CreateF2FInterviewRescheduleRequestDto.prototype, "rescheduledSlot", 2);
5505
+ __decorateClass([
5506
+ IsOptional36(),
5507
+ IsString39({ message: "Client reason must be a string." })
5508
+ ], CreateF2FInterviewRescheduleRequestDto.prototype, "clientReason", 2);
5509
+ __decorateClass([
5510
+ IsOptional36(),
5511
+ IsString39({ message: "Freelancer reason must be a string." })
5512
+ ], CreateF2FInterviewRescheduleRequestDto.prototype, "freelancerReason", 2);
5498
5513
 
5499
5514
  // src/adapters/tcp/user.tcp.adapter.ts
5500
5515
  import { config } from "dotenv";
@@ -2,4 +2,6 @@ export declare class CreateF2FInterviewRescheduleRequestDto {
2
2
  f2FInterviewId: string;
3
3
  rescheduledDate: string;
4
4
  rescheduledSlot: string;
5
+ clientReason: string;
6
+ freelancerReason: string;
5
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.346",
3
+ "version": "1.0.347",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",