@experts_hub/shared 1.0.305 → 1.0.307
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.
|
@@ -5,6 +5,9 @@ export declare class JobFreelancerRecommendation {
|
|
|
5
5
|
jobRole: string;
|
|
6
6
|
jobOpenings: number;
|
|
7
7
|
jobLocation: string;
|
|
8
|
+
jobCurrency: string;
|
|
9
|
+
jobSalaryFrom: string;
|
|
10
|
+
jobSalaryTo: string;
|
|
8
11
|
jobEmploymentType: string;
|
|
9
12
|
applicationReceived: number;
|
|
10
13
|
jobPostedAt: Date;
|
package/dist/index.d.mts
CHANGED
|
@@ -157,6 +157,7 @@ declare class FreelancerProfileQuestionDto {
|
|
|
157
157
|
uuid: string;
|
|
158
158
|
question_slug: string;
|
|
159
159
|
answer: any;
|
|
160
|
+
currency?: string;
|
|
160
161
|
}
|
|
161
162
|
|
|
162
163
|
declare class FreelancerWorkShowcaseDto {
|
|
@@ -2106,6 +2107,9 @@ declare class JobFreelancerRecommendation {
|
|
|
2106
2107
|
jobRole: string;
|
|
2107
2108
|
jobOpenings: number;
|
|
2108
2109
|
jobLocation: string;
|
|
2110
|
+
jobCurrency: string;
|
|
2111
|
+
jobSalaryFrom: string;
|
|
2112
|
+
jobSalaryTo: string;
|
|
2109
2113
|
jobEmploymentType: string;
|
|
2110
2114
|
applicationReceived: number;
|
|
2111
2115
|
jobPostedAt: Date;
|
package/dist/index.d.ts
CHANGED
|
@@ -157,6 +157,7 @@ declare class FreelancerProfileQuestionDto {
|
|
|
157
157
|
uuid: string;
|
|
158
158
|
question_slug: string;
|
|
159
159
|
answer: any;
|
|
160
|
+
currency?: string;
|
|
160
161
|
}
|
|
161
162
|
|
|
162
163
|
declare class FreelancerWorkShowcaseDto {
|
|
@@ -2106,6 +2107,9 @@ declare class JobFreelancerRecommendation {
|
|
|
2106
2107
|
jobRole: string;
|
|
2107
2108
|
jobOpenings: number;
|
|
2108
2109
|
jobLocation: string;
|
|
2110
|
+
jobCurrency: string;
|
|
2111
|
+
jobSalaryFrom: string;
|
|
2112
|
+
jobSalaryTo: string;
|
|
2109
2113
|
jobEmploymentType: string;
|
|
2110
2114
|
applicationReceived: number;
|
|
2111
2115
|
jobPostedAt: Date;
|
package/dist/index.js
CHANGED
|
@@ -727,6 +727,7 @@ __decorateClass([
|
|
|
727
727
|
], FreelancerDevelopmentPreferenceDto.prototype, "developer", 2);
|
|
728
728
|
|
|
729
729
|
// src/modules/onboarding/dto/freelancer-profile-question.dto.ts
|
|
730
|
+
var import_common = require("@nestjs/common");
|
|
730
731
|
var import_class_validator21 = require("class-validator");
|
|
731
732
|
var FreelancerProfileQuestionDto = class {
|
|
732
733
|
};
|
|
@@ -748,6 +749,9 @@ __decorateClass([
|
|
|
748
749
|
__decorateClass([
|
|
749
750
|
(0, import_class_validator21.IsNotEmpty)({ message: "Please enter answer." })
|
|
750
751
|
], FreelancerProfileQuestionDto.prototype, "answer", 2);
|
|
752
|
+
__decorateClass([
|
|
753
|
+
(0, import_common.Optional)()
|
|
754
|
+
], FreelancerProfileQuestionDto.prototype, "currency", 2);
|
|
751
755
|
|
|
752
756
|
// src/modules/onboarding/dto/freelancer-work-showcase.dto.ts
|
|
753
757
|
var import_class_validator22 = require("class-validator");
|
|
@@ -5291,6 +5295,15 @@ __decorateClass([
|
|
|
5291
5295
|
__decorateClass([
|
|
5292
5296
|
(0, import_typeorm51.ViewColumn)({ name: "job_location" })
|
|
5293
5297
|
], JobFreelancerRecommendation.prototype, "jobLocation", 2);
|
|
5298
|
+
__decorateClass([
|
|
5299
|
+
(0, import_typeorm51.ViewColumn)({ name: "job_currency" })
|
|
5300
|
+
], JobFreelancerRecommendation.prototype, "jobCurrency", 2);
|
|
5301
|
+
__decorateClass([
|
|
5302
|
+
(0, import_typeorm51.ViewColumn)({ name: "job_salary_from" })
|
|
5303
|
+
], JobFreelancerRecommendation.prototype, "jobSalaryFrom", 2);
|
|
5304
|
+
__decorateClass([
|
|
5305
|
+
(0, import_typeorm51.ViewColumn)({ name: "job_salary_to" })
|
|
5306
|
+
], JobFreelancerRecommendation.prototype, "jobSalaryTo", 2);
|
|
5294
5307
|
__decorateClass([
|
|
5295
5308
|
(0, import_typeorm51.ViewColumn)({ name: "job_employment_type" })
|
|
5296
5309
|
], JobFreelancerRecommendation.prototype, "jobEmploymentType", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -531,6 +531,7 @@ __decorateClass([
|
|
|
531
531
|
], FreelancerDevelopmentPreferenceDto.prototype, "developer", 2);
|
|
532
532
|
|
|
533
533
|
// src/modules/onboarding/dto/freelancer-profile-question.dto.ts
|
|
534
|
+
import { Optional } from "@nestjs/common";
|
|
534
535
|
import {
|
|
535
536
|
IsUUID as IsUUID8,
|
|
536
537
|
IsString as IsString4,
|
|
@@ -557,6 +558,9 @@ __decorateClass([
|
|
|
557
558
|
__decorateClass([
|
|
558
559
|
IsNotEmpty18({ message: "Please enter answer." })
|
|
559
560
|
], FreelancerProfileQuestionDto.prototype, "answer", 2);
|
|
561
|
+
__decorateClass([
|
|
562
|
+
Optional()
|
|
563
|
+
], FreelancerProfileQuestionDto.prototype, "currency", 2);
|
|
560
564
|
|
|
561
565
|
// src/modules/onboarding/dto/freelancer-work-showcase.dto.ts
|
|
562
566
|
import {
|
|
@@ -5435,6 +5439,15 @@ __decorateClass([
|
|
|
5435
5439
|
__decorateClass([
|
|
5436
5440
|
ViewColumn({ name: "job_location" })
|
|
5437
5441
|
], JobFreelancerRecommendation.prototype, "jobLocation", 2);
|
|
5442
|
+
__decorateClass([
|
|
5443
|
+
ViewColumn({ name: "job_currency" })
|
|
5444
|
+
], JobFreelancerRecommendation.prototype, "jobCurrency", 2);
|
|
5445
|
+
__decorateClass([
|
|
5446
|
+
ViewColumn({ name: "job_salary_from" })
|
|
5447
|
+
], JobFreelancerRecommendation.prototype, "jobSalaryFrom", 2);
|
|
5448
|
+
__decorateClass([
|
|
5449
|
+
ViewColumn({ name: "job_salary_to" })
|
|
5450
|
+
], JobFreelancerRecommendation.prototype, "jobSalaryTo", 2);
|
|
5438
5451
|
__decorateClass([
|
|
5439
5452
|
ViewColumn({ name: "job_employment_type" })
|
|
5440
5453
|
], JobFreelancerRecommendation.prototype, "jobEmploymentType", 2);
|