@experts_hub/shared 1.0.287 → 1.0.288
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/freelancer-profile.entity.d.ts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +7 -0
- package/dist/index.mjs +7 -0
- package/package.json +1 -1
|
@@ -66,6 +66,7 @@ export declare class FreelancerProfile extends BaseEntity {
|
|
|
66
66
|
address: string;
|
|
67
67
|
about: string;
|
|
68
68
|
profileCompletedPercentage: Record<string, number>;
|
|
69
|
+
isServiceAgreementSigned: boolean;
|
|
69
70
|
serviceAgreementUrl: string;
|
|
70
71
|
serviceAggrementSignedOn: Date;
|
|
71
72
|
isExpertshubVerified: boolean;
|
package/dist/index.d.mts
CHANGED
|
@@ -733,6 +733,7 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
733
733
|
address: string;
|
|
734
734
|
about: string;
|
|
735
735
|
profileCompletedPercentage: Record<string, number>;
|
|
736
|
+
isServiceAgreementSigned: boolean;
|
|
736
737
|
serviceAgreementUrl: string;
|
|
737
738
|
serviceAggrementSignedOn: Date;
|
|
738
739
|
isExpertshubVerified: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -733,6 +733,7 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
733
733
|
address: string;
|
|
734
734
|
about: string;
|
|
735
735
|
profileCompletedPercentage: Record<string, number>;
|
|
736
|
+
isServiceAgreementSigned: boolean;
|
|
736
737
|
serviceAgreementUrl: string;
|
|
737
738
|
serviceAggrementSignedOn: Date;
|
|
738
739
|
isExpertshubVerified: boolean;
|
package/dist/index.js
CHANGED
|
@@ -1942,6 +1942,13 @@ __decorateClass([
|
|
|
1942
1942
|
}
|
|
1943
1943
|
})
|
|
1944
1944
|
], FreelancerProfile.prototype, "profileCompletedPercentage", 2);
|
|
1945
|
+
__decorateClass([
|
|
1946
|
+
(0, import_typeorm8.Column)({
|
|
1947
|
+
name: "is_service_aggrement_signed",
|
|
1948
|
+
type: "boolean",
|
|
1949
|
+
default: false
|
|
1950
|
+
})
|
|
1951
|
+
], FreelancerProfile.prototype, "isServiceAgreementSigned", 2);
|
|
1945
1952
|
__decorateClass([
|
|
1946
1953
|
(0, import_typeorm8.Column)({ name: "service_agreement_url", type: "varchar", nullable: true })
|
|
1947
1954
|
], FreelancerProfile.prototype, "serviceAgreementUrl", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -1886,6 +1886,13 @@ __decorateClass([
|
|
|
1886
1886
|
}
|
|
1887
1887
|
})
|
|
1888
1888
|
], FreelancerProfile.prototype, "profileCompletedPercentage", 2);
|
|
1889
|
+
__decorateClass([
|
|
1890
|
+
Column8({
|
|
1891
|
+
name: "is_service_aggrement_signed",
|
|
1892
|
+
type: "boolean",
|
|
1893
|
+
default: false
|
|
1894
|
+
})
|
|
1895
|
+
], FreelancerProfile.prototype, "isServiceAgreementSigned", 2);
|
|
1889
1896
|
__decorateClass([
|
|
1890
1897
|
Column8({ name: "service_agreement_url", type: "varchar", nullable: true })
|
|
1891
1898
|
], FreelancerProfile.prototype, "serviceAgreementUrl", 2);
|