@experts_hub/shared 1.0.146 → 1.0.148
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-casestudy.entity.d.ts +1 -1
- package/dist/index.d.mts +21 -20
- package/dist/index.d.ts +21 -20
- package/dist/index.js +349 -341
- package/dist/index.mjs +226 -212
- package/dist/modules/authentication/dto/index.d.ts +1 -0
- package/dist/modules/authentication/dto/set-password.dto.d.ts +4 -0
- package/dist/modules/authentication/pattern/pattern.d.ts +1 -0
- package/dist/modules/company-member/company-member.interface.d.ts +1 -0
- package/dist/modules/otp/pattern/pattern.d.ts +1 -0
- package/dist/modules/user/freelancer-project/dto/index.d.ts +0 -1
- package/dist/modules/user/freelancer-project/dto/update-freelancer-project.dto.d.ts +13 -6
- package/dist/modules/user/freelancer-project/pattern/pattern.d.ts +1 -5
- package/package.json +1 -1
- package/dist/modules/user/freelancer-project/dto/update-freelancer-casestudy.dto.d.ts +0 -9
|
@@ -1,12 +1,19 @@
|
|
|
1
|
-
export declare class
|
|
1
|
+
export declare class CreateProjectDto {
|
|
2
2
|
uuid?: string;
|
|
3
3
|
projectName: string;
|
|
4
4
|
startDate: string;
|
|
5
5
|
endDate: string;
|
|
6
|
-
clientName
|
|
7
|
-
gitLink
|
|
8
|
-
description
|
|
6
|
+
clientName?: string;
|
|
7
|
+
gitLink?: string;
|
|
8
|
+
description?: string;
|
|
9
9
|
}
|
|
10
|
-
export declare class
|
|
11
|
-
|
|
10
|
+
export declare class CreateCaseStudyDto {
|
|
11
|
+
uuid?: string;
|
|
12
|
+
projectName: string;
|
|
13
|
+
caseStudyLink: string;
|
|
14
|
+
description?: string;
|
|
15
|
+
}
|
|
16
|
+
export declare class CreateFreelancerProjectDto {
|
|
17
|
+
project: CreateProjectDto[];
|
|
18
|
+
casestudy: CreateCaseStudyDto[];
|
|
12
19
|
}
|
|
@@ -1,8 +1,4 @@
|
|
|
1
1
|
export declare const FREELANCER_PROJECT_PATTERN: {
|
|
2
2
|
fetchFreelancerProject: string;
|
|
3
|
-
|
|
4
|
-
};
|
|
5
|
-
export declare const FREELANCER_CASESTUDY_PATTERN: {
|
|
6
|
-
fetchFreelancerCaseStudy: string;
|
|
7
|
-
updateFreelancerCaseStudy: string;
|
|
3
|
+
createFreelancerProject: string;
|
|
8
4
|
};
|
package/package.json
CHANGED