@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 +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.js +1 -6
- package/dist/index.mjs +2 -8
- package/dist/modules/interview/dto/create-f2f-interview-reschedule-request.dto.d.ts +1 -2
- package/dist/modules/interview/dto/reject-f2f-interview-reschedule-request.dto.d.ts +3 -0
- package/package.json +1 -1
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
|
-
|
|
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
|
-
|
|
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, "
|
|
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, "
|
|
5506
|
+
], CreateF2FInterviewRescheduleRequestDto.prototype, "freelancerRequestReason", 2);
|
|
5513
5507
|
|
|
5514
5508
|
// src/adapters/tcp/user.tcp.adapter.ts
|
|
5515
5509
|
import { config } from "dotenv";
|