@experts_hub/shared 1.0.472 → 1.0.473
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/company-profile.entity.d.ts +2 -0
- package/dist/entities/freelancer-profile.entity.d.ts +2 -0
- package/dist/index.d.mts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +15 -0
- package/dist/index.mjs +15 -0
- package/dist/modules/user/freelancer-profile/dto/update-freelancer-profile.dto.d.ts +2 -1
- package/package.json +1 -1
|
@@ -32,6 +32,7 @@ export declare class CompanyProfile extends BaseEntity {
|
|
|
32
32
|
webSite: string;
|
|
33
33
|
aboutCompany: string;
|
|
34
34
|
isServiceAgreementSigned: boolean;
|
|
35
|
+
originalDocumentUrl: string;
|
|
35
36
|
serviceAgreementUrl: string;
|
|
36
37
|
serviceAggrementSignedOn: Date;
|
|
37
38
|
companyAddress: string;
|
|
@@ -44,4 +45,5 @@ export declare class CompanyProfile extends BaseEntity {
|
|
|
44
45
|
foundUsOn: FromUsOn;
|
|
45
46
|
foundUsOnDetail: string;
|
|
46
47
|
onboardingStepCompleted: CompanyOnboardingStepEnum;
|
|
48
|
+
signaturePositions: any;
|
|
47
49
|
}
|
|
@@ -72,9 +72,11 @@ export declare class FreelancerProfile extends BaseEntity {
|
|
|
72
72
|
address: string;
|
|
73
73
|
about: string;
|
|
74
74
|
profileCompletedPercentage: Record<string, number>;
|
|
75
|
+
originalDocumentUrl: string;
|
|
75
76
|
isServiceAgreementSigned: boolean;
|
|
76
77
|
serviceAgreementUrl: string;
|
|
77
78
|
serviceAggrementSignedOn: Date;
|
|
78
79
|
isExpertshubVerified: boolean;
|
|
79
80
|
isFollowedOnLinkedIn: boolean;
|
|
81
|
+
signaturePositions: any;
|
|
80
82
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -545,7 +545,8 @@ declare class FreelancerChangePasswordDto {
|
|
|
545
545
|
|
|
546
546
|
declare enum NatureOfWorkDto {
|
|
547
547
|
FULLTIME = "FULLTIME",
|
|
548
|
-
FREELANCE = "FREELANCE"
|
|
548
|
+
FREELANCE = "FREELANCE",
|
|
549
|
+
FTE = "FTE"
|
|
549
550
|
}
|
|
550
551
|
declare enum ModeOfWorkDto {
|
|
551
552
|
ONSITE = "ONSITE",
|
|
@@ -791,11 +792,13 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
791
792
|
address: string;
|
|
792
793
|
about: string;
|
|
793
794
|
profileCompletedPercentage: Record<string, number>;
|
|
795
|
+
originalDocumentUrl: string;
|
|
794
796
|
isServiceAgreementSigned: boolean;
|
|
795
797
|
serviceAgreementUrl: string;
|
|
796
798
|
serviceAggrementSignedOn: Date;
|
|
797
799
|
isExpertshubVerified: boolean;
|
|
798
800
|
isFollowedOnLinkedIn: boolean;
|
|
801
|
+
signaturePositions: any;
|
|
799
802
|
}
|
|
800
803
|
|
|
801
804
|
declare enum KindOfHire {
|
|
@@ -830,6 +833,7 @@ declare class CompanyProfile extends BaseEntity {
|
|
|
830
833
|
webSite: string;
|
|
831
834
|
aboutCompany: string;
|
|
832
835
|
isServiceAgreementSigned: boolean;
|
|
836
|
+
originalDocumentUrl: string;
|
|
833
837
|
serviceAgreementUrl: string;
|
|
834
838
|
serviceAggrementSignedOn: Date;
|
|
835
839
|
companyAddress: string;
|
|
@@ -842,6 +846,7 @@ declare class CompanyProfile extends BaseEntity {
|
|
|
842
846
|
foundUsOn: FromUsOn;
|
|
843
847
|
foundUsOnDetail: string;
|
|
844
848
|
onboardingStepCompleted: CompanyOnboardingStepEnum;
|
|
849
|
+
signaturePositions: any;
|
|
845
850
|
}
|
|
846
851
|
|
|
847
852
|
declare class JobSkill extends BaseEntity {
|
package/dist/index.d.ts
CHANGED
|
@@ -545,7 +545,8 @@ declare class FreelancerChangePasswordDto {
|
|
|
545
545
|
|
|
546
546
|
declare enum NatureOfWorkDto {
|
|
547
547
|
FULLTIME = "FULLTIME",
|
|
548
|
-
FREELANCE = "FREELANCE"
|
|
548
|
+
FREELANCE = "FREELANCE",
|
|
549
|
+
FTE = "FTE"
|
|
549
550
|
}
|
|
550
551
|
declare enum ModeOfWorkDto {
|
|
551
552
|
ONSITE = "ONSITE",
|
|
@@ -791,11 +792,13 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
791
792
|
address: string;
|
|
792
793
|
about: string;
|
|
793
794
|
profileCompletedPercentage: Record<string, number>;
|
|
795
|
+
originalDocumentUrl: string;
|
|
794
796
|
isServiceAgreementSigned: boolean;
|
|
795
797
|
serviceAgreementUrl: string;
|
|
796
798
|
serviceAggrementSignedOn: Date;
|
|
797
799
|
isExpertshubVerified: boolean;
|
|
798
800
|
isFollowedOnLinkedIn: boolean;
|
|
801
|
+
signaturePositions: any;
|
|
799
802
|
}
|
|
800
803
|
|
|
801
804
|
declare enum KindOfHire {
|
|
@@ -830,6 +833,7 @@ declare class CompanyProfile extends BaseEntity {
|
|
|
830
833
|
webSite: string;
|
|
831
834
|
aboutCompany: string;
|
|
832
835
|
isServiceAgreementSigned: boolean;
|
|
836
|
+
originalDocumentUrl: string;
|
|
833
837
|
serviceAgreementUrl: string;
|
|
834
838
|
serviceAggrementSignedOn: Date;
|
|
835
839
|
companyAddress: string;
|
|
@@ -842,6 +846,7 @@ declare class CompanyProfile extends BaseEntity {
|
|
|
842
846
|
foundUsOn: FromUsOn;
|
|
843
847
|
foundUsOnDetail: string;
|
|
844
848
|
onboardingStepCompleted: CompanyOnboardingStepEnum;
|
|
849
|
+
signaturePositions: any;
|
|
845
850
|
}
|
|
846
851
|
|
|
847
852
|
declare class JobSkill extends BaseEntity {
|
package/dist/index.js
CHANGED
|
@@ -1429,6 +1429,7 @@ var import_class_validator39 = require("class-validator");
|
|
|
1429
1429
|
var NatureOfWorkDto = /* @__PURE__ */ ((NatureOfWorkDto2) => {
|
|
1430
1430
|
NatureOfWorkDto2["FULLTIME"] = "FULLTIME";
|
|
1431
1431
|
NatureOfWorkDto2["FREELANCE"] = "FREELANCE";
|
|
1432
|
+
NatureOfWorkDto2["FTE"] = "FTE";
|
|
1432
1433
|
return NatureOfWorkDto2;
|
|
1433
1434
|
})(NatureOfWorkDto || {});
|
|
1434
1435
|
var ModeOfWorkDto = /* @__PURE__ */ ((ModeOfWorkDto2) => {
|
|
@@ -2040,6 +2041,7 @@ var AiAssessmentStatusEnum = /* @__PURE__ */ ((AiAssessmentStatusEnum2) => {
|
|
|
2040
2041
|
return AiAssessmentStatusEnum2;
|
|
2041
2042
|
})(AiAssessmentStatusEnum || {});
|
|
2042
2043
|
var FreelancerProfile = class extends BaseEntity {
|
|
2044
|
+
// stores the positions JSON
|
|
2043
2045
|
};
|
|
2044
2046
|
// individual index to find profile by user
|
|
2045
2047
|
__decorateClass([
|
|
@@ -2193,6 +2195,9 @@ __decorateClass([
|
|
|
2193
2195
|
}
|
|
2194
2196
|
})
|
|
2195
2197
|
], FreelancerProfile.prototype, "profileCompletedPercentage", 2);
|
|
2198
|
+
__decorateClass([
|
|
2199
|
+
(0, import_typeorm8.Column)({ name: "original_document_url", type: "varchar", nullable: true })
|
|
2200
|
+
], FreelancerProfile.prototype, "originalDocumentUrl", 2);
|
|
2196
2201
|
__decorateClass([
|
|
2197
2202
|
(0, import_typeorm8.Column)({
|
|
2198
2203
|
name: "is_service_aggrement_signed",
|
|
@@ -2212,6 +2217,9 @@ __decorateClass([
|
|
|
2212
2217
|
__decorateClass([
|
|
2213
2218
|
(0, import_typeorm8.Column)({ name: "is_followed_on_linkedin", type: "boolean", default: false })
|
|
2214
2219
|
], FreelancerProfile.prototype, "isFollowedOnLinkedIn", 2);
|
|
2220
|
+
__decorateClass([
|
|
2221
|
+
(0, import_typeorm8.Column)({ name: "signature_positions", type: "jsonb", nullable: true })
|
|
2222
|
+
], FreelancerProfile.prototype, "signaturePositions", 2);
|
|
2215
2223
|
FreelancerProfile = __decorateClass([
|
|
2216
2224
|
(0, import_typeorm8.Entity)("freelancer_profiles")
|
|
2217
2225
|
], FreelancerProfile);
|
|
@@ -2247,6 +2255,7 @@ var CompanyOnboardingStepEnum = /* @__PURE__ */ ((CompanyOnboardingStepEnum2) =>
|
|
|
2247
2255
|
return CompanyOnboardingStepEnum2;
|
|
2248
2256
|
})(CompanyOnboardingStepEnum || {});
|
|
2249
2257
|
var CompanyProfile = class extends BaseEntity {
|
|
2258
|
+
// stores the positions JSON
|
|
2250
2259
|
};
|
|
2251
2260
|
// individual index to find company profile by user
|
|
2252
2261
|
__decorateClass([
|
|
@@ -2276,6 +2285,9 @@ __decorateClass([
|
|
|
2276
2285
|
default: false
|
|
2277
2286
|
})
|
|
2278
2287
|
], CompanyProfile.prototype, "isServiceAgreementSigned", 2);
|
|
2288
|
+
__decorateClass([
|
|
2289
|
+
(0, import_typeorm9.Column)({ name: "original_document_url", type: "varchar", nullable: true })
|
|
2290
|
+
], CompanyProfile.prototype, "originalDocumentUrl", 2);
|
|
2279
2291
|
__decorateClass([
|
|
2280
2292
|
(0, import_typeorm9.Column)({ name: "service_agreement_url", type: "varchar", nullable: true })
|
|
2281
2293
|
], CompanyProfile.prototype, "serviceAgreementUrl", 2);
|
|
@@ -2338,6 +2350,9 @@ __decorateClass([
|
|
|
2338
2350
|
nullable: true
|
|
2339
2351
|
})
|
|
2340
2352
|
], CompanyProfile.prototype, "onboardingStepCompleted", 2);
|
|
2353
|
+
__decorateClass([
|
|
2354
|
+
(0, import_typeorm9.Column)({ name: "signature_positions", type: "jsonb", nullable: true })
|
|
2355
|
+
], CompanyProfile.prototype, "signaturePositions", 2);
|
|
2341
2356
|
CompanyProfile = __decorateClass([
|
|
2342
2357
|
(0, import_typeorm9.Entity)("company_profiles")
|
|
2343
2358
|
], CompanyProfile);
|
package/dist/index.mjs
CHANGED
|
@@ -1228,6 +1228,7 @@ import {
|
|
|
1228
1228
|
var NatureOfWorkDto = /* @__PURE__ */ ((NatureOfWorkDto2) => {
|
|
1229
1229
|
NatureOfWorkDto2["FULLTIME"] = "FULLTIME";
|
|
1230
1230
|
NatureOfWorkDto2["FREELANCE"] = "FREELANCE";
|
|
1231
|
+
NatureOfWorkDto2["FTE"] = "FTE";
|
|
1231
1232
|
return NatureOfWorkDto2;
|
|
1232
1233
|
})(NatureOfWorkDto || {});
|
|
1233
1234
|
var ModeOfWorkDto = /* @__PURE__ */ ((ModeOfWorkDto2) => {
|
|
@@ -1910,6 +1911,7 @@ var AiAssessmentStatusEnum = /* @__PURE__ */ ((AiAssessmentStatusEnum2) => {
|
|
|
1910
1911
|
return AiAssessmentStatusEnum2;
|
|
1911
1912
|
})(AiAssessmentStatusEnum || {});
|
|
1912
1913
|
var FreelancerProfile = class extends BaseEntity {
|
|
1914
|
+
// stores the positions JSON
|
|
1913
1915
|
};
|
|
1914
1916
|
// individual index to find profile by user
|
|
1915
1917
|
__decorateClass([
|
|
@@ -2063,6 +2065,9 @@ __decorateClass([
|
|
|
2063
2065
|
}
|
|
2064
2066
|
})
|
|
2065
2067
|
], FreelancerProfile.prototype, "profileCompletedPercentage", 2);
|
|
2068
|
+
__decorateClass([
|
|
2069
|
+
Column8({ name: "original_document_url", type: "varchar", nullable: true })
|
|
2070
|
+
], FreelancerProfile.prototype, "originalDocumentUrl", 2);
|
|
2066
2071
|
__decorateClass([
|
|
2067
2072
|
Column8({
|
|
2068
2073
|
name: "is_service_aggrement_signed",
|
|
@@ -2082,6 +2087,9 @@ __decorateClass([
|
|
|
2082
2087
|
__decorateClass([
|
|
2083
2088
|
Column8({ name: "is_followed_on_linkedin", type: "boolean", default: false })
|
|
2084
2089
|
], FreelancerProfile.prototype, "isFollowedOnLinkedIn", 2);
|
|
2090
|
+
__decorateClass([
|
|
2091
|
+
Column8({ name: "signature_positions", type: "jsonb", nullable: true })
|
|
2092
|
+
], FreelancerProfile.prototype, "signaturePositions", 2);
|
|
2085
2093
|
FreelancerProfile = __decorateClass([
|
|
2086
2094
|
Entity7("freelancer_profiles")
|
|
2087
2095
|
], FreelancerProfile);
|
|
@@ -2117,6 +2125,7 @@ var CompanyOnboardingStepEnum = /* @__PURE__ */ ((CompanyOnboardingStepEnum2) =>
|
|
|
2117
2125
|
return CompanyOnboardingStepEnum2;
|
|
2118
2126
|
})(CompanyOnboardingStepEnum || {});
|
|
2119
2127
|
var CompanyProfile = class extends BaseEntity {
|
|
2128
|
+
// stores the positions JSON
|
|
2120
2129
|
};
|
|
2121
2130
|
// individual index to find company profile by user
|
|
2122
2131
|
__decorateClass([
|
|
@@ -2146,6 +2155,9 @@ __decorateClass([
|
|
|
2146
2155
|
default: false
|
|
2147
2156
|
})
|
|
2148
2157
|
], CompanyProfile.prototype, "isServiceAgreementSigned", 2);
|
|
2158
|
+
__decorateClass([
|
|
2159
|
+
Column9({ name: "original_document_url", type: "varchar", nullable: true })
|
|
2160
|
+
], CompanyProfile.prototype, "originalDocumentUrl", 2);
|
|
2149
2161
|
__decorateClass([
|
|
2150
2162
|
Column9({ name: "service_agreement_url", type: "varchar", nullable: true })
|
|
2151
2163
|
], CompanyProfile.prototype, "serviceAgreementUrl", 2);
|
|
@@ -2208,6 +2220,9 @@ __decorateClass([
|
|
|
2208
2220
|
nullable: true
|
|
2209
2221
|
})
|
|
2210
2222
|
], CompanyProfile.prototype, "onboardingStepCompleted", 2);
|
|
2223
|
+
__decorateClass([
|
|
2224
|
+
Column9({ name: "signature_positions", type: "jsonb", nullable: true })
|
|
2225
|
+
], CompanyProfile.prototype, "signaturePositions", 2);
|
|
2211
2226
|
CompanyProfile = __decorateClass([
|
|
2212
2227
|
Entity8("company_profiles")
|
|
2213
2228
|
], CompanyProfile);
|