@thejob/schema 1.0.14 → 1.0.15
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/common/common.schema.d.ts +4 -4
- package/dist/cjs/common/common.schema.d.ts.map +1 -1
- package/dist/cjs/common/common.schema.js +2 -8
- package/dist/cjs/interfaces.index.d.ts +38 -38
- package/dist/cjs/job/job.schema.d.ts +6 -6
- package/dist/cjs/job-application/job-application.schema.d.ts +10 -10
- package/dist/cjs/job-role-template/job-role-template.schema.d.ts +2 -2
- package/dist/cjs/page/page.schema.d.ts +4 -4
- package/dist/cjs/resume/resume.schema.d.ts +8 -8
- package/dist/cjs/skill/skill.schema.d.ts +4 -4
- package/dist/cjs/user/education/education.schema.d.ts +2 -2
- package/dist/cjs/user/update-education.schema.d.ts +2 -2
- package/dist/cjs/user/update-work-experience.schema.d.ts +2 -2
- package/dist/cjs/user/user.schema.d.ts +4 -4
- package/dist/cjs/user/work-experience/work-experience.schema.d.ts +2 -2
- package/dist/esm/common/common.schema.d.ts +4 -4
- package/dist/esm/common/common.schema.d.ts.map +1 -1
- package/dist/esm/common/common.schema.js +3 -9
- package/dist/esm/interfaces.index.d.ts +38 -38
- package/dist/esm/job/job.schema.d.ts +6 -6
- package/dist/esm/job-application/job-application.schema.d.ts +10 -10
- package/dist/esm/job-role-template/job-role-template.schema.d.ts +2 -2
- package/dist/esm/page/page.schema.d.ts +4 -4
- package/dist/esm/resume/resume.schema.d.ts +8 -8
- package/dist/esm/skill/skill.schema.d.ts +4 -4
- package/dist/esm/user/education/education.schema.d.ts +2 -2
- package/dist/esm/user/update-education.schema.d.ts +2 -2
- package/dist/esm/user/update-work-experience.schema.d.ts +2 -2
- package/dist/esm/user/user.schema.d.ts +4 -4
- package/dist/esm/user/work-experience/work-experience.schema.d.ts +2 -2
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ export declare const EducationSchema: ObjectSchema<{
|
|
|
5
5
|
otherValue: string | string[];
|
|
6
6
|
} | Pick<{
|
|
7
7
|
updatedBy?: string | undefined;
|
|
8
|
-
updatedAt?:
|
|
8
|
+
updatedAt?: number | undefined;
|
|
9
9
|
socialAccounts?: {
|
|
10
10
|
type: NonNullable<import("../../common").SocialAccount | undefined>;
|
|
11
11
|
url: string;
|
|
@@ -52,7 +52,7 @@ export declare const EducationSchema: ObjectSchema<{
|
|
|
52
52
|
} | null;
|
|
53
53
|
shortId: string;
|
|
54
54
|
createdBy: string;
|
|
55
|
-
createdAt:
|
|
55
|
+
createdAt: number;
|
|
56
56
|
about: string;
|
|
57
57
|
website: string;
|
|
58
58
|
slug: string;
|
|
@@ -10,7 +10,7 @@ export declare const UpdateEducationsSchema: import("yup").ObjectSchema<{
|
|
|
10
10
|
otherValue: string | string[];
|
|
11
11
|
} | Pick<{
|
|
12
12
|
updatedBy?: string | undefined;
|
|
13
|
-
updatedAt?:
|
|
13
|
+
updatedAt?: number | undefined;
|
|
14
14
|
socialAccounts?: {
|
|
15
15
|
type: NonNullable<import("..").SocialAccount | undefined>;
|
|
16
16
|
url: string;
|
|
@@ -57,7 +57,7 @@ export declare const UpdateEducationsSchema: import("yup").ObjectSchema<{
|
|
|
57
57
|
} | null;
|
|
58
58
|
shortId: string;
|
|
59
59
|
createdBy: string;
|
|
60
|
-
createdAt:
|
|
60
|
+
createdAt: number;
|
|
61
61
|
about: string;
|
|
62
62
|
website: string;
|
|
63
63
|
slug: string;
|
|
@@ -7,7 +7,7 @@ export declare const UpdateWorkExperiencesSchema: import("yup").ObjectSchema<{
|
|
|
7
7
|
otherValue: string | string[];
|
|
8
8
|
} | Pick<{
|
|
9
9
|
updatedBy?: string | undefined;
|
|
10
|
-
updatedAt?:
|
|
10
|
+
updatedAt?: number | undefined;
|
|
11
11
|
socialAccounts?: {
|
|
12
12
|
type: NonNullable<import("..").SocialAccount | undefined>;
|
|
13
13
|
url: string;
|
|
@@ -54,7 +54,7 @@ export declare const UpdateWorkExperiencesSchema: import("yup").ObjectSchema<{
|
|
|
54
54
|
} | null;
|
|
55
55
|
shortId: string;
|
|
56
56
|
createdBy: string;
|
|
57
|
-
createdAt:
|
|
57
|
+
createdAt: number;
|
|
58
58
|
about: string;
|
|
59
59
|
website: string;
|
|
60
60
|
slug: string;
|
|
@@ -12,7 +12,7 @@ export declare const UserSchema: import("yup").ObjectSchema<{
|
|
|
12
12
|
otherValue: string | string[];
|
|
13
13
|
} | Pick<{
|
|
14
14
|
updatedBy?: string | undefined;
|
|
15
|
-
updatedAt?:
|
|
15
|
+
updatedAt?: number | undefined;
|
|
16
16
|
socialAccounts?: {
|
|
17
17
|
type: NonNullable<import("../common").SocialAccount | undefined>;
|
|
18
18
|
url: string;
|
|
@@ -59,7 +59,7 @@ export declare const UserSchema: import("yup").ObjectSchema<{
|
|
|
59
59
|
} | null;
|
|
60
60
|
shortId: string;
|
|
61
61
|
createdBy: string;
|
|
62
|
-
createdAt:
|
|
62
|
+
createdAt: number;
|
|
63
63
|
about: string;
|
|
64
64
|
website: string;
|
|
65
65
|
slug: string;
|
|
@@ -104,7 +104,7 @@ export declare const UserSchema: import("yup").ObjectSchema<{
|
|
|
104
104
|
otherValue: string | string[];
|
|
105
105
|
} | Pick<{
|
|
106
106
|
updatedBy?: string | undefined;
|
|
107
|
-
updatedAt?:
|
|
107
|
+
updatedAt?: number | undefined;
|
|
108
108
|
socialAccounts?: {
|
|
109
109
|
type: NonNullable<import("../common").SocialAccount | undefined>;
|
|
110
110
|
url: string;
|
|
@@ -151,7 +151,7 @@ export declare const UserSchema: import("yup").ObjectSchema<{
|
|
|
151
151
|
} | null;
|
|
152
152
|
shortId: string;
|
|
153
153
|
createdBy: string;
|
|
154
|
-
createdAt:
|
|
154
|
+
createdAt: number;
|
|
155
155
|
about: string;
|
|
156
156
|
website: string;
|
|
157
157
|
slug: string;
|
|
@@ -5,7 +5,7 @@ export declare const WorkExperienceSchema: ObjectSchema<{
|
|
|
5
5
|
otherValue: string | string[];
|
|
6
6
|
} | Pick<{
|
|
7
7
|
updatedBy?: string | undefined;
|
|
8
|
-
updatedAt?:
|
|
8
|
+
updatedAt?: number | undefined;
|
|
9
9
|
socialAccounts?: {
|
|
10
10
|
type: NonNullable<import("../../common").SocialAccount | undefined>;
|
|
11
11
|
url: string;
|
|
@@ -52,7 +52,7 @@ export declare const WorkExperienceSchema: ObjectSchema<{
|
|
|
52
52
|
} | null;
|
|
53
53
|
shortId: string;
|
|
54
54
|
createdBy: string;
|
|
55
|
-
createdAt:
|
|
55
|
+
createdAt: number;
|
|
56
56
|
about: string;
|
|
57
57
|
website: string;
|
|
58
58
|
slug: string;
|