@experts_hub/shared 1.0.347 → 1.0.349

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
@@ -2188,8 +2188,7 @@ declare class CreateF2FInterviewRescheduleRequestDto {
2188
2188
  f2FInterviewId: string;
2189
2189
  rescheduledDate: string;
2190
2190
  rescheduledSlot: string;
2191
- clientReason: string;
2192
- freelancerReason: string;
2191
+ freelancerRequestReason: string;
2193
2192
  }
2194
2193
 
2195
2194
  declare const UserTCPAdapter: () => MicroserviceOptions;
package/dist/index.d.ts CHANGED
@@ -2188,8 +2188,7 @@ declare class CreateF2FInterviewRescheduleRequestDto {
2188
2188
  f2FInterviewId: string;
2189
2189
  rescheduledDate: string;
2190
2190
  rescheduledSlot: string;
2191
- clientReason: string;
2192
- freelancerReason: string;
2191
+ freelancerRequestReason: string;
2193
2192
  }
2194
2193
 
2195
2194
  declare const UserTCPAdapter: () => MicroserviceOptions;
package/dist/index.js CHANGED
@@ -5349,13 +5349,8 @@ __decorateClass([
5349
5349
  (0, import_class_validator67.IsNotEmpty)({ message: "Rescheduled slot is required." })
5350
5350
  ], CreateF2FInterviewRescheduleRequestDto.prototype, "rescheduledSlot", 2);
5351
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
5352
  (0, import_class_validator67.IsString)({ message: "Freelancer reason must be a string." })
5358
- ], CreateF2FInterviewRescheduleRequestDto.prototype, "freelancerReason", 2);
5353
+ ], CreateF2FInterviewRescheduleRequestDto.prototype, "freelancerRequestReason", 2);
5359
5354
 
5360
5355
  // src/adapters/tcp/user.tcp.adapter.ts
5361
5356
  var import_dotenv = require("dotenv");
package/dist/index.mjs CHANGED
@@ -5487,8 +5487,7 @@ __decorateClass([
5487
5487
  // src/modules/interview/dto/create-f2f-interview-reschedule-request.dto.ts
5488
5488
  import {
5489
5489
  IsString as IsString39,
5490
- IsNotEmpty as IsNotEmpty57,
5491
- IsOptional as IsOptional36
5490
+ IsNotEmpty as IsNotEmpty57
5492
5491
  } from "class-validator";
5493
5492
  var CreateF2FInterviewRescheduleRequestDto = class {
5494
5493
  };
@@ -5503,13 +5502,8 @@ __decorateClass([
5503
5502
  IsNotEmpty57({ message: "Rescheduled slot is required." })
5504
5503
  ], CreateF2FInterviewRescheduleRequestDto.prototype, "rescheduledSlot", 2);
5505
5504
  __decorateClass([
5506
- IsOptional36(),
5507
- IsString39({ message: "Client reason must be a string." })
5508
- ], CreateF2FInterviewRescheduleRequestDto.prototype, "clientReason", 2);
5509
- __decorateClass([
5510
- IsOptional36(),
5511
5505
  IsString39({ message: "Freelancer reason must be a string." })
5512
- ], CreateF2FInterviewRescheduleRequestDto.prototype, "freelancerReason", 2);
5506
+ ], CreateF2FInterviewRescheduleRequestDto.prototype, "freelancerRequestReason", 2);
5513
5507
 
5514
5508
  // src/adapters/tcp/user.tcp.adapter.ts
5515
5509
  import { config } from "dotenv";
@@ -2,6 +2,5 @@ export declare class CreateF2FInterviewRescheduleRequestDto {
2
2
  f2FInterviewId: string;
3
3
  rescheduledDate: string;
4
4
  rescheduledSlot: string;
5
- clientReason: string;
6
- freelancerReason: string;
5
+ freelancerRequestReason: string;
7
6
  }
@@ -0,0 +1,3 @@
1
+ export declare class RejectF2FInterviewRescheduleRequestDto {
2
+ clientRejectReason: string;
3
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.347",
3
+ "version": "1.0.349",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",