@thejob/schema 1.0.51 → 1.0.52

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.
@@ -20,6 +20,7 @@ export * from "./resume";
20
20
  export * from "./job-role-template";
21
21
  export * from "./ai";
22
22
  export * from "./group";
23
+ export * from "./job-group";
23
24
  export * from "./social-account";
24
25
  export * from "./design-and-font";
25
26
  export * from "./yup-extended";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,6BAA6B,CAAC;AAC5C,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,SAAS,CAAC;AACxB,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,qBAAqB,CAAC;AACpC,cAAc,MAAM,CAAC;AACrB,cAAc,SAAS,CAAC;AACxB,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,6BAA6B,CAAC;AAC5C,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,SAAS,CAAC;AACxB,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,qBAAqB,CAAC;AACpC,cAAc,MAAM,CAAC;AACrB,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC"}
package/dist/cjs/index.js CHANGED
@@ -36,6 +36,7 @@ __exportStar(require("./resume"), exports);
36
36
  __exportStar(require("./job-role-template"), exports);
37
37
  __exportStar(require("./ai"), exports);
38
38
  __exportStar(require("./group"), exports);
39
+ __exportStar(require("./job-group"), exports);
39
40
  __exportStar(require("./social-account"), exports);
40
41
  __exportStar(require("./design-and-font"), exports);
41
42
  __exportStar(require("./yup-extended"), exports);
@@ -1389,6 +1389,46 @@ export interface IJobApplicationSchema {
1389
1389
  studyType: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").StudyType | undefined>;
1390
1390
  };
1391
1391
  }
1392
+ export interface IJobGroupSchema {
1393
+ updatedBy?: string | undefined;
1394
+ updatedAt?: number | undefined;
1395
+ icon?: string | undefined;
1396
+ bannerImage?: string | undefined;
1397
+ slug: string;
1398
+ id: string;
1399
+ shortId: string;
1400
+ name: string;
1401
+ description: string;
1402
+ createdBy: string;
1403
+ createdAt: number;
1404
+ isActive: boolean;
1405
+ filters: {
1406
+ locations?: (string | undefined)[] | undefined;
1407
+ category?: string | undefined;
1408
+ employmentType?: string | undefined;
1409
+ workMode?: string | undefined;
1410
+ skills?: (string | undefined)[] | undefined;
1411
+ educationLevel?: (string | undefined)[] | undefined;
1412
+ experienceLevel?: string | undefined;
1413
+ tags?: (string | undefined)[] | undefined;
1414
+ industry?: string | undefined;
1415
+ subCategories?: (string | undefined)[] | undefined;
1416
+ };
1417
+ seo: {
1418
+ keywords?: (string | undefined)[] | undefined;
1419
+ description: string;
1420
+ title: string;
1421
+ };
1422
+ order: number;
1423
+ isFeatured: boolean;
1424
+ }
1425
+ export interface IJobGroupFilterSchema {
1426
+ }
1427
+ export interface IJobGroupSEOSchema {
1428
+ keywords?: (string | undefined)[] | undefined;
1429
+ description: string;
1430
+ title: string;
1431
+ }
1392
1432
  export interface IJobRoleTemplateSchema {
1393
1433
  designation?: {
1394
1434
  logo?: string | undefined;