@experts_hub/shared 1.0.85 → 1.0.88
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/decorators/match.decorator.d.ts +6 -1
- package/dist/entities/bank-details.entity.d.ts +27 -0
- package/dist/entities/index.d.ts +1 -0
- package/dist/entities/job-entity.d.ts +6 -6
- package/dist/entities/user.entity.d.ts +2 -0
- package/dist/index.d.mts +99 -7
- package/dist/index.d.ts +99 -7
- package/dist/index.js +396 -92
- package/dist/index.mjs +404 -93
- package/dist/modules/bank/dto/freelancer-bank-details.dto.d.ts +14 -0
- package/dist/modules/bank/dto/index.d.ts +1 -0
- package/dist/modules/bank/index.d.ts +2 -0
- package/dist/modules/bank/pattern/pattern.d.ts +3 -0
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/job/dto/index.d.ts +5 -0
- package/dist/modules/job/dto/job-additional-comment.dto.d.ts +3 -0
- package/dist/modules/job/dto/job-basic-information.dto.d.ts +22 -0
- package/dist/modules/job/dto/job-description.dto.d.ts +3 -0
- package/dist/modules/job/dto/job-id-param.dto.d.ts +3 -0
- package/dist/modules/job/dto/job-status.dto.d.ts +10 -0
- package/dist/modules/job/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
import { ValidationOptions } from "class-validator";
|
|
1
|
+
import { ValidationArguments, ValidationOptions, ValidatorConstraintInterface } from "class-validator";
|
|
2
2
|
export declare function Match(property: string, validationOptions?: ValidationOptions): (object: any, propertyName: string) => void;
|
|
3
|
+
export declare class IfscOrOtherFieldsConstraint implements ValidatorConstraintInterface {
|
|
4
|
+
validate(value: any, args: ValidationArguments): any;
|
|
5
|
+
defaultMessage(args: ValidationArguments): string;
|
|
6
|
+
}
|
|
7
|
+
export declare function IfscOrOtherFields(relatedFields: string[], validationOptions?: ValidationOptions): (object: Object, propertyName: string) => void;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { BaseEntity } from "./base.entity";
|
|
2
|
+
import { User } from "./user.entity";
|
|
3
|
+
export declare enum BankAccountType {
|
|
4
|
+
PRIMARY = "PRIMARY",
|
|
5
|
+
SECONDARY = "SECONDARY"
|
|
6
|
+
}
|
|
7
|
+
export declare enum BankAccountScope {
|
|
8
|
+
DOMESTIC = "domestic",
|
|
9
|
+
INTERNATIONAL = "international"
|
|
10
|
+
}
|
|
11
|
+
export declare class bankDetails extends BaseEntity {
|
|
12
|
+
userId: number;
|
|
13
|
+
user: User;
|
|
14
|
+
name: string;
|
|
15
|
+
mobile: string;
|
|
16
|
+
email: string;
|
|
17
|
+
address: string;
|
|
18
|
+
accountNumber: string;
|
|
19
|
+
bankName: string;
|
|
20
|
+
ifscCode: string;
|
|
21
|
+
branchName: string;
|
|
22
|
+
routingNo: string;
|
|
23
|
+
abaNumber: string;
|
|
24
|
+
iban: string;
|
|
25
|
+
accountType: BankAccountType;
|
|
26
|
+
accountScope: BankAccountScope;
|
|
27
|
+
}
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { BaseEntity } from "./base.entity";
|
|
2
2
|
import { User } from "./user.entity";
|
|
3
3
|
import { JobSkill } from "./job-skill.entity";
|
|
4
|
-
export declare enum
|
|
4
|
+
export declare enum JobLocationEnum {
|
|
5
5
|
ONSITE = "ONSITE",
|
|
6
6
|
REMOTE = "REMOTE",
|
|
7
7
|
BOTH = "BOTH"
|
|
8
8
|
}
|
|
9
|
-
export declare enum
|
|
9
|
+
export declare enum TypeOfEmploymentEnum {
|
|
10
10
|
FULLTIME = "FULLTIME",
|
|
11
11
|
PARTTIME = "PARTTIME",
|
|
12
12
|
BOTH = "BOTH"
|
|
@@ -16,7 +16,7 @@ export declare enum Step {
|
|
|
16
16
|
ADDITIONAL_COMMENTS = "ADDITIONAL_COMMENTS",
|
|
17
17
|
JOB_DESCRIPTION = "JOB_DESCRIPTION"
|
|
18
18
|
}
|
|
19
|
-
export declare enum
|
|
19
|
+
export declare enum JobStatusEnum {
|
|
20
20
|
ACTIVE = "ACTIVE",
|
|
21
21
|
OPEN = "OPEN",
|
|
22
22
|
DRAFT = "DRAFT",
|
|
@@ -30,8 +30,8 @@ export declare class Job extends BaseEntity {
|
|
|
30
30
|
jobRole: string;
|
|
31
31
|
note: string;
|
|
32
32
|
openings: number;
|
|
33
|
-
location:
|
|
34
|
-
typeOfEmployment:
|
|
33
|
+
location: JobLocationEnum;
|
|
34
|
+
typeOfEmployment: TypeOfEmploymentEnum;
|
|
35
35
|
currency: string;
|
|
36
36
|
expectedSalaryFrom: number;
|
|
37
37
|
expectedSalaryTo: number;
|
|
@@ -40,6 +40,6 @@ export declare class Job extends BaseEntity {
|
|
|
40
40
|
onboardingTat: string;
|
|
41
41
|
candidateCommunicationSkills: string;
|
|
42
42
|
stepCompleted: Step;
|
|
43
|
-
status:
|
|
43
|
+
status: JobStatusEnum;
|
|
44
44
|
jobSkills: JobSkill[];
|
|
45
45
|
}
|
|
@@ -5,6 +5,7 @@ import { Otp } from "./otp.entity";
|
|
|
5
5
|
import { FreelancerProfile } from "./freelancer-profile.entity";
|
|
6
6
|
import { CompanyProfile } from "./company-profile.entity";
|
|
7
7
|
import { Job } from "./job-entity";
|
|
8
|
+
import { bankDetails } from "./bank-details.entity";
|
|
8
9
|
export declare enum AccountType {
|
|
9
10
|
ADMIN = "ADMIN",
|
|
10
11
|
SUB_ADMIN = "SUB_ADMIN",
|
|
@@ -41,4 +42,5 @@ export declare class User extends BaseEntity {
|
|
|
41
42
|
freelancerProfile: FreelancerProfile;
|
|
42
43
|
companyProfile: CompanyProfile;
|
|
43
44
|
jobs: Job[];
|
|
45
|
+
bankDetails: bankDetails[];
|
|
44
46
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -303,12 +303,12 @@ declare class JobSkill extends BaseEntity {
|
|
|
303
303
|
skill: Skill;
|
|
304
304
|
}
|
|
305
305
|
|
|
306
|
-
declare enum
|
|
306
|
+
declare enum JobLocationEnum {
|
|
307
307
|
ONSITE = "ONSITE",
|
|
308
308
|
REMOTE = "REMOTE",
|
|
309
309
|
BOTH = "BOTH"
|
|
310
310
|
}
|
|
311
|
-
declare enum
|
|
311
|
+
declare enum TypeOfEmploymentEnum {
|
|
312
312
|
FULLTIME = "FULLTIME",
|
|
313
313
|
PARTTIME = "PARTTIME",
|
|
314
314
|
BOTH = "BOTH"
|
|
@@ -318,7 +318,7 @@ declare enum Step {
|
|
|
318
318
|
ADDITIONAL_COMMENTS = "ADDITIONAL_COMMENTS",
|
|
319
319
|
JOB_DESCRIPTION = "JOB_DESCRIPTION"
|
|
320
320
|
}
|
|
321
|
-
declare enum
|
|
321
|
+
declare enum JobStatusEnum {
|
|
322
322
|
ACTIVE = "ACTIVE",
|
|
323
323
|
OPEN = "OPEN",
|
|
324
324
|
DRAFT = "DRAFT",
|
|
@@ -332,8 +332,8 @@ declare class Job extends BaseEntity {
|
|
|
332
332
|
jobRole: string;
|
|
333
333
|
note: string;
|
|
334
334
|
openings: number;
|
|
335
|
-
location:
|
|
336
|
-
typeOfEmployment:
|
|
335
|
+
location: JobLocationEnum;
|
|
336
|
+
typeOfEmployment: TypeOfEmploymentEnum;
|
|
337
337
|
currency: string;
|
|
338
338
|
expectedSalaryFrom: number;
|
|
339
339
|
expectedSalaryTo: number;
|
|
@@ -342,10 +342,36 @@ declare class Job extends BaseEntity {
|
|
|
342
342
|
onboardingTat: string;
|
|
343
343
|
candidateCommunicationSkills: string;
|
|
344
344
|
stepCompleted: Step;
|
|
345
|
-
status:
|
|
345
|
+
status: JobStatusEnum;
|
|
346
346
|
jobSkills: JobSkill[];
|
|
347
347
|
}
|
|
348
348
|
|
|
349
|
+
declare enum BankAccountType {
|
|
350
|
+
PRIMARY = "PRIMARY",
|
|
351
|
+
SECONDARY = "SECONDARY"
|
|
352
|
+
}
|
|
353
|
+
declare enum BankAccountScope {
|
|
354
|
+
DOMESTIC = "domestic",
|
|
355
|
+
INTERNATIONAL = "international"
|
|
356
|
+
}
|
|
357
|
+
declare class bankDetails extends BaseEntity {
|
|
358
|
+
userId: number;
|
|
359
|
+
user: User;
|
|
360
|
+
name: string;
|
|
361
|
+
mobile: string;
|
|
362
|
+
email: string;
|
|
363
|
+
address: string;
|
|
364
|
+
accountNumber: string;
|
|
365
|
+
bankName: string;
|
|
366
|
+
ifscCode: string;
|
|
367
|
+
branchName: string;
|
|
368
|
+
routingNo: string;
|
|
369
|
+
abaNumber: string;
|
|
370
|
+
iban: string;
|
|
371
|
+
accountType: BankAccountType;
|
|
372
|
+
accountScope: BankAccountScope;
|
|
373
|
+
}
|
|
374
|
+
|
|
349
375
|
declare enum AccountType {
|
|
350
376
|
ADMIN = "ADMIN",
|
|
351
377
|
SUB_ADMIN = "SUB_ADMIN",
|
|
@@ -382,6 +408,7 @@ declare class User extends BaseEntity {
|
|
|
382
408
|
freelancerProfile: FreelancerProfile;
|
|
383
409
|
companyProfile: CompanyProfile;
|
|
384
410
|
jobs: Job[];
|
|
411
|
+
bankDetails: bankDetails[];
|
|
385
412
|
}
|
|
386
413
|
|
|
387
414
|
declare enum KindOfHire {
|
|
@@ -523,6 +550,52 @@ declare const JOB_ROLE_PATTERN: {
|
|
|
523
550
|
fetchJobRolesForDropdown: string;
|
|
524
551
|
};
|
|
525
552
|
|
|
553
|
+
declare enum JobLocation {
|
|
554
|
+
ONSITE = "ONSITE",
|
|
555
|
+
REMOTE = "REMOTE",
|
|
556
|
+
BOTH = "BOTH"
|
|
557
|
+
}
|
|
558
|
+
declare enum EmploymentType {
|
|
559
|
+
FULLTIME = "FULLTIME",
|
|
560
|
+
PARTTIME = "PARTTIME",
|
|
561
|
+
BOTH = "BOTH"
|
|
562
|
+
}
|
|
563
|
+
declare class JobBasicInformationDto {
|
|
564
|
+
jobRole: string;
|
|
565
|
+
note?: string;
|
|
566
|
+
skills: number[];
|
|
567
|
+
openings: number;
|
|
568
|
+
location: JobLocation;
|
|
569
|
+
typeOfEmployment: EmploymentType;
|
|
570
|
+
expectedSalaryFrom: number;
|
|
571
|
+
expectedSalaryTo: number;
|
|
572
|
+
onboardingTat?: string;
|
|
573
|
+
candidateCommunicationSkills?: string;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
declare class JobAdditionalCommentDto {
|
|
577
|
+
additionalComment?: string;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
declare class JobDescriptionDto {
|
|
581
|
+
description: string;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
declare enum JobStatus {
|
|
585
|
+
ACTIVE = "ACTIVE",
|
|
586
|
+
OPEN = "OPEN",
|
|
587
|
+
DRAFT = "DRAFT",
|
|
588
|
+
ONHOLD = "ONHOLD",
|
|
589
|
+
CLOSED = "CLOSED"
|
|
590
|
+
}
|
|
591
|
+
declare class UpdateJobStatusDto {
|
|
592
|
+
status: JobStatus;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
declare class JobIdParamDto {
|
|
596
|
+
id: string;
|
|
597
|
+
}
|
|
598
|
+
|
|
526
599
|
declare const PROFILE_PATTERN: {
|
|
527
600
|
fetchFreelancerProfile: string;
|
|
528
601
|
changeFreelancerPassword: string;
|
|
@@ -534,6 +607,25 @@ declare class FreelancerChangePasswordDto {
|
|
|
534
607
|
newPassword: string;
|
|
535
608
|
}
|
|
536
609
|
|
|
610
|
+
declare const BANK_PATTERN: {
|
|
611
|
+
addFreelancerBankDetails: string;
|
|
612
|
+
};
|
|
613
|
+
|
|
614
|
+
declare class FreelancerBankDetailsDto {
|
|
615
|
+
name: string;
|
|
616
|
+
mobile: string;
|
|
617
|
+
email: string;
|
|
618
|
+
address: string;
|
|
619
|
+
accountNumber: string;
|
|
620
|
+
bankName: string;
|
|
621
|
+
branchName: string;
|
|
622
|
+
ifscCode: string;
|
|
623
|
+
routingNo: string;
|
|
624
|
+
abaNumber: string;
|
|
625
|
+
iban: string;
|
|
626
|
+
accountType: string;
|
|
627
|
+
}
|
|
628
|
+
|
|
537
629
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
538
630
|
|
|
539
631
|
declare const JobTCPAdapter: () => MicroserviceOptions;
|
|
@@ -566,4 +658,4 @@ declare class JobRoles extends BaseEntity {
|
|
|
566
658
|
isActive: boolean;
|
|
567
659
|
}
|
|
568
660
|
|
|
569
|
-
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, BaseEntity, CLIENT_PROFILE_PATTERN, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, CompanyProfile, CreateQuestionDto, CreateSubAdminDto, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDevelopmentPreferenceDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAttachPermissionsToSubAdminResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, JOB_ROLE_PATTERN, Job, JobLocation, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobTCPAdapter, KindOfHire, LoginDto, LogoutDto, ModeOfHire, ModeOfWork, NatureOfWork, ONBOARDING_PATTERN, OTP_PATTERN, Otp, PROFILE_PATTERN, QUESTION_PATTERN, Question, QuestionFor, RESUME_PARSER_PATTERN, RefreshDto, RefreshToken, ResumeParserLog, SUBADMIN_PATTERN, Skill, Step,
|
|
661
|
+
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, BANK_PATTERN, BankAccountScope, BankAccountType, BaseEntity, CLIENT_PROFILE_PATTERN, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, CompanyProfile, CreateQuestionDto, CreateSubAdminDto, EmploymentType, FreelancerBankDetailsDto, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDevelopmentPreferenceDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAttachPermissionsToSubAdminResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobBasicInformationDto, JobDescriptionDto, JobIdParamDto, JobLocation, JobLocationEnum, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusEnum, JobTCPAdapter, KindOfHire, LoginDto, LogoutDto, ModeOfHire, ModeOfWork, NatureOfWork, ONBOARDING_PATTERN, OTP_PATTERN, Otp, PROFILE_PATTERN, QUESTION_PATTERN, Question, QuestionFor, RESUME_PARSER_PATTERN, RefreshDto, RefreshToken, ResumeParserLog, SUBADMIN_PATTERN, Skill, Step, TypeOfEmploymentEnum, UpdateCompanyProfileDto, UpdateJobStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, bankDetails };
|
package/dist/index.d.ts
CHANGED
|
@@ -303,12 +303,12 @@ declare class JobSkill extends BaseEntity {
|
|
|
303
303
|
skill: Skill;
|
|
304
304
|
}
|
|
305
305
|
|
|
306
|
-
declare enum
|
|
306
|
+
declare enum JobLocationEnum {
|
|
307
307
|
ONSITE = "ONSITE",
|
|
308
308
|
REMOTE = "REMOTE",
|
|
309
309
|
BOTH = "BOTH"
|
|
310
310
|
}
|
|
311
|
-
declare enum
|
|
311
|
+
declare enum TypeOfEmploymentEnum {
|
|
312
312
|
FULLTIME = "FULLTIME",
|
|
313
313
|
PARTTIME = "PARTTIME",
|
|
314
314
|
BOTH = "BOTH"
|
|
@@ -318,7 +318,7 @@ declare enum Step {
|
|
|
318
318
|
ADDITIONAL_COMMENTS = "ADDITIONAL_COMMENTS",
|
|
319
319
|
JOB_DESCRIPTION = "JOB_DESCRIPTION"
|
|
320
320
|
}
|
|
321
|
-
declare enum
|
|
321
|
+
declare enum JobStatusEnum {
|
|
322
322
|
ACTIVE = "ACTIVE",
|
|
323
323
|
OPEN = "OPEN",
|
|
324
324
|
DRAFT = "DRAFT",
|
|
@@ -332,8 +332,8 @@ declare class Job extends BaseEntity {
|
|
|
332
332
|
jobRole: string;
|
|
333
333
|
note: string;
|
|
334
334
|
openings: number;
|
|
335
|
-
location:
|
|
336
|
-
typeOfEmployment:
|
|
335
|
+
location: JobLocationEnum;
|
|
336
|
+
typeOfEmployment: TypeOfEmploymentEnum;
|
|
337
337
|
currency: string;
|
|
338
338
|
expectedSalaryFrom: number;
|
|
339
339
|
expectedSalaryTo: number;
|
|
@@ -342,10 +342,36 @@ declare class Job extends BaseEntity {
|
|
|
342
342
|
onboardingTat: string;
|
|
343
343
|
candidateCommunicationSkills: string;
|
|
344
344
|
stepCompleted: Step;
|
|
345
|
-
status:
|
|
345
|
+
status: JobStatusEnum;
|
|
346
346
|
jobSkills: JobSkill[];
|
|
347
347
|
}
|
|
348
348
|
|
|
349
|
+
declare enum BankAccountType {
|
|
350
|
+
PRIMARY = "PRIMARY",
|
|
351
|
+
SECONDARY = "SECONDARY"
|
|
352
|
+
}
|
|
353
|
+
declare enum BankAccountScope {
|
|
354
|
+
DOMESTIC = "domestic",
|
|
355
|
+
INTERNATIONAL = "international"
|
|
356
|
+
}
|
|
357
|
+
declare class bankDetails extends BaseEntity {
|
|
358
|
+
userId: number;
|
|
359
|
+
user: User;
|
|
360
|
+
name: string;
|
|
361
|
+
mobile: string;
|
|
362
|
+
email: string;
|
|
363
|
+
address: string;
|
|
364
|
+
accountNumber: string;
|
|
365
|
+
bankName: string;
|
|
366
|
+
ifscCode: string;
|
|
367
|
+
branchName: string;
|
|
368
|
+
routingNo: string;
|
|
369
|
+
abaNumber: string;
|
|
370
|
+
iban: string;
|
|
371
|
+
accountType: BankAccountType;
|
|
372
|
+
accountScope: BankAccountScope;
|
|
373
|
+
}
|
|
374
|
+
|
|
349
375
|
declare enum AccountType {
|
|
350
376
|
ADMIN = "ADMIN",
|
|
351
377
|
SUB_ADMIN = "SUB_ADMIN",
|
|
@@ -382,6 +408,7 @@ declare class User extends BaseEntity {
|
|
|
382
408
|
freelancerProfile: FreelancerProfile;
|
|
383
409
|
companyProfile: CompanyProfile;
|
|
384
410
|
jobs: Job[];
|
|
411
|
+
bankDetails: bankDetails[];
|
|
385
412
|
}
|
|
386
413
|
|
|
387
414
|
declare enum KindOfHire {
|
|
@@ -523,6 +550,52 @@ declare const JOB_ROLE_PATTERN: {
|
|
|
523
550
|
fetchJobRolesForDropdown: string;
|
|
524
551
|
};
|
|
525
552
|
|
|
553
|
+
declare enum JobLocation {
|
|
554
|
+
ONSITE = "ONSITE",
|
|
555
|
+
REMOTE = "REMOTE",
|
|
556
|
+
BOTH = "BOTH"
|
|
557
|
+
}
|
|
558
|
+
declare enum EmploymentType {
|
|
559
|
+
FULLTIME = "FULLTIME",
|
|
560
|
+
PARTTIME = "PARTTIME",
|
|
561
|
+
BOTH = "BOTH"
|
|
562
|
+
}
|
|
563
|
+
declare class JobBasicInformationDto {
|
|
564
|
+
jobRole: string;
|
|
565
|
+
note?: string;
|
|
566
|
+
skills: number[];
|
|
567
|
+
openings: number;
|
|
568
|
+
location: JobLocation;
|
|
569
|
+
typeOfEmployment: EmploymentType;
|
|
570
|
+
expectedSalaryFrom: number;
|
|
571
|
+
expectedSalaryTo: number;
|
|
572
|
+
onboardingTat?: string;
|
|
573
|
+
candidateCommunicationSkills?: string;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
declare class JobAdditionalCommentDto {
|
|
577
|
+
additionalComment?: string;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
declare class JobDescriptionDto {
|
|
581
|
+
description: string;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
declare enum JobStatus {
|
|
585
|
+
ACTIVE = "ACTIVE",
|
|
586
|
+
OPEN = "OPEN",
|
|
587
|
+
DRAFT = "DRAFT",
|
|
588
|
+
ONHOLD = "ONHOLD",
|
|
589
|
+
CLOSED = "CLOSED"
|
|
590
|
+
}
|
|
591
|
+
declare class UpdateJobStatusDto {
|
|
592
|
+
status: JobStatus;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
declare class JobIdParamDto {
|
|
596
|
+
id: string;
|
|
597
|
+
}
|
|
598
|
+
|
|
526
599
|
declare const PROFILE_PATTERN: {
|
|
527
600
|
fetchFreelancerProfile: string;
|
|
528
601
|
changeFreelancerPassword: string;
|
|
@@ -534,6 +607,25 @@ declare class FreelancerChangePasswordDto {
|
|
|
534
607
|
newPassword: string;
|
|
535
608
|
}
|
|
536
609
|
|
|
610
|
+
declare const BANK_PATTERN: {
|
|
611
|
+
addFreelancerBankDetails: string;
|
|
612
|
+
};
|
|
613
|
+
|
|
614
|
+
declare class FreelancerBankDetailsDto {
|
|
615
|
+
name: string;
|
|
616
|
+
mobile: string;
|
|
617
|
+
email: string;
|
|
618
|
+
address: string;
|
|
619
|
+
accountNumber: string;
|
|
620
|
+
bankName: string;
|
|
621
|
+
branchName: string;
|
|
622
|
+
ifscCode: string;
|
|
623
|
+
routingNo: string;
|
|
624
|
+
abaNumber: string;
|
|
625
|
+
iban: string;
|
|
626
|
+
accountType: string;
|
|
627
|
+
}
|
|
628
|
+
|
|
537
629
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
538
630
|
|
|
539
631
|
declare const JobTCPAdapter: () => MicroserviceOptions;
|
|
@@ -566,4 +658,4 @@ declare class JobRoles extends BaseEntity {
|
|
|
566
658
|
isActive: boolean;
|
|
567
659
|
}
|
|
568
660
|
|
|
569
|
-
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, BaseEntity, CLIENT_PROFILE_PATTERN, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, CompanyProfile, CreateQuestionDto, CreateSubAdminDto, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDevelopmentPreferenceDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAttachPermissionsToSubAdminResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, JOB_ROLE_PATTERN, Job, JobLocation, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobTCPAdapter, KindOfHire, LoginDto, LogoutDto, ModeOfHire, ModeOfWork, NatureOfWork, ONBOARDING_PATTERN, OTP_PATTERN, Otp, PROFILE_PATTERN, QUESTION_PATTERN, Question, QuestionFor, RESUME_PARSER_PATTERN, RefreshDto, RefreshToken, ResumeParserLog, SUBADMIN_PATTERN, Skill, Step,
|
|
661
|
+
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, BANK_PATTERN, BankAccountScope, BankAccountType, BaseEntity, CLIENT_PROFILE_PATTERN, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, CompanyProfile, CreateQuestionDto, CreateSubAdminDto, EmploymentType, FreelancerBankDetailsDto, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDevelopmentPreferenceDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAttachPermissionsToSubAdminResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobBasicInformationDto, JobDescriptionDto, JobIdParamDto, JobLocation, JobLocationEnum, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusEnum, JobTCPAdapter, KindOfHire, LoginDto, LogoutDto, ModeOfHire, ModeOfWork, NatureOfWork, ONBOARDING_PATTERN, OTP_PATTERN, Otp, PROFILE_PATTERN, QUESTION_PATTERN, Question, QuestionFor, RESUME_PARSER_PATTERN, RefreshDto, RefreshToken, ResumeParserLog, SUBADMIN_PATTERN, Skill, Step, TypeOfEmploymentEnum, UpdateCompanyProfileDto, UpdateJobStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, bankDetails };
|