@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.
|
@@ -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
|
@@ -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;
|