@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.
@@ -3,3 +3,4 @@ export * from './refresh.dto';
3
3
  export * from './logout.dto';
4
4
  export * from './forgot-password.dto';
5
5
  export * from './reset-password.dto';
6
+ export * from './set-password.dto';
@@ -0,0 +1,4 @@
1
+ export declare class SetPasswordDto {
2
+ token: string;
3
+ password: string;
4
+ }
@@ -8,4 +8,5 @@ export declare const AUTHENTICATION_PATTERN: {
8
8
  revokeSession: string;
9
9
  handleForgotPassword: string;
10
10
  handleResetPassword: string;
11
+ handleSetPassword: string;
11
12
  };
@@ -25,6 +25,7 @@ export interface IFetchCompanyMemberByIdResponse {
25
25
  export interface ICreateCompanyMemberPayload {
26
26
  name: string;
27
27
  email: string;
28
+ companyRoleId: number;
28
29
  }
29
30
  export interface ICreateCompanyMemberResponse {
30
31
  statusCode: number;
@@ -1,4 +1,5 @@
1
1
  export declare const OTP_PATTERN: {
2
+ handleGuestSendOtp: string;
2
3
  handleSendOtp: string;
3
4
  handleVerifyOtp: string;
4
5
  };
@@ -1,2 +1 @@
1
1
  export * from './update-freelancer-project.dto';
2
- export * from './update-freelancer-casestudy.dto';
@@ -1,12 +1,19 @@
1
- export declare class UpdateProjectDto {
1
+ export declare class CreateProjectDto {
2
2
  uuid?: string;
3
3
  projectName: string;
4
4
  startDate: string;
5
5
  endDate: string;
6
- clientName: string;
7
- gitLink: string;
8
- description: string;
6
+ clientName?: string;
7
+ gitLink?: string;
8
+ description?: string;
9
9
  }
10
- export declare class UpdateFreelancerProjectDto {
11
- project: UpdateProjectDto[];
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
- updateFreelancerProject: string;
4
- };
5
- export declare const FREELANCER_CASESTUDY_PATTERN: {
6
- fetchFreelancerCaseStudy: string;
7
- updateFreelancerCaseStudy: string;
3
+ createFreelancerProject: string;
8
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.146",
3
+ "version": "1.0.148",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -1,9 +0,0 @@
1
- export declare class UpdateCaseStudyDto {
2
- uuid?: string;
3
- projectName: string;
4
- CaseStudyLink: string;
5
- description: string;
6
- }
7
- export declare class UpdateFreelancerCaseStudyDto {
8
- casestudy: UpdateCaseStudyDto[];
9
- }