@thejob/schema 1.0.59 → 1.0.60
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/cjs/interfaces.index.d.ts +10 -45
- package/dist/cjs/interfaces.index.d.ts.map +1 -1
- package/dist/cjs/job-application/job-application.schema.d.ts +1 -0
- package/dist/cjs/job-application/job-application.schema.d.ts.map +1 -1
- package/dist/cjs/resume/resume.schema.d.ts +9 -27
- package/dist/cjs/resume/resume.schema.d.ts.map +1 -1
- package/dist/cjs/user/general-detail/general-detail.schema.d.ts +3 -9
- package/dist/cjs/user/general-detail/general-detail.schema.d.ts.map +1 -1
- package/dist/cjs/user/general-detail/general-detail.schema.js +3 -3
- package/dist/cjs/user/user.schema.d.ts +3 -9
- package/dist/cjs/user/user.schema.d.ts.map +1 -1
- package/dist/esm/interfaces.index.d.ts +10 -45
- package/dist/esm/interfaces.index.d.ts.map +1 -1
- package/dist/esm/job-application/job-application.schema.d.ts +1 -0
- package/dist/esm/job-application/job-application.schema.d.ts.map +1 -1
- package/dist/esm/resume/resume.schema.d.ts +9 -27
- package/dist/esm/resume/resume.schema.d.ts.map +1 -1
- package/dist/esm/user/general-detail/general-detail.schema.d.ts +3 -9
- package/dist/esm/user/general-detail/general-detail.schema.d.ts.map +1 -1
- package/dist/esm/user/general-detail/general-detail.schema.js +3 -3
- package/dist/esm/user/user.schema.d.ts +3 -9
- package/dist/esm/user/user.schema.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1646,23 +1646,16 @@ export interface IResumeGeneralInfoSectionSchema {
|
|
|
1646
1646
|
headline?: string | undefined;
|
|
1647
1647
|
id?: string | undefined;
|
|
1648
1648
|
emailVerified?: string | null | undefined;
|
|
1649
|
+
mobile?: string | null | undefined;
|
|
1649
1650
|
image?: string | undefined;
|
|
1650
1651
|
aboutMe?: string | undefined;
|
|
1652
|
+
mobileVerified?: string | null | undefined;
|
|
1651
1653
|
name: {
|
|
1652
1654
|
last?: string | undefined;
|
|
1653
1655
|
first: string;
|
|
1654
1656
|
};
|
|
1655
1657
|
email: string;
|
|
1656
1658
|
experienceLevel: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ExperienceLevel | undefined>;
|
|
1657
|
-
mobile: {
|
|
1658
|
-
number: string;
|
|
1659
|
-
country: {
|
|
1660
|
-
locale?: string | undefined;
|
|
1661
|
-
name: string;
|
|
1662
|
-
dial_code: string;
|
|
1663
|
-
code: string;
|
|
1664
|
-
};
|
|
1665
|
-
};
|
|
1666
1659
|
location: {
|
|
1667
1660
|
address?: string | null | undefined;
|
|
1668
1661
|
state?: string | null | undefined;
|
|
@@ -1970,23 +1963,16 @@ export interface IResumeSchemaV2 {
|
|
|
1970
1963
|
headline?: string | undefined;
|
|
1971
1964
|
id?: string | undefined;
|
|
1972
1965
|
emailVerified?: string | null | undefined;
|
|
1966
|
+
mobile?: string | null | undefined;
|
|
1973
1967
|
image?: string | undefined;
|
|
1974
1968
|
aboutMe?: string | undefined;
|
|
1969
|
+
mobileVerified?: string | null | undefined;
|
|
1975
1970
|
name: {
|
|
1976
1971
|
last?: string | undefined;
|
|
1977
1972
|
first: string;
|
|
1978
1973
|
};
|
|
1979
1974
|
email: string;
|
|
1980
1975
|
experienceLevel: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ExperienceLevel | undefined>;
|
|
1981
|
-
mobile: {
|
|
1982
|
-
number: string;
|
|
1983
|
-
country: {
|
|
1984
|
-
locale?: string | undefined;
|
|
1985
|
-
name: string;
|
|
1986
|
-
dial_code: string;
|
|
1987
|
-
code: string;
|
|
1988
|
-
};
|
|
1989
|
-
};
|
|
1990
1976
|
location: {
|
|
1991
1977
|
address?: string | null | undefined;
|
|
1992
1978
|
state?: string | null | undefined;
|
|
@@ -2030,8 +2016,10 @@ export interface INewResumePromptSchema {
|
|
|
2030
2016
|
headline?: string | undefined;
|
|
2031
2017
|
id?: string | undefined;
|
|
2032
2018
|
emailVerified?: string | null | undefined;
|
|
2019
|
+
mobile?: string | null | undefined;
|
|
2033
2020
|
image?: string | undefined;
|
|
2034
2021
|
aboutMe?: string | undefined;
|
|
2022
|
+
mobileVerified?: string | null | undefined;
|
|
2035
2023
|
name: {
|
|
2036
2024
|
last?: string | undefined;
|
|
2037
2025
|
first: string;
|
|
@@ -2056,15 +2044,6 @@ export interface INewResumePromptSchema {
|
|
|
2056
2044
|
lastUsed: string;
|
|
2057
2045
|
}[];
|
|
2058
2046
|
experienceLevel: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ExperienceLevel | undefined>;
|
|
2059
|
-
mobile: {
|
|
2060
|
-
number: string;
|
|
2061
|
-
country: {
|
|
2062
|
-
locale?: string | undefined;
|
|
2063
|
-
name: string;
|
|
2064
|
-
dial_code: string;
|
|
2065
|
-
code: string;
|
|
2066
|
-
};
|
|
2067
|
-
};
|
|
2068
2047
|
location: {
|
|
2069
2048
|
address?: string | null | undefined;
|
|
2070
2049
|
state?: string | null | undefined;
|
|
@@ -2702,8 +2681,10 @@ export interface IUserSchema {
|
|
|
2702
2681
|
headline?: string | undefined;
|
|
2703
2682
|
id?: string | undefined;
|
|
2704
2683
|
emailVerified?: string | null | undefined;
|
|
2684
|
+
mobile?: string | null | undefined;
|
|
2705
2685
|
image?: string | undefined;
|
|
2706
2686
|
aboutMe?: string | undefined;
|
|
2687
|
+
mobileVerified?: string | null | undefined;
|
|
2707
2688
|
name: {
|
|
2708
2689
|
last?: string | undefined;
|
|
2709
2690
|
first: string;
|
|
@@ -2728,15 +2709,6 @@ export interface IUserSchema {
|
|
|
2728
2709
|
lastUsed: string;
|
|
2729
2710
|
}[];
|
|
2730
2711
|
experienceLevel: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ExperienceLevel | undefined>;
|
|
2731
|
-
mobile: {
|
|
2732
|
-
number: string;
|
|
2733
|
-
country: {
|
|
2734
|
-
locale?: string | undefined;
|
|
2735
|
-
name: string;
|
|
2736
|
-
dial_code: string;
|
|
2737
|
-
code: string;
|
|
2738
|
-
};
|
|
2739
|
-
};
|
|
2740
2712
|
location: {
|
|
2741
2713
|
address?: string | null | undefined;
|
|
2742
2714
|
state?: string | null | undefined;
|
|
@@ -3355,23 +3327,16 @@ export interface IUserGeneralDetailSchema {
|
|
|
3355
3327
|
headline?: string | undefined;
|
|
3356
3328
|
id?: string | undefined;
|
|
3357
3329
|
emailVerified?: string | null | undefined;
|
|
3330
|
+
mobile?: string | null | undefined;
|
|
3358
3331
|
image?: string | undefined;
|
|
3359
3332
|
aboutMe?: string | undefined;
|
|
3333
|
+
mobileVerified?: string | null | undefined;
|
|
3360
3334
|
name: {
|
|
3361
3335
|
last?: string | undefined;
|
|
3362
3336
|
first: string;
|
|
3363
3337
|
};
|
|
3364
3338
|
email: string;
|
|
3365
3339
|
experienceLevel: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ExperienceLevel | undefined>;
|
|
3366
|
-
mobile: {
|
|
3367
|
-
number: string;
|
|
3368
|
-
country: {
|
|
3369
|
-
locale?: string | undefined;
|
|
3370
|
-
name: string;
|
|
3371
|
-
dial_code: string;
|
|
3372
|
-
code: string;
|
|
3373
|
-
};
|
|
3374
|
-
};
|
|
3375
3340
|
location: {
|
|
3376
3341
|
address?: string | null | undefined;
|
|
3377
3342
|
state?: string | null | undefined;
|