@experts_hub/shared 1.0.220 → 1.0.221
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.
|
@@ -28,6 +28,8 @@ export declare class CompanyProfile extends BaseEntity {
|
|
|
28
28
|
webSite: string;
|
|
29
29
|
aboutCompany: string;
|
|
30
30
|
isServiceAgreementSigned: boolean;
|
|
31
|
+
serviceAgreementUrl: string;
|
|
32
|
+
serviceAggrementSignedOn: Date;
|
|
31
33
|
companyAddress: string;
|
|
32
34
|
phoneNumber: string;
|
|
33
35
|
skills: string[];
|
package/dist/index.d.mts
CHANGED
|
@@ -281,6 +281,7 @@ declare const CLIENT_PROFILE_PATTERN: {
|
|
|
281
281
|
updateClientProfile: string;
|
|
282
282
|
updateClientLogo: string;
|
|
283
283
|
changeClientPassword: string;
|
|
284
|
+
uploadClientServiceAgreement: string;
|
|
284
285
|
};
|
|
285
286
|
|
|
286
287
|
declare class UpdateCompanyProfileDto {
|
|
@@ -673,6 +674,8 @@ declare class CompanyProfile extends BaseEntity {
|
|
|
673
674
|
webSite: string;
|
|
674
675
|
aboutCompany: string;
|
|
675
676
|
isServiceAgreementSigned: boolean;
|
|
677
|
+
serviceAgreementUrl: string;
|
|
678
|
+
serviceAggrementSignedOn: Date;
|
|
676
679
|
companyAddress: string;
|
|
677
680
|
phoneNumber: string;
|
|
678
681
|
skills: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -281,6 +281,7 @@ declare const CLIENT_PROFILE_PATTERN: {
|
|
|
281
281
|
updateClientProfile: string;
|
|
282
282
|
updateClientLogo: string;
|
|
283
283
|
changeClientPassword: string;
|
|
284
|
+
uploadClientServiceAgreement: string;
|
|
284
285
|
};
|
|
285
286
|
|
|
286
287
|
declare class UpdateCompanyProfileDto {
|
|
@@ -673,6 +674,8 @@ declare class CompanyProfile extends BaseEntity {
|
|
|
673
674
|
webSite: string;
|
|
674
675
|
aboutCompany: string;
|
|
675
676
|
isServiceAgreementSigned: boolean;
|
|
677
|
+
serviceAgreementUrl: string;
|
|
678
|
+
serviceAggrementSignedOn: Date;
|
|
676
679
|
companyAddress: string;
|
|
677
680
|
phoneNumber: string;
|
|
678
681
|
skills: string[];
|
package/dist/index.js
CHANGED
|
@@ -740,7 +740,8 @@ var CLIENT_PROFILE_PATTERN = {
|
|
|
740
740
|
fetchClientProfile: "fetch.client.profile",
|
|
741
741
|
updateClientProfile: "update.client.profile",
|
|
742
742
|
updateClientLogo: "update.client.logo",
|
|
743
|
-
changeClientPassword: "change.client.password"
|
|
743
|
+
changeClientPassword: "change.client.password",
|
|
744
|
+
uploadClientServiceAgreement: "upload.client.service.agreement"
|
|
744
745
|
};
|
|
745
746
|
|
|
746
747
|
// src/modules/user/client-profile/dto/update-client-profile.dto.ts
|
|
@@ -1534,6 +1535,12 @@ __decorateClass([
|
|
|
1534
1535
|
default: false
|
|
1535
1536
|
})
|
|
1536
1537
|
], CompanyProfile.prototype, "isServiceAgreementSigned", 2);
|
|
1538
|
+
__decorateClass([
|
|
1539
|
+
(0, import_typeorm6.Column)({ name: "service_agreement_url", type: "varchar", nullable: true })
|
|
1540
|
+
], CompanyProfile.prototype, "serviceAgreementUrl", 2);
|
|
1541
|
+
__decorateClass([
|
|
1542
|
+
(0, import_typeorm6.Column)({ name: "service_agreement_signed_on", type: "date", nullable: true })
|
|
1543
|
+
], CompanyProfile.prototype, "serviceAggrementSignedOn", 2);
|
|
1537
1544
|
__decorateClass([
|
|
1538
1545
|
(0, import_typeorm6.Column)({ name: "company_address", type: "varchar", nullable: true })
|
|
1539
1546
|
], CompanyProfile.prototype, "companyAddress", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -586,7 +586,8 @@ var CLIENT_PROFILE_PATTERN = {
|
|
|
586
586
|
fetchClientProfile: "fetch.client.profile",
|
|
587
587
|
updateClientProfile: "update.client.profile",
|
|
588
588
|
updateClientLogo: "update.client.logo",
|
|
589
|
-
changeClientPassword: "change.client.password"
|
|
589
|
+
changeClientPassword: "change.client.password",
|
|
590
|
+
uploadClientServiceAgreement: "upload.client.service.agreement"
|
|
590
591
|
};
|
|
591
592
|
|
|
592
593
|
// src/modules/user/client-profile/dto/update-client-profile.dto.ts
|
|
@@ -1471,6 +1472,12 @@ __decorateClass([
|
|
|
1471
1472
|
default: false
|
|
1472
1473
|
})
|
|
1473
1474
|
], CompanyProfile.prototype, "isServiceAgreementSigned", 2);
|
|
1475
|
+
__decorateClass([
|
|
1476
|
+
Column6({ name: "service_agreement_url", type: "varchar", nullable: true })
|
|
1477
|
+
], CompanyProfile.prototype, "serviceAgreementUrl", 2);
|
|
1478
|
+
__decorateClass([
|
|
1479
|
+
Column6({ name: "service_agreement_signed_on", type: "date", nullable: true })
|
|
1480
|
+
], CompanyProfile.prototype, "serviceAggrementSignedOn", 2);
|
|
1474
1481
|
__decorateClass([
|
|
1475
1482
|
Column6({ name: "company_address", type: "varchar", nullable: true })
|
|
1476
1483
|
], CompanyProfile.prototype, "companyAddress", 2);
|