@experts_hub/shared 1.0.346 → 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/entities/f2f-interview-reschedule-request.entity.d.ts +2 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +9 -0
- package/dist/index.mjs +9 -0
- package/dist/modules/interview/dto/create-f2f-interview-reschedule-request.dto.d.ts +1 -0
- 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
|
@@ -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,7 @@ declare class CreateF2FInterviewRescheduleRequestDto {
|
|
|
2186
2188
|
f2FInterviewId: string;
|
|
2187
2189
|
rescheduledDate: string;
|
|
2188
2190
|
rescheduledSlot: string;
|
|
2191
|
+
freelancerReason: string;
|
|
2189
2192
|
}
|
|
2190
2193
|
|
|
2191
2194
|
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,7 @@ declare class CreateF2FInterviewRescheduleRequestDto {
|
|
|
2186
2188
|
f2FInterviewId: string;
|
|
2187
2189
|
rescheduledDate: string;
|
|
2188
2190
|
rescheduledSlot: string;
|
|
2191
|
+
freelancerReason: string;
|
|
2189
2192
|
}
|
|
2190
2193
|
|
|
2191
2194
|
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,9 @@ __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.IsString)({ message: "Freelancer reason must be a string." })
|
|
5353
|
+
], CreateF2FInterviewRescheduleRequestDto.prototype, "freelancerReason", 2);
|
|
5345
5354
|
|
|
5346
5355
|
// src/adapters/tcp/user.tcp.adapter.ts
|
|
5347
5356
|
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);
|
|
@@ -5495,6 +5501,9 @@ __decorateClass([
|
|
|
5495
5501
|
IsString39({ message: "Rescheduled slot must be a string." }),
|
|
5496
5502
|
IsNotEmpty57({ message: "Rescheduled slot is required." })
|
|
5497
5503
|
], CreateF2FInterviewRescheduleRequestDto.prototype, "rescheduledSlot", 2);
|
|
5504
|
+
__decorateClass([
|
|
5505
|
+
IsString39({ message: "Freelancer reason must be a string." })
|
|
5506
|
+
], CreateF2FInterviewRescheduleRequestDto.prototype, "freelancerReason", 2);
|
|
5498
5507
|
|
|
5499
5508
|
// src/adapters/tcp/user.tcp.adapter.ts
|
|
5500
5509
|
import { config } from "dotenv";
|