@experts_hub/shared 1.0.595 → 1.0.597
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/index.d.mts +1986 -1876
- package/dist/index.d.ts +1986 -1876
- package/dist/index.js +6149 -5798
- package/dist/index.mjs +6318 -5944
- package/dist/modules/authentication/dto/index.d.ts +1 -0
- package/dist/modules/authentication/dto/validate-email-for-login.dto.d.ts +10 -0
- package/dist/modules/authentication/dto/validate-email.dto.d.ts +7 -0
- package/dist/modules/authentication/dto/validate-mobile.dto.d.ts +1 -0
- package/dist/modules/client-admin/dto/create-client.dto.d.ts +10 -0
- package/dist/modules/contract/dto/escrow-fund-contract.dto.d.ts +1 -4
- package/dist/modules/contract/dto/generate-contract.dto.d.ts +18 -3
- package/dist/modules/contract/dto/index.d.ts +1 -0
- package/dist/modules/contract/dto/send-nda-contract-to-freelancer.dto.d.ts +3 -0
- package/dist/modules/freelancer-admin/dto/create-freelancer.dto.d.ts +11 -1
- package/dist/modules/freelancer-admin/dto/send-ai-assessment-link.dto.d.ts +1 -1
- package/dist/modules/freelancer-admin/dto/update-freelancer.dto.d.ts +7 -1
- package/dist/modules/interview/dto/create-f2f-interview-reschedule-request.dto.d.ts +1 -1
- package/dist/modules/interview/dto/create-interview-questions.dto.d.ts +13 -0
- package/dist/modules/interview/dto/create-interview-skills.dto.d.ts +8 -0
- package/dist/modules/interview/dto/index.d.ts +4 -0
- package/dist/modules/interview/dto/send-interview-invite.dto.d.ts +20 -0
- package/dist/modules/interview/dto/update-interview-setting.dto.d.ts +9 -0
- package/dist/modules/onboarding/dto/verify-onboarding-token.dto.d.ts +1 -1
- package/dist/modules/otp/dto/send-otp.dto.d.ts +1 -6
- package/dist/modules/otp/dto/verify-otp.dto.d.ts +1 -1
- package/dist/modules/stripe/dto/index.d.ts +0 -1
- package/dist/modules/stripe/dto/transfer-funds.dto.d.ts +1 -3
- package/dist/modules/timesheet/dto/approve-timesheets.dto.d.ts +1 -1
- package/dist/modules/timesheet/dto/send-back-timesheets.dto.d.ts +2 -2
- package/dist/modules/user/client-candidate-preference/dto/mark-candidate-status-bulk.dto.d.ts +1 -0
- package/dist/modules/user/client-candidate-preference/dto/mark-candidate-status.dto.d.ts +1 -0
- package/dist/modules/user/client-profile/dto/client-e-signature.dto.d.ts +1 -1
- package/dist/modules/user/freelancer-profile/dto/freelancer-e-signature.dto.d.ts +1 -1
- package/dist/modules/user/subadmin/dto/create-subadmin.dto.d.ts +5 -1
- package/dist/modules/user/subadmin/dto/update-subadmin.dto.d.ts +5 -1
- package/dist/modules/wallet/dto/debit-commission-fte-hiring.dto.d.ts +1 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -93,11 +93,30 @@ declare class ResetPasswordTokenValidationDto {
|
|
|
93
93
|
scope: ScopeEnum;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
+
declare enum ScopeEmailEnumDto {
|
|
97
|
+
ADMIN = "ADMIN",
|
|
98
|
+
SUB_ADMIN = "SUB_ADMIN",
|
|
99
|
+
CLIENT = "CLIENT",
|
|
100
|
+
FREELANCER = "FREELANCER"
|
|
101
|
+
}
|
|
96
102
|
declare class ValidateEmailDto {
|
|
97
103
|
email: string;
|
|
104
|
+
scope?: ScopeEmailEnumDto;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
declare enum ScopeEmailForLoginEnumDto {
|
|
108
|
+
ADMIN = "ADMIN",
|
|
109
|
+
SUB_ADMIN = "SUB_ADMIN",
|
|
110
|
+
CLIENT = "CLIENT",
|
|
111
|
+
FREELANCER = "FREELANCER"
|
|
112
|
+
}
|
|
113
|
+
declare class ValidateEmailForLoginDto {
|
|
114
|
+
email: string;
|
|
115
|
+
scope: ScopeEmailForLoginEnumDto;
|
|
98
116
|
}
|
|
99
117
|
|
|
100
118
|
declare class ValidateMobileDto {
|
|
119
|
+
mobileCode: string;
|
|
101
120
|
mobile: string;
|
|
102
121
|
}
|
|
103
122
|
|
|
@@ -154,18 +173,13 @@ declare class VerifyGuestOtpDto {
|
|
|
154
173
|
purpose: VerifyGuestOtpPurposeEnum;
|
|
155
174
|
}
|
|
156
175
|
|
|
157
|
-
declare enum OtpType {
|
|
158
|
-
SMS = "SMS",
|
|
159
|
-
EMAIL = "EMAIL"
|
|
160
|
-
}
|
|
161
176
|
declare class SendOtpDto {
|
|
162
|
-
|
|
163
|
-
type?: OtpType;
|
|
177
|
+
userId: string;
|
|
164
178
|
purpose?: string;
|
|
165
179
|
}
|
|
166
180
|
|
|
167
181
|
declare class VerifyOtpDto {
|
|
168
|
-
|
|
182
|
+
userId: string;
|
|
169
183
|
otp: string;
|
|
170
184
|
purpose?: string;
|
|
171
185
|
}
|
|
@@ -268,7 +282,7 @@ declare class ClientCreateAccountDto {
|
|
|
268
282
|
}
|
|
269
283
|
|
|
270
284
|
declare class VerifyOnboardingTokenDto {
|
|
271
|
-
|
|
285
|
+
uuid: string;
|
|
272
286
|
}
|
|
273
287
|
|
|
274
288
|
declare const MAINTENANCE_PATTERN: {
|
|
@@ -296,962 +310,595 @@ declare const SUBADMIN_PATTERN: {
|
|
|
296
310
|
fetchSubAdminCount: string;
|
|
297
311
|
};
|
|
298
312
|
|
|
299
|
-
declare
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
createdAt: Date;
|
|
303
|
-
createdBy: number;
|
|
304
|
-
updatedAt: Date;
|
|
305
|
-
updatedBy: number;
|
|
306
|
-
isDeleted: boolean;
|
|
307
|
-
deletedBy: number;
|
|
308
|
-
deletedAt: Date;
|
|
313
|
+
declare enum AccountType$2 {
|
|
314
|
+
ADMIN = "ADMIN",
|
|
315
|
+
SUB_ADMIN = "SUB_ADMIN"
|
|
309
316
|
}
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
user: User;
|
|
317
|
+
declare class CreateSubAdminDto {
|
|
318
|
+
userName: string;
|
|
319
|
+
firstName: string;
|
|
320
|
+
lastName: string;
|
|
321
|
+
accountType: AccountType$2;
|
|
322
|
+
email: string;
|
|
323
|
+
mobileCode: string;
|
|
324
|
+
mobile: string;
|
|
325
|
+
password: string;
|
|
326
|
+
roleIds: string;
|
|
321
327
|
}
|
|
322
328
|
|
|
323
|
-
declare class
|
|
324
|
-
|
|
325
|
-
userId: number;
|
|
326
|
-
type: string;
|
|
327
|
-
endpoint: string;
|
|
328
|
-
success: boolean;
|
|
329
|
-
request: any;
|
|
330
|
-
response: any;
|
|
331
|
-
errorMessage: string;
|
|
332
|
-
scope: string;
|
|
333
|
-
createdAt: Date;
|
|
334
|
-
user: User;
|
|
329
|
+
declare class UpdateSubAdminAccountStatusDto {
|
|
330
|
+
accountStatus: string;
|
|
335
331
|
}
|
|
336
332
|
|
|
337
|
-
declare
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
333
|
+
declare enum AccountType$1 {
|
|
334
|
+
ADMIN = "ADMIN",
|
|
335
|
+
SUB_ADMIN = "SUB_ADMIN"
|
|
336
|
+
}
|
|
337
|
+
declare class UpdateSubAdminDto {
|
|
338
|
+
userName: string;
|
|
339
|
+
firstName: string;
|
|
340
|
+
lastName: string;
|
|
341
|
+
accountType: AccountType$1;
|
|
342
|
+
email: string;
|
|
343
|
+
mobileCode: string;
|
|
344
|
+
mobile: string;
|
|
345
|
+
password?: string;
|
|
346
|
+
roleIds: string;
|
|
350
347
|
}
|
|
351
348
|
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
349
|
+
interface IFetchSubAdminQuery {
|
|
350
|
+
page_size?: number;
|
|
351
|
+
page: number;
|
|
352
|
+
searchText?: string;
|
|
353
|
+
username: string;
|
|
354
|
+
right: string;
|
|
355
|
+
sortColumn?: string;
|
|
356
|
+
sortBy?: string;
|
|
359
357
|
}
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
358
|
+
interface IFetchSubAdminResponse {
|
|
359
|
+
statusCode: number;
|
|
360
|
+
status: boolean;
|
|
361
|
+
message: string;
|
|
362
|
+
data: any;
|
|
365
363
|
}
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
GOOGLE = "GOOGLE",
|
|
369
|
-
REFERRAL = "REFERRAL",
|
|
370
|
-
OTHER = "OTHER"
|
|
364
|
+
interface IFetchSubAdminByIdQuery {
|
|
365
|
+
permission?: string;
|
|
371
366
|
}
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
367
|
+
interface IFetchSubAdminByIdResponse {
|
|
368
|
+
statusCode: number;
|
|
369
|
+
status: boolean;
|
|
370
|
+
message: string;
|
|
371
|
+
data: any;
|
|
375
372
|
}
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
373
|
+
interface ICreateSubAdminPayload {
|
|
374
|
+
uniqueId: string;
|
|
375
|
+
username: string;
|
|
376
|
+
firstName: string;
|
|
377
|
+
lastName: string;
|
|
378
|
+
email: string;
|
|
379
|
+
mobile: string;
|
|
380
|
+
password: string;
|
|
381
|
+
accountType: string;
|
|
382
|
+
accountStatus: string;
|
|
379
383
|
}
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
384
|
+
interface ICreateSubAdminResponse {
|
|
385
|
+
statusCode: number;
|
|
386
|
+
status: boolean;
|
|
387
|
+
message: string;
|
|
388
|
+
}
|
|
389
|
+
interface IUpdateSubAdminPayload {
|
|
390
|
+
uniqueId: string;
|
|
391
|
+
username: string;
|
|
392
|
+
firstName: string;
|
|
393
|
+
lastName: string;
|
|
394
|
+
email: string;
|
|
395
|
+
mobile: string;
|
|
396
|
+
password: string;
|
|
397
|
+
accountType: string;
|
|
398
|
+
accountStatus: string;
|
|
399
|
+
}
|
|
400
|
+
interface IUpdateSubAdminResponse {
|
|
401
|
+
statusCode: number;
|
|
402
|
+
status: boolean;
|
|
403
|
+
message: string;
|
|
404
|
+
}
|
|
405
|
+
interface IUpdateSubAdminAccountStatusPayload {
|
|
406
|
+
accountSatus: string;
|
|
407
|
+
}
|
|
408
|
+
interface IUpdateSubAdminAccountStatusResponse {
|
|
409
|
+
statusCode: number;
|
|
410
|
+
status: boolean;
|
|
411
|
+
message: string;
|
|
412
|
+
}
|
|
413
|
+
interface IDeleteSubAdminResponse {
|
|
414
|
+
statusCode: number;
|
|
415
|
+
status: boolean;
|
|
416
|
+
message: string;
|
|
417
|
+
}
|
|
418
|
+
interface IAttachPermissionsToSubAdminResponse {
|
|
419
|
+
statusCode: number;
|
|
420
|
+
status: boolean;
|
|
421
|
+
message: string;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
declare const CLIENT_PROFILE_PATTERN: {
|
|
425
|
+
fetchClientProfileQuestions: string;
|
|
426
|
+
fetchClientProfile: string;
|
|
427
|
+
fetchClientPublicProfile: string;
|
|
428
|
+
updateClientProfile: string;
|
|
429
|
+
updateClientLogo: string;
|
|
430
|
+
changeClientPassword: string;
|
|
431
|
+
uploadClientServiceAgreement: string;
|
|
432
|
+
fetchClientServiceAgreement: string;
|
|
433
|
+
generateClientServiceAgreement: string;
|
|
434
|
+
esignClientServiceAgreementForClient: string;
|
|
435
|
+
fetchClientServiceAgreementStatus: string;
|
|
436
|
+
fetchRecommendedFreelancers: string;
|
|
437
|
+
fetchRecommendedFreelancersV2: string;
|
|
438
|
+
fetchRecommendedFreelancersDropdownV2: string;
|
|
439
|
+
clientDataAlteration: string;
|
|
440
|
+
fetchFreelancersForComparison: string;
|
|
441
|
+
deleteClientProfilePic: string;
|
|
442
|
+
fetchFreelancerInfoForChat: string;
|
|
443
|
+
fetchClientAndFreelancerDetailsForChatChannelCreation: string;
|
|
444
|
+
};
|
|
445
|
+
|
|
446
|
+
declare class UpdateCompanyProfileDto {
|
|
447
|
+
companyName?: string;
|
|
448
|
+
webSite?: string;
|
|
391
449
|
countryId: number;
|
|
392
|
-
country: Country;
|
|
393
450
|
stateId: number;
|
|
394
|
-
state: State;
|
|
395
451
|
cityId: number;
|
|
396
|
-
city: City;
|
|
397
452
|
companyAddress: string;
|
|
398
453
|
addressLine: string;
|
|
399
454
|
postalCode: string;
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
numberOfHours: number;
|
|
405
|
-
modeOfHire: ModeOfHire;
|
|
406
|
-
foundUsOn: FromUsOn;
|
|
407
|
-
foundUsOnDetail: string;
|
|
408
|
-
onboardingStepCompleted: CompanyOnboardingStepEnum;
|
|
409
|
-
signaturePositions: any;
|
|
410
|
-
hiringCommisionTypeForFte: HiringCommissionTypeEnum;
|
|
411
|
-
hiringCommissionValueForFte: number;
|
|
412
|
-
rating: number;
|
|
455
|
+
mobileCode: string;
|
|
456
|
+
phoneNumber?: string;
|
|
457
|
+
email?: string;
|
|
458
|
+
aboutCompany?: string;
|
|
413
459
|
}
|
|
414
460
|
|
|
415
|
-
declare class
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
stateId: number;
|
|
419
|
-
state: State;
|
|
420
|
-
cityCode: string;
|
|
421
|
-
cityName: string;
|
|
422
|
-
isActive: boolean;
|
|
423
|
-
freelancerProfile: FreelancerProfile[];
|
|
424
|
-
companyProfile: CompanyProfile[];
|
|
461
|
+
declare class ClientChangePasswordDto {
|
|
462
|
+
newPassword: string;
|
|
463
|
+
confirmPassword: string;
|
|
425
464
|
}
|
|
426
465
|
|
|
427
|
-
declare class
|
|
428
|
-
|
|
429
|
-
country: Country;
|
|
430
|
-
cities: City[];
|
|
431
|
-
stateName: string;
|
|
432
|
-
stateCode: string;
|
|
433
|
-
isActive: boolean;
|
|
434
|
-
freelancerProfile: FreelancerProfile[];
|
|
435
|
-
companyProfile: CompanyProfile[];
|
|
466
|
+
declare class ClientServiceAgreementUploadDto {
|
|
467
|
+
agreementType?: string;
|
|
436
468
|
}
|
|
437
469
|
|
|
438
|
-
declare class
|
|
439
|
-
|
|
440
|
-
countryIsoCode: string;
|
|
441
|
-
countryPhoneCode: string;
|
|
442
|
-
currency: string;
|
|
443
|
-
isActive: boolean;
|
|
444
|
-
states: State[];
|
|
445
|
-
freelancerProfile: FreelancerProfile[];
|
|
446
|
-
companyProfile: CompanyProfile[];
|
|
470
|
+
declare class ClientESignatureDto {
|
|
471
|
+
uuid: string;
|
|
447
472
|
}
|
|
448
473
|
|
|
449
|
-
declare
|
|
450
|
-
|
|
451
|
-
PARTTIME = "PARTTIME",
|
|
452
|
-
BOTH = "BOTH",
|
|
453
|
-
HOURLY = "HOURLY",
|
|
454
|
-
FREELANCE = "FREELANCE",
|
|
455
|
-
FTE = "FTE"
|
|
456
|
-
}
|
|
457
|
-
declare enum ModeOfWork {
|
|
458
|
-
ONSITE = "ONSITE",
|
|
459
|
-
REMOTE = "REMOTE",
|
|
460
|
-
HYBRID = "HYBRID",
|
|
461
|
-
BOTH = "BOTH"
|
|
474
|
+
declare class FetchFreelancerInfoForChatDto {
|
|
475
|
+
freelancerId: number;
|
|
462
476
|
}
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
PROFILE_COMPLETION = "PROFILE_COMPLETION"
|
|
477
|
+
|
|
478
|
+
interface IFetchClientProfileQuery {
|
|
479
|
+
page_size?: number;
|
|
480
|
+
page: number;
|
|
481
|
+
searchText?: string;
|
|
482
|
+
companyName: string;
|
|
483
|
+
right: string;
|
|
484
|
+
sortColumn?: string;
|
|
485
|
+
sortBy?: string;
|
|
473
486
|
}
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
487
|
+
interface IFetchClientProfileResponse {
|
|
488
|
+
statusCode: number;
|
|
489
|
+
status: boolean;
|
|
490
|
+
message: string;
|
|
491
|
+
data: any;
|
|
478
492
|
}
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
493
|
+
interface IUpdateClientProfilePayload {
|
|
494
|
+
userId?: number;
|
|
495
|
+
companyName?: string;
|
|
496
|
+
bio?: string;
|
|
497
|
+
webSite?: string;
|
|
498
|
+
isServiceAgreementSigned?: boolean;
|
|
499
|
+
aboutCompany: string;
|
|
500
|
+
companyAddress: string;
|
|
501
|
+
phoneNumber: string;
|
|
502
|
+
skills?: string[];
|
|
503
|
+
requiredFreelancer?: string;
|
|
504
|
+
kindOfHiring?: string;
|
|
505
|
+
modeOfHire?: string;
|
|
506
|
+
foundUsOn?: string;
|
|
486
507
|
}
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
user: User;
|
|
490
|
-
countryId: number;
|
|
491
|
-
country: Country;
|
|
492
|
-
stateId: number;
|
|
493
|
-
state: State;
|
|
494
|
-
cityId: number;
|
|
495
|
-
city: City;
|
|
496
|
-
talentId: string;
|
|
497
|
-
resumeUrl: string;
|
|
498
|
-
resumeUploadedOn: Date;
|
|
499
|
-
resumeEligibility: string;
|
|
500
|
-
resumeScore: string;
|
|
501
|
-
mcqStatus: McqStatusEnum;
|
|
502
|
-
mcqScore: number;
|
|
503
|
-
isEligibleForAiAssessment: boolean;
|
|
504
|
-
aiAssessmentStatus: AiAssessmentStatusEnum;
|
|
505
|
-
isDeveloper: boolean;
|
|
506
|
-
natureOfWork: NatureOfWork;
|
|
507
|
-
numberOfHours: number;
|
|
508
|
-
currency: string;
|
|
509
|
-
expectedHourlyCompensation: number;
|
|
510
|
-
expectedAnnualCompensation: number;
|
|
511
|
-
modeOfWork: ModeOfWork;
|
|
512
|
-
availabilityToJoin: string;
|
|
513
|
-
isImmediateJoiner: boolean;
|
|
514
|
-
linkedinProfileLink: string;
|
|
515
|
-
kaggleProfileLink: string;
|
|
516
|
-
githubProfileLink: string;
|
|
517
|
-
stackOverflowProfileLink: string;
|
|
518
|
-
portfolioLink: string;
|
|
519
|
-
onboardingStepCompleted: OnboardingStepEnum;
|
|
520
|
-
designation: string;
|
|
521
|
-
experience: string;
|
|
522
|
-
address: string;
|
|
523
|
-
addressLine: string;
|
|
524
|
-
postalCode: string;
|
|
525
|
-
about: string;
|
|
526
|
-
profileCompletedPercentage: Record<string, number>;
|
|
527
|
-
originalDocumentUrl: string;
|
|
528
|
-
isServiceAgreementSigned: boolean;
|
|
529
|
-
serviceAgreementUrl: string;
|
|
530
|
-
serviceAggrementSignedOn: Date;
|
|
531
|
-
isExpertshubVerified: boolean;
|
|
532
|
-
isFollowedOnLinkedIn: boolean;
|
|
533
|
-
signaturePositions: any;
|
|
534
|
-
rating: number;
|
|
508
|
+
interface IUpdateClientLogoPayload {
|
|
509
|
+
logo: string;
|
|
535
510
|
}
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
511
|
+
interface IUpdateClientLogoResponse {
|
|
512
|
+
statusCode: number;
|
|
513
|
+
status: boolean;
|
|
514
|
+
message: string;
|
|
540
515
|
}
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
skillName: string;
|
|
545
|
-
skillCategory: JobSkillCategoryEnum;
|
|
516
|
+
interface IUpdateClientPasswordPayload {
|
|
517
|
+
oldPassword: string;
|
|
518
|
+
newPassword: string;
|
|
546
519
|
}
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
INTERVIEW_IN_PROGRESS = "INTERVIEW_IN_PROGRESS",
|
|
552
|
-
INTERVIEWED = "INTERVIEWED",
|
|
553
|
-
OFFERED = "OFFERED",
|
|
554
|
-
HIRED = "HIRED",
|
|
555
|
-
REJECTED_BEFORE_INTERVIEW = "REJECTED_BEFORE_INTERVIEW",
|
|
556
|
-
REJECTED_IN_INTERVIEW = "REJECTED_IN_INTERVIEW",
|
|
557
|
-
REJECTED_AFTER_INTERVIEW = "REJECTED_AFTER_INTERVIEW",
|
|
558
|
-
NOT_SUITABLE = "NOT_SUITABLE",
|
|
559
|
-
WITHDRAWN = "WITHDRAWN"
|
|
520
|
+
interface IUpdateClientProfileResponse {
|
|
521
|
+
statusCode: number;
|
|
522
|
+
status: boolean;
|
|
523
|
+
message: string;
|
|
560
524
|
}
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
userId: number;
|
|
566
|
-
user: User;
|
|
567
|
-
status: ApplicationStatusEnum;
|
|
568
|
-
appliedAt: Date;
|
|
569
|
-
shortlistedAt: Date;
|
|
570
|
-
interviewStartedAt: Date;
|
|
571
|
-
interviewCompletedAt: Date;
|
|
572
|
-
offeredAt: Date;
|
|
573
|
-
hiredAt: Date;
|
|
574
|
-
rejectedAt: Date;
|
|
575
|
-
rejectionReason: string;
|
|
576
|
-
withdrawnAt: Date;
|
|
577
|
-
withdrawnReason: string;
|
|
525
|
+
interface IUpdateClientProfileResponse {
|
|
526
|
+
statusCode: number;
|
|
527
|
+
status: boolean;
|
|
528
|
+
message: string;
|
|
578
529
|
}
|
|
579
530
|
|
|
580
|
-
declare
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
531
|
+
declare const ONBOARDING_QUESTION_PATTERN: {
|
|
532
|
+
fetchOnboardingQuestions: string;
|
|
533
|
+
};
|
|
534
|
+
declare const ASSESSMENT_QUESTION_PATTERN: {
|
|
535
|
+
fetchAssessmentQuestions: string;
|
|
536
|
+
handleAssessmentQuestionImport: string;
|
|
537
|
+
handelAssessmentRecordAnswer: string;
|
|
538
|
+
handelAssessmentRecordAnswers: string;
|
|
539
|
+
fetchAssessmentSummary: string;
|
|
540
|
+
};
|
|
587
541
|
|
|
588
|
-
declare
|
|
589
|
-
|
|
590
|
-
CUSTOM = "CUSTOM"
|
|
591
|
-
}
|
|
592
|
-
declare class InterviewQuestion extends BaseEntity {
|
|
593
|
-
interviewId: number;
|
|
594
|
-
interview: Interview;
|
|
542
|
+
declare class CreateQuestionDto {
|
|
543
|
+
questionId: string;
|
|
595
544
|
question: string;
|
|
596
|
-
|
|
597
|
-
|
|
545
|
+
questionFor: string;
|
|
546
|
+
options: string;
|
|
598
547
|
isActive: boolean;
|
|
599
548
|
}
|
|
600
549
|
|
|
601
|
-
declare
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
}
|
|
607
|
-
declare class InterviewInvite extends BaseEntity {
|
|
608
|
-
interviewId: number;
|
|
609
|
-
interview: Interview;
|
|
610
|
-
userId: number;
|
|
611
|
-
user: User;
|
|
612
|
-
jobId: number;
|
|
613
|
-
job: Job;
|
|
614
|
-
fullName: string;
|
|
615
|
-
email: string;
|
|
616
|
-
mobileCode: string;
|
|
617
|
-
mobile: string;
|
|
618
|
-
status: InterviewInviteStatusEnum;
|
|
619
|
-
sentAt: Date;
|
|
620
|
-
expiresAt: Date;
|
|
621
|
-
respondedAt?: Date;
|
|
622
|
-
token: string;
|
|
623
|
-
talentId: string;
|
|
550
|
+
declare class RecordAssessmentAnswerDto {
|
|
551
|
+
questionId: string;
|
|
552
|
+
answer: any;
|
|
553
|
+
assessmentId?: string;
|
|
554
|
+
userId?: string;
|
|
624
555
|
}
|
|
625
556
|
|
|
626
|
-
declare
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
}
|
|
631
|
-
declare class AiInterviewRescheduleRequest extends BaseEntity {
|
|
632
|
-
candidateId: number;
|
|
633
|
-
candidate: User;
|
|
634
|
-
clientId: number;
|
|
635
|
-
client: User;
|
|
636
|
-
aiInterviewId: number;
|
|
637
|
-
aiInterview: AiInterview;
|
|
638
|
-
interviewId: number;
|
|
639
|
-
rescheduledDate: Date;
|
|
640
|
-
status: AiInterviewRescheduleRequestStatusEnum;
|
|
641
|
-
clientRejectReason: string;
|
|
642
|
-
freelancerRequestReason: string;
|
|
643
|
-
}
|
|
644
|
-
|
|
645
|
-
declare enum AiInterviewStatusEnum {
|
|
646
|
-
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
647
|
-
ATTEMPTED = "ATTEMPTED",
|
|
648
|
-
PENDING = "PENDING",
|
|
649
|
-
ACTIVE = "ACTIVE",
|
|
650
|
-
IN_PROGRESS = "IN_PROGRESS",
|
|
651
|
-
IN_COMPLETE = "IN_COMPLETE",
|
|
652
|
-
COMPELETED = "COMPELETED",
|
|
653
|
-
PASSED = "PASSED",
|
|
654
|
-
FAILED = "FAILED",
|
|
655
|
-
EXPIRED = "EXPIRED",
|
|
656
|
-
POSTPONED = "POSTPONED",
|
|
657
|
-
RESCHEDULED = "RESCHEDULED",
|
|
658
|
-
EXITED = "EXITED"
|
|
659
|
-
}
|
|
660
|
-
declare enum ResultStatusEnum {
|
|
661
|
-
NOT_EVALUATED = "NOT_EVALUATED",
|
|
662
|
-
EVALUATING = "EVALUATING",
|
|
663
|
-
PASSED = "PASSED",
|
|
664
|
-
FAILED = "FAILED"
|
|
665
|
-
}
|
|
666
|
-
declare enum RecordingStatusEnum {
|
|
667
|
-
PROCESSING = "PROCESSING",
|
|
668
|
-
COMPLETED = "COMPLETED",
|
|
669
|
-
FAILED = "FAILED"
|
|
670
|
-
}
|
|
671
|
-
declare class AiInterview extends BaseEntity {
|
|
672
|
-
aiInterviewUniqueId: string;
|
|
673
|
-
candidateId: number;
|
|
674
|
-
candidate: User;
|
|
675
|
-
interviwerId: number;
|
|
676
|
-
interviwer: User;
|
|
677
|
-
interviewId: number;
|
|
678
|
-
interview: Interview;
|
|
679
|
-
inviteId: number;
|
|
680
|
-
candidateInterviewId: string;
|
|
681
|
-
candidateInterviewLink: string;
|
|
682
|
-
hasAttempted: boolean;
|
|
683
|
-
attemptedAt: Date;
|
|
684
|
-
completedAt: Date;
|
|
685
|
-
exitedAt: Date;
|
|
686
|
-
expiredAt: Date;
|
|
687
|
-
status: AiInterviewStatusEnum;
|
|
688
|
-
resultStatus: ResultStatusEnum;
|
|
689
|
-
recordingStatus: RecordingStatusEnum;
|
|
690
|
-
isRescheduled: boolean;
|
|
691
|
-
rescheduledAt: Date;
|
|
692
|
-
recordingLink: string;
|
|
693
|
-
iframeResponse: string;
|
|
694
|
-
interviewInsight: string;
|
|
695
|
-
isF2fInterviewScheduled: boolean;
|
|
696
|
-
isContractSent: boolean;
|
|
697
|
-
attempts: number;
|
|
698
|
-
rescheduleRequests: AiInterviewRescheduleRequest[];
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
declare enum F2fInterviewRescheduleRequestStatusEnum {
|
|
702
|
-
PENDING = "PENDING",
|
|
703
|
-
APPROVED = "APPROVED",
|
|
704
|
-
REJECTED = "REJECTED",
|
|
705
|
-
INPROGRESS = "INPROGRESS",
|
|
706
|
-
AUTOCANCELLED = "AUTOCANCELLED"
|
|
707
|
-
}
|
|
708
|
-
declare class F2fInterviewRescheduleRequest extends BaseEntity {
|
|
709
|
-
candidateId: number;
|
|
710
|
-
candidate: User;
|
|
711
|
-
f2fInterviewId: number;
|
|
712
|
-
f2fInterview: F2FInterview;
|
|
713
|
-
rescheduledDate: Date;
|
|
714
|
-
rescheduledSlot: string;
|
|
715
|
-
status: F2fInterviewRescheduleRequestStatusEnum;
|
|
716
|
-
clientRejectReason: string;
|
|
717
|
-
freelancerRequestReason: string;
|
|
557
|
+
declare class RecordAssessmentAnswersDto {
|
|
558
|
+
answers: any[];
|
|
559
|
+
assessmentId?: string;
|
|
560
|
+
userId?: string;
|
|
718
561
|
}
|
|
719
562
|
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
563
|
+
interface IFetchQuestionQuery {
|
|
564
|
+
page_size?: number;
|
|
565
|
+
page: number;
|
|
566
|
+
searchText?: string;
|
|
567
|
+
question: string;
|
|
568
|
+
right: string;
|
|
569
|
+
sortColumn?: string;
|
|
570
|
+
sortBy?: string;
|
|
571
|
+
type?: string;
|
|
725
572
|
}
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
meetingId: string;
|
|
732
|
-
meetingPasscode: string;
|
|
733
|
-
rescheduleUrl: string;
|
|
734
|
-
cancelUrl: string;
|
|
735
|
-
status: F2fInterviewScheduleStatusEnum;
|
|
736
|
-
meetingStartTime: Date;
|
|
737
|
-
meetingEndTime: Date;
|
|
738
|
-
meetingEligibleStartTime: Date;
|
|
739
|
-
meetingEligibleExpiryTime: Date;
|
|
740
|
-
meetingVideoRecordingUrl: string;
|
|
741
|
-
meetingAudioRecordingUrl: string;
|
|
742
|
-
meetingTranscript: any;
|
|
743
|
-
meetingRecordings: any;
|
|
573
|
+
interface IFetchQuestionResponse {
|
|
574
|
+
statusCode: number;
|
|
575
|
+
status: boolean;
|
|
576
|
+
message: string;
|
|
577
|
+
data: any;
|
|
744
578
|
}
|
|
745
579
|
|
|
746
|
-
declare
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
580
|
+
declare const JOB_ROLE_PATTERN: {
|
|
581
|
+
fetchJobRolesForDropdown: string;
|
|
582
|
+
};
|
|
583
|
+
declare const JOB_PATTERN: {
|
|
584
|
+
fetchJobs: string;
|
|
585
|
+
fetchJobsPublic: string;
|
|
586
|
+
fetchRecentJobs: string;
|
|
587
|
+
fetchJobCountAsPerStatus: string;
|
|
588
|
+
fetchJobCountPublic: string;
|
|
589
|
+
fetchJobsDropdown: string;
|
|
590
|
+
fetchJobDetail: string;
|
|
591
|
+
fetchJobDetailPublic: string;
|
|
592
|
+
handleJdUpload: string;
|
|
593
|
+
fetchJobBasicInformation: string;
|
|
594
|
+
createJobBasicInformation: string;
|
|
595
|
+
updateJobBasicInformation: string;
|
|
596
|
+
fetchJobAdditionalComments: string;
|
|
597
|
+
updateJobAdditionalComments: string;
|
|
598
|
+
fetchJobDescription: string;
|
|
599
|
+
updateJobDescription: string;
|
|
600
|
+
updateJobStatus: string;
|
|
601
|
+
closeJob: string;
|
|
602
|
+
searchJobsByRoleAndSkills: string;
|
|
603
|
+
handleBulkRecommendationAdjustment: string;
|
|
604
|
+
refreshJobFreelancerRecommendationView: string;
|
|
605
|
+
fetchJobConfig: string;
|
|
606
|
+
fetchJobRoleSuggestions: string;
|
|
607
|
+
fetchJobCount: string;
|
|
608
|
+
fetchJobsDropdownForFilters: string;
|
|
609
|
+
fetchJobsDropdownForInterview: string;
|
|
610
|
+
fetchJobsDropdownForFreelancer: string;
|
|
611
|
+
fetchJobDetailForFreelancer: string;
|
|
612
|
+
fetchJobBasicInformationV2: string;
|
|
613
|
+
createJobBasicInformationV2: string;
|
|
614
|
+
updateJobBasicInformationV2: string;
|
|
615
|
+
deleteJob: string;
|
|
616
|
+
fetchRecommendedFreelancersForJobs: string;
|
|
617
|
+
fetchRecommendedFreelancersForJob: string;
|
|
618
|
+
fetchRecommendedFreelancersForJobV2: string;
|
|
619
|
+
handleJobViwedCountIncrement: string;
|
|
620
|
+
fetchJobByIdForTimesheet: string;
|
|
621
|
+
jobDataSetup: string;
|
|
622
|
+
fetchJobsForComparison: string;
|
|
623
|
+
fetchJobSkillDropdownForClient: string;
|
|
624
|
+
};
|
|
625
|
+
declare const JOB_APPLICATION_PATTERN: {
|
|
626
|
+
fetchJobApplicationCountAsPerStatusByJobId: string;
|
|
627
|
+
fetchJobApplicationsByJobId: string;
|
|
628
|
+
fetchJobApplicants: string;
|
|
629
|
+
createJobApplication: string;
|
|
630
|
+
changeJobApplicationStatus: string;
|
|
631
|
+
changeJobApplicationStatusInBulk: string;
|
|
632
|
+
};
|
|
783
633
|
|
|
784
|
-
declare enum
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
DISCARDED = "DISCARDED",
|
|
789
|
-
ARCHIVED = "ARCHIVED"
|
|
790
|
-
}
|
|
791
|
-
declare class Interview extends BaseEntity {
|
|
792
|
-
interviewId: string;
|
|
793
|
-
userId: number;
|
|
794
|
-
user: User;
|
|
795
|
-
interviewName: string;
|
|
796
|
-
jobId: number;
|
|
797
|
-
job: Job;
|
|
798
|
-
interviewType: string;
|
|
799
|
-
interviewLanguage: string;
|
|
800
|
-
allowProctoring: boolean;
|
|
801
|
-
interviewDuration: string;
|
|
802
|
-
interviewValidityPeriod: string;
|
|
803
|
-
maximumAttemptsAllowed: string;
|
|
804
|
-
startInterviewPrompt: string;
|
|
805
|
-
endInterviewPrompt: string;
|
|
806
|
-
interviewTemplateId: string;
|
|
807
|
-
status: InterviewStatusEnum;
|
|
808
|
-
interviewSkills: InterviewSkill[];
|
|
809
|
-
interviewQuestions: InterviewQuestion[];
|
|
810
|
-
invites: InterviewInvite[];
|
|
811
|
-
aiInterviews: AiInterview[];
|
|
812
|
-
f2fInterviews: F2FInterview[];
|
|
634
|
+
declare enum JobLocationEnum$1 {
|
|
635
|
+
ONSITE = "ONSITE",
|
|
636
|
+
REMOTE = "REMOTE",
|
|
637
|
+
HYBRID = "HYBRID"
|
|
813
638
|
}
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
639
|
+
declare enum EmploymentType {
|
|
640
|
+
FULLTIME = "FULLTIME",
|
|
641
|
+
PARTTIME = "PARTTIME",
|
|
642
|
+
BOTH = "BOTH",
|
|
643
|
+
HOURLY = "HOURLY",
|
|
644
|
+
FREELANCE = "FREELANCE",
|
|
645
|
+
FTE = "FTE"
|
|
818
646
|
}
|
|
819
|
-
declare class
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
647
|
+
declare class JobBasicInformationDto {
|
|
648
|
+
isDraft?: boolean;
|
|
649
|
+
jobRole: string;
|
|
650
|
+
jobRoleCanonicalName?: string;
|
|
651
|
+
projectName?: string;
|
|
652
|
+
note?: string;
|
|
653
|
+
skills: string[];
|
|
654
|
+
goodToHaveSkills: string[];
|
|
655
|
+
openings: number;
|
|
656
|
+
location: JobLocationEnum$1;
|
|
657
|
+
countryId: number;
|
|
658
|
+
stateId: number;
|
|
659
|
+
cityId: number;
|
|
660
|
+
typeOfEmployment: EmploymentType;
|
|
661
|
+
currency?: string;
|
|
662
|
+
expectedSalaryFrom: number;
|
|
663
|
+
hideExpectedSalaryFrom: boolean;
|
|
664
|
+
expectedSalaryTo: number;
|
|
665
|
+
hideExpectedSalaryTo: boolean;
|
|
666
|
+
years: string;
|
|
667
|
+
months: string;
|
|
668
|
+
weeks: string;
|
|
669
|
+
days: string;
|
|
670
|
+
numberOfHours: number;
|
|
671
|
+
candidateCommunicationSkills?: string;
|
|
672
|
+
academicQualification?: string;
|
|
673
|
+
yearsOfExperience?: string;
|
|
674
|
+
businessIndustry?: string;
|
|
675
|
+
additionalComment?: string;
|
|
829
676
|
}
|
|
830
677
|
|
|
831
|
-
declare class
|
|
832
|
-
|
|
833
|
-
jobId: number;
|
|
834
|
-
job: Job;
|
|
835
|
-
freelancerId: number;
|
|
836
|
-
clientId: number;
|
|
837
|
-
matchScore: number;
|
|
838
|
-
matchScoreSummary?: Record<string, any>;
|
|
839
|
-
matchingSkills: string[];
|
|
840
|
-
matchingSkillsCount: number;
|
|
841
|
-
requiredSkills: string[];
|
|
842
|
-
requiredSkillsCount: number;
|
|
843
|
-
lastCalculatedAt: Date;
|
|
844
|
-
preference: ClientCandidatePreference[];
|
|
678
|
+
declare class JobAdditionalCommentDto {
|
|
679
|
+
additionalComment?: string;
|
|
845
680
|
}
|
|
846
681
|
|
|
847
|
-
declare class
|
|
848
|
-
|
|
849
|
-
timesheetLine: TimesheetLine;
|
|
850
|
-
startDate: Date;
|
|
851
|
-
endDate: Date;
|
|
852
|
-
startTime: string;
|
|
853
|
-
endTime: string;
|
|
854
|
-
workedHours: string;
|
|
855
|
-
taskId: number;
|
|
856
|
-
projectName?: string;
|
|
857
|
-
deliverable?: string;
|
|
858
|
-
taskName: string;
|
|
682
|
+
declare class JobDescriptionDto {
|
|
683
|
+
isDraft?: boolean;
|
|
859
684
|
description: string;
|
|
860
685
|
}
|
|
861
686
|
|
|
862
|
-
declare enum
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
SEND_BACK = "SEND_BACK",
|
|
866
|
-
APPROVED = "APPROVED",
|
|
867
|
-
REJECTED = "REJECTED",
|
|
868
|
-
PAID = "PAID",
|
|
869
|
-
MISSING = "MISSING",
|
|
870
|
-
ACTIVE = "ACTIVE"
|
|
871
|
-
}
|
|
872
|
-
declare enum TimesheetSubmissionActionEnum {
|
|
873
|
-
SUBMITTED = "SUBMITTED",
|
|
874
|
-
RESUBMITTED = "RESUBMITTED",
|
|
875
|
-
SEND_BACK = "SEND_BACK",
|
|
876
|
-
APPROVED = "APPROVED",
|
|
877
|
-
REJECTED = "REJECTED",
|
|
878
|
-
PAID = "PAID"
|
|
879
|
-
}
|
|
880
|
-
declare class TimesheetLineHistory extends BaseEntity {
|
|
881
|
-
timesheetLineId: number;
|
|
882
|
-
timesheetLine: TimesheetLine;
|
|
883
|
-
changedBy: number;
|
|
884
|
-
previousStatus: TimesheetLineHistoryStatusEnum;
|
|
885
|
-
newStatus: TimesheetLineHistoryStatusEnum;
|
|
886
|
-
actionType: TimesheetSubmissionActionEnum;
|
|
887
|
-
remarks: string;
|
|
888
|
-
}
|
|
889
|
-
|
|
890
|
-
declare enum TimesheetLineStatusEnum {
|
|
687
|
+
declare enum JobStatus {
|
|
688
|
+
ACTIVE = "ACTIVE",
|
|
689
|
+
OPEN = "OPEN",
|
|
891
690
|
DRAFT = "DRAFT",
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
APPROVED = "APPROVED",
|
|
895
|
-
REJECTED = "REJECTED",
|
|
896
|
-
PAID = "PAID",
|
|
897
|
-
MISSING = "MISSING",
|
|
898
|
-
ACTIVE = "ACTIVE"
|
|
691
|
+
ONHOLD = "ONHOLD",
|
|
692
|
+
CLOSED = "CLOSED"
|
|
899
693
|
}
|
|
900
|
-
declare class
|
|
901
|
-
|
|
902
|
-
job: Job;
|
|
903
|
-
clientId: number;
|
|
904
|
-
client: User;
|
|
905
|
-
freelancerId: number;
|
|
906
|
-
freelancer: User;
|
|
907
|
-
timesheetLogs: TimesheetLogs[];
|
|
908
|
-
timesheetLineHistory: TimesheetLineHistory[];
|
|
909
|
-
uniqueId: string;
|
|
910
|
-
weekStartDate: Date;
|
|
911
|
-
weekEndDate: Date;
|
|
912
|
-
status: TimesheetLineStatusEnum;
|
|
913
|
-
weeklyHoursSum: string;
|
|
914
|
-
isInvoiceGenrated: boolean;
|
|
915
|
-
isInvoiceApproved: boolean;
|
|
916
|
-
invoice: Invoice[];
|
|
694
|
+
declare class JobStatusDto {
|
|
695
|
+
status: JobStatus;
|
|
917
696
|
}
|
|
918
697
|
|
|
919
|
-
declare
|
|
920
|
-
|
|
921
|
-
FREELANCE = "FREELANCE"
|
|
922
|
-
}
|
|
923
|
-
declare class Hiring extends BaseEntity {
|
|
924
|
-
jobId: number;
|
|
925
|
-
job: Job;
|
|
926
|
-
clientId: number;
|
|
927
|
-
client: User;
|
|
928
|
-
freelancerId: number;
|
|
929
|
-
freelancer: User;
|
|
930
|
-
invoiceId?: number;
|
|
931
|
-
invoice?: Invoice;
|
|
932
|
-
freelancerNatureOfWork: HiredFreelancerNatureOfWorkEnum;
|
|
933
|
-
isInvoiceGenrated: boolean;
|
|
698
|
+
declare class JobIdParamDto {
|
|
699
|
+
id: string;
|
|
934
700
|
}
|
|
935
701
|
|
|
936
|
-
declare enum
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
}
|
|
941
|
-
declare enum InvoiceStatusEnum {
|
|
942
|
-
SUBMITTED = "SUBMITTED",
|
|
943
|
-
UNDER_REVIEW = "UNDER_REVIEW",
|
|
944
|
-
APPROVED = "APPROVED",
|
|
945
|
-
REJECTED = "REJECTED"
|
|
946
|
-
}
|
|
947
|
-
declare enum InvoicePaymentStatusEnum {
|
|
948
|
-
PENDING = "PENDING",
|
|
949
|
-
OVERDUE = "OVERDUE",
|
|
950
|
-
INTRANSACTION = "INTRANSACTION",
|
|
951
|
-
PAID = "PAID",
|
|
952
|
-
REFUNDED = "REFUNDED"
|
|
953
|
-
}
|
|
954
|
-
declare class Invoice extends BaseEntity {
|
|
955
|
-
timesheetLineId: number;
|
|
956
|
-
timesheetLine: TimesheetLine;
|
|
957
|
-
jobId: number;
|
|
958
|
-
job: Job;
|
|
959
|
-
clientId: number;
|
|
960
|
-
client: User;
|
|
961
|
-
freelancerId: number;
|
|
962
|
-
freelancer: User;
|
|
963
|
-
invoiceUniqueId: string;
|
|
964
|
-
issuedAt: Date;
|
|
965
|
-
dueAt: Date;
|
|
966
|
-
billingCycleFrom: Date;
|
|
967
|
-
billingCycleTo: Date;
|
|
968
|
-
billingHours: string;
|
|
969
|
-
hourlyRate: string;
|
|
970
|
-
billingAmount: string;
|
|
971
|
-
invoiceType: InvoiceTypeEnum;
|
|
972
|
-
status: InvoiceStatusEnum;
|
|
973
|
-
paymentStatus: InvoicePaymentStatusEnum;
|
|
974
|
-
clientInvoiceUrl: string;
|
|
975
|
-
freelancerInvoiceUrl: string;
|
|
976
|
-
escrowWalletTransaction?: EscrowWalletTransaction;
|
|
977
|
-
hiring?: Hiring;
|
|
702
|
+
declare enum JobLocationEnumV2 {
|
|
703
|
+
ONSITE = "ONSITE",
|
|
704
|
+
REMOTE = "REMOTE",
|
|
705
|
+
HYBRID = "HYBRID"
|
|
978
706
|
}
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
707
|
+
declare enum EmploymentTypeV2 {
|
|
708
|
+
FULLTIME = "FULLTIME",
|
|
709
|
+
PARTTIME = "PARTTIME",
|
|
710
|
+
BOTH = "BOTH",
|
|
711
|
+
HOURLY = "HOURLY",
|
|
712
|
+
FREELANCE = "FREELANCE",
|
|
713
|
+
FTE = "FTE"
|
|
983
714
|
}
|
|
984
|
-
declare enum
|
|
985
|
-
|
|
986
|
-
|
|
715
|
+
declare enum typeOfExperienceDtoEnumV2 {
|
|
716
|
+
SINGLE = "SINGLE",
|
|
717
|
+
RANGE = "RANGE"
|
|
987
718
|
}
|
|
988
|
-
declare
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
invoiceId?: number;
|
|
992
|
-
invoice?: Invoice;
|
|
993
|
-
amount: number;
|
|
994
|
-
escrowType: EscrowWalletTransactionTypeEnum;
|
|
995
|
-
description: string;
|
|
996
|
-
completedAt: Date;
|
|
997
|
-
escrowTransactionFor: EscrowWalletTransactionForEnum;
|
|
998
|
-
metaData: string;
|
|
719
|
+
declare enum StepCompletedEnumV2 {
|
|
720
|
+
BASIC_INFORMATION = "BASIC_INFORMATION",
|
|
721
|
+
JOB_DESCRIPTION = "JOB_DESCRIPTION"
|
|
999
722
|
}
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
freelancer?: User;
|
|
1008
|
-
contractId?: number;
|
|
1009
|
-
contract?: Contract;
|
|
1010
|
-
escrowBalance: string;
|
|
1011
|
-
metadata: Record<string, any>;
|
|
1012
|
-
escrowWalletTransactions: EscrowWalletTransaction[];
|
|
723
|
+
declare class JobLocationDto {
|
|
724
|
+
countryId: number | null;
|
|
725
|
+
stateId: number | null;
|
|
726
|
+
cityId: number | null;
|
|
727
|
+
countryName?: string | null;
|
|
728
|
+
stateName?: string | null;
|
|
729
|
+
cityName?: string | null;
|
|
1013
730
|
}
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
731
|
+
declare class JobBasicInformationV2Dto {
|
|
732
|
+
isDraft?: boolean;
|
|
733
|
+
jobRole: string;
|
|
734
|
+
jobRoleCanonicalName?: string;
|
|
735
|
+
projectName?: string;
|
|
736
|
+
note?: string;
|
|
737
|
+
skills: string[];
|
|
738
|
+
goodToHaveSkills: string[];
|
|
739
|
+
openings: number;
|
|
740
|
+
locationMode: JobLocationEnumV2;
|
|
741
|
+
locations: JobLocationDto[];
|
|
742
|
+
typeOfEmployment: EmploymentTypeV2;
|
|
743
|
+
currency?: string;
|
|
744
|
+
expectedSalaryFrom: number;
|
|
745
|
+
hideExpectedSalaryFrom: boolean;
|
|
746
|
+
expectedSalaryTo: number;
|
|
747
|
+
hideExpectedSalaryTo: boolean;
|
|
748
|
+
expectedAnnualBudgetFrom: number;
|
|
749
|
+
hideExpectedAnnualBudgetFrom: boolean;
|
|
750
|
+
expectedAnnualBudgetTo: number;
|
|
751
|
+
hideExpectedAnnualBudgetTo: boolean;
|
|
752
|
+
years: string;
|
|
753
|
+
months: string;
|
|
754
|
+
weeks: string;
|
|
755
|
+
days: string;
|
|
756
|
+
numberOfHours: number;
|
|
757
|
+
candidateCommunicationSkills?: string;
|
|
758
|
+
academicQualification?: string;
|
|
759
|
+
yearsOfExperienceFrom?: string;
|
|
760
|
+
yearsOfExperienceTo?: string;
|
|
761
|
+
businessIndustry?: string;
|
|
762
|
+
stepCompleted?: StepCompletedEnumV2;
|
|
763
|
+
additionalComment?: string;
|
|
1026
764
|
}
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
SOW = "SOW",
|
|
1031
|
-
MSA = "MSA"
|
|
765
|
+
|
|
766
|
+
declare class CloseJobDto {
|
|
767
|
+
reason?: string;
|
|
1032
768
|
}
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
jobId:
|
|
1036
|
-
|
|
1037
|
-
clientId: number;
|
|
1038
|
-
client: User;
|
|
1039
|
-
freelancerId: number;
|
|
1040
|
-
freelancer: User;
|
|
1041
|
-
duration: number;
|
|
1042
|
-
status: ContractStatusEnum;
|
|
1043
|
-
type: ContractTypeEnum;
|
|
1044
|
-
invoicingCycle: string;
|
|
1045
|
-
escrowDepositeAmount: number;
|
|
1046
|
-
startDate: Date;
|
|
1047
|
-
endDate: Date;
|
|
1048
|
-
originalDocumentUrl: string;
|
|
1049
|
-
contractDocumentUrl: string;
|
|
1050
|
-
clientSignedAt: Date;
|
|
1051
|
-
freelancerViewed: boolean;
|
|
1052
|
-
freelancerViewedAt: Date;
|
|
1053
|
-
freelancerSignedAt: Date;
|
|
1054
|
-
rejectedAt: Date;
|
|
1055
|
-
rejectReason: string;
|
|
1056
|
-
resendCount: number;
|
|
1057
|
-
isWorkContractSent: boolean;
|
|
1058
|
-
isEscrowDeposited: boolean;
|
|
1059
|
-
signaturePositions: any;
|
|
1060
|
-
metaData: any;
|
|
1061
|
-
escrowWallet: EscrowWallet;
|
|
769
|
+
|
|
770
|
+
declare class CreateJobApplicationDto {
|
|
771
|
+
jobId: string;
|
|
772
|
+
isCta?: boolean;
|
|
1062
773
|
}
|
|
1063
774
|
|
|
1064
|
-
declare enum
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
SEND_BACK = "SEND_BACK",
|
|
1068
|
-
APPROVED = "APPROVED",
|
|
775
|
+
declare enum JobApplicationStatus {
|
|
776
|
+
PENDING = "PENDING",
|
|
777
|
+
SHORTLISTED = "SHORTLISTED",
|
|
1069
778
|
REJECTED = "REJECTED",
|
|
1070
|
-
|
|
779
|
+
HIRED = "HIRED",
|
|
780
|
+
WITHDRAWN = "WITHDRAWN"
|
|
1071
781
|
}
|
|
1072
|
-
declare class
|
|
1073
|
-
|
|
1074
|
-
job: Job;
|
|
1075
|
-
clientId: number;
|
|
1076
|
-
client: User;
|
|
1077
|
-
freelancerId: number;
|
|
1078
|
-
freelancer: User;
|
|
1079
|
-
startDate: Date;
|
|
1080
|
-
endDate: Date;
|
|
1081
|
-
startTime: string;
|
|
1082
|
-
endTime: string;
|
|
1083
|
-
workedHours: string;
|
|
1084
|
-
taskId: number;
|
|
1085
|
-
taskName: string;
|
|
1086
|
-
description: string;
|
|
1087
|
-
weekStartDate: Date;
|
|
1088
|
-
weekEndDate: Date;
|
|
1089
|
-
rejectedAt: Date;
|
|
1090
|
-
submittedAt: Date;
|
|
1091
|
-
resubmittedAt: Date;
|
|
1092
|
-
approvedAt: Date;
|
|
1093
|
-
status: TimesheetStatusEnum;
|
|
1094
|
-
clientSendBackReason: string;
|
|
782
|
+
declare class ChangeJobApplicationStatusDto {
|
|
783
|
+
status: JobApplicationStatus;
|
|
1095
784
|
}
|
|
1096
785
|
|
|
1097
|
-
declare class
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
countryId: number;
|
|
1101
|
-
countryName: string;
|
|
1102
|
-
country: Country;
|
|
1103
|
-
stateId: number;
|
|
1104
|
-
stateName: string;
|
|
1105
|
-
state: State;
|
|
1106
|
-
cityId: number;
|
|
1107
|
-
cityName: string;
|
|
1108
|
-
city: City;
|
|
1109
|
-
locationWiseOpenings: number;
|
|
786
|
+
declare class ChangeJobApplicationStatusBulkDto {
|
|
787
|
+
jobApplicationIds: number[];
|
|
788
|
+
status: JobApplicationStatus;
|
|
1110
789
|
}
|
|
1111
790
|
|
|
1112
|
-
declare
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
791
|
+
declare const PROFILE_PATTERN: {
|
|
792
|
+
fetchFreelancerProfile: string;
|
|
793
|
+
fetchFreelancerPublicProfile: string;
|
|
794
|
+
fetchFreelancerScreeningResult: string;
|
|
795
|
+
fetchFreelancerScreeningResultPublic: string;
|
|
796
|
+
changeFreelancerPassword: string;
|
|
797
|
+
uploadFreelancerProfilePic: string;
|
|
798
|
+
updateFreelancerProfile: string;
|
|
799
|
+
uploadFreelancerServiceAgreement: string;
|
|
800
|
+
fetchFreelancerServiceAgreement: string;
|
|
801
|
+
generateFreelancerServiceAgreement: string;
|
|
802
|
+
esignFreelancerServiceAgreementForClient: string;
|
|
803
|
+
freelancerResumeDataMappingDev: string;
|
|
804
|
+
freelancerMcqScoreMappingDev: string;
|
|
805
|
+
fetchFreelancerDropdown: string;
|
|
806
|
+
fetchFreelancerDesignationDropdown: string;
|
|
807
|
+
deleteFreelancerProfilePic: string;
|
|
808
|
+
fetchRecommendedJobsForFreelancer: string;
|
|
809
|
+
fetchRecommendedClientsDropdownForFreelancerV2: string;
|
|
810
|
+
fetchRecommendedJobsDropdownForFreelancerV2: string;
|
|
811
|
+
fetchRecommendedJobsForFreelancerV2: string;
|
|
812
|
+
fetchAppliedJobsOfFreelancer: string;
|
|
813
|
+
fetchAppliedJobsDropdownForFreelancer: string;
|
|
814
|
+
countOfActiveFreelancers: string;
|
|
815
|
+
findUsersByUuids: string;
|
|
816
|
+
markFollowedOnLinkedIn: string;
|
|
817
|
+
fetchFreelancerResumeByUuId: string;
|
|
818
|
+
fetchClientByIdForContract: string;
|
|
819
|
+
fetchFreelancerByIdForContract: string;
|
|
820
|
+
freelancerDataSetup: string;
|
|
821
|
+
freelancerEmailAndMobileMasking: string;
|
|
822
|
+
fetchClientInfoForChat: string;
|
|
823
|
+
fetchAiAssessmentDetails: string;
|
|
824
|
+
captureAiAssessmentResult: string;
|
|
825
|
+
};
|
|
826
|
+
declare const FREELANCER_ASSESSMENT_REQUEST_PATTERN: {
|
|
827
|
+
fetchAssessmentRequestsForFreelancer: string;
|
|
828
|
+
createFreelancerAssessmentRequest: string;
|
|
829
|
+
};
|
|
830
|
+
|
|
831
|
+
declare class FreelancerChangePasswordDto {
|
|
832
|
+
oldPassword: string;
|
|
833
|
+
newPassword: string;
|
|
1136
834
|
}
|
|
1137
835
|
|
|
1138
|
-
declare enum
|
|
1139
|
-
ONSITE = "ONSITE",
|
|
1140
|
-
REMOTE = "REMOTE",
|
|
1141
|
-
HYBRID = "HYBRID",
|
|
1142
|
-
BOTH = "BOTH"
|
|
1143
|
-
}
|
|
1144
|
-
declare enum typeOfExperienceEnum {
|
|
1145
|
-
SINGLE = "SINGLE",
|
|
1146
|
-
RANGE = "RANGE"
|
|
1147
|
-
}
|
|
1148
|
-
declare enum TypeOfEmploymentEnum {
|
|
1149
|
-
FULLTIME = "FULLTIME",
|
|
1150
|
-
PARTTIME = "PARTTIME",
|
|
1151
|
-
BOTH = "BOTH",
|
|
1152
|
-
HOURLY = "HOURLY",
|
|
836
|
+
declare enum NatureOfWorkDto$1 {
|
|
1153
837
|
FREELANCE = "FREELANCE",
|
|
1154
|
-
FTE = "FTE"
|
|
1155
|
-
|
|
1156
|
-
declare enum Step {
|
|
1157
|
-
BASIC_INFORMATION = "BASIC_INFORMATION",
|
|
1158
|
-
ADDITIONAL_COMMENTS = "ADDITIONAL_COMMENTS",
|
|
1159
|
-
JOB_DESCRIPTION = "JOB_DESCRIPTION"
|
|
1160
|
-
}
|
|
1161
|
-
declare enum JobStatusEnum {
|
|
1162
|
-
ACTIVE = "ACTIVE",
|
|
1163
|
-
OPEN = "OPEN",
|
|
1164
|
-
DRAFT = "DRAFT",
|
|
1165
|
-
ONHOLD = "ONHOLD",
|
|
1166
|
-
CLOSED = "CLOSED",
|
|
1167
|
-
COMPLETED = "COMPLETED"
|
|
838
|
+
FTE = "FTE",
|
|
839
|
+
BOTH = "BOTH"
|
|
1168
840
|
}
|
|
1169
|
-
declare enum
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
YEAR = "YEAR"
|
|
841
|
+
declare enum ModeOfWorkDto {
|
|
842
|
+
ONSITE = "ONSITE",
|
|
843
|
+
REMOTE = "REMOTE",
|
|
844
|
+
HYBRID = "HYBRID"
|
|
1174
845
|
}
|
|
1175
|
-
declare class
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
846
|
+
declare class UpdateFreelancerProfileDto {
|
|
847
|
+
firstName: string;
|
|
848
|
+
lastName: string;
|
|
849
|
+
designation: string;
|
|
850
|
+
experience: string;
|
|
851
|
+
email: string;
|
|
852
|
+
mobileCode: string;
|
|
853
|
+
mobile: string;
|
|
1179
854
|
countryId: number;
|
|
1180
|
-
country: Country;
|
|
1181
855
|
stateId: number;
|
|
1182
|
-
state: State;
|
|
1183
856
|
cityId: number;
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
currency: string;
|
|
1200
|
-
expectedSalaryFrom: number;
|
|
1201
|
-
hideExpectedSalaryFrom: boolean;
|
|
1202
|
-
expectedSalaryTo: number;
|
|
1203
|
-
hideExpectedSalaryTo: boolean;
|
|
1204
|
-
expectedAnnualBudgetFrom: number;
|
|
1205
|
-
hideExpectedAnnualBudgetFrom: boolean;
|
|
1206
|
-
expectedAnnualBudgetTo: number;
|
|
1207
|
-
hideExpectedAnnualBudgetTo: boolean;
|
|
1208
|
-
years: string;
|
|
1209
|
-
months: string;
|
|
1210
|
-
weeks: string;
|
|
1211
|
-
days: string;
|
|
1212
|
-
tentativeStartDate: Date;
|
|
1213
|
-
tentativeEndDate: Date;
|
|
1214
|
-
durationType: DurationTypeEnum;
|
|
1215
|
-
duration: string;
|
|
1216
|
-
numberOfHours: number;
|
|
1217
|
-
description: string;
|
|
1218
|
-
additionalComment: string;
|
|
1219
|
-
onboardingTat: string;
|
|
1220
|
-
candidateCommunicationSkills: string;
|
|
1221
|
-
stepCompleted: Step;
|
|
1222
|
-
status: JobStatusEnum;
|
|
1223
|
-
viewedCount: number;
|
|
1224
|
-
applicationCount: number;
|
|
1225
|
-
isContractSigned: boolean;
|
|
1226
|
-
isInterviewCreated: boolean;
|
|
1227
|
-
interviewInvites: InterviewInvite[];
|
|
1228
|
-
jobSkills: JobSkill[];
|
|
1229
|
-
jobApplications: JobApplication[];
|
|
1230
|
-
interviews: Interview[];
|
|
1231
|
-
f2fInterviews: F2FInterview[];
|
|
1232
|
-
recommendations: JobRecommendation[];
|
|
1233
|
-
contracts: Contract[];
|
|
1234
|
-
hirings: Hiring[];
|
|
1235
|
-
escrowWallets: EscrowWallet[];
|
|
1236
|
-
timesheets: Timesheet[];
|
|
1237
|
-
timesheetLine: TimesheetLine[];
|
|
1238
|
-
invoice: Invoice[];
|
|
1239
|
-
clientCandidatePreferences: ClientCandidatePreference[];
|
|
1240
|
-
jobLocations: JobLocation[];
|
|
1241
|
-
ratings: Rating[];
|
|
857
|
+
expectedHourlyCompensation: string;
|
|
858
|
+
expectedAnnualCompensation: string;
|
|
859
|
+
numberOfHours?: number;
|
|
860
|
+
natureOfWork: NatureOfWorkDto$1;
|
|
861
|
+
modeOfWork: ModeOfWorkDto;
|
|
862
|
+
portfolioLink?: string;
|
|
863
|
+
address: string;
|
|
864
|
+
addressLine?: string;
|
|
865
|
+
postalCode: string;
|
|
866
|
+
about?: string;
|
|
867
|
+
linkedinProfileLink?: string;
|
|
868
|
+
kaggleProfileLink?: string;
|
|
869
|
+
githubProfileLink?: string;
|
|
870
|
+
stackOverflowProfileLink?: string;
|
|
871
|
+
resumeUrl?: string;
|
|
1242
872
|
}
|
|
1243
873
|
|
|
1244
|
-
declare
|
|
1245
|
-
|
|
1246
|
-
SECONDARY = "SECONDARY"
|
|
874
|
+
declare class FreelancerESignatureDto {
|
|
875
|
+
uuid: string;
|
|
1247
876
|
}
|
|
1248
|
-
|
|
877
|
+
|
|
878
|
+
declare class FetchClientInfoForChatDto {
|
|
879
|
+
clientId: number;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
declare class CaptureAiAssessmentResultDto {
|
|
883
|
+
aiAssessmentUuid: string;
|
|
884
|
+
result?: any;
|
|
885
|
+
status?: string;
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
declare const BANK_PATTERN: {
|
|
889
|
+
addFreelancerBankDetails: string;
|
|
890
|
+
fetchFreelancerBankDetails: string;
|
|
891
|
+
updateFreelancerBankDetails: string;
|
|
892
|
+
deleteBankAccount: string;
|
|
893
|
+
fetchBankAccounts: string;
|
|
894
|
+
setBankAccountPrimary: string;
|
|
895
|
+
};
|
|
896
|
+
|
|
897
|
+
declare enum BankAccountScope {
|
|
1249
898
|
DOMESTIC = "DOMESTIC",
|
|
1250
899
|
INTERNATIONAL = "INTERNATIONAL"
|
|
1251
900
|
}
|
|
1252
|
-
declare class
|
|
1253
|
-
userId: number;
|
|
1254
|
-
user: User;
|
|
901
|
+
declare class FreelancerBankDetailsDto {
|
|
1255
902
|
name: string;
|
|
1256
903
|
mobileCode: string;
|
|
1257
904
|
mobile: string;
|
|
@@ -1259,817 +906,914 @@ declare class BankDetail extends BaseEntity {
|
|
|
1259
906
|
address: string;
|
|
1260
907
|
accountNumber: string;
|
|
1261
908
|
bankName: string;
|
|
1262
|
-
ifscCode: string;
|
|
1263
909
|
branchName: string;
|
|
910
|
+
ifscCode: string;
|
|
1264
911
|
routingNo: string;
|
|
1265
912
|
abaNumber: string;
|
|
1266
913
|
iban: string;
|
|
1267
|
-
accountType:
|
|
1268
|
-
accountScope:
|
|
1269
|
-
}
|
|
1270
|
-
|
|
1271
|
-
declare class SystemPreference extends BaseEntity {
|
|
1272
|
-
userId: number;
|
|
1273
|
-
user: User;
|
|
1274
|
-
key: string;
|
|
1275
|
-
value: boolean;
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
declare class FreelancerExperience extends BaseEntity {
|
|
1279
|
-
userId: number;
|
|
1280
|
-
user: User;
|
|
1281
|
-
companyName: string;
|
|
1282
|
-
designation: string;
|
|
1283
|
-
jobDuration: string;
|
|
1284
|
-
description: string;
|
|
1285
|
-
}
|
|
1286
|
-
|
|
1287
|
-
declare class FreelancerEducation extends BaseEntity {
|
|
1288
|
-
userId: number;
|
|
1289
|
-
user: User;
|
|
1290
|
-
degree: string;
|
|
1291
|
-
university: string;
|
|
1292
|
-
yearOfGraduation: string;
|
|
1293
|
-
}
|
|
1294
|
-
|
|
1295
|
-
declare class FreelancerProject extends BaseEntity {
|
|
1296
|
-
userId: number;
|
|
1297
|
-
user: User;
|
|
1298
|
-
projectName: string;
|
|
1299
|
-
startDate: Date;
|
|
1300
|
-
endDate: Date;
|
|
1301
|
-
clientName: string;
|
|
1302
|
-
gitLink: string;
|
|
1303
|
-
description: string;
|
|
1304
|
-
}
|
|
1305
|
-
|
|
1306
|
-
declare class FreelancerCaseStudy extends BaseEntity {
|
|
1307
|
-
userId: number;
|
|
1308
|
-
user: User;
|
|
1309
|
-
projectName: string;
|
|
1310
|
-
caseStudyLink: string;
|
|
1311
|
-
description: string;
|
|
1312
|
-
}
|
|
1313
|
-
|
|
1314
|
-
declare enum FreelancerSkillCategoryEnum {
|
|
1315
|
-
GOOD_TO_HAVE = 0,
|
|
1316
|
-
MUST_HAVE = 1
|
|
1317
|
-
}
|
|
1318
|
-
declare class FreelancerSkill extends BaseEntity {
|
|
1319
|
-
userId: number;
|
|
1320
|
-
user: User;
|
|
1321
|
-
skillName: string;
|
|
1322
|
-
skillCategory: FreelancerSkillCategoryEnum;
|
|
1323
|
-
}
|
|
1324
|
-
|
|
1325
|
-
declare class FreelancerTool extends BaseEntity {
|
|
1326
|
-
userId: number;
|
|
1327
|
-
user: User;
|
|
1328
|
-
toolName: string;
|
|
914
|
+
accountType: string;
|
|
915
|
+
accountScope: BankAccountScope;
|
|
1329
916
|
}
|
|
1330
917
|
|
|
1331
|
-
declare
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
frameworkName: string;
|
|
1335
|
-
}
|
|
918
|
+
declare const PLAN_PATTERN: {
|
|
919
|
+
fetchPlans: string;
|
|
920
|
+
};
|
|
1336
921
|
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
FAILED = "FAILED",
|
|
1343
|
-
EXPIRED = "EXPIRED",
|
|
1344
|
-
POSTPONED = "POSTPONED",
|
|
1345
|
-
RESCHEDULED = "RESCHEDULED",
|
|
1346
|
-
EXITED = "EXITED"
|
|
1347
|
-
}
|
|
1348
|
-
declare class FreelancerAssessment extends BaseEntity {
|
|
1349
|
-
userId: number;
|
|
1350
|
-
user: User;
|
|
1351
|
-
interviewId: string;
|
|
1352
|
-
interviewLink: string;
|
|
1353
|
-
recordingLink: string;
|
|
1354
|
-
iframeResponse: string;
|
|
1355
|
-
interviewSummary: string;
|
|
1356
|
-
status: AssessmentStatusEnum;
|
|
1357
|
-
taskId: string;
|
|
922
|
+
interface IFetchPlanResponse {
|
|
923
|
+
statusCode: number;
|
|
924
|
+
status: boolean;
|
|
925
|
+
message: string;
|
|
926
|
+
data: any;
|
|
1358
927
|
}
|
|
1359
928
|
|
|
1360
|
-
declare
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
929
|
+
declare const SYSTEM_PREFERENCES_PATTERN: {
|
|
930
|
+
fetchSystemPreference: string;
|
|
931
|
+
updateSystemPreference: string;
|
|
932
|
+
createSystemPreference: string;
|
|
933
|
+
};
|
|
934
|
+
|
|
935
|
+
declare enum SystemPreferenceKey {
|
|
936
|
+
EMAIL_NOTIFICATION = "EMAIL_NOTIFICATION",
|
|
937
|
+
DARK_MODE = "DARK_MODE"
|
|
1365
938
|
}
|
|
1366
|
-
declare class
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
documentType: DocumentType;
|
|
1370
|
-
frontDocumentUrl: string;
|
|
1371
|
-
backDocumentUrl: string;
|
|
1372
|
-
declarationAccepted: string;
|
|
1373
|
-
digitalSignatureUrl: string;
|
|
939
|
+
declare class SystemPreferenceDto {
|
|
940
|
+
value: boolean;
|
|
941
|
+
key: SystemPreferenceKey;
|
|
1374
942
|
}
|
|
1375
943
|
|
|
1376
|
-
declare
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
944
|
+
declare const NOTIFICATION_PATTERN: {
|
|
945
|
+
handleAccountVerificationNotification: string;
|
|
946
|
+
handleResetLinkNotification: string;
|
|
947
|
+
handleBusinessAccountCreatedNotification: string;
|
|
948
|
+
handleBusinessAccountSetPasswordNotification: string;
|
|
949
|
+
handleFreelancerAccountSetPasswordNotification: string;
|
|
950
|
+
handleSendBulkInterviewInvites: string;
|
|
951
|
+
handleFreelancerAccountCreatedNotification: string;
|
|
952
|
+
handleSetPasswordLinkNotification: string;
|
|
953
|
+
handleLeadNotificationToAdmin: string;
|
|
954
|
+
handleDailyFreelancerReportToStakeHolders: string;
|
|
955
|
+
handleAiAssessmentLinkNotification: string;
|
|
956
|
+
handleRecordingProcessingErrorNotification: string;
|
|
957
|
+
handleResumeParserErrorNotification: string;
|
|
958
|
+
handleFreelancerExportReadyNotification: string;
|
|
959
|
+
handleFreelancerExportFailedNotification: string;
|
|
960
|
+
handleAiInterviewResultErrorNotification: string;
|
|
961
|
+
handleAiInterviewRecordingErrorNotification: string;
|
|
962
|
+
handleAiAssessmentInterviewResultErrorNotification: string;
|
|
963
|
+
handleAiAssessmentInterviewRecordingErrorNotification: string;
|
|
964
|
+
};
|
|
965
|
+
declare const SMS_PATTERN: {
|
|
966
|
+
sendTest: string;
|
|
967
|
+
queueStats: string;
|
|
968
|
+
cleanQueue: string;
|
|
969
|
+
status: string;
|
|
970
|
+
accountInfo: string;
|
|
971
|
+
};
|
|
972
|
+
declare const EMAIL_PATTERN: {
|
|
973
|
+
sendTest: string;
|
|
974
|
+
send: string;
|
|
975
|
+
sendTemplate: string;
|
|
976
|
+
getQueueStats: string;
|
|
977
|
+
cleanQueue: string;
|
|
978
|
+
};
|
|
979
|
+
|
|
980
|
+
declare class TestNotificationDto {
|
|
981
|
+
email?: string;
|
|
982
|
+
phone?: string;
|
|
983
|
+
message?: string;
|
|
984
|
+
data?: any;
|
|
985
|
+
type?: string;
|
|
1381
986
|
}
|
|
1382
987
|
|
|
1383
|
-
declare
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
988
|
+
declare const RATING_PATTERN: {
|
|
989
|
+
addRating: string;
|
|
990
|
+
fetchRating: string;
|
|
991
|
+
};
|
|
992
|
+
|
|
993
|
+
declare abstract class BaseEntity {
|
|
994
|
+
id: number;
|
|
995
|
+
uuid: string;
|
|
996
|
+
createdAt: Date;
|
|
997
|
+
createdBy: number;
|
|
998
|
+
updatedAt: Date;
|
|
999
|
+
updatedBy: number;
|
|
1000
|
+
isDeleted: boolean;
|
|
1001
|
+
deletedBy: number;
|
|
1002
|
+
deletedAt: Date;
|
|
1389
1003
|
}
|
|
1390
1004
|
|
|
1391
|
-
declare class
|
|
1005
|
+
declare class RefreshToken {
|
|
1006
|
+
id: string;
|
|
1392
1007
|
userId: number;
|
|
1008
|
+
tokenId: string;
|
|
1009
|
+
deviceInfo: any;
|
|
1010
|
+
isRevoked: boolean;
|
|
1011
|
+
expiresAt: Date;
|
|
1012
|
+
createdAt: Date;
|
|
1013
|
+
updatedAt: Date;
|
|
1393
1014
|
user: User;
|
|
1394
|
-
name: string;
|
|
1395
|
-
slug: string;
|
|
1396
|
-
description: string;
|
|
1397
|
-
isActive: boolean;
|
|
1398
|
-
rolePermissions: CompanyRolePermission[];
|
|
1399
1015
|
}
|
|
1400
1016
|
|
|
1401
|
-
declare class
|
|
1017
|
+
declare class SenseloafLog {
|
|
1018
|
+
id: number;
|
|
1402
1019
|
userId: number;
|
|
1020
|
+
type: string;
|
|
1021
|
+
endpoint: string;
|
|
1022
|
+
success: boolean;
|
|
1023
|
+
request: any;
|
|
1024
|
+
response: any;
|
|
1025
|
+
errorMessage: string;
|
|
1026
|
+
scope: string;
|
|
1027
|
+
createdAt: Date;
|
|
1403
1028
|
user: User;
|
|
1404
|
-
role: CompanyRole;
|
|
1405
|
-
companyRoleId: number;
|
|
1406
|
-
assignedBy?: number;
|
|
1407
1029
|
}
|
|
1408
1030
|
|
|
1409
|
-
declare
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1031
|
+
declare class Otp {
|
|
1032
|
+
id: number;
|
|
1033
|
+
userId: number;
|
|
1034
|
+
otp: string;
|
|
1035
|
+
otpPurpose: string;
|
|
1036
|
+
target: string;
|
|
1037
|
+
fallbackTarget: string;
|
|
1038
|
+
expiresAt: Date;
|
|
1039
|
+
isUsed: boolean;
|
|
1040
|
+
isVerified: boolean;
|
|
1041
|
+
resendCount: number;
|
|
1042
|
+
createdAt: Date;
|
|
1043
|
+
user: User;
|
|
1421
1044
|
}
|
|
1422
1045
|
|
|
1423
|
-
declare enum
|
|
1424
|
-
|
|
1425
|
-
|
|
1046
|
+
declare enum KindOfHire {
|
|
1047
|
+
FULLTIME = "FULLTIME",
|
|
1048
|
+
PARTTIME = "PARTTIME",
|
|
1049
|
+
BOTH = "BOTH",
|
|
1050
|
+
HOURLY = "HOURLY",
|
|
1051
|
+
FREELANCE = "FREELANCE",
|
|
1052
|
+
FTE = "FTE"
|
|
1426
1053
|
}
|
|
1427
|
-
declare
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
candidate: User;
|
|
1433
|
-
options: AssessmetQuestionOption[];
|
|
1434
|
-
answers: AssessmentAnswer[];
|
|
1054
|
+
declare enum ModeOfHire {
|
|
1055
|
+
ONSITE = "ONSITE",
|
|
1056
|
+
REMOTE = "REMOTE",
|
|
1057
|
+
HYBRID = "HYBRID",
|
|
1058
|
+
BOTH = "BOTH"
|
|
1435
1059
|
}
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1060
|
+
declare enum FromUsOn {
|
|
1061
|
+
LINKEDIN = "LINKEDIN",
|
|
1062
|
+
GOOGLE = "GOOGLE",
|
|
1063
|
+
REFERRAL = "REFERRAL",
|
|
1064
|
+
OTHER = "OTHER"
|
|
1441
1065
|
}
|
|
1442
|
-
declare
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
questionId: number;
|
|
1446
|
-
question: AssessmetQuestion;
|
|
1447
|
-
selectedOptionId: number;
|
|
1448
|
-
option: AssessmetQuestionOption;
|
|
1449
|
-
selectedAnswerType: SelectedAnswerTypeEnum;
|
|
1450
|
-
score: number;
|
|
1066
|
+
declare enum CompanyOnboardingStepEnum {
|
|
1067
|
+
SIGN_UP = "SIGN_UP",
|
|
1068
|
+
PROFILE_COMPLETION = "PROFILE_COMPLETION"
|
|
1451
1069
|
}
|
|
1452
|
-
|
|
1453
|
-
|
|
1070
|
+
declare enum HiringCommissionTypeEnum {
|
|
1071
|
+
PERCENTAGE = "PERCENTAGE",
|
|
1072
|
+
AMOUNT = "AMOUNT"
|
|
1073
|
+
}
|
|
1074
|
+
declare class CompanyProfile extends BaseEntity {
|
|
1454
1075
|
userId: number;
|
|
1455
1076
|
user: User;
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1077
|
+
companyName: string;
|
|
1078
|
+
bio: string;
|
|
1079
|
+
webSite: string;
|
|
1080
|
+
aboutCompany: string;
|
|
1081
|
+
isServiceAgreementSigned: boolean;
|
|
1082
|
+
originalDocumentUrl: string;
|
|
1083
|
+
serviceAgreementUrl: string;
|
|
1084
|
+
serviceAggrementSignedOn: Date;
|
|
1085
|
+
countryId: number;
|
|
1086
|
+
country: Country;
|
|
1087
|
+
stateId: number;
|
|
1088
|
+
state: State;
|
|
1089
|
+
cityId: number;
|
|
1090
|
+
city: City;
|
|
1091
|
+
companyAddress: string;
|
|
1092
|
+
addressLine: string;
|
|
1093
|
+
postalCode: string;
|
|
1094
|
+
phoneNumber: string;
|
|
1095
|
+
skills: string[];
|
|
1096
|
+
requiredFreelancer: string;
|
|
1097
|
+
kindOfHiring: KindOfHire;
|
|
1098
|
+
numberOfHours: number;
|
|
1099
|
+
modeOfHire: ModeOfHire;
|
|
1100
|
+
foundUsOn: FromUsOn;
|
|
1101
|
+
foundUsOnDetail: string;
|
|
1102
|
+
onboardingStepCompleted: CompanyOnboardingStepEnum;
|
|
1103
|
+
signaturePositions: any;
|
|
1104
|
+
hiringCommisionTypeForFte: HiringCommissionTypeEnum;
|
|
1105
|
+
hiringCommissionValueForFte: number;
|
|
1106
|
+
rating: number;
|
|
1482
1107
|
}
|
|
1483
1108
|
|
|
1484
|
-
declare class
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1109
|
+
declare class City extends BaseEntity {
|
|
1110
|
+
countryId: number;
|
|
1111
|
+
country: Country;
|
|
1112
|
+
stateId: number;
|
|
1113
|
+
state: State;
|
|
1114
|
+
cityCode: string;
|
|
1115
|
+
cityName: string;
|
|
1116
|
+
isActive: boolean;
|
|
1117
|
+
freelancerProfile: FreelancerProfile[];
|
|
1118
|
+
companyProfile: CompanyProfile[];
|
|
1489
1119
|
}
|
|
1490
1120
|
|
|
1491
|
-
declare class
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1121
|
+
declare class State extends BaseEntity {
|
|
1122
|
+
countryId: number;
|
|
1123
|
+
country: Country;
|
|
1124
|
+
cities: City[];
|
|
1125
|
+
stateName: string;
|
|
1126
|
+
stateCode: string;
|
|
1127
|
+
isActive: boolean;
|
|
1128
|
+
freelancerProfile: FreelancerProfile[];
|
|
1129
|
+
companyProfile: CompanyProfile[];
|
|
1496
1130
|
}
|
|
1497
1131
|
|
|
1498
|
-
declare class
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1132
|
+
declare class Country extends BaseEntity {
|
|
1133
|
+
countryName: string;
|
|
1134
|
+
countryIsoCode: string;
|
|
1135
|
+
countryPhoneCode: string;
|
|
1136
|
+
currency: string;
|
|
1137
|
+
isActive: boolean;
|
|
1138
|
+
states: State[];
|
|
1139
|
+
freelancerProfile: FreelancerProfile[];
|
|
1140
|
+
companyProfile: CompanyProfile[];
|
|
1502
1141
|
}
|
|
1503
1142
|
|
|
1504
|
-
declare enum
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
ESCALATED = "ESCALATED",
|
|
1512
|
-
CANCELLED = "CANCELLED",
|
|
1513
|
-
REOPENED = "REOPENED"
|
|
1143
|
+
declare enum NatureOfWork {
|
|
1144
|
+
FULLTIME = "FULLTIME",
|
|
1145
|
+
PARTTIME = "PARTTIME",
|
|
1146
|
+
BOTH = "BOTH",
|
|
1147
|
+
HOURLY = "HOURLY",
|
|
1148
|
+
FREELANCE = "FREELANCE",
|
|
1149
|
+
FTE = "FTE"
|
|
1514
1150
|
}
|
|
1515
|
-
declare enum
|
|
1516
|
-
|
|
1517
|
-
|
|
1151
|
+
declare enum ModeOfWork {
|
|
1152
|
+
ONSITE = "ONSITE",
|
|
1153
|
+
REMOTE = "REMOTE",
|
|
1154
|
+
HYBRID = "HYBRID",
|
|
1155
|
+
BOTH = "BOTH"
|
|
1518
1156
|
}
|
|
1519
|
-
declare
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
initiatorType: DisputeStatusEnum;
|
|
1530
|
-
initiatorId: number;
|
|
1531
|
-
initiator: User;
|
|
1532
|
-
respondentId: number;
|
|
1533
|
-
respondent: User;
|
|
1534
|
-
attachments: any[];
|
|
1535
|
-
dynamicFields: Record<string, any>;
|
|
1157
|
+
declare enum OnboardingStepEnum {
|
|
1158
|
+
SIGN_UP = "SIGN_UP",
|
|
1159
|
+
UPLOAD_RESUME = "UPLOAD_RESUME",
|
|
1160
|
+
PARSE_RESUME = "PARSE_RESUME",
|
|
1161
|
+
MCQ_ASSESSMENT_INITIATED = "MCQ_ASSESSMENT_INITIATED",
|
|
1162
|
+
MCQ_ASSESSMENT_COMPLETED = "MCQ_ASSESSMENT_COMPLETED",
|
|
1163
|
+
AI_ASSESSMENT_INITIATED = "AI_ASSESSMENT_INITIATED",
|
|
1164
|
+
AI_ASSESSMENT_COMPLETED = "AI_ASSESSMENT_COMPLETED",
|
|
1165
|
+
CODING_CHALLENGE = "CODING_CHALLENGE",
|
|
1166
|
+
PROFILE_COMPLETION = "PROFILE_COMPLETION"
|
|
1536
1167
|
}
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
WITHDRAW = "WITHDRAW",
|
|
1542
|
-
INVOICE_PAYMENT = "INVOICE_PAYMENT",
|
|
1543
|
-
REFUND = "REFUND"
|
|
1168
|
+
declare enum McqStatusEnum {
|
|
1169
|
+
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
1170
|
+
PASSED = "PASSED",
|
|
1171
|
+
FAILED = "FAILED"
|
|
1544
1172
|
}
|
|
1545
|
-
declare enum
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1173
|
+
declare enum AiAssessmentStatusEnum {
|
|
1174
|
+
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
1175
|
+
COMPELETED = "COMPELETED",
|
|
1176
|
+
PASSED = "PASSED",
|
|
1549
1177
|
FAILED = "FAILED",
|
|
1550
|
-
|
|
1551
|
-
|
|
1178
|
+
SKIPPED = "SKIPPED",
|
|
1179
|
+
EXITED = "EXITED"
|
|
1552
1180
|
}
|
|
1553
|
-
declare class
|
|
1181
|
+
declare class FreelancerProfile extends BaseEntity {
|
|
1554
1182
|
userId: number;
|
|
1555
1183
|
user: User;
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1184
|
+
countryId: number;
|
|
1185
|
+
country: Country;
|
|
1186
|
+
stateId: number;
|
|
1187
|
+
state: State;
|
|
1188
|
+
cityId: number;
|
|
1189
|
+
city: City;
|
|
1190
|
+
talentId: string;
|
|
1191
|
+
resumeUrl: string;
|
|
1192
|
+
resumeUploadedOn: Date;
|
|
1193
|
+
resumeEligibility: string;
|
|
1194
|
+
resumeScore: string;
|
|
1195
|
+
mcqStatus: McqStatusEnum;
|
|
1196
|
+
mcqScore: number;
|
|
1197
|
+
isEligibleForAiAssessment: boolean;
|
|
1198
|
+
aiAssessmentStatus: AiAssessmentStatusEnum;
|
|
1199
|
+
isDeveloper: boolean;
|
|
1200
|
+
natureOfWork: NatureOfWork;
|
|
1201
|
+
numberOfHours: number;
|
|
1564
1202
|
currency: string;
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1203
|
+
expectedHourlyCompensation: number;
|
|
1204
|
+
expectedAnnualCompensation: number;
|
|
1205
|
+
modeOfWork: ModeOfWork;
|
|
1206
|
+
availabilityToJoin: string;
|
|
1207
|
+
isImmediateJoiner: boolean;
|
|
1208
|
+
linkedinProfileLink: string;
|
|
1209
|
+
kaggleProfileLink: string;
|
|
1210
|
+
githubProfileLink: string;
|
|
1211
|
+
stackOverflowProfileLink: string;
|
|
1212
|
+
portfolioLink: string;
|
|
1213
|
+
onboardingStepCompleted: OnboardingStepEnum;
|
|
1214
|
+
designation: string;
|
|
1215
|
+
experience: string;
|
|
1216
|
+
address: string;
|
|
1217
|
+
addressLine: string;
|
|
1218
|
+
postalCode: string;
|
|
1219
|
+
about: string;
|
|
1220
|
+
profileCompletedPercentage: Record<string, number>;
|
|
1221
|
+
originalDocumentUrl: string;
|
|
1222
|
+
isServiceAgreementSigned: boolean;
|
|
1223
|
+
serviceAgreementUrl: string;
|
|
1224
|
+
serviceAggrementSignedOn: Date;
|
|
1225
|
+
isExpertshubVerified: boolean;
|
|
1226
|
+
isFollowedOnLinkedIn: boolean;
|
|
1227
|
+
signaturePositions: any;
|
|
1228
|
+
rating: number;
|
|
1581
1229
|
}
|
|
1582
1230
|
|
|
1583
|
-
declare enum
|
|
1584
|
-
|
|
1585
|
-
|
|
1231
|
+
declare enum JobSkillCategoryEnum {
|
|
1232
|
+
GOOD_TO_HAVE = 0,
|
|
1233
|
+
MUST_HAVE = 1
|
|
1586
1234
|
}
|
|
1587
|
-
declare
|
|
1235
|
+
declare class JobSkill extends BaseEntity {
|
|
1236
|
+
jobId: number;
|
|
1237
|
+
job: Job;
|
|
1238
|
+
skillName: string;
|
|
1239
|
+
skillCategory: JobSkillCategoryEnum;
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
declare enum ApplicationStatusEnum {
|
|
1588
1243
|
PENDING = "PENDING",
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1244
|
+
SHORTLISTED = "SHORTLISTED",
|
|
1245
|
+
INTERVIEW_IN_PROGRESS = "INTERVIEW_IN_PROGRESS",
|
|
1246
|
+
INTERVIEWED = "INTERVIEWED",
|
|
1247
|
+
OFFERED = "OFFERED",
|
|
1248
|
+
HIRED = "HIRED",
|
|
1249
|
+
REJECTED_BEFORE_INTERVIEW = "REJECTED_BEFORE_INTERVIEW",
|
|
1250
|
+
REJECTED_IN_INTERVIEW = "REJECTED_IN_INTERVIEW",
|
|
1251
|
+
REJECTED_AFTER_INTERVIEW = "REJECTED_AFTER_INTERVIEW",
|
|
1252
|
+
NOT_SUITABLE = "NOT_SUITABLE",
|
|
1253
|
+
WITHDRAWN = "WITHDRAWN"
|
|
1593
1254
|
}
|
|
1594
|
-
declare class
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1255
|
+
declare class JobApplication extends BaseEntity {
|
|
1256
|
+
jobApplicationId: string;
|
|
1257
|
+
jobId: number;
|
|
1258
|
+
job: Job;
|
|
1259
|
+
userId: number;
|
|
1260
|
+
user: User;
|
|
1261
|
+
status: ApplicationStatusEnum;
|
|
1262
|
+
appliedAt: Date;
|
|
1263
|
+
shortlistedAt: Date;
|
|
1264
|
+
interviewStartedAt: Date;
|
|
1265
|
+
interviewCompletedAt: Date;
|
|
1266
|
+
offeredAt: Date;
|
|
1267
|
+
hiredAt: Date;
|
|
1268
|
+
rejectedAt: Date;
|
|
1269
|
+
rejectionReason: string;
|
|
1270
|
+
withdrawnAt: Date;
|
|
1271
|
+
withdrawnReason: string;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
declare class InterviewSkill extends BaseEntity {
|
|
1275
|
+
interviewId: number;
|
|
1276
|
+
interview: Interview;
|
|
1277
|
+
skill: string;
|
|
1602
1278
|
description: string;
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1279
|
+
isActive: boolean;
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
declare enum InterviewQuestionType {
|
|
1283
|
+
AI = "AI",
|
|
1284
|
+
CUSTOM = "CUSTOM"
|
|
1607
1285
|
}
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1286
|
+
declare class InterviewQuestion extends BaseEntity {
|
|
1287
|
+
interviewId: number;
|
|
1288
|
+
interview: Interview;
|
|
1289
|
+
question: string;
|
|
1290
|
+
concepts: string[];
|
|
1291
|
+
questionType: InterviewQuestionType;
|
|
1292
|
+
isActive: boolean;
|
|
1613
1293
|
}
|
|
1614
|
-
|
|
1294
|
+
|
|
1295
|
+
declare enum InterviewInviteStatusEnum {
|
|
1615
1296
|
PENDING = "PENDING",
|
|
1616
|
-
|
|
1297
|
+
ACCEPTED = "ACCEPTED",
|
|
1298
|
+
REJECTED = "REJECTED",
|
|
1299
|
+
EXPIRED = "EXPIRED"
|
|
1617
1300
|
}
|
|
1618
|
-
declare class
|
|
1301
|
+
declare class InterviewInvite extends BaseEntity {
|
|
1302
|
+
interviewId: number;
|
|
1303
|
+
interview: Interview;
|
|
1619
1304
|
userId: number;
|
|
1620
1305
|
user: User;
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1306
|
+
jobId: number;
|
|
1307
|
+
job: Job;
|
|
1308
|
+
fullName: string;
|
|
1309
|
+
email: string;
|
|
1310
|
+
mobileCode: string;
|
|
1311
|
+
mobile: string;
|
|
1312
|
+
status: InterviewInviteStatusEnum;
|
|
1313
|
+
sentAt: Date;
|
|
1314
|
+
expiresAt: Date;
|
|
1315
|
+
respondedAt?: Date;
|
|
1316
|
+
token: string;
|
|
1317
|
+
talentId: string;
|
|
1629
1318
|
}
|
|
1630
1319
|
|
|
1631
|
-
declare enum
|
|
1320
|
+
declare enum AiInterviewRescheduleRequestStatusEnum {
|
|
1632
1321
|
PENDING = "PENDING",
|
|
1633
1322
|
APPROVED = "APPROVED",
|
|
1634
1323
|
REJECTED = "REJECTED"
|
|
1635
1324
|
}
|
|
1636
|
-
declare class
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1325
|
+
declare class AiInterviewRescheduleRequest extends BaseEntity {
|
|
1326
|
+
candidateId: number;
|
|
1327
|
+
candidate: User;
|
|
1328
|
+
clientId: number;
|
|
1329
|
+
client: User;
|
|
1330
|
+
aiInterviewId: number;
|
|
1331
|
+
aiInterview: AiInterview;
|
|
1332
|
+
interviewId: number;
|
|
1333
|
+
rescheduledDate: Date;
|
|
1334
|
+
status: AiInterviewRescheduleRequestStatusEnum;
|
|
1335
|
+
clientRejectReason: string;
|
|
1336
|
+
freelancerRequestReason: string;
|
|
1643
1337
|
}
|
|
1644
1338
|
|
|
1645
|
-
declare enum
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
CLIENT = "CLIENT",
|
|
1650
|
-
FREELANCER = "FREELANCER",
|
|
1651
|
-
CLIENT_EMPLOYEE = "CLIENT_EMPLOYEE"
|
|
1652
|
-
}
|
|
1653
|
-
declare enum AccountStatus {
|
|
1654
|
-
INACTIVE = "INACTIVE",
|
|
1339
|
+
declare enum AiInterviewStatusEnum {
|
|
1340
|
+
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
1341
|
+
ATTEMPTED = "ATTEMPTED",
|
|
1342
|
+
PENDING = "PENDING",
|
|
1655
1343
|
ACTIVE = "ACTIVE",
|
|
1656
|
-
|
|
1657
|
-
|
|
1344
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
1345
|
+
IN_COMPLETE = "IN_COMPLETE",
|
|
1346
|
+
COMPELETED = "COMPELETED",
|
|
1347
|
+
PASSED = "PASSED",
|
|
1348
|
+
FAILED = "FAILED",
|
|
1349
|
+
EXPIRED = "EXPIRED",
|
|
1350
|
+
POSTPONED = "POSTPONED",
|
|
1351
|
+
RESCHEDULED = "RESCHEDULED",
|
|
1352
|
+
EXITED = "EXITED"
|
|
1658
1353
|
}
|
|
1659
|
-
declare enum
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1354
|
+
declare enum ResultStatusEnum {
|
|
1355
|
+
NOT_EVALUATED = "NOT_EVALUATED",
|
|
1356
|
+
EVALUATING = "EVALUATING",
|
|
1357
|
+
PASSED = "PASSED",
|
|
1358
|
+
FAILED = "FAILED"
|
|
1663
1359
|
}
|
|
1664
|
-
declare
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
children: User[];
|
|
1669
|
-
username: string;
|
|
1670
|
-
firstName: string;
|
|
1671
|
-
lastName: string;
|
|
1672
|
-
dateOfBirth: Date;
|
|
1673
|
-
gender: string;
|
|
1674
|
-
profilePictureUrl: string;
|
|
1675
|
-
email: string;
|
|
1676
|
-
mobileCode: string;
|
|
1677
|
-
mobile: string;
|
|
1678
|
-
password: string;
|
|
1679
|
-
accountType: AccountType;
|
|
1680
|
-
accountStatus: AccountStatus;
|
|
1681
|
-
isEmailVerified: boolean;
|
|
1682
|
-
isMobileVerified: boolean;
|
|
1683
|
-
isSocial: boolean;
|
|
1684
|
-
lastLoginAt: Date;
|
|
1685
|
-
lastLoginIp: string;
|
|
1686
|
-
resetToken: string | null;
|
|
1687
|
-
resetTokenExpireAt: Date | null;
|
|
1688
|
-
setPasswordToken: string | null;
|
|
1689
|
-
refreshTokens: RefreshToken[];
|
|
1690
|
-
provider: Provider;
|
|
1691
|
-
providerToken: string;
|
|
1692
|
-
linkedInId: string;
|
|
1693
|
-
googleId: string;
|
|
1694
|
-
gitLabsId: string;
|
|
1695
|
-
onBoardedBy: string;
|
|
1696
|
-
otps: Otp[];
|
|
1697
|
-
senseloafLogs: SenseloafLog[];
|
|
1698
|
-
companyProfile: CompanyProfile;
|
|
1699
|
-
companySkills: CompanySkill[];
|
|
1700
|
-
companyMemberRoles: CompanyMemberRole[];
|
|
1701
|
-
companyAiInterview: AiInterview[];
|
|
1702
|
-
clientF2FInterviews: F2FInterview[];
|
|
1703
|
-
freelancerProfile: FreelancerProfile;
|
|
1704
|
-
freelancerResume: FreelancerResume;
|
|
1705
|
-
freelancerAssessmentRequests: FreelancerAssessmentRequest[];
|
|
1706
|
-
assessmentRequests: FreelancerAssessmentRequest[];
|
|
1707
|
-
assessments: FreelancerAssessment[];
|
|
1708
|
-
assessmentAnswers: AssessmentAnswer[];
|
|
1709
|
-
freelancerSkills: FreelancerSkill[];
|
|
1710
|
-
freelancerExperience: FreelancerExperience[];
|
|
1711
|
-
freelancerEducation: FreelancerEducation[];
|
|
1712
|
-
freelancerProject: FreelancerProject[];
|
|
1713
|
-
freelancerCaseStudy: FreelancerCaseStudy[];
|
|
1714
|
-
freelancerTool: FreelancerTool[];
|
|
1715
|
-
freelancerFramework: FreelancerFramework[];
|
|
1716
|
-
freelancerDeclaration: FreelancerDeclaration;
|
|
1717
|
-
freelancerMcq: AssessmetQuestion[];
|
|
1718
|
-
freelancerAiInterview: AiInterview[];
|
|
1719
|
-
freelancerF2FInterviews: F2FInterview[];
|
|
1720
|
-
freelancerF2FInterviewRescheduleRequests: F2fInterviewRescheduleRequest[];
|
|
1721
|
-
freelancerAiInterviewRescheduleRequests: AiInterviewRescheduleRequest[];
|
|
1722
|
-
clientAiInterviewRescheduleRequests: AiInterviewRescheduleRequest[];
|
|
1723
|
-
jobs: Job[];
|
|
1724
|
-
jobApplications: JobApplication[];
|
|
1725
|
-
interviews: Interview[];
|
|
1726
|
-
bankDetail: BankDetail[];
|
|
1727
|
-
systemPreference: SystemPreference[];
|
|
1728
|
-
givenRatings: Rating[];
|
|
1729
|
-
receivedRatings: Rating[];
|
|
1730
|
-
adminUserRoles: AdminUserRole[];
|
|
1731
|
-
clientContracts: Contract[];
|
|
1732
|
-
clientHirings: Hiring[];
|
|
1733
|
-
clientEscrowWallets: EscrowWallet[];
|
|
1734
|
-
freelancerContracts: Contract[];
|
|
1735
|
-
freelancerHirings: Hiring[];
|
|
1736
|
-
freelancerEscrowWallets: EscrowWallet[];
|
|
1737
|
-
signatures: Signature;
|
|
1738
|
-
clientTimesheets: Timesheet[];
|
|
1739
|
-
freelancerTimesheets: Timesheet[];
|
|
1740
|
-
clientTimesheetLine: TimesheetLine[];
|
|
1741
|
-
clientInvoice: Invoice[];
|
|
1742
|
-
freelancerTimesheetLine: TimesheetLine[];
|
|
1743
|
-
freelancerInvoice: Invoice[];
|
|
1744
|
-
clientPreferencesGiven: ClientCandidatePreference[];
|
|
1745
|
-
clientPreferencesReceived: ClientCandidatePreference[];
|
|
1746
|
-
initiatedDisputes: Dispute[];
|
|
1747
|
-
respondentDisputes: Dispute[];
|
|
1748
|
-
wallet: Wallet;
|
|
1749
|
-
stripeTransactions: StripeTransaction[];
|
|
1750
|
-
clientDisputes: Dispute[];
|
|
1751
|
-
freelancerDisputes: Dispute[];
|
|
1360
|
+
declare enum RecordingStatusEnum {
|
|
1361
|
+
PROCESSING = "PROCESSING",
|
|
1362
|
+
COMPLETED = "COMPLETED",
|
|
1363
|
+
FAILED = "FAILED"
|
|
1752
1364
|
}
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1365
|
+
declare class AiInterview extends BaseEntity {
|
|
1366
|
+
aiInterviewUniqueId: string;
|
|
1367
|
+
candidateId: number;
|
|
1368
|
+
candidate: User;
|
|
1369
|
+
interviwerId: number;
|
|
1370
|
+
interviwer: User;
|
|
1371
|
+
interviewId: number;
|
|
1372
|
+
interview: Interview;
|
|
1373
|
+
inviteId: number;
|
|
1374
|
+
candidateInterviewId: string;
|
|
1375
|
+
candidateInterviewLink: string;
|
|
1376
|
+
hasAttempted: boolean;
|
|
1377
|
+
attemptedAt: Date;
|
|
1378
|
+
completedAt: Date;
|
|
1379
|
+
exitedAt: Date;
|
|
1380
|
+
expiredAt: Date;
|
|
1381
|
+
status: AiInterviewStatusEnum;
|
|
1382
|
+
resultStatus: ResultStatusEnum;
|
|
1383
|
+
recordingStatus: RecordingStatusEnum;
|
|
1384
|
+
isRescheduled: boolean;
|
|
1385
|
+
rescheduledAt: Date;
|
|
1386
|
+
recordingLink: string;
|
|
1387
|
+
iframeResponse: string;
|
|
1388
|
+
interviewInsight: string;
|
|
1389
|
+
isF2fInterviewScheduled: boolean;
|
|
1390
|
+
isContractSent: boolean;
|
|
1391
|
+
attempts: number;
|
|
1392
|
+
rescheduleRequests: AiInterviewRescheduleRequest[];
|
|
1764
1393
|
}
|
|
1765
1394
|
|
|
1766
|
-
declare
|
|
1767
|
-
|
|
1395
|
+
declare enum F2fInterviewRescheduleRequestStatusEnum {
|
|
1396
|
+
PENDING = "PENDING",
|
|
1397
|
+
APPROVED = "APPROVED",
|
|
1398
|
+
REJECTED = "REJECTED",
|
|
1399
|
+
INPROGRESS = "INPROGRESS",
|
|
1400
|
+
AUTOCANCELLED = "AUTOCANCELLED"
|
|
1768
1401
|
}
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
roleIds: string;
|
|
1402
|
+
declare class F2fInterviewRescheduleRequest extends BaseEntity {
|
|
1403
|
+
candidateId: number;
|
|
1404
|
+
candidate: User;
|
|
1405
|
+
f2fInterviewId: number;
|
|
1406
|
+
f2fInterview: F2FInterview;
|
|
1407
|
+
rescheduledDate: Date;
|
|
1408
|
+
rescheduledSlot: string;
|
|
1409
|
+
status: F2fInterviewRescheduleRequestStatusEnum;
|
|
1410
|
+
clientRejectReason: string;
|
|
1411
|
+
freelancerRequestReason: string;
|
|
1780
1412
|
}
|
|
1781
1413
|
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
right: string;
|
|
1788
|
-
sortColumn?: string;
|
|
1789
|
-
sortBy?: string;
|
|
1414
|
+
declare enum F2fInterviewScheduleStatusEnum {
|
|
1415
|
+
ACTIVE = "ACTIVE",
|
|
1416
|
+
COMPELETED = "COMPELETED",
|
|
1417
|
+
RESCHEDULED = "RESCHEDULED",
|
|
1418
|
+
CANCELLED = "CANCELLED"
|
|
1790
1419
|
}
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1420
|
+
declare class F2FInterviewSchedule extends BaseEntity {
|
|
1421
|
+
f2fInterviewId: number;
|
|
1422
|
+
f2fInterview: F2FInterview;
|
|
1423
|
+
eventId: string;
|
|
1424
|
+
meetingZoomLink: string;
|
|
1425
|
+
meetingId: string;
|
|
1426
|
+
meetingPasscode: string;
|
|
1427
|
+
rescheduleUrl: string;
|
|
1428
|
+
cancelUrl: string;
|
|
1429
|
+
status: F2fInterviewScheduleStatusEnum;
|
|
1430
|
+
meetingStartTime: Date;
|
|
1431
|
+
meetingEndTime: Date;
|
|
1432
|
+
meetingEligibleStartTime: Date;
|
|
1433
|
+
meetingEligibleExpiryTime: Date;
|
|
1434
|
+
meetingVideoRecordingUrl: string;
|
|
1435
|
+
meetingAudioRecordingUrl: string;
|
|
1436
|
+
meetingTranscript: any;
|
|
1437
|
+
meetingRecordings: any;
|
|
1796
1438
|
}
|
|
1797
|
-
|
|
1798
|
-
|
|
1439
|
+
|
|
1440
|
+
declare enum F2fInterviewStatusEnum {
|
|
1441
|
+
DRAFTED = "DRAFTED",
|
|
1442
|
+
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
1443
|
+
ACTIVE = "ACTIVE",
|
|
1444
|
+
COMPELETED = "COMPELETED",
|
|
1445
|
+
EXPIRED = "EXPIRED",
|
|
1446
|
+
POSTPONED = "POSTPONED",
|
|
1447
|
+
RESCHEDULED = "RESCHEDULED",
|
|
1448
|
+
EXITED = "EXITED",
|
|
1449
|
+
CANCELLED = "CANCELLED"
|
|
1799
1450
|
}
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1451
|
+
declare class F2FInterview extends BaseEntity {
|
|
1452
|
+
interviewUniqueId: string;
|
|
1453
|
+
round: string;
|
|
1454
|
+
jobId?: number;
|
|
1455
|
+
job?: Job;
|
|
1456
|
+
interviewId?: number;
|
|
1457
|
+
interview?: Interview;
|
|
1458
|
+
interviwerId: number;
|
|
1459
|
+
interviwer: User;
|
|
1460
|
+
candidateId: number;
|
|
1461
|
+
candidate: User;
|
|
1462
|
+
inviteeEmail: string;
|
|
1463
|
+
inviteeName: string;
|
|
1464
|
+
eventName: string;
|
|
1465
|
+
status: F2fInterviewStatusEnum;
|
|
1466
|
+
isRescheduled: boolean;
|
|
1467
|
+
lastRescheduledAt: Date;
|
|
1468
|
+
cancelledAt: Date;
|
|
1469
|
+
cancelReason: string;
|
|
1470
|
+
provider: string;
|
|
1471
|
+
meetingStartedOn: Date;
|
|
1472
|
+
meetingEndedOn: Date;
|
|
1473
|
+
isContractSent: boolean;
|
|
1474
|
+
schedules: F2FInterviewSchedule[];
|
|
1475
|
+
rescheduleRequests: F2fInterviewRescheduleRequest[];
|
|
1805
1476
|
}
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
password: string;
|
|
1814
|
-
accountType: string;
|
|
1815
|
-
accountStatus: string;
|
|
1477
|
+
|
|
1478
|
+
declare enum InterviewStatusEnum {
|
|
1479
|
+
DRAFTED = "DRAFTED",
|
|
1480
|
+
PUBLISHED = "PUBLISHED",
|
|
1481
|
+
INACTIVE = "INACTIVE",
|
|
1482
|
+
DISCARDED = "DISCARDED",
|
|
1483
|
+
ARCHIVED = "ARCHIVED"
|
|
1816
1484
|
}
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1485
|
+
declare class Interview extends BaseEntity {
|
|
1486
|
+
interviewId: string;
|
|
1487
|
+
userId: number;
|
|
1488
|
+
user: User;
|
|
1489
|
+
interviewName: string;
|
|
1490
|
+
jobId: number;
|
|
1491
|
+
job: Job;
|
|
1492
|
+
interviewType: string;
|
|
1493
|
+
interviewLanguage: string;
|
|
1494
|
+
allowProctoring: boolean;
|
|
1495
|
+
interviewDuration: string;
|
|
1496
|
+
interviewValidityPeriod: string;
|
|
1497
|
+
maximumAttemptsAllowed: string;
|
|
1498
|
+
startInterviewPrompt: string;
|
|
1499
|
+
endInterviewPrompt: string;
|
|
1500
|
+
interviewTemplateId: string;
|
|
1501
|
+
status: InterviewStatusEnum;
|
|
1502
|
+
interviewSkills: InterviewSkill[];
|
|
1503
|
+
interviewQuestions: InterviewQuestion[];
|
|
1504
|
+
invites: InterviewInvite[];
|
|
1505
|
+
aiInterviews: AiInterview[];
|
|
1506
|
+
f2fInterviews: F2FInterview[];
|
|
1821
1507
|
}
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
lastName: string;
|
|
1827
|
-
email: string;
|
|
1828
|
-
mobile: string;
|
|
1829
|
-
password: string;
|
|
1830
|
-
accountType: string;
|
|
1831
|
-
accountStatus: string;
|
|
1508
|
+
|
|
1509
|
+
declare enum ClientCandidatePreferenceEnum {
|
|
1510
|
+
NOT_SUITABLE = "NOT_SUITABLE",
|
|
1511
|
+
SHORTLISTED = "SHORTLISTED"
|
|
1832
1512
|
}
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1513
|
+
declare class ClientCandidatePreference extends BaseEntity {
|
|
1514
|
+
clientId: number;
|
|
1515
|
+
client: User;
|
|
1516
|
+
candidateId: number;
|
|
1517
|
+
candidate: User;
|
|
1518
|
+
jobId?: number;
|
|
1519
|
+
job?: Job;
|
|
1520
|
+
recommendationId?: number;
|
|
1521
|
+
recommendation?: JobRecommendation;
|
|
1522
|
+
preference: ClientCandidatePreferenceEnum;
|
|
1837
1523
|
}
|
|
1838
|
-
|
|
1839
|
-
|
|
1524
|
+
|
|
1525
|
+
declare class JobRecommendation {
|
|
1526
|
+
id: number;
|
|
1527
|
+
jobId: number;
|
|
1528
|
+
job: Job;
|
|
1529
|
+
freelancerId: number;
|
|
1530
|
+
clientId: number;
|
|
1531
|
+
matchScore: number;
|
|
1532
|
+
matchScoreSummary?: Record<string, any>;
|
|
1533
|
+
matchingSkills: string[];
|
|
1534
|
+
matchingSkillsCount: number;
|
|
1535
|
+
requiredSkills: string[];
|
|
1536
|
+
requiredSkillsCount: number;
|
|
1537
|
+
lastCalculatedAt: Date;
|
|
1538
|
+
preference: ClientCandidatePreference[];
|
|
1840
1539
|
}
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1540
|
+
|
|
1541
|
+
declare class TimesheetLogs extends BaseEntity {
|
|
1542
|
+
timesheetLineId: number;
|
|
1543
|
+
timesheetLine: TimesheetLine;
|
|
1544
|
+
startDate: Date;
|
|
1545
|
+
endDate: Date;
|
|
1546
|
+
startTime: string;
|
|
1547
|
+
endTime: string;
|
|
1548
|
+
workedHours: string;
|
|
1549
|
+
taskId: number;
|
|
1550
|
+
projectName?: string;
|
|
1551
|
+
deliverable?: string;
|
|
1552
|
+
taskName: string;
|
|
1553
|
+
description: string;
|
|
1845
1554
|
}
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1555
|
+
|
|
1556
|
+
declare enum TimesheetLineHistoryStatusEnum {
|
|
1557
|
+
DRAFT = "DRAFT",
|
|
1558
|
+
SEND = "SEND",
|
|
1559
|
+
SEND_BACK = "SEND_BACK",
|
|
1560
|
+
APPROVED = "APPROVED",
|
|
1561
|
+
REJECTED = "REJECTED",
|
|
1562
|
+
PAID = "PAID",
|
|
1563
|
+
MISSING = "MISSING",
|
|
1564
|
+
ACTIVE = "ACTIVE"
|
|
1850
1565
|
}
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1566
|
+
declare enum TimesheetSubmissionActionEnum {
|
|
1567
|
+
SUBMITTED = "SUBMITTED",
|
|
1568
|
+
RESUBMITTED = "RESUBMITTED",
|
|
1569
|
+
SEND_BACK = "SEND_BACK",
|
|
1570
|
+
APPROVED = "APPROVED",
|
|
1571
|
+
REJECTED = "REJECTED",
|
|
1572
|
+
PAID = "PAID"
|
|
1855
1573
|
}
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
uploadClientServiceAgreement: string;
|
|
1865
|
-
fetchClientServiceAgreement: string;
|
|
1866
|
-
generateClientServiceAgreement: string;
|
|
1867
|
-
esignClientServiceAgreementForClient: string;
|
|
1868
|
-
fetchClientServiceAgreementStatus: string;
|
|
1869
|
-
fetchRecommendedFreelancers: string;
|
|
1870
|
-
fetchRecommendedFreelancersV2: string;
|
|
1871
|
-
fetchRecommendedFreelancersDropdownV2: string;
|
|
1872
|
-
clientDataAlteration: string;
|
|
1873
|
-
fetchFreelancersForComparison: string;
|
|
1874
|
-
deleteClientProfilePic: string;
|
|
1875
|
-
fetchFreelancerInfoForChat: string;
|
|
1876
|
-
fetchClientAndFreelancerDetailsForChatChannelCreation: string;
|
|
1877
|
-
};
|
|
1878
|
-
|
|
1879
|
-
declare class UpdateCompanyProfileDto {
|
|
1880
|
-
companyName?: string;
|
|
1881
|
-
webSite?: string;
|
|
1882
|
-
countryId: number;
|
|
1883
|
-
stateId: number;
|
|
1884
|
-
cityId: number;
|
|
1885
|
-
companyAddress: string;
|
|
1886
|
-
addressLine: string;
|
|
1887
|
-
postalCode: string;
|
|
1888
|
-
mobileCode: string;
|
|
1889
|
-
phoneNumber?: string;
|
|
1890
|
-
email?: string;
|
|
1891
|
-
aboutCompany?: string;
|
|
1574
|
+
declare class TimesheetLineHistory extends BaseEntity {
|
|
1575
|
+
timesheetLineId: number;
|
|
1576
|
+
timesheetLine: TimesheetLine;
|
|
1577
|
+
changedBy: number;
|
|
1578
|
+
previousStatus: TimesheetLineHistoryStatusEnum;
|
|
1579
|
+
newStatus: TimesheetLineHistoryStatusEnum;
|
|
1580
|
+
actionType: TimesheetSubmissionActionEnum;
|
|
1581
|
+
remarks: string;
|
|
1892
1582
|
}
|
|
1893
1583
|
|
|
1894
|
-
declare
|
|
1895
|
-
|
|
1896
|
-
|
|
1584
|
+
declare enum TimesheetLineStatusEnum {
|
|
1585
|
+
DRAFT = "DRAFT",
|
|
1586
|
+
SEND = "SEND",
|
|
1587
|
+
SEND_BACK = "SEND_BACK",
|
|
1588
|
+
APPROVED = "APPROVED",
|
|
1589
|
+
REJECTED = "REJECTED",
|
|
1590
|
+
PAID = "PAID",
|
|
1591
|
+
MISSING = "MISSING",
|
|
1592
|
+
ACTIVE = "ACTIVE"
|
|
1897
1593
|
}
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1594
|
+
declare class TimesheetLine extends BaseEntity {
|
|
1595
|
+
jobId: number;
|
|
1596
|
+
job: Job;
|
|
1597
|
+
clientId: number;
|
|
1598
|
+
client: User;
|
|
1599
|
+
freelancerId: number;
|
|
1600
|
+
freelancer: User;
|
|
1601
|
+
timesheetLogs: TimesheetLogs[];
|
|
1602
|
+
timesheetLineHistory: TimesheetLineHistory[];
|
|
1603
|
+
uniqueId: string;
|
|
1604
|
+
weekStartDate: Date;
|
|
1605
|
+
weekEndDate: Date;
|
|
1606
|
+
status: TimesheetLineStatusEnum;
|
|
1607
|
+
weeklyHoursSum: string;
|
|
1608
|
+
isInvoiceGenrated: boolean;
|
|
1609
|
+
isInvoiceApproved: boolean;
|
|
1610
|
+
invoice: Invoice[];
|
|
1901
1611
|
}
|
|
1902
1612
|
|
|
1903
|
-
declare
|
|
1904
|
-
|
|
1613
|
+
declare enum HiredFreelancerNatureOfWorkEnum {
|
|
1614
|
+
FTE = "FTE",
|
|
1615
|
+
FREELANCE = "FREELANCE"
|
|
1905
1616
|
}
|
|
1906
|
-
|
|
1907
|
-
|
|
1617
|
+
declare class Hiring extends BaseEntity {
|
|
1618
|
+
jobId: number;
|
|
1619
|
+
job: Job;
|
|
1620
|
+
clientId: number;
|
|
1621
|
+
client: User;
|
|
1908
1622
|
freelancerId: number;
|
|
1623
|
+
freelancer: User;
|
|
1624
|
+
invoiceId?: number;
|
|
1625
|
+
invoice?: Invoice;
|
|
1626
|
+
freelancerNatureOfWork: HiredFreelancerNatureOfWorkEnum;
|
|
1627
|
+
isInvoiceGenrated: boolean;
|
|
1909
1628
|
}
|
|
1910
1629
|
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
companyName: string;
|
|
1916
|
-
right: string;
|
|
1917
|
-
sortColumn?: string;
|
|
1918
|
-
sortBy?: string;
|
|
1919
|
-
}
|
|
1920
|
-
interface IFetchClientProfileResponse {
|
|
1921
|
-
statusCode: number;
|
|
1922
|
-
status: boolean;
|
|
1923
|
-
message: string;
|
|
1924
|
-
data: any;
|
|
1630
|
+
declare enum InvoiceTypeEnum {
|
|
1631
|
+
WEEKLY = "WEEKLY",
|
|
1632
|
+
MONTHLY = "MONTHLY",
|
|
1633
|
+
FTE = "FTE"
|
|
1925
1634
|
}
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
isServiceAgreementSigned?: boolean;
|
|
1932
|
-
aboutCompany: string;
|
|
1933
|
-
companyAddress: string;
|
|
1934
|
-
phoneNumber: string;
|
|
1935
|
-
skills?: string[];
|
|
1936
|
-
requiredFreelancer?: string;
|
|
1937
|
-
kindOfHiring?: string;
|
|
1938
|
-
modeOfHire?: string;
|
|
1939
|
-
foundUsOn?: string;
|
|
1635
|
+
declare enum InvoiceStatusEnum {
|
|
1636
|
+
SUBMITTED = "SUBMITTED",
|
|
1637
|
+
UNDER_REVIEW = "UNDER_REVIEW",
|
|
1638
|
+
APPROVED = "APPROVED",
|
|
1639
|
+
REJECTED = "REJECTED"
|
|
1940
1640
|
}
|
|
1941
|
-
|
|
1942
|
-
|
|
1641
|
+
declare enum InvoicePaymentStatusEnum {
|
|
1642
|
+
PENDING = "PENDING",
|
|
1643
|
+
OVERDUE = "OVERDUE",
|
|
1644
|
+
INTRANSACTION = "INTRANSACTION",
|
|
1645
|
+
PAID = "PAID",
|
|
1646
|
+
REFUNDED = "REFUNDED"
|
|
1943
1647
|
}
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1648
|
+
declare class Invoice extends BaseEntity {
|
|
1649
|
+
timesheetLineId: number;
|
|
1650
|
+
timesheetLine: TimesheetLine;
|
|
1651
|
+
jobId: number;
|
|
1652
|
+
job: Job;
|
|
1653
|
+
clientId: number;
|
|
1654
|
+
client: User;
|
|
1655
|
+
freelancerId: number;
|
|
1656
|
+
freelancer: User;
|
|
1657
|
+
invoiceUniqueId: string;
|
|
1658
|
+
issuedAt: Date;
|
|
1659
|
+
dueAt: Date;
|
|
1660
|
+
billingCycleFrom: Date;
|
|
1661
|
+
billingCycleTo: Date;
|
|
1662
|
+
billingHours: string;
|
|
1663
|
+
hourlyRate: string;
|
|
1664
|
+
billingAmount: string;
|
|
1665
|
+
invoiceType: InvoiceTypeEnum;
|
|
1666
|
+
status: InvoiceStatusEnum;
|
|
1667
|
+
paymentStatus: InvoicePaymentStatusEnum;
|
|
1668
|
+
clientInvoiceUrl: string;
|
|
1669
|
+
freelancerInvoiceUrl: string;
|
|
1670
|
+
escrowWalletTransaction?: EscrowWalletTransaction;
|
|
1671
|
+
hiring?: Hiring;
|
|
1948
1672
|
}
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1673
|
+
|
|
1674
|
+
declare enum EscrowWalletTransactionTypeEnum {
|
|
1675
|
+
CR = "CR",
|
|
1676
|
+
DR = "DR"
|
|
1952
1677
|
}
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
message: string;
|
|
1678
|
+
declare enum EscrowWalletTransactionForEnum {
|
|
1679
|
+
CONTRACT = "CONTRACT",
|
|
1680
|
+
INVOICE = "INVOICE"
|
|
1957
1681
|
}
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1682
|
+
declare class EscrowWalletTransaction extends BaseEntity {
|
|
1683
|
+
escrowWalletId: number;
|
|
1684
|
+
escrowWallet: EscrowWallet;
|
|
1685
|
+
invoiceId?: number;
|
|
1686
|
+
invoice?: Invoice;
|
|
1687
|
+
amount: number;
|
|
1688
|
+
escrowType: EscrowWalletTransactionTypeEnum;
|
|
1689
|
+
description: string;
|
|
1690
|
+
completedAt: Date;
|
|
1691
|
+
escrowTransactionFor: EscrowWalletTransactionForEnum;
|
|
1692
|
+
metaData: string;
|
|
1962
1693
|
}
|
|
1963
1694
|
|
|
1964
|
-
declare
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
questionId: string;
|
|
1977
|
-
question: string;
|
|
1978
|
-
questionFor: string;
|
|
1979
|
-
options: string;
|
|
1980
|
-
isActive: boolean;
|
|
1695
|
+
declare class EscrowWallet extends BaseEntity {
|
|
1696
|
+
jobId: number;
|
|
1697
|
+
job?: Job;
|
|
1698
|
+
clientId: number;
|
|
1699
|
+
client?: User;
|
|
1700
|
+
freelancerId: number;
|
|
1701
|
+
freelancer?: User;
|
|
1702
|
+
contractId?: number;
|
|
1703
|
+
contract?: Contract;
|
|
1704
|
+
escrowBalance: string;
|
|
1705
|
+
metadata: Record<string, any>;
|
|
1706
|
+
escrowWalletTransactions: EscrowWalletTransaction[];
|
|
1981
1707
|
}
|
|
1982
1708
|
|
|
1983
|
-
declare
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1709
|
+
declare enum ContractStatusEnum {
|
|
1710
|
+
GENERATED = "GENERATED",
|
|
1711
|
+
DRAFTED = "DRAFTED",
|
|
1712
|
+
SENT = "SENT",
|
|
1713
|
+
SIGNED = "SIGNED",
|
|
1714
|
+
ACTIVE = "ACTIVE",
|
|
1715
|
+
CANCELLED = "CANCELLED",
|
|
1716
|
+
DISPUTED = "DISPUTED",
|
|
1717
|
+
REJECTED = "REJECTED",
|
|
1718
|
+
RENEWED = "RENEWED",
|
|
1719
|
+
EXPIRED = "EXPIRED"
|
|
1720
|
+
}
|
|
1721
|
+
declare enum ContractTypeEnum {
|
|
1722
|
+
NDA = "NDA",
|
|
1723
|
+
WORK = "WORK",
|
|
1724
|
+
SOW = "SOW",
|
|
1725
|
+
MSA = "MSA"
|
|
1726
|
+
}
|
|
1727
|
+
declare class Contract extends BaseEntity {
|
|
1728
|
+
contractUniqueId: string;
|
|
1729
|
+
jobId: number;
|
|
1730
|
+
job: Job;
|
|
1731
|
+
clientId: number;
|
|
1732
|
+
client: User;
|
|
1733
|
+
freelancerId: number;
|
|
1734
|
+
freelancer: User;
|
|
1735
|
+
duration: number;
|
|
1736
|
+
status: ContractStatusEnum;
|
|
1737
|
+
type: ContractTypeEnum;
|
|
1738
|
+
invoicingCycle: string;
|
|
1739
|
+
escrowDepositeAmount: number;
|
|
1740
|
+
startDate: Date;
|
|
1741
|
+
endDate: Date;
|
|
1742
|
+
originalDocumentUrl: string;
|
|
1743
|
+
contractDocumentUrl: string;
|
|
1744
|
+
clientSignedAt: Date;
|
|
1745
|
+
freelancerViewed: boolean;
|
|
1746
|
+
freelancerViewedAt: Date;
|
|
1747
|
+
freelancerSignedAt: Date;
|
|
1748
|
+
rejectedAt: Date;
|
|
1749
|
+
rejectReason: string;
|
|
1750
|
+
resendCount: number;
|
|
1751
|
+
isWorkContractSent: boolean;
|
|
1752
|
+
isEscrowDeposited: boolean;
|
|
1753
|
+
signaturePositions: any;
|
|
1754
|
+
metaData: any;
|
|
1755
|
+
escrowWallet: EscrowWallet;
|
|
1988
1756
|
}
|
|
1989
1757
|
|
|
1990
|
-
declare
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1758
|
+
declare enum TimesheetStatusEnum {
|
|
1759
|
+
DRAFT = "DRAFT",
|
|
1760
|
+
SEND = "SEND",
|
|
1761
|
+
SEND_BACK = "SEND_BACK",
|
|
1762
|
+
APPROVED = "APPROVED",
|
|
1763
|
+
REJECTED = "REJECTED",
|
|
1764
|
+
PAID = "PAID"
|
|
1765
|
+
}
|
|
1766
|
+
declare class Timesheet extends BaseEntity {
|
|
1767
|
+
jobId: number;
|
|
1768
|
+
job: Job;
|
|
1769
|
+
clientId: number;
|
|
1770
|
+
client: User;
|
|
1771
|
+
freelancerId: number;
|
|
1772
|
+
freelancer: User;
|
|
1773
|
+
startDate: Date;
|
|
1774
|
+
endDate: Date;
|
|
1775
|
+
startTime: string;
|
|
1776
|
+
endTime: string;
|
|
1777
|
+
workedHours: string;
|
|
1778
|
+
taskId: number;
|
|
1779
|
+
taskName: string;
|
|
1780
|
+
description: string;
|
|
1781
|
+
weekStartDate: Date;
|
|
1782
|
+
weekEndDate: Date;
|
|
1783
|
+
rejectedAt: Date;
|
|
1784
|
+
submittedAt: Date;
|
|
1785
|
+
resubmittedAt: Date;
|
|
1786
|
+
approvedAt: Date;
|
|
1787
|
+
status: TimesheetStatusEnum;
|
|
1788
|
+
clientSendBackReason: string;
|
|
1994
1789
|
}
|
|
1995
1790
|
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
message: string;
|
|
2010
|
-
data: any;
|
|
1791
|
+
declare class JobLocation extends BaseEntity {
|
|
1792
|
+
jobId: number;
|
|
1793
|
+
job: Job;
|
|
1794
|
+
countryId: number;
|
|
1795
|
+
countryName: string;
|
|
1796
|
+
country: Country;
|
|
1797
|
+
stateId: number;
|
|
1798
|
+
stateName: string;
|
|
1799
|
+
state: State;
|
|
1800
|
+
cityId: number;
|
|
1801
|
+
cityName: string;
|
|
1802
|
+
city: City;
|
|
1803
|
+
locationWiseOpenings: number;
|
|
2011
1804
|
}
|
|
2012
1805
|
|
|
2013
|
-
declare const JOB_ROLE_PATTERN: {
|
|
2014
|
-
fetchJobRolesForDropdown: string;
|
|
2015
|
-
};
|
|
2016
|
-
declare const JOB_PATTERN: {
|
|
2017
|
-
fetchJobs: string;
|
|
2018
|
-
fetchJobsPublic: string;
|
|
2019
|
-
fetchRecentJobs: string;
|
|
2020
|
-
fetchJobCountAsPerStatus: string;
|
|
2021
|
-
fetchJobCountPublic: string;
|
|
2022
|
-
fetchJobsDropdown: string;
|
|
2023
|
-
fetchJobDetail: string;
|
|
2024
|
-
fetchJobDetailPublic: string;
|
|
2025
|
-
handleJdUpload: string;
|
|
2026
|
-
fetchJobBasicInformation: string;
|
|
2027
|
-
createJobBasicInformation: string;
|
|
2028
|
-
updateJobBasicInformation: string;
|
|
2029
|
-
fetchJobAdditionalComments: string;
|
|
2030
|
-
updateJobAdditionalComments: string;
|
|
2031
|
-
fetchJobDescription: string;
|
|
2032
|
-
updateJobDescription: string;
|
|
2033
|
-
updateJobStatus: string;
|
|
2034
|
-
closeJob: string;
|
|
2035
|
-
searchJobsByRoleAndSkills: string;
|
|
2036
|
-
handleBulkRecommendationAdjustment: string;
|
|
2037
|
-
refreshJobFreelancerRecommendationView: string;
|
|
2038
|
-
fetchJobConfig: string;
|
|
2039
|
-
fetchJobRoleSuggestions: string;
|
|
2040
|
-
fetchJobCount: string;
|
|
2041
|
-
fetchJobsDropdownForFilters: string;
|
|
2042
|
-
fetchJobsDropdownForInterview: string;
|
|
2043
|
-
fetchJobsDropdownForFreelancer: string;
|
|
2044
|
-
fetchJobDetailForFreelancer: string;
|
|
2045
|
-
fetchJobBasicInformationV2: string;
|
|
2046
|
-
createJobBasicInformationV2: string;
|
|
2047
|
-
updateJobBasicInformationV2: string;
|
|
2048
|
-
deleteJob: string;
|
|
2049
|
-
fetchRecommendedFreelancersForJobs: string;
|
|
2050
|
-
fetchRecommendedFreelancersForJob: string;
|
|
2051
|
-
fetchRecommendedFreelancersForJobV2: string;
|
|
2052
|
-
handleJobViwedCountIncrement: string;
|
|
2053
|
-
fetchJobByIdForTimesheet: string;
|
|
2054
|
-
jobDataSetup: string;
|
|
2055
|
-
fetchJobsForComparison: string;
|
|
2056
|
-
fetchJobSkillDropdownForClient: string;
|
|
2057
|
-
};
|
|
2058
|
-
declare const JOB_APPLICATION_PATTERN: {
|
|
2059
|
-
fetchJobApplicationCountAsPerStatusByJobId: string;
|
|
2060
|
-
fetchJobApplicationsByJobId: string;
|
|
2061
|
-
fetchJobApplicants: string;
|
|
2062
|
-
createJobApplication: string;
|
|
2063
|
-
changeJobApplicationStatus: string;
|
|
2064
|
-
changeJobApplicationStatusInBulk: string;
|
|
2065
|
-
};
|
|
2066
|
-
|
|
2067
1806
|
declare enum JobLocationEnum {
|
|
2068
1807
|
ONSITE = "ONSITE",
|
|
2069
1808
|
REMOTE = "REMOTE",
|
|
2070
|
-
HYBRID = "HYBRID"
|
|
1809
|
+
HYBRID = "HYBRID",
|
|
1810
|
+
BOTH = "BOTH"
|
|
2071
1811
|
}
|
|
2072
|
-
declare enum
|
|
1812
|
+
declare enum typeOfExperienceEnum {
|
|
1813
|
+
SINGLE = "SINGLE",
|
|
1814
|
+
RANGE = "RANGE"
|
|
1815
|
+
}
|
|
1816
|
+
declare enum TypeOfEmploymentEnum {
|
|
2073
1817
|
FULLTIME = "FULLTIME",
|
|
2074
1818
|
PARTTIME = "PARTTIME",
|
|
2075
1819
|
BOTH = "BOTH",
|
|
@@ -2077,351 +1821,629 @@ declare enum EmploymentType {
|
|
|
2077
1821
|
FREELANCE = "FREELANCE",
|
|
2078
1822
|
FTE = "FTE"
|
|
2079
1823
|
}
|
|
2080
|
-
declare
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
1824
|
+
declare enum Step {
|
|
1825
|
+
BASIC_INFORMATION = "BASIC_INFORMATION",
|
|
1826
|
+
ADDITIONAL_COMMENTS = "ADDITIONAL_COMMENTS",
|
|
1827
|
+
JOB_DESCRIPTION = "JOB_DESCRIPTION"
|
|
1828
|
+
}
|
|
1829
|
+
declare enum JobStatusEnum {
|
|
1830
|
+
ACTIVE = "ACTIVE",
|
|
1831
|
+
OPEN = "OPEN",
|
|
1832
|
+
DRAFT = "DRAFT",
|
|
1833
|
+
ONHOLD = "ONHOLD",
|
|
1834
|
+
CLOSED = "CLOSED",
|
|
1835
|
+
COMPLETED = "COMPLETED"
|
|
1836
|
+
}
|
|
1837
|
+
declare enum DurationTypeEnum {
|
|
1838
|
+
DAY = "DAY",
|
|
1839
|
+
WEEK = "WEEK",
|
|
1840
|
+
MONTH = "MONTH",
|
|
1841
|
+
YEAR = "YEAR"
|
|
1842
|
+
}
|
|
1843
|
+
declare class Job extends BaseEntity {
|
|
1844
|
+
jobId: string;
|
|
1845
|
+
userId: number;
|
|
1846
|
+
user: User;
|
|
2090
1847
|
countryId: number;
|
|
1848
|
+
country: Country;
|
|
2091
1849
|
stateId: number;
|
|
1850
|
+
state: State;
|
|
2092
1851
|
cityId: number;
|
|
2093
|
-
|
|
2094
|
-
|
|
1852
|
+
city: City;
|
|
1853
|
+
jobRole: string;
|
|
1854
|
+
jobRoleCanonicalName: string;
|
|
1855
|
+
projectName: string;
|
|
1856
|
+
note: string;
|
|
1857
|
+
openings: number;
|
|
1858
|
+
utilisedOpenings: number;
|
|
1859
|
+
location: JobLocationEnum;
|
|
1860
|
+
typeOfEmployment: TypeOfEmploymentEnum;
|
|
1861
|
+
academicQualification: string;
|
|
1862
|
+
typeOfExperience: typeOfExperienceEnum;
|
|
1863
|
+
yearsOfExperience: string;
|
|
1864
|
+
yearsOfExperienceFrom: string;
|
|
1865
|
+
yearsOfExperienceTo: string;
|
|
1866
|
+
businessIndustry: string;
|
|
1867
|
+
currency: string;
|
|
2095
1868
|
expectedSalaryFrom: number;
|
|
2096
1869
|
hideExpectedSalaryFrom: boolean;
|
|
2097
1870
|
expectedSalaryTo: number;
|
|
2098
1871
|
hideExpectedSalaryTo: boolean;
|
|
1872
|
+
expectedAnnualBudgetFrom: number;
|
|
1873
|
+
hideExpectedAnnualBudgetFrom: boolean;
|
|
1874
|
+
expectedAnnualBudgetTo: number;
|
|
1875
|
+
hideExpectedAnnualBudgetTo: boolean;
|
|
2099
1876
|
years: string;
|
|
2100
1877
|
months: string;
|
|
2101
1878
|
weeks: string;
|
|
2102
1879
|
days: string;
|
|
1880
|
+
tentativeStartDate: Date;
|
|
1881
|
+
tentativeEndDate: Date;
|
|
1882
|
+
durationType: DurationTypeEnum;
|
|
1883
|
+
duration: string;
|
|
2103
1884
|
numberOfHours: number;
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
1885
|
+
description: string;
|
|
1886
|
+
additionalComment: string;
|
|
1887
|
+
onboardingTat: string;
|
|
1888
|
+
candidateCommunicationSkills: string;
|
|
1889
|
+
stepCompleted: Step;
|
|
1890
|
+
status: JobStatusEnum;
|
|
1891
|
+
viewedCount: number;
|
|
1892
|
+
applicationCount: number;
|
|
1893
|
+
isContractSigned: boolean;
|
|
1894
|
+
isInterviewCreated: boolean;
|
|
1895
|
+
interviewInvites: InterviewInvite[];
|
|
1896
|
+
jobSkills: JobSkill[];
|
|
1897
|
+
jobApplications: JobApplication[];
|
|
1898
|
+
interviews: Interview[];
|
|
1899
|
+
f2fInterviews: F2FInterview[];
|
|
1900
|
+
recommendations: JobRecommendation[];
|
|
1901
|
+
contracts: Contract[];
|
|
1902
|
+
hirings: Hiring[];
|
|
1903
|
+
escrowWallets: EscrowWallet[];
|
|
1904
|
+
timesheets: Timesheet[];
|
|
1905
|
+
timesheetLine: TimesheetLine[];
|
|
1906
|
+
invoice: Invoice[];
|
|
1907
|
+
clientCandidatePreferences: ClientCandidatePreference[];
|
|
1908
|
+
jobLocations: JobLocation[];
|
|
1909
|
+
ratings: Rating[];
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
declare enum BankAccountTypeEnum {
|
|
1913
|
+
PRIMARY = "PRIMARY",
|
|
1914
|
+
SECONDARY = "SECONDARY"
|
|
1915
|
+
}
|
|
1916
|
+
declare enum BankAccountScopeEnum {
|
|
1917
|
+
DOMESTIC = "DOMESTIC",
|
|
1918
|
+
INTERNATIONAL = "INTERNATIONAL"
|
|
1919
|
+
}
|
|
1920
|
+
declare class BankDetail extends BaseEntity {
|
|
1921
|
+
userId: number;
|
|
1922
|
+
user: User;
|
|
1923
|
+
name: string;
|
|
1924
|
+
mobileCode: string;
|
|
1925
|
+
mobile: string;
|
|
1926
|
+
email: string;
|
|
1927
|
+
address: string;
|
|
1928
|
+
accountNumber: string;
|
|
1929
|
+
bankName: string;
|
|
1930
|
+
ifscCode: string;
|
|
1931
|
+
branchName: string;
|
|
1932
|
+
routingNo: string;
|
|
1933
|
+
abaNumber: string;
|
|
1934
|
+
iban: string;
|
|
1935
|
+
accountType: BankAccountTypeEnum;
|
|
1936
|
+
accountScope: BankAccountScopeEnum;
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1939
|
+
declare class SystemPreference extends BaseEntity {
|
|
1940
|
+
userId: number;
|
|
1941
|
+
user: User;
|
|
1942
|
+
key: string;
|
|
1943
|
+
value: boolean;
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
declare class FreelancerExperience extends BaseEntity {
|
|
1947
|
+
userId: number;
|
|
1948
|
+
user: User;
|
|
1949
|
+
companyName: string;
|
|
1950
|
+
designation: string;
|
|
1951
|
+
jobDuration: string;
|
|
1952
|
+
description: string;
|
|
1953
|
+
}
|
|
1954
|
+
|
|
1955
|
+
declare class FreelancerEducation extends BaseEntity {
|
|
1956
|
+
userId: number;
|
|
1957
|
+
user: User;
|
|
1958
|
+
degree: string;
|
|
1959
|
+
university: string;
|
|
1960
|
+
yearOfGraduation: string;
|
|
1961
|
+
}
|
|
1962
|
+
|
|
1963
|
+
declare class FreelancerProject extends BaseEntity {
|
|
1964
|
+
userId: number;
|
|
1965
|
+
user: User;
|
|
1966
|
+
projectName: string;
|
|
1967
|
+
startDate: Date;
|
|
1968
|
+
endDate: Date;
|
|
1969
|
+
clientName: string;
|
|
1970
|
+
gitLink: string;
|
|
1971
|
+
description: string;
|
|
2109
1972
|
}
|
|
2110
1973
|
|
|
2111
|
-
declare class
|
|
2112
|
-
|
|
1974
|
+
declare class FreelancerCaseStudy extends BaseEntity {
|
|
1975
|
+
userId: number;
|
|
1976
|
+
user: User;
|
|
1977
|
+
projectName: string;
|
|
1978
|
+
caseStudyLink: string;
|
|
1979
|
+
description: string;
|
|
2113
1980
|
}
|
|
2114
1981
|
|
|
2115
|
-
declare
|
|
2116
|
-
|
|
2117
|
-
|
|
1982
|
+
declare enum FreelancerSkillCategoryEnum {
|
|
1983
|
+
GOOD_TO_HAVE = 0,
|
|
1984
|
+
MUST_HAVE = 1
|
|
1985
|
+
}
|
|
1986
|
+
declare class FreelancerSkill extends BaseEntity {
|
|
1987
|
+
userId: number;
|
|
1988
|
+
user: User;
|
|
1989
|
+
skillName: string;
|
|
1990
|
+
skillCategory: FreelancerSkillCategoryEnum;
|
|
2118
1991
|
}
|
|
2119
1992
|
|
|
2120
|
-
declare
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
ONHOLD = "ONHOLD",
|
|
2125
|
-
CLOSED = "CLOSED"
|
|
1993
|
+
declare class FreelancerTool extends BaseEntity {
|
|
1994
|
+
userId: number;
|
|
1995
|
+
user: User;
|
|
1996
|
+
toolName: string;
|
|
2126
1997
|
}
|
|
2127
|
-
|
|
2128
|
-
|
|
1998
|
+
|
|
1999
|
+
declare class FreelancerFramework extends BaseEntity {
|
|
2000
|
+
userId: number;
|
|
2001
|
+
user: User;
|
|
2002
|
+
frameworkName: string;
|
|
2129
2003
|
}
|
|
2130
2004
|
|
|
2131
|
-
declare
|
|
2132
|
-
|
|
2005
|
+
declare enum AssessmentStatusEnum {
|
|
2006
|
+
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
2007
|
+
ACTIVE = "ACTIVE",
|
|
2008
|
+
COMPELETED = "COMPELETED",
|
|
2009
|
+
PASSED = "PASSED",
|
|
2010
|
+
FAILED = "FAILED",
|
|
2011
|
+
EXPIRED = "EXPIRED",
|
|
2012
|
+
POSTPONED = "POSTPONED",
|
|
2013
|
+
RESCHEDULED = "RESCHEDULED",
|
|
2014
|
+
EXITED = "EXITED"
|
|
2015
|
+
}
|
|
2016
|
+
declare class FreelancerAssessment extends BaseEntity {
|
|
2017
|
+
userId: number;
|
|
2018
|
+
user: User;
|
|
2019
|
+
interviewId: string;
|
|
2020
|
+
interviewLink: string;
|
|
2021
|
+
recordingLink: string;
|
|
2022
|
+
iframeResponse: string;
|
|
2023
|
+
interviewSummary: string;
|
|
2024
|
+
status: AssessmentStatusEnum;
|
|
2025
|
+
taskId: string;
|
|
2133
2026
|
}
|
|
2134
2027
|
|
|
2135
|
-
declare enum
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2028
|
+
declare enum DocumentType {
|
|
2029
|
+
AADHAAR = "AADHAAR_CARD",
|
|
2030
|
+
PASSPORT = "PASSPORT",
|
|
2031
|
+
DRIVING_LICENSE = "DRIVING_LICENSE",
|
|
2032
|
+
PAN_CARD = "PAN_CARD"
|
|
2139
2033
|
}
|
|
2140
|
-
declare
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2034
|
+
declare class FreelancerDeclaration extends BaseEntity {
|
|
2035
|
+
userId: number;
|
|
2036
|
+
user: User;
|
|
2037
|
+
documentType: DocumentType;
|
|
2038
|
+
frontDocumentUrl: string;
|
|
2039
|
+
backDocumentUrl: string;
|
|
2040
|
+
declarationAccepted: string;
|
|
2041
|
+
digitalSignatureUrl: string;
|
|
2147
2042
|
}
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2043
|
+
|
|
2044
|
+
declare class Permission extends BaseEntity {
|
|
2045
|
+
name: string;
|
|
2046
|
+
slug: string;
|
|
2047
|
+
description: string;
|
|
2048
|
+
isActive: boolean;
|
|
2151
2049
|
}
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2050
|
+
|
|
2051
|
+
declare class CompanyRolePermission extends BaseEntity {
|
|
2052
|
+
companyRoleId: number;
|
|
2053
|
+
companyRole: CompanyRole;
|
|
2054
|
+
permissionId: number;
|
|
2055
|
+
permission: Permission;
|
|
2056
|
+
assignedBy?: number;
|
|
2155
2057
|
}
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2058
|
+
|
|
2059
|
+
declare class CompanyRole extends BaseEntity {
|
|
2060
|
+
userId: number;
|
|
2061
|
+
user: User;
|
|
2062
|
+
name: string;
|
|
2063
|
+
slug: string;
|
|
2064
|
+
description: string;
|
|
2065
|
+
isActive: boolean;
|
|
2066
|
+
rolePermissions: CompanyRolePermission[];
|
|
2163
2067
|
}
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
goodToHaveSkills: string[];
|
|
2172
|
-
openings: number;
|
|
2173
|
-
locationMode: JobLocationEnumV2;
|
|
2174
|
-
locations: JobLocationDto[];
|
|
2175
|
-
typeOfEmployment: EmploymentTypeV2;
|
|
2176
|
-
currency?: string;
|
|
2177
|
-
expectedSalaryFrom: number;
|
|
2178
|
-
hideExpectedSalaryFrom: boolean;
|
|
2179
|
-
expectedSalaryTo: number;
|
|
2180
|
-
hideExpectedSalaryTo: boolean;
|
|
2181
|
-
expectedAnnualBudgetFrom: number;
|
|
2182
|
-
hideExpectedAnnualBudgetFrom: boolean;
|
|
2183
|
-
expectedAnnualBudgetTo: number;
|
|
2184
|
-
hideExpectedAnnualBudgetTo: boolean;
|
|
2185
|
-
years: string;
|
|
2186
|
-
months: string;
|
|
2187
|
-
weeks: string;
|
|
2188
|
-
days: string;
|
|
2189
|
-
numberOfHours: number;
|
|
2190
|
-
candidateCommunicationSkills?: string;
|
|
2191
|
-
academicQualification?: string;
|
|
2192
|
-
yearsOfExperienceFrom?: string;
|
|
2193
|
-
yearsOfExperienceTo?: string;
|
|
2194
|
-
businessIndustry?: string;
|
|
2195
|
-
stepCompleted?: StepCompletedEnumV2;
|
|
2196
|
-
additionalComment?: string;
|
|
2068
|
+
|
|
2069
|
+
declare class CompanyMemberRole extends BaseEntity {
|
|
2070
|
+
userId: number;
|
|
2071
|
+
user: User;
|
|
2072
|
+
role: CompanyRole;
|
|
2073
|
+
companyRoleId: number;
|
|
2074
|
+
assignedBy?: number;
|
|
2197
2075
|
}
|
|
2198
2076
|
|
|
2199
|
-
declare
|
|
2200
|
-
|
|
2077
|
+
declare enum AnswerTypeEnum {
|
|
2078
|
+
CORRECT = "CORRECT",
|
|
2079
|
+
ACCEPTABLE = "ACCEPTABLE",
|
|
2080
|
+
ELIMINATE = "ELIMINATE"
|
|
2081
|
+
}
|
|
2082
|
+
declare class AssessmetQuestionOption extends BaseEntity {
|
|
2083
|
+
questionId: number;
|
|
2084
|
+
question: AssessmetQuestion;
|
|
2085
|
+
text: string;
|
|
2086
|
+
answerType: AnswerTypeEnum;
|
|
2087
|
+
isActive: boolean;
|
|
2088
|
+
selectedOptions: AssessmentAnswer[];
|
|
2201
2089
|
}
|
|
2202
2090
|
|
|
2203
|
-
declare
|
|
2204
|
-
|
|
2205
|
-
|
|
2091
|
+
declare enum QuestionForEnum {
|
|
2092
|
+
ASSESSMENT = "ASSESSMENT",
|
|
2093
|
+
INTERVIEW = "INTERVIEW"
|
|
2094
|
+
}
|
|
2095
|
+
declare class AssessmetQuestion extends BaseEntity {
|
|
2096
|
+
text: string;
|
|
2097
|
+
questionFor: QuestionForEnum;
|
|
2098
|
+
isActive: boolean;
|
|
2099
|
+
candidateId: number;
|
|
2100
|
+
candidate: User;
|
|
2101
|
+
options: AssessmetQuestionOption[];
|
|
2102
|
+
answers: AssessmentAnswer[];
|
|
2206
2103
|
}
|
|
2207
2104
|
|
|
2208
|
-
declare enum
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
HIRED = "HIRED",
|
|
2213
|
-
WITHDRAWN = "WITHDRAWN"
|
|
2105
|
+
declare enum SelectedAnswerTypeEnum {
|
|
2106
|
+
CORRECT = "CORRECT",
|
|
2107
|
+
ACCEPTABLE = "ACCEPTABLE",
|
|
2108
|
+
ELIMINATE = "ELIMINATE"
|
|
2214
2109
|
}
|
|
2215
|
-
declare class
|
|
2216
|
-
|
|
2110
|
+
declare class AssessmentAnswer extends BaseEntity {
|
|
2111
|
+
userId: number;
|
|
2112
|
+
user: User;
|
|
2113
|
+
questionId: number;
|
|
2114
|
+
question: AssessmetQuestion;
|
|
2115
|
+
selectedOptionId: number;
|
|
2116
|
+
option: AssessmetQuestionOption;
|
|
2117
|
+
selectedAnswerType: SelectedAnswerTypeEnum;
|
|
2118
|
+
score: number;
|
|
2217
2119
|
}
|
|
2218
2120
|
|
|
2219
|
-
declare class
|
|
2220
|
-
|
|
2221
|
-
|
|
2121
|
+
declare class CompanySkill extends BaseEntity {
|
|
2122
|
+
userId: number;
|
|
2123
|
+
user: User;
|
|
2124
|
+
skillName: string;
|
|
2222
2125
|
}
|
|
2223
2126
|
|
|
2224
|
-
declare
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
uploadFreelancerServiceAgreement: string;
|
|
2233
|
-
fetchFreelancerServiceAgreement: string;
|
|
2234
|
-
generateFreelancerServiceAgreement: string;
|
|
2235
|
-
esignFreelancerServiceAgreementForClient: string;
|
|
2236
|
-
freelancerResumeDataMappingDev: string;
|
|
2237
|
-
freelancerMcqScoreMappingDev: string;
|
|
2238
|
-
fetchFreelancerDropdown: string;
|
|
2239
|
-
fetchFreelancerDesignationDropdown: string;
|
|
2240
|
-
deleteFreelancerProfilePic: string;
|
|
2241
|
-
fetchRecommendedJobsForFreelancer: string;
|
|
2242
|
-
fetchRecommendedClientsDropdownForFreelancerV2: string;
|
|
2243
|
-
fetchRecommendedJobsDropdownForFreelancerV2: string;
|
|
2244
|
-
fetchRecommendedJobsForFreelancerV2: string;
|
|
2245
|
-
fetchAppliedJobsOfFreelancer: string;
|
|
2246
|
-
fetchAppliedJobsDropdownForFreelancer: string;
|
|
2247
|
-
countOfActiveFreelancers: string;
|
|
2248
|
-
findUsersByUuids: string;
|
|
2249
|
-
markFollowedOnLinkedIn: string;
|
|
2250
|
-
fetchFreelancerResumeByUuId: string;
|
|
2251
|
-
fetchClientByIdForContract: string;
|
|
2252
|
-
fetchFreelancerByIdForContract: string;
|
|
2253
|
-
freelancerDataSetup: string;
|
|
2254
|
-
freelancerEmailAndMobileMasking: string;
|
|
2255
|
-
fetchClientInfoForChat: string;
|
|
2256
|
-
fetchAiAssessmentDetails: string;
|
|
2257
|
-
captureAiAssessmentResult: string;
|
|
2258
|
-
};
|
|
2259
|
-
declare const FREELANCER_ASSESSMENT_REQUEST_PATTERN: {
|
|
2260
|
-
fetchAssessmentRequestsForFreelancer: string;
|
|
2261
|
-
createFreelancerAssessmentRequest: string;
|
|
2262
|
-
};
|
|
2127
|
+
declare class AdminPermission extends BaseEntity {
|
|
2128
|
+
permissionName: string;
|
|
2129
|
+
permissionSlug: string;
|
|
2130
|
+
permissionDescription: string;
|
|
2131
|
+
module: string;
|
|
2132
|
+
isActive: boolean;
|
|
2133
|
+
adminRole: AdminRolePermission[];
|
|
2134
|
+
}
|
|
2263
2135
|
|
|
2264
|
-
declare class
|
|
2265
|
-
|
|
2266
|
-
|
|
2136
|
+
declare class AdminRolePermission extends BaseEntity {
|
|
2137
|
+
roleId: number;
|
|
2138
|
+
adminRole: AdminRole;
|
|
2139
|
+
permissionId: number;
|
|
2140
|
+
adminPermissions: AdminPermission;
|
|
2267
2141
|
}
|
|
2268
2142
|
|
|
2269
|
-
declare
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2143
|
+
declare class AdminRole extends BaseEntity {
|
|
2144
|
+
roleName: string;
|
|
2145
|
+
roleSlug: string;
|
|
2146
|
+
roleDescription: string;
|
|
2147
|
+
isActive: boolean;
|
|
2148
|
+
adminRolePermission: AdminRolePermission[];
|
|
2149
|
+
userRoles: AdminUserRole[];
|
|
2273
2150
|
}
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2151
|
+
|
|
2152
|
+
declare class AdminUserRole extends BaseEntity {
|
|
2153
|
+
userId: number;
|
|
2154
|
+
user: User;
|
|
2155
|
+
roleId: number;
|
|
2156
|
+
adminRole: AdminRole;
|
|
2278
2157
|
}
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
mobileCode: string;
|
|
2286
|
-
mobile: string;
|
|
2287
|
-
countryId: number;
|
|
2288
|
-
stateId: number;
|
|
2289
|
-
cityId: number;
|
|
2290
|
-
expectedHourlyCompensation: string;
|
|
2291
|
-
expectedAnnualCompensation: string;
|
|
2292
|
-
numberOfHours?: number;
|
|
2293
|
-
natureOfWork: NatureOfWorkDto$1;
|
|
2294
|
-
modeOfWork: ModeOfWorkDto;
|
|
2295
|
-
portfolioLink?: string;
|
|
2296
|
-
address: string;
|
|
2297
|
-
addressLine?: string;
|
|
2298
|
-
postalCode: string;
|
|
2299
|
-
about?: string;
|
|
2300
|
-
linkedinProfileLink?: string;
|
|
2301
|
-
kaggleProfileLink?: string;
|
|
2302
|
-
githubProfileLink?: string;
|
|
2303
|
-
stackOverflowProfileLink?: string;
|
|
2304
|
-
resumeUrl?: string;
|
|
2158
|
+
|
|
2159
|
+
declare class FreelancerResume extends BaseEntity {
|
|
2160
|
+
userId: number;
|
|
2161
|
+
user: User;
|
|
2162
|
+
resumeData: string;
|
|
2163
|
+
processedResumeData: string;
|
|
2305
2164
|
}
|
|
2306
2165
|
|
|
2307
|
-
declare class
|
|
2308
|
-
|
|
2166
|
+
declare class Signature extends BaseEntity {
|
|
2167
|
+
userId: number;
|
|
2168
|
+
user: User;
|
|
2169
|
+
signatureUrl: string;
|
|
2309
2170
|
}
|
|
2310
2171
|
|
|
2311
|
-
declare
|
|
2172
|
+
declare enum DisputeStatusEnum {
|
|
2173
|
+
OPEN = "OPEN",
|
|
2174
|
+
IN_REVIEW = "IN_REVIEW",
|
|
2175
|
+
PENDING_RESPONSE = "PENDING_RESPONSE",
|
|
2176
|
+
UNDER_INVESTIGATION = "UNDER_INVESTIGATION",
|
|
2177
|
+
RESOLVED = "RESOLVED",
|
|
2178
|
+
CLOSED = "CLOSED",
|
|
2179
|
+
ESCALATED = "ESCALATED",
|
|
2180
|
+
CANCELLED = "CANCELLED",
|
|
2181
|
+
REOPENED = "REOPENED"
|
|
2182
|
+
}
|
|
2183
|
+
declare enum InitiatorTypeEnum {
|
|
2184
|
+
FREELANCER = "FREELANCER",
|
|
2185
|
+
CLIENT = "CLIENT"
|
|
2186
|
+
}
|
|
2187
|
+
declare class Dispute extends BaseEntity {
|
|
2312
2188
|
clientId: number;
|
|
2189
|
+
client: User;
|
|
2190
|
+
freelancerId: number;
|
|
2191
|
+
freelancer: User;
|
|
2192
|
+
disputeUniqueId: string;
|
|
2193
|
+
disputeType: string;
|
|
2194
|
+
description: string;
|
|
2195
|
+
comment: string;
|
|
2196
|
+
status: DisputeStatusEnum;
|
|
2197
|
+
initiatorType: DisputeStatusEnum;
|
|
2198
|
+
initiatorId: number;
|
|
2199
|
+
initiator: User;
|
|
2200
|
+
respondentId: number;
|
|
2201
|
+
respondent: User;
|
|
2202
|
+
attachments: any[];
|
|
2203
|
+
dynamicFields: Record<string, any>;
|
|
2313
2204
|
}
|
|
2314
2205
|
|
|
2315
|
-
declare
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2206
|
+
declare enum StripeTransactionTypeEnum {
|
|
2207
|
+
ADD_FUNDS = "ADD_FUNDS",
|
|
2208
|
+
TRANSFER = "TRANSFER",
|
|
2209
|
+
WITHDRAW = "WITHDRAW",
|
|
2210
|
+
INVOICE_PAYMENT = "INVOICE_PAYMENT",
|
|
2211
|
+
REFUND = "REFUND"
|
|
2212
|
+
}
|
|
2213
|
+
declare enum StripeTransactionStatusEnum {
|
|
2214
|
+
PENDING = "PENDING",
|
|
2215
|
+
PROCESSING = "PROCESSING",
|
|
2216
|
+
COMPLETED = "COMPLETED",
|
|
2217
|
+
FAILED = "FAILED",
|
|
2218
|
+
EXPIRED = "EXPIRED",
|
|
2219
|
+
CANCELLED = "CANCELLED"
|
|
2220
|
+
}
|
|
2221
|
+
declare class StripeTransaction extends BaseEntity {
|
|
2222
|
+
userId: number;
|
|
2223
|
+
user: User;
|
|
2224
|
+
stripeSessionId: string;
|
|
2225
|
+
stripePaymentIntentId: string;
|
|
2226
|
+
stripeChargeId: string;
|
|
2227
|
+
stripeReceiptUrl: string;
|
|
2228
|
+
stripeBalanceTransactionId: string;
|
|
2229
|
+
stripePaymentMethod: string | null;
|
|
2230
|
+
stripePaymentStatus: string | null;
|
|
2231
|
+
type: StripeTransactionTypeEnum;
|
|
2232
|
+
currency: string;
|
|
2233
|
+
desiredDepositCents: number;
|
|
2234
|
+
platformFeeCents: number;
|
|
2235
|
+
taxCents: number | null;
|
|
2236
|
+
estimatedStripeFee: number | null;
|
|
2237
|
+
estimatedTotalCents: number | null;
|
|
2238
|
+
actualStripeFee: number | null;
|
|
2239
|
+
actualTotalPaidCents: number | null;
|
|
2240
|
+
netReceivedCents: number | null;
|
|
2241
|
+
description: string;
|
|
2242
|
+
status: StripeTransactionStatusEnum;
|
|
2243
|
+
checkoutSessionCompletedAt: Date;
|
|
2244
|
+
completedAt: Date;
|
|
2245
|
+
billingDetails: Record<string, any> | null;
|
|
2246
|
+
paymentMethodDetails: Record<string, any> | null;
|
|
2247
|
+
rawSessionPayload: Record<string, any> | null;
|
|
2248
|
+
rawSessionResponse: Record<string, any> | null;
|
|
2319
2249
|
}
|
|
2320
2250
|
|
|
2321
|
-
declare
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2251
|
+
declare enum WalletTransactionTypeEnum {
|
|
2252
|
+
CR = "CR",
|
|
2253
|
+
DR = "DR"
|
|
2254
|
+
}
|
|
2255
|
+
declare enum WalletTransactionStatusEnum {
|
|
2256
|
+
PENDING = "PENDING",
|
|
2257
|
+
PROCESSING = "PROCESSING",
|
|
2258
|
+
SUCCESS = "SUCCESS",
|
|
2259
|
+
FAILED = "FAILED",
|
|
2260
|
+
EXPIRED = "EXPIRED"
|
|
2261
|
+
}
|
|
2262
|
+
declare class WalletTransaction extends BaseEntity {
|
|
2263
|
+
walletId: number;
|
|
2264
|
+
wallet: Wallet;
|
|
2265
|
+
amount: number;
|
|
2266
|
+
balanceBefore: number;
|
|
2267
|
+
balanceAfter: number;
|
|
2268
|
+
type: WalletTransactionTypeEnum;
|
|
2269
|
+
status: WalletTransactionStatusEnum;
|
|
2270
|
+
description: string;
|
|
2271
|
+
completedAt: Date;
|
|
2272
|
+
transactionFor: string;
|
|
2273
|
+
metaData: string;
|
|
2274
|
+
stripeTransactionId: number;
|
|
2275
|
+
}
|
|
2329
2276
|
|
|
2330
|
-
declare enum
|
|
2331
|
-
|
|
2332
|
-
|
|
2277
|
+
declare enum WalletAccountTypeEnum {
|
|
2278
|
+
ADMIN = "ADMIN",
|
|
2279
|
+
BUSINESS = "BUSINESS",
|
|
2280
|
+
FREELANCER = "FREELANCER"
|
|
2333
2281
|
}
|
|
2334
|
-
declare
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2282
|
+
declare enum WalletOnboardingStatusEnum {
|
|
2283
|
+
PENDING = "PENDING",
|
|
2284
|
+
COMPLETED = "COMPLETED"
|
|
2285
|
+
}
|
|
2286
|
+
declare class Wallet extends BaseEntity {
|
|
2287
|
+
userId: number;
|
|
2288
|
+
user: User;
|
|
2289
|
+
accountType: WalletAccountTypeEnum;
|
|
2290
|
+
stripeAccountId: string;
|
|
2291
|
+
stripeCustomerId: string;
|
|
2292
|
+
walletBalance: string;
|
|
2293
|
+
walletBalanceCents: number;
|
|
2294
|
+
onboardingStatus: WalletOnboardingStatusEnum;
|
|
2295
|
+
stripeMetadata: Record<string, any>;
|
|
2296
|
+
walletTransactions: WalletTransaction[];
|
|
2349
2297
|
}
|
|
2350
2298
|
|
|
2351
|
-
declare
|
|
2352
|
-
|
|
2353
|
-
|
|
2299
|
+
declare enum AssessmentRequestStatusEnum {
|
|
2300
|
+
PENDING = "PENDING",
|
|
2301
|
+
APPROVED = "APPROVED",
|
|
2302
|
+
REJECTED = "REJECTED"
|
|
2303
|
+
}
|
|
2304
|
+
declare class FreelancerAssessmentRequest extends BaseEntity {
|
|
2305
|
+
freelancerId: number;
|
|
2306
|
+
freelancer: User;
|
|
2307
|
+
approvedById: number;
|
|
2308
|
+
approvedBy: User;
|
|
2309
|
+
status: AssessmentRequestStatusEnum;
|
|
2310
|
+
assessmentLink?: string;
|
|
2311
|
+
}
|
|
2354
2312
|
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2313
|
+
declare enum AccountType {
|
|
2314
|
+
SUPER_ADMIN = "SUPER_ADMIN",
|
|
2315
|
+
ADMIN = "ADMIN",
|
|
2316
|
+
SUB_ADMIN = "SUB_ADMIN",
|
|
2317
|
+
CLIENT = "CLIENT",
|
|
2318
|
+
FREELANCER = "FREELANCER",
|
|
2319
|
+
CLIENT_EMPLOYEE = "CLIENT_EMPLOYEE"
|
|
2320
|
+
}
|
|
2321
|
+
declare enum AccountStatus {
|
|
2322
|
+
INACTIVE = "INACTIVE",
|
|
2323
|
+
ACTIVE = "ACTIVE",
|
|
2324
|
+
SUSPENDED = "SUSPENDED",
|
|
2325
|
+
BLOCKED = "BLOCKED"
|
|
2360
2326
|
}
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
createSystemPreference: string;
|
|
2366
|
-
};
|
|
2367
|
-
|
|
2368
|
-
declare enum SystemPreferenceKey {
|
|
2369
|
-
EMAIL_NOTIFICATION = "EMAIL_NOTIFICATION",
|
|
2370
|
-
DARK_MODE = "DARK_MODE"
|
|
2327
|
+
declare enum Provider {
|
|
2328
|
+
LINKEDIN = "LINKEDIN",
|
|
2329
|
+
GOOGLE = "GOOGLE",
|
|
2330
|
+
GITLABS = "GITLABS"
|
|
2371
2331
|
}
|
|
2372
|
-
declare class
|
|
2373
|
-
|
|
2374
|
-
|
|
2332
|
+
declare class User extends BaseEntity {
|
|
2333
|
+
uniqueId: string;
|
|
2334
|
+
parentId: number;
|
|
2335
|
+
parent: User;
|
|
2336
|
+
children: User[];
|
|
2337
|
+
username: string;
|
|
2338
|
+
firstName: string;
|
|
2339
|
+
lastName: string;
|
|
2340
|
+
dateOfBirth: Date;
|
|
2341
|
+
gender: string;
|
|
2342
|
+
profilePictureUrl: string;
|
|
2343
|
+
email: string;
|
|
2344
|
+
mobileCode: string;
|
|
2345
|
+
mobile: string;
|
|
2346
|
+
password: string;
|
|
2347
|
+
accountType: AccountType;
|
|
2348
|
+
accountStatus: AccountStatus;
|
|
2349
|
+
isEmailVerified: boolean;
|
|
2350
|
+
isMobileVerified: boolean;
|
|
2351
|
+
isSocial: boolean;
|
|
2352
|
+
lastLoginAt: Date;
|
|
2353
|
+
lastLoginIp: string;
|
|
2354
|
+
resetToken: string | null;
|
|
2355
|
+
resetTokenExpireAt: Date | null;
|
|
2356
|
+
setPasswordToken: string | null;
|
|
2357
|
+
refreshTokens: RefreshToken[];
|
|
2358
|
+
provider: Provider;
|
|
2359
|
+
providerToken: string;
|
|
2360
|
+
linkedInId: string;
|
|
2361
|
+
googleId: string;
|
|
2362
|
+
gitLabsId: string;
|
|
2363
|
+
onBoardedBy: string;
|
|
2364
|
+
otps: Otp[];
|
|
2365
|
+
senseloafLogs: SenseloafLog[];
|
|
2366
|
+
companyProfile: CompanyProfile;
|
|
2367
|
+
companySkills: CompanySkill[];
|
|
2368
|
+
companyMemberRoles: CompanyMemberRole[];
|
|
2369
|
+
companyAiInterview: AiInterview[];
|
|
2370
|
+
clientF2FInterviews: F2FInterview[];
|
|
2371
|
+
freelancerProfile: FreelancerProfile;
|
|
2372
|
+
freelancerResume: FreelancerResume;
|
|
2373
|
+
freelancerAssessmentRequests: FreelancerAssessmentRequest[];
|
|
2374
|
+
assessmentRequests: FreelancerAssessmentRequest[];
|
|
2375
|
+
assessments: FreelancerAssessment[];
|
|
2376
|
+
assessmentAnswers: AssessmentAnswer[];
|
|
2377
|
+
freelancerSkills: FreelancerSkill[];
|
|
2378
|
+
freelancerExperience: FreelancerExperience[];
|
|
2379
|
+
freelancerEducation: FreelancerEducation[];
|
|
2380
|
+
freelancerProject: FreelancerProject[];
|
|
2381
|
+
freelancerCaseStudy: FreelancerCaseStudy[];
|
|
2382
|
+
freelancerTool: FreelancerTool[];
|
|
2383
|
+
freelancerFramework: FreelancerFramework[];
|
|
2384
|
+
freelancerDeclaration: FreelancerDeclaration;
|
|
2385
|
+
freelancerMcq: AssessmetQuestion[];
|
|
2386
|
+
freelancerAiInterview: AiInterview[];
|
|
2387
|
+
freelancerF2FInterviews: F2FInterview[];
|
|
2388
|
+
freelancerF2FInterviewRescheduleRequests: F2fInterviewRescheduleRequest[];
|
|
2389
|
+
freelancerAiInterviewRescheduleRequests: AiInterviewRescheduleRequest[];
|
|
2390
|
+
clientAiInterviewRescheduleRequests: AiInterviewRescheduleRequest[];
|
|
2391
|
+
jobs: Job[];
|
|
2392
|
+
jobApplications: JobApplication[];
|
|
2393
|
+
interviews: Interview[];
|
|
2394
|
+
bankDetail: BankDetail[];
|
|
2395
|
+
systemPreference: SystemPreference[];
|
|
2396
|
+
givenRatings: Rating[];
|
|
2397
|
+
receivedRatings: Rating[];
|
|
2398
|
+
adminUserRoles: AdminUserRole[];
|
|
2399
|
+
clientContracts: Contract[];
|
|
2400
|
+
clientHirings: Hiring[];
|
|
2401
|
+
clientEscrowWallets: EscrowWallet[];
|
|
2402
|
+
freelancerContracts: Contract[];
|
|
2403
|
+
freelancerHirings: Hiring[];
|
|
2404
|
+
freelancerEscrowWallets: EscrowWallet[];
|
|
2405
|
+
signatures: Signature;
|
|
2406
|
+
clientTimesheets: Timesheet[];
|
|
2407
|
+
freelancerTimesheets: Timesheet[];
|
|
2408
|
+
clientTimesheetLine: TimesheetLine[];
|
|
2409
|
+
clientInvoice: Invoice[];
|
|
2410
|
+
freelancerTimesheetLine: TimesheetLine[];
|
|
2411
|
+
freelancerInvoice: Invoice[];
|
|
2412
|
+
clientPreferencesGiven: ClientCandidatePreference[];
|
|
2413
|
+
clientPreferencesReceived: ClientCandidatePreference[];
|
|
2414
|
+
initiatedDisputes: Dispute[];
|
|
2415
|
+
respondentDisputes: Dispute[];
|
|
2416
|
+
wallet: Wallet;
|
|
2417
|
+
stripeTransactions: StripeTransaction[];
|
|
2418
|
+
clientDisputes: Dispute[];
|
|
2419
|
+
freelancerDisputes: Dispute[];
|
|
2375
2420
|
}
|
|
2376
2421
|
|
|
2377
|
-
declare
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
cleanQueue: string;
|
|
2402
|
-
status: string;
|
|
2403
|
-
accountInfo: string;
|
|
2404
|
-
};
|
|
2405
|
-
declare const EMAIL_PATTERN: {
|
|
2406
|
-
sendTest: string;
|
|
2407
|
-
send: string;
|
|
2408
|
-
sendTemplate: string;
|
|
2409
|
-
getQueueStats: string;
|
|
2410
|
-
cleanQueue: string;
|
|
2411
|
-
};
|
|
2412
|
-
|
|
2413
|
-
declare class TestNotificationDto {
|
|
2414
|
-
email?: string;
|
|
2415
|
-
phone?: string;
|
|
2416
|
-
message?: string;
|
|
2417
|
-
data?: any;
|
|
2418
|
-
type?: string;
|
|
2422
|
+
declare enum RatingTypeEnum {
|
|
2423
|
+
FREELANCER_TO_CLIENT = "FREELANCER_TO_CLIENT",
|
|
2424
|
+
CLIENT_TO_FREELANCER = "CLIENT_TO_FREELANCER"
|
|
2425
|
+
}
|
|
2426
|
+
declare class Rating extends BaseEntity {
|
|
2427
|
+
reviewerId: number;
|
|
2428
|
+
reviewer: User;
|
|
2429
|
+
revieweeId: number;
|
|
2430
|
+
reviewee: User;
|
|
2431
|
+
jobId: number;
|
|
2432
|
+
job: Job;
|
|
2433
|
+
ratingType: RatingTypeEnum;
|
|
2434
|
+
reviewerComment: string;
|
|
2435
|
+
overAllExperience: number;
|
|
2436
|
+
workQuality: number;
|
|
2437
|
+
oneTimeDelivery: number;
|
|
2438
|
+
understaning: number;
|
|
2439
|
+
communication: number;
|
|
2440
|
+
skillUtilized: number;
|
|
2441
|
+
communicationClarity: number;
|
|
2442
|
+
requirementsClarity: number;
|
|
2443
|
+
responsiveness: number;
|
|
2444
|
+
paymentPromptness: number;
|
|
2445
|
+
responsibilitiesAndExpectations: number;
|
|
2419
2446
|
}
|
|
2420
|
-
|
|
2421
|
-
declare const RATING_PATTERN: {
|
|
2422
|
-
addRating: string;
|
|
2423
|
-
fetchRating: string;
|
|
2424
|
-
};
|
|
2425
2447
|
|
|
2426
2448
|
declare class CreateRatingDto {
|
|
2427
2449
|
revieweeId: number;
|
|
@@ -2768,7 +2790,7 @@ declare class CreateFreelancerDto {
|
|
|
2768
2790
|
confirmPassword: string;
|
|
2769
2791
|
developer: boolean;
|
|
2770
2792
|
natureOfWork: NatureOfWorkEnum$1;
|
|
2771
|
-
expectedHourlyCompensation:
|
|
2793
|
+
expectedHourlyCompensation: string;
|
|
2772
2794
|
expectedAnnualCompensation: string;
|
|
2773
2795
|
numberOfHours?: number;
|
|
2774
2796
|
modeOfWork: ModeOfWorkEnum$1;
|
|
@@ -2779,6 +2801,16 @@ declare class CreateFreelancerDto {
|
|
|
2779
2801
|
githubProfileLink?: string;
|
|
2780
2802
|
stackOverflowProfileLink?: string;
|
|
2781
2803
|
portfolioLink?: string;
|
|
2804
|
+
file?: any;
|
|
2805
|
+
designation?: string;
|
|
2806
|
+
experience?: number;
|
|
2807
|
+
address?: string;
|
|
2808
|
+
addressLine?: string;
|
|
2809
|
+
postalCode?: string;
|
|
2810
|
+
about?: string;
|
|
2811
|
+
countryId?: number;
|
|
2812
|
+
stateId?: number;
|
|
2813
|
+
cityId?: number;
|
|
2782
2814
|
}
|
|
2783
2815
|
|
|
2784
2816
|
declare enum NatureOfWorkEnum {
|
|
@@ -2796,10 +2828,15 @@ declare class UpdateFreelancerDto {
|
|
|
2796
2828
|
email?: string;
|
|
2797
2829
|
mobileCode?: string;
|
|
2798
2830
|
mobile?: string;
|
|
2831
|
+
address: string;
|
|
2832
|
+
addressLine?: string;
|
|
2833
|
+
countryId: number;
|
|
2834
|
+
stateId: number;
|
|
2835
|
+
cityId: number;
|
|
2799
2836
|
password?: string;
|
|
2800
2837
|
developer?: boolean;
|
|
2801
2838
|
natureOfWork?: NatureOfWorkEnum;
|
|
2802
|
-
expectedHourlyCompensation
|
|
2839
|
+
expectedHourlyCompensation: string;
|
|
2803
2840
|
expectedAnnualCompensation: string;
|
|
2804
2841
|
numberOfHours?: number;
|
|
2805
2842
|
modeOfWork?: ModeOfWorkEnum;
|
|
@@ -2810,10 +2847,11 @@ declare class UpdateFreelancerDto {
|
|
|
2810
2847
|
githubProfileLink?: string;
|
|
2811
2848
|
stackOverflowProfileLink?: string;
|
|
2812
2849
|
portfolioLink?: string;
|
|
2850
|
+
file?: any;
|
|
2813
2851
|
}
|
|
2814
2852
|
|
|
2815
2853
|
declare class SendAiAssessmentLinkDto {
|
|
2816
|
-
|
|
2854
|
+
uuid: string;
|
|
2817
2855
|
}
|
|
2818
2856
|
|
|
2819
2857
|
declare enum AssessmentRequestStatus {
|
|
@@ -2921,6 +2959,8 @@ declare class CreateClientDto {
|
|
|
2921
2959
|
firstName: string;
|
|
2922
2960
|
lastName: string;
|
|
2923
2961
|
email: string;
|
|
2962
|
+
mobileCode: string;
|
|
2963
|
+
phoneNumber: string;
|
|
2924
2964
|
password: string;
|
|
2925
2965
|
confirmPassword: string;
|
|
2926
2966
|
companyName: string;
|
|
@@ -2932,6 +2972,14 @@ declare class CreateClientDto {
|
|
|
2932
2972
|
foundUsOnDetail?: string;
|
|
2933
2973
|
hiringCommisionTypeForFte?: string;
|
|
2934
2974
|
hiringCommissionValueForFte?: string;
|
|
2975
|
+
about?: string;
|
|
2976
|
+
webSite?: string;
|
|
2977
|
+
companyAddress?: string;
|
|
2978
|
+
addressLine?: string;
|
|
2979
|
+
postalCode?: string;
|
|
2980
|
+
countryId?: number;
|
|
2981
|
+
stateId?: number;
|
|
2982
|
+
cityId?: number;
|
|
2935
2983
|
}
|
|
2936
2984
|
|
|
2937
2985
|
declare class UpdateClientAccountStatusDto {
|
|
@@ -3053,10 +3101,12 @@ declare const CLIENT_CANDIDATE_PREFERENCE_PATTERN: {
|
|
|
3053
3101
|
|
|
3054
3102
|
declare class MarkCandidateStatusDto {
|
|
3055
3103
|
candidateId: number;
|
|
3104
|
+
jobId?: number;
|
|
3056
3105
|
}
|
|
3057
3106
|
|
|
3058
3107
|
declare class MarkCandidateStatusBulkDto {
|
|
3059
3108
|
candidateIds: number[];
|
|
3109
|
+
jobId?: number;
|
|
3060
3110
|
}
|
|
3061
3111
|
|
|
3062
3112
|
declare const CMS_PATTERNS: {
|
|
@@ -3370,24 +3420,45 @@ declare enum CandidateType {
|
|
|
3370
3420
|
RECOMMENDED = "RECOMMENDED",
|
|
3371
3421
|
NEW = "NEW"
|
|
3372
3422
|
}
|
|
3373
|
-
declare class ExistingCandidateDto {
|
|
3423
|
+
declare class ExistingCandidateDto$1 {
|
|
3374
3424
|
id: string;
|
|
3375
3425
|
type: CandidateType;
|
|
3376
3426
|
}
|
|
3377
|
-
declare class NewCandidateDto {
|
|
3427
|
+
declare class NewCandidateDto$1 {
|
|
3378
3428
|
name: string;
|
|
3379
3429
|
email: string;
|
|
3380
3430
|
type: CandidateType;
|
|
3381
3431
|
}
|
|
3382
3432
|
declare class CandidatesDto {
|
|
3383
|
-
exixtingCandidates?: ExistingCandidateDto[];
|
|
3384
|
-
newCandidates?: NewCandidateDto[];
|
|
3433
|
+
exixtingCandidates?: ExistingCandidateDto$1[];
|
|
3434
|
+
newCandidates?: NewCandidateDto$1[];
|
|
3385
3435
|
}
|
|
3386
3436
|
declare class InterviewInviteDto {
|
|
3387
3437
|
jobId: string;
|
|
3388
3438
|
candidates: CandidatesDto;
|
|
3389
3439
|
}
|
|
3390
3440
|
|
|
3441
|
+
declare enum InterviewInviteCandidateType {
|
|
3442
|
+
SHORTLISTED = "SHORTLISTED",
|
|
3443
|
+
APPLICANTS = "APPLICANTS",
|
|
3444
|
+
RECOMMENDED = "RECOMMENDED",
|
|
3445
|
+
NEW = "NEW"
|
|
3446
|
+
}
|
|
3447
|
+
declare class ExistingCandidateDto {
|
|
3448
|
+
id: string;
|
|
3449
|
+
type: InterviewInviteCandidateType;
|
|
3450
|
+
}
|
|
3451
|
+
declare class NewCandidateDto {
|
|
3452
|
+
name: string;
|
|
3453
|
+
email: string;
|
|
3454
|
+
type: InterviewInviteCandidateType;
|
|
3455
|
+
}
|
|
3456
|
+
declare class SendInterviewInviteDto {
|
|
3457
|
+
jobId: string;
|
|
3458
|
+
existingCandidates?: ExistingCandidateDto[];
|
|
3459
|
+
newCandidates?: NewCandidateDto[];
|
|
3460
|
+
}
|
|
3461
|
+
|
|
3391
3462
|
declare class CreateF2FInterviewDto {
|
|
3392
3463
|
inviteeEmail: string;
|
|
3393
3464
|
inviteeName: string;
|
|
@@ -3406,7 +3477,7 @@ declare class CreateF2FInterviewRescheduleRequestDto {
|
|
|
3406
3477
|
f2FInterviewId: string;
|
|
3407
3478
|
rescheduledDate: string;
|
|
3408
3479
|
rescheduledSlot: string;
|
|
3409
|
-
freelancerRequestReason
|
|
3480
|
+
freelancerRequestReason?: string;
|
|
3410
3481
|
}
|
|
3411
3482
|
|
|
3412
3483
|
declare class CreateAIInterviewRescheduleRequestDto {
|
|
@@ -3442,6 +3513,39 @@ declare class UpdateInterviewBasicInformationDto {
|
|
|
3442
3513
|
location?: string;
|
|
3443
3514
|
}
|
|
3444
3515
|
|
|
3516
|
+
declare class InterviewSkillItemDto {
|
|
3517
|
+
uuid?: string;
|
|
3518
|
+
skill: string;
|
|
3519
|
+
description?: string;
|
|
3520
|
+
}
|
|
3521
|
+
declare class CreateInterviewSkillsDto {
|
|
3522
|
+
skills: InterviewSkillItemDto[];
|
|
3523
|
+
}
|
|
3524
|
+
|
|
3525
|
+
declare class CustomQuestionItemDto {
|
|
3526
|
+
uuid?: string;
|
|
3527
|
+
question: string;
|
|
3528
|
+
}
|
|
3529
|
+
declare class AiQuestionItemDto {
|
|
3530
|
+
uuid?: string;
|
|
3531
|
+
question: string;
|
|
3532
|
+
concepts?: string;
|
|
3533
|
+
}
|
|
3534
|
+
declare class CreateInterviewQuestionsDto {
|
|
3535
|
+
questions?: CustomQuestionItemDto[];
|
|
3536
|
+
aiQuestions?: AiQuestionItemDto[];
|
|
3537
|
+
}
|
|
3538
|
+
|
|
3539
|
+
declare class UpdateInterviewSettingDto {
|
|
3540
|
+
interviewLanguage?: string;
|
|
3541
|
+
allowProctoring?: boolean;
|
|
3542
|
+
interviewDuration?: string;
|
|
3543
|
+
interviewValidityPeriod?: string;
|
|
3544
|
+
maximumAttemptsAllowed?: string;
|
|
3545
|
+
startInterviewMessage?: string;
|
|
3546
|
+
endInterviewMessage?: string;
|
|
3547
|
+
}
|
|
3548
|
+
|
|
3445
3549
|
declare const CONTRACT_PATTERN: {
|
|
3446
3550
|
generateContract: string;
|
|
3447
3551
|
fetchHiredFreelancerForClient: string;
|
|
@@ -3487,10 +3591,25 @@ declare class SignContractForFreelancerDto {
|
|
|
3487
3591
|
contractType: ContractTypeEnum;
|
|
3488
3592
|
}
|
|
3489
3593
|
|
|
3594
|
+
declare enum ContractSourceEnum {
|
|
3595
|
+
AI_INTERVIEW = "AI_INTERVIEW",
|
|
3596
|
+
F2F_INTERVIEW = "F2F_INTERVIEW",
|
|
3597
|
+
JOB = "JOB"
|
|
3598
|
+
}
|
|
3599
|
+
declare enum ContractTypeEnumDto {
|
|
3600
|
+
NDA = "NDA",
|
|
3601
|
+
WORK = "WORK",
|
|
3602
|
+
SOW = "SOW",
|
|
3603
|
+
MSA = "MSA"
|
|
3604
|
+
}
|
|
3490
3605
|
declare class GenerateContractDto {
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3606
|
+
jobId: string;
|
|
3607
|
+
freelancerId: number;
|
|
3608
|
+
contractType?: ContractTypeEnumDto;
|
|
3609
|
+
contractStartDate?: string;
|
|
3610
|
+
contractInvoicingCycle?: string;
|
|
3611
|
+
source?: ContractSourceEnum;
|
|
3612
|
+
sourceUuid?: string;
|
|
3494
3613
|
}
|
|
3495
3614
|
|
|
3496
3615
|
declare class EsignContractClientDto {
|
|
@@ -3502,10 +3621,11 @@ declare class EsignContractFreelancerDto {
|
|
|
3502
3621
|
}
|
|
3503
3622
|
|
|
3504
3623
|
declare class EscrowFundContractDto {
|
|
3505
|
-
contractId:
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
|
|
3624
|
+
contractId: string;
|
|
3625
|
+
}
|
|
3626
|
+
|
|
3627
|
+
declare class SendNdaContractToFreelancerDto {
|
|
3628
|
+
contractUuid: string;
|
|
3509
3629
|
}
|
|
3510
3630
|
|
|
3511
3631
|
declare const STRIPE_PATTERN: {
|
|
@@ -3544,16 +3664,7 @@ declare class ClientAddFundDto {
|
|
|
3544
3664
|
}
|
|
3545
3665
|
|
|
3546
3666
|
declare class TransferFundsDto {
|
|
3547
|
-
|
|
3548
|
-
connectedAccountId: string;
|
|
3549
|
-
description?: string;
|
|
3550
|
-
}
|
|
3551
|
-
|
|
3552
|
-
declare class CreatePayoutDto {
|
|
3553
|
-
amount: number;
|
|
3554
|
-
connectedAccountId: string;
|
|
3555
|
-
method?: string;
|
|
3556
|
-
description?: string;
|
|
3667
|
+
invoiceUuid: string;
|
|
3557
3668
|
}
|
|
3558
3669
|
|
|
3559
3670
|
declare const TIMESHEET_FREELANCER_PATTERN: {
|
|
@@ -3630,12 +3741,12 @@ declare class ResubmitTimesheetDto {
|
|
|
3630
3741
|
}
|
|
3631
3742
|
|
|
3632
3743
|
declare class ApproveTimesheetsDto {
|
|
3633
|
-
|
|
3744
|
+
timesheetLineId: number;
|
|
3634
3745
|
}
|
|
3635
3746
|
|
|
3636
3747
|
declare class SendBackTimesheetsDto {
|
|
3637
|
-
|
|
3638
|
-
|
|
3748
|
+
timesheetLineId: number;
|
|
3749
|
+
clientSendBackReason?: string;
|
|
3639
3750
|
}
|
|
3640
3751
|
|
|
3641
3752
|
declare class CreateDefaultTimesheetLineDto {
|
|
@@ -3786,8 +3897,7 @@ declare class AddTopupEscrowAmountDto {
|
|
|
3786
3897
|
}
|
|
3787
3898
|
|
|
3788
3899
|
declare class DebitCommissionFteHiringDto {
|
|
3789
|
-
|
|
3790
|
-
amount: number;
|
|
3900
|
+
invoiceUuid: string;
|
|
3791
3901
|
}
|
|
3792
3902
|
|
|
3793
3903
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
@@ -4006,4 +4116,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
|
|
|
4006
4116
|
isActive: boolean;
|
|
4007
4117
|
}
|
|
4008
4118
|
|
|
4009
|
-
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AddTopupEscrowAmountDto, AdminCreateJobInformationDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentCreationDto, AiAssessmentStatusEnum, AiInterview, AiInterviewLinkGenerationDto, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AiInterviewTemplateGenerationDto, AnswerTypeEnum, ApplicationStatusEnum, ApproveTimesheetsDto, AssessmentAnswer, AssessmentRequestStatus, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_CANDIDATE_PREFERENCE_PATTERN, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMMISSION_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CandidateType, CaptureAiAssessmentResultDto, CaptureAiInterviewResultPublicDto, CaseStudyDto, CategoryEmum, CategoryEmumDto, ChangeJobApplicationStatusBulkDto, ChangeJobApplicationStatusDto, ChatRMQAdapter, ChatTCPAdapter, CheckResumeEligibilityDto, City, ClientAddFundDto, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientESignatureDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, ClientServiceAgreementUploadDto, CloseJobDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDefaultTimesheetLineDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateHiringDto, CreateInterviewBasicInformationDto, CreateInvoiceDto, CreateJobApplicationDto, CreateLeadDto, CreatePayoutDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DISPUTE_PATTERN, DebitCommissionFteHiringDto, Dispute, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EMAIL_PATTERN, EducationDto, EmploymentType, EmploymentTypeV2, EscrowFundContractDto, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, EsignContractClientDto, EsignContractFreelancerDto, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, FREELANCER_ASSESSMENT_REQUEST_PATTERN, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, FetchClientInfoForChatDto, FetchFreelancerInfoForChatDto, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerESignatureDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, GenerateContractDto, HIRING_PATTERN, HiredFreelancerNatureOfWorkEnum, Hiring, HiringCommissionTypeEnum, type IAddRatingPayload, type IAttachPermissionsToClientResponse, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToFreelancerResponse, type IAttachPermissionsToSubAdminResponse, type ICreateClientPayload, type ICreateClientResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateFreelancerPayload, type ICreateFreelancerResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteClientResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteFreelancerResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchClientsResponse, type IFetchCmsQuery, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchFreelancersResponse, type IFetchPlanResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, type IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobApplicationStatus, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum$1 as JobLocationEnum, JobLocationEnumDto, JobLocationEnumV2, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, MAINTENANCE_PATTERN, MarkCandidateStatusBulkDto, MarkCandidateStatusDto, McqStatusEnum, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, OtpType, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, PreCheckoutCalculationDto, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RecommendationWeightageConfig, RecordAssessmentAnswerDto, RecordAssessmentAnswersDto, RecordingStatusEnum, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, RejectF2FInterviewRescheduleRequestDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResubmitTimesheetDto, ResultStatusEnum, ResumeDataProcessingDto, ResumeParsingByUrlDto, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, SMS_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, SaveSignatureDto, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendAiAssessmentLinkDto, SendBackTimesheetsDto, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SendOtpDto, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, SocialAuthDto, State, Step, StepCompletedEnumV2, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SubmitTimesheetDto, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, TestNotificationDto, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TransferFundsDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateAdminRoleStatusDto, UpdateAssessmentRequestStatusDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInterviewBasicInformationDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, ValidateEmailDto, ValidateMobileDto, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, VerifyOnboardingTokenDto, VerifyOtpDto, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, typeOfExperienceDtoEnumV2, typeOfExperienceEnum };
|
|
4119
|
+
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AddTopupEscrowAmountDto, AdminCreateJobInformationDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentCreationDto, AiAssessmentStatusEnum, AiInterview, AiInterviewLinkGenerationDto, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AiInterviewTemplateGenerationDto, AiQuestionItemDto, AnswerTypeEnum, ApplicationStatusEnum, ApproveTimesheetsDto, AssessmentAnswer, AssessmentRequestStatus, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_CANDIDATE_PREFERENCE_PATTERN, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMMISSION_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CandidateType, CaptureAiAssessmentResultDto, CaptureAiInterviewResultPublicDto, CaseStudyDto, CategoryEmum, CategoryEmumDto, ChangeJobApplicationStatusBulkDto, ChangeJobApplicationStatusDto, ChatRMQAdapter, ChatTCPAdapter, CheckResumeEligibilityDto, City, ClientAddFundDto, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientESignatureDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, ClientServiceAgreementUploadDto, CloseJobDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractSourceEnum, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, ContractTypeEnumDto, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDefaultTimesheetLineDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateHiringDto, CreateInterviewBasicInformationDto, CreateInterviewQuestionsDto, CreateInterviewSkillsDto, CreateInvoiceDto, CreateJobApplicationDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, CustomQuestionItemDto, DISPUTE_PATTERN, DebitCommissionFteHiringDto, Dispute, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EMAIL_PATTERN, EducationDto, EmploymentType, EmploymentTypeV2, EscrowFundContractDto, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, EsignContractClientDto, EsignContractFreelancerDto, ExistingCandidateDto, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, FREELANCER_ASSESSMENT_REQUEST_PATTERN, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, FetchClientInfoForChatDto, FetchFreelancerInfoForChatDto, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerESignatureDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, GenerateContractDto, HIRING_PATTERN, HiredFreelancerNatureOfWorkEnum, Hiring, HiringCommissionTypeEnum, type IAddRatingPayload, type IAttachPermissionsToClientResponse, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToFreelancerResponse, type IAttachPermissionsToSubAdminResponse, type ICreateClientPayload, type ICreateClientResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateFreelancerPayload, type ICreateFreelancerResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteClientResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteFreelancerResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchClientsResponse, type IFetchCmsQuery, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchFreelancersResponse, type IFetchPlanResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, type IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteCandidateType, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewSkillItemDto, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobApplicationStatus, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum, JobLocationEnumDto, JobLocationEnumV2, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, MAINTENANCE_PATTERN, MarkCandidateStatusBulkDto, MarkCandidateStatusDto, McqStatusEnum, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NewCandidateDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, PreCheckoutCalculationDto, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RecommendationWeightageConfig, RecordAssessmentAnswerDto, RecordAssessmentAnswersDto, RecordingStatusEnum, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, RejectF2FInterviewRescheduleRequestDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResubmitTimesheetDto, ResultStatusEnum, ResumeDataProcessingDto, ResumeParsingByUrlDto, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, SMS_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, SaveSignatureDto, ScopeEmailEnumDto, ScopeEmailForLoginEnumDto, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendAiAssessmentLinkDto, SendBackTimesheetsDto, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendInterviewInviteDto, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SendNdaContractToFreelancerDto, SendOtpDto, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, SocialAuthDto, State, Step, StepCompletedEnumV2, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SubmitTimesheetDto, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, TestNotificationDto, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TransferFundsDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateAdminRoleStatusDto, UpdateAssessmentRequestStatusDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInterviewBasicInformationDto, UpdateInterviewSettingDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, ValidateEmailDto, ValidateEmailForLoginDto, ValidateMobileDto, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, VerifyOnboardingTokenDto, VerifyOtpDto, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, typeOfExperienceDtoEnumV2, typeOfExperienceEnum };
|