@iconicompany/imarketplacetypes 1.0.29 → 1.0.31

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.
@@ -45,9 +45,7 @@ export interface JobsTableFilters {
45
45
  }
46
46
  export interface JobContract {
47
47
  getPaginatedJobs: {
48
- params: {
49
- page: number;
50
- };
48
+ params: JobsTableFilters;
51
49
  result: getPaginatedJobsResult;
52
50
  };
53
51
  getJobSelect: {
@@ -24,6 +24,11 @@ interface DefaultSpecialist {
24
24
  aboutTeam?: string | null;
25
25
  achievements?: string | null;
26
26
  stack?: (string | Skill)[] | null;
27
+ skills?: string[] | null;
28
+ tags?: {
29
+ name: string;
30
+ reason: string;
31
+ }[] | null;
27
32
  id?: string | null;
28
33
  }[] | null;
29
34
  workFormat?: ('remote' | 'office' | 'mixed') | null;
@@ -89,9 +94,6 @@ interface DefaultSpecialist {
89
94
  services?: (string | Service)[] | null;
90
95
  visibility?: ('visible' | 'hidden') | null;
91
96
  skillsExtracted?: boolean | null;
92
- formattedExperienceSkills?: {
93
- [k: string]: unknown;
94
- } | unknown[] | string | number | boolean | null;
95
97
  dataSource?: (string | null) | DataSource;
96
98
  updatedAt: string;
97
99
  createdAt: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iconicompany/imarketplacetypes",
3
- "version": "1.0.29",
3
+ "version": "1.0.31",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "module": "dist/index.js",
@@ -50,7 +50,7 @@ export interface JobsTableFilters {
50
50
  export interface JobContract {
51
51
  // /jobs
52
52
  getPaginatedJobs: {
53
- params: { page: number };
53
+ params: JobsTableFilters;
54
54
  result: getPaginatedJobsResult;
55
55
  };
56
56
 
@@ -26,6 +26,8 @@ interface DefaultSpecialist {
26
26
  aboutTeam?: string | null;
27
27
  achievements?: string | null;
28
28
  stack?: (string | Skill)[] | null;
29
+ skills?: string[] | null;
30
+ tags?: { name: string; reason: string }[] | null;
29
31
  id?: string | null;
30
32
  }[]
31
33
  | null;
@@ -102,15 +104,6 @@ interface DefaultSpecialist {
102
104
  services?: (string | Service)[] | null;
103
105
  visibility?: ('visible' | 'hidden') | null;
104
106
  skillsExtracted?: boolean | null;
105
- formattedExperienceSkills?:
106
- | {
107
- [k: string]: unknown;
108
- }
109
- | unknown[]
110
- | string
111
- | number
112
- | boolean
113
- | null;
114
107
  dataSource?: (string | null) | DataSource;
115
108
  updatedAt: string;
116
109
  createdAt: string;