@experts_hub/shared 1.0.596 → 1.0.598

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.
@@ -10,7 +10,7 @@ export declare enum ContractTypeEnumDto {
10
10
  MSA = "MSA"
11
11
  }
12
12
  export declare class GenerateContractDto {
13
- jobId: string;
13
+ jobId: number;
14
14
  freelancerId: number;
15
15
  contractType?: ContractTypeEnumDto;
16
16
  contractStartDate?: string;
@@ -5,7 +5,7 @@ export declare class CustomQuestionItemDto {
5
5
  export declare class AiQuestionItemDto {
6
6
  uuid?: string;
7
7
  question: string;
8
- concepts?: string;
8
+ concepts?: string[];
9
9
  }
10
10
  export declare class CreateInterviewQuestionsDto {
11
11
  questions?: CustomQuestionItemDto[];
@@ -1,4 +1,7 @@
1
- import { AccountType } from "../../../../entities/user.entity";
1
+ declare enum AccountType {
2
+ ADMIN = "ADMIN",
3
+ SUB_ADMIN = "SUB_ADMIN"
4
+ }
2
5
  export declare class CreateSubAdminDto {
3
6
  userName: string;
4
7
  firstName: string;
@@ -10,3 +13,4 @@ export declare class CreateSubAdminDto {
10
13
  password: string;
11
14
  roleIds: string;
12
15
  }
16
+ export {};
@@ -1,4 +1,7 @@
1
- import { AccountType } from '../../../../entities/user.entity';
1
+ declare enum AccountType {
2
+ ADMIN = "ADMIN",
3
+ SUB_ADMIN = "SUB_ADMIN"
4
+ }
2
5
  export declare class UpdateSubAdminDto {
3
6
  userName: string;
4
7
  firstName: string;
@@ -10,3 +13,4 @@ export declare class UpdateSubAdminDto {
10
13
  password?: string;
11
14
  roleIds: string;
12
15
  }
16
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.596",
3
+ "version": "1.0.598",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",