@iconicompany/imarketplacetypes 1.0.36 → 1.0.37

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.
@@ -59,6 +59,7 @@ interface DefaultJob {
59
59
  link?: string | null;
60
60
  searchQuery?: string | null;
61
61
  createdBy?: JobCreatedBy | null;
62
+ paymentPeriod?: ('quarterly' | 'monthly') | null;
62
63
  updatedAt: string;
63
64
  createdAt: string;
64
65
  }
@@ -4,7 +4,7 @@ import type { User } from "@/entities/user";
4
4
  import type { OfferStatus, OfferRejectCause } from "@/entities/dictionary";
5
5
  import { Company } from "../company";
6
6
  export type { OfferRejectCause };
7
- export type OfferCreatedBy = "user" | "databaseСomparison" | "loader" | "cosineSimilarity" | "importByLink" | "headhunter" | "system" | "skill";
7
+ export type OfferCreatedBy = "user" | "databaseСomparison" | "loader" | "cosineSimilarity" | "importByLink" | "headhunter" | "system" | "specialist" | "skill";
8
8
  interface OfferRequirement {
9
9
  id?: string | null;
10
10
  requirement: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iconicompany/imarketplacetypes",
3
- "version": "1.0.36",
3
+ "version": "1.0.37",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "module": "dist/index.js",
@@ -70,6 +70,7 @@ interface DefaultJob {
70
70
  link?: string | null;
71
71
  searchQuery?: string | null;
72
72
  createdBy?: JobCreatedBy | null;
73
+ paymentPeriod?: ('quarterly' | 'monthly') | null;
73
74
  updatedAt: string;
74
75
  createdAt: string;
75
76
  }
@@ -14,6 +14,7 @@ export type OfferCreatedBy =
14
14
  | "importByLink"
15
15
  | "headhunter"
16
16
  | "system"
17
+ | "specialist"
17
18
  | "skill";
18
19
 
19
20