@experts_hub/shared 1.0.226 → 1.0.228
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/entities/country.entity.d.ts +3 -1
- package/dist/entities/freelancer-profile.entity.d.ts +3 -1
- package/dist/index.d.mts +31 -28
- package/dist/index.d.ts +31 -28
- package/dist/index.js +289 -279
- package/dist/index.mjs +302 -292
- package/dist/modules/job-admin/pattern/pattern.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { BaseEntity } from "./base.entity";
|
|
2
2
|
import { State } from "./state.entity";
|
|
3
|
+
import { FreelancerProfile } from "./freelancer-profile.entity";
|
|
3
4
|
export declare class Country extends BaseEntity {
|
|
4
|
-
states: State[];
|
|
5
5
|
countryName: string;
|
|
6
6
|
countryIsoCode: string;
|
|
7
7
|
countryPhoneCode: string;
|
|
8
8
|
currency: string;
|
|
9
9
|
isActive: boolean;
|
|
10
|
+
states: State[];
|
|
11
|
+
freelancerProfile: FreelancerProfile[];
|
|
10
12
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { BaseEntity } from "./base.entity";
|
|
2
2
|
import { User } from "./user.entity";
|
|
3
|
+
import { Country } from "./country.entity";
|
|
3
4
|
export declare enum NatureOfWork {
|
|
4
5
|
FULLTIME = "FULLTIME",
|
|
5
6
|
PARTTIME = "PARTTIME",
|
|
@@ -22,6 +23,8 @@ export declare enum OnboardingStepEnum {
|
|
|
22
23
|
export declare class FreelancerProfile extends BaseEntity {
|
|
23
24
|
userId: number;
|
|
24
25
|
user: User;
|
|
26
|
+
countryId: number;
|
|
27
|
+
country: Country;
|
|
25
28
|
talentId: string;
|
|
26
29
|
resumeUrl: string;
|
|
27
30
|
resumeData: string;
|
|
@@ -41,7 +44,6 @@ export declare class FreelancerProfile extends BaseEntity {
|
|
|
41
44
|
stackOverflowProfileLink: string;
|
|
42
45
|
portfolioLink: string;
|
|
43
46
|
onboardingStepCompleted: OnboardingStepEnum;
|
|
44
|
-
countryId: number;
|
|
45
47
|
address: string;
|
|
46
48
|
about: string;
|
|
47
49
|
profileCompletedPercentage: Record<string, number>;
|
package/dist/index.d.mts
CHANGED
|
@@ -600,6 +600,34 @@ declare class Otp {
|
|
|
600
600
|
user: User;
|
|
601
601
|
}
|
|
602
602
|
|
|
603
|
+
declare class City extends BaseEntity {
|
|
604
|
+
countryId: number;
|
|
605
|
+
country: Country;
|
|
606
|
+
stateId: number;
|
|
607
|
+
state: State;
|
|
608
|
+
cityCode: string;
|
|
609
|
+
cityName: string;
|
|
610
|
+
isActive: boolean;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
declare class State extends BaseEntity {
|
|
614
|
+
countryId: number;
|
|
615
|
+
country: Country;
|
|
616
|
+
cities: City[];
|
|
617
|
+
stateName: string;
|
|
618
|
+
isActive: boolean;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
declare class Country extends BaseEntity {
|
|
622
|
+
countryName: string;
|
|
623
|
+
countryIsoCode: string;
|
|
624
|
+
countryPhoneCode: string;
|
|
625
|
+
currency: string;
|
|
626
|
+
isActive: boolean;
|
|
627
|
+
states: State[];
|
|
628
|
+
freelancerProfile: FreelancerProfile[];
|
|
629
|
+
}
|
|
630
|
+
|
|
603
631
|
declare enum NatureOfWork {
|
|
604
632
|
FULLTIME = "FULLTIME",
|
|
605
633
|
PARTTIME = "PARTTIME",
|
|
@@ -622,6 +650,8 @@ declare enum OnboardingStepEnum {
|
|
|
622
650
|
declare class FreelancerProfile extends BaseEntity {
|
|
623
651
|
userId: number;
|
|
624
652
|
user: User;
|
|
653
|
+
countryId: number;
|
|
654
|
+
country: Country;
|
|
625
655
|
talentId: string;
|
|
626
656
|
resumeUrl: string;
|
|
627
657
|
resumeData: string;
|
|
@@ -641,7 +671,6 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
641
671
|
stackOverflowProfileLink: string;
|
|
642
672
|
portfolioLink: string;
|
|
643
673
|
onboardingStepCompleted: OnboardingStepEnum;
|
|
644
|
-
countryId: number;
|
|
645
674
|
address: string;
|
|
646
675
|
about: string;
|
|
647
676
|
profileCompletedPercentage: Record<string, number>;
|
|
@@ -763,33 +792,6 @@ declare class Interview extends BaseEntity {
|
|
|
763
792
|
interviewSkills: InterviewSkill[];
|
|
764
793
|
}
|
|
765
794
|
|
|
766
|
-
declare class City extends BaseEntity {
|
|
767
|
-
countryId: number;
|
|
768
|
-
country: Country;
|
|
769
|
-
stateId: number;
|
|
770
|
-
state: State;
|
|
771
|
-
cityCode: string;
|
|
772
|
-
cityName: string;
|
|
773
|
-
isActive: boolean;
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
declare class State extends BaseEntity {
|
|
777
|
-
countryId: number;
|
|
778
|
-
country: Country;
|
|
779
|
-
cities: City[];
|
|
780
|
-
stateName: string;
|
|
781
|
-
isActive: boolean;
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
declare class Country extends BaseEntity {
|
|
785
|
-
states: State[];
|
|
786
|
-
countryName: string;
|
|
787
|
-
countryIsoCode: string;
|
|
788
|
-
countryPhoneCode: string;
|
|
789
|
-
currency: string;
|
|
790
|
-
isActive: boolean;
|
|
791
|
-
}
|
|
792
|
-
|
|
793
795
|
declare enum JobLocationEnum {
|
|
794
796
|
ONSITE = "ONSITE",
|
|
795
797
|
REMOTE = "REMOTE",
|
|
@@ -1759,6 +1761,7 @@ declare const ADMIN_JOB_PATTERN: {
|
|
|
1759
1761
|
adminUpdateJob: string;
|
|
1760
1762
|
adminDeleteJob: string;
|
|
1761
1763
|
adminCountJob: string;
|
|
1764
|
+
adminFetchGraphCount: string;
|
|
1762
1765
|
};
|
|
1763
1766
|
|
|
1764
1767
|
declare enum JobLocationEnumDto {
|
package/dist/index.d.ts
CHANGED
|
@@ -600,6 +600,34 @@ declare class Otp {
|
|
|
600
600
|
user: User;
|
|
601
601
|
}
|
|
602
602
|
|
|
603
|
+
declare class City extends BaseEntity {
|
|
604
|
+
countryId: number;
|
|
605
|
+
country: Country;
|
|
606
|
+
stateId: number;
|
|
607
|
+
state: State;
|
|
608
|
+
cityCode: string;
|
|
609
|
+
cityName: string;
|
|
610
|
+
isActive: boolean;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
declare class State extends BaseEntity {
|
|
614
|
+
countryId: number;
|
|
615
|
+
country: Country;
|
|
616
|
+
cities: City[];
|
|
617
|
+
stateName: string;
|
|
618
|
+
isActive: boolean;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
declare class Country extends BaseEntity {
|
|
622
|
+
countryName: string;
|
|
623
|
+
countryIsoCode: string;
|
|
624
|
+
countryPhoneCode: string;
|
|
625
|
+
currency: string;
|
|
626
|
+
isActive: boolean;
|
|
627
|
+
states: State[];
|
|
628
|
+
freelancerProfile: FreelancerProfile[];
|
|
629
|
+
}
|
|
630
|
+
|
|
603
631
|
declare enum NatureOfWork {
|
|
604
632
|
FULLTIME = "FULLTIME",
|
|
605
633
|
PARTTIME = "PARTTIME",
|
|
@@ -622,6 +650,8 @@ declare enum OnboardingStepEnum {
|
|
|
622
650
|
declare class FreelancerProfile extends BaseEntity {
|
|
623
651
|
userId: number;
|
|
624
652
|
user: User;
|
|
653
|
+
countryId: number;
|
|
654
|
+
country: Country;
|
|
625
655
|
talentId: string;
|
|
626
656
|
resumeUrl: string;
|
|
627
657
|
resumeData: string;
|
|
@@ -641,7 +671,6 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
641
671
|
stackOverflowProfileLink: string;
|
|
642
672
|
portfolioLink: string;
|
|
643
673
|
onboardingStepCompleted: OnboardingStepEnum;
|
|
644
|
-
countryId: number;
|
|
645
674
|
address: string;
|
|
646
675
|
about: string;
|
|
647
676
|
profileCompletedPercentage: Record<string, number>;
|
|
@@ -763,33 +792,6 @@ declare class Interview extends BaseEntity {
|
|
|
763
792
|
interviewSkills: InterviewSkill[];
|
|
764
793
|
}
|
|
765
794
|
|
|
766
|
-
declare class City extends BaseEntity {
|
|
767
|
-
countryId: number;
|
|
768
|
-
country: Country;
|
|
769
|
-
stateId: number;
|
|
770
|
-
state: State;
|
|
771
|
-
cityCode: string;
|
|
772
|
-
cityName: string;
|
|
773
|
-
isActive: boolean;
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
declare class State extends BaseEntity {
|
|
777
|
-
countryId: number;
|
|
778
|
-
country: Country;
|
|
779
|
-
cities: City[];
|
|
780
|
-
stateName: string;
|
|
781
|
-
isActive: boolean;
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
declare class Country extends BaseEntity {
|
|
785
|
-
states: State[];
|
|
786
|
-
countryName: string;
|
|
787
|
-
countryIsoCode: string;
|
|
788
|
-
countryPhoneCode: string;
|
|
789
|
-
currency: string;
|
|
790
|
-
isActive: boolean;
|
|
791
|
-
}
|
|
792
|
-
|
|
793
795
|
declare enum JobLocationEnum {
|
|
794
796
|
ONSITE = "ONSITE",
|
|
795
797
|
REMOTE = "REMOTE",
|
|
@@ -1759,6 +1761,7 @@ declare const ADMIN_JOB_PATTERN: {
|
|
|
1759
1761
|
adminUpdateJob: string;
|
|
1760
1762
|
adminDeleteJob: string;
|
|
1761
1763
|
adminCountJob: string;
|
|
1764
|
+
adminFetchGraphCount: string;
|
|
1762
1765
|
};
|
|
1763
1766
|
|
|
1764
1767
|
declare enum JobLocationEnumDto {
|