@iconicompany/imarketplacetypes 1.0.30 → 1.0.32

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.
@@ -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;
@@ -81,6 +86,10 @@ interface DefaultSpecialist {
81
86
  gender?: ('female' | 'male') | null;
82
87
  img?: (string | null) | Media;
83
88
  skills?: (string | Skill)[] | null;
89
+ tags?: {
90
+ name: string;
91
+ reason: string;
92
+ }[] | null;
84
93
  company?: (string | null) | Company;
85
94
  grade?: (string | null) | Grade;
86
95
  specialization?: (string | null) | Specialization;
@@ -89,9 +98,6 @@ interface DefaultSpecialist {
89
98
  services?: (string | Service)[] | null;
90
99
  visibility?: ('visible' | 'hidden') | null;
91
100
  skillsExtracted?: boolean | null;
92
- formattedExperienceSkills?: {
93
- [k: string]: unknown;
94
- } | unknown[] | string | number | boolean | null;
95
101
  dataSource?: (string | null) | DataSource;
96
102
  updatedAt: string;
97
103
  createdAt: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iconicompany/imarketplacetypes",
3
- "version": "1.0.30",
3
+ "version": "1.0.32",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "module": "dist/index.js",
@@ -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;
@@ -94,6 +96,7 @@ interface DefaultSpecialist {
94
96
  gender?: ('female' | 'male') | null;
95
97
  img?: (string | null) | Media;
96
98
  skills?: (string | Skill)[] | null;
99
+ tags?: { name: string; reason: string }[] | null;
97
100
  company?: (string | null) | Company;
98
101
  grade?: (string | null) | Grade;
99
102
  specialization?: (string | null) | Specialization;
@@ -102,15 +105,6 @@ interface DefaultSpecialist {
102
105
  services?: (string | Service)[] | null;
103
106
  visibility?: ('visible' | 'hidden') | null;
104
107
  skillsExtracted?: boolean | null;
105
- formattedExperienceSkills?:
106
- | {
107
- [k: string]: unknown;
108
- }
109
- | unknown[]
110
- | string
111
- | number
112
- | boolean
113
- | null;
114
108
  dataSource?: (string | null) | DataSource;
115
109
  updatedAt: string;
116
110
  createdAt: string;