@experts_hub/shared 1.0.636 → 1.0.637

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.
@@ -2,3 +2,4 @@ export * from './create-client.dto';
2
2
  export * from './update-client-status.dto';
3
3
  export * from './update-client.dto';
4
4
  export * from './admin-export-clientV2-optimised.dto';
5
+ export * from './update-admin-client-account-status.dto';
@@ -0,0 +1,4 @@
1
+ import { AccountStatus } from '../../../entities/user.entity';
2
+ export declare class UpdateAdminClientAccountStatusDto {
3
+ accountStatus: AccountStatus;
4
+ }
@@ -9,4 +9,5 @@ export declare const CLIENT_ADMIN_PATTERNS: {
9
9
  fetchClientDropdown: string;
10
10
  fetchClientGraphCount: string;
11
11
  adminExportClientV2Optimised: string;
12
+ updateAdminClientAccountStatus: string;
12
13
  };
@@ -18,4 +18,7 @@ export declare const ADMIN_FREELANCER_PATTERN: {
18
18
  fetchAIassessmentsForAdmin: string;
19
19
  fetchAiAssessmentRequestsForAdmin: string;
20
20
  updateAssessmentRequestStatus: string;
21
+ fetchAIassessmentResultForFreelancerAdmin: string;
22
+ deleteAIassessmentForAdminFreelancer: string;
23
+ fetchAppliedJobsOfAdminFreelancer: string;
21
24
  };
@@ -1,3 +1,3 @@
1
1
  export * from '../dto/create-subadmin.dto';
2
- export * from './update-subadmin-status.dto';
2
+ export * from './update-subadmin-account-status.dto';
3
3
  export * from '../dto/update-subadmin.dto';
@@ -0,0 +1,4 @@
1
+ import { AccountStatus } from '../../../../entities/user.entity';
2
+ export declare class UpdateSubAdminAccountStatusDto {
3
+ accountStatus: AccountStatus;
4
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.636",
3
+ "version": "1.0.637",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -1,3 +0,0 @@
1
- export declare class UpdateSubAdminAccountStatusDto {
2
- accountStatus: string;
3
- }