@experts_hub/shared 1.0.68 → 1.0.70

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,5 +3,6 @@ export * from './otp';
3
3
  export * from './onboarding';
4
4
  export * from './resume-parser';
5
5
  export * from './user/subadmin';
6
+ export * from './user/client-profile';
6
7
  export * from './question';
7
8
  export * from './job';
@@ -0,0 +1,40 @@
1
+ export interface IFetchClientProfileQuery {
2
+ page_size?: number;
3
+ page: number;
4
+ searchText?: string;
5
+ companyName: string;
6
+ right: string;
7
+ sortColumn?: string;
8
+ sortBy?: string;
9
+ }
10
+ export interface IFetchClientProfileResponse {
11
+ statusCode: number;
12
+ status: boolean;
13
+ message: string;
14
+ data: any;
15
+ }
16
+ export interface IUpdateClientProfilePayload {
17
+ userId?: number;
18
+ companyName?: string;
19
+ bio?: string;
20
+ rating?: number;
21
+ agreement?: string;
22
+ skills?: string[];
23
+ requiredFreelancer?: string;
24
+ kindOfHiring?: string;
25
+ modeOfHire?: string;
26
+ foundUsOn?: string;
27
+ }
28
+ export interface IUpdateClientProfileResponse {
29
+ statusCode: number;
30
+ status: boolean;
31
+ message: string;
32
+ }
33
+ export interface IUpdateClientLogoPayload {
34
+ logo: string;
35
+ }
36
+ export interface IUpdateClientLogoResponse {
37
+ statusCode: number;
38
+ status: boolean;
39
+ message: string;
40
+ }
@@ -0,0 +1,2 @@
1
+ export * from '../dto/update-client-profile.dto';
2
+ export * from '../dto/update-client-logo.dto';
@@ -0,0 +1,3 @@
1
+ export declare class UpdateCompanyLogoDto {
2
+ logo: string;
3
+ }
@@ -0,0 +1,13 @@
1
+ import { KindOfHire, ModeOfHire, FromUsOn } from '../../../../entities/company-profile.entity';
2
+ export declare class UpdateCompanyProfileDto {
3
+ userId?: number;
4
+ companyName?: string;
5
+ bio?: string;
6
+ rating?: number;
7
+ agreement?: string;
8
+ skills?: string[];
9
+ requiredFreelancer?: string;
10
+ kindOfHiring?: KindOfHire;
11
+ modeOfHire?: ModeOfHire;
12
+ foundUsOn?: FromUsOn;
13
+ }
@@ -0,0 +1,3 @@
1
+ export * from './pattern/pattern';
2
+ export * from './dto';
3
+ export * from './client-profile.interface';
@@ -0,0 +1,5 @@
1
+ export declare const CLIENT_PROFILE_PATTERN: {
2
+ fetchClientProfile: string;
3
+ updateClientProfile: string;
4
+ updateClientLogo: string;
5
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.68",
3
+ "version": "1.0.70",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",