@iconicompany/imarketplacetypes 1.0.36 → 1.0.38

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.
@@ -15,6 +15,7 @@ export interface SpecialistTableItem {
15
15
  salary?: {
16
16
  hourlyRate: number;
17
17
  currency?: string;
18
+ confirmed?: boolean | null;
18
19
  };
19
20
  contacts?: {
20
21
  telegram?: string;
@@ -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;
@@ -31,6 +31,7 @@ interface DefaultOffer {
31
31
  amount?: number | null;
32
32
  currency?: ("RUB" | "EUR" | "USD") | null;
33
33
  hourlyRate?: number | null;
34
+ confirmed?: boolean | null;
34
35
  };
35
36
  matched?: number | null;
36
37
  comment?: string | null;
@@ -50,6 +50,7 @@ interface DefaultSpecialist {
50
50
  amount?: number | null;
51
51
  currency?: ('RUB' | 'EUR' | 'USD') | null;
52
52
  hourlyRate?: number | null;
53
+ confirmed?: boolean | null;
53
54
  };
54
55
  contacts?: {
55
56
  phone?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iconicompany/imarketplacetypes",
3
- "version": "1.0.36",
3
+ "version": "1.0.38",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "module": "dist/index.js",
@@ -12,6 +12,7 @@ export interface SpecialistTableItem {
12
12
  salary?: {
13
13
  hourlyRate: number;
14
14
  currency?: string;
15
+ confirmed?: boolean | null;
15
16
  };
16
17
  contacts?: {
17
18
  telegram?: string;
@@ -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
 
@@ -46,6 +47,7 @@ interface DefaultOffer {
46
47
  amount?: number | null;
47
48
  currency?: ("RUB" | "EUR" | "USD") | null;
48
49
  hourlyRate?: number | null;
50
+ confirmed?: boolean | null;
49
51
  };
50
52
  matched?: number | null;
51
53
  comment?: string | null;
@@ -54,6 +54,7 @@ interface DefaultSpecialist {
54
54
  amount?: number | null;
55
55
  currency?: ('RUB' | 'EUR' | 'USD') | null;
56
56
  hourlyRate?: number | null;
57
+ confirmed?: boolean | null;
57
58
  };
58
59
  contacts?: {
59
60
  phone?: string | null;