@experts_hub/shared 1.0.347 → 1.0.348

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,7 +2188,6 @@ declare class CreateF2FInterviewRescheduleRequestDto {
2188
2188
  f2FInterviewId: string;
2189
2189
  rescheduledDate: string;
2190
2190
  rescheduledSlot: string;
2191
- clientReason: string;
2192
2191
  freelancerReason: string;
2193
2192
  }
2194
2193
 
package/dist/index.d.ts CHANGED
@@ -2188,7 +2188,6 @@ declare class CreateF2FInterviewRescheduleRequestDto {
2188
2188
  f2FInterviewId: string;
2189
2189
  rescheduledDate: string;
2190
2190
  rescheduledSlot: string;
2191
- clientReason: string;
2192
2191
  freelancerReason: string;
2193
2192
  }
2194
2193
 
package/dist/index.js CHANGED
@@ -5349,11 +5349,6 @@ __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
5353
  ], CreateF2FInterviewRescheduleRequestDto.prototype, "freelancerReason", 2);
5359
5354
 
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,11 +5502,6 @@ __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
5506
  ], CreateF2FInterviewRescheduleRequestDto.prototype, "freelancerReason", 2);
5513
5507
 
@@ -2,6 +2,5 @@ export declare class CreateF2FInterviewRescheduleRequestDto {
2
2
  f2FInterviewId: string;
3
3
  rescheduledDate: string;
4
4
  rescheduledSlot: string;
5
- clientReason: string;
6
5
  freelancerReason: string;
7
6
  }
@@ -0,0 +1,3 @@
1
+ export declare class RejectF2FInterviewRescheduleRequestDto {
2
+ clientReason: 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.348",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",