@iconicompany/imarketplacetypes 1.0.31 → 1.0.33

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.
@@ -42,6 +42,8 @@ interface DefaultOffer {
42
42
  matchedBatch?: number | null;
43
43
  liked?: boolean | null;
44
44
  recommendStack?: string[] | null;
45
+ searchReason?: string | null;
46
+ responseFormat?: string | null;
45
47
  screening?: {
46
48
  audioUrl?: string | null;
47
49
  transcript?: {
@@ -86,6 +86,10 @@ interface DefaultSpecialist {
86
86
  gender?: ('female' | 'male') | null;
87
87
  img?: (string | null) | Media;
88
88
  skills?: (string | Skill)[] | null;
89
+ tags?: {
90
+ name: string;
91
+ reason: string;
92
+ }[] | null;
89
93
  company?: (string | null) | Company;
90
94
  grade?: (string | null) | Grade;
91
95
  specialization?: (string | null) | Specialization;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iconicompany/imarketplacetypes",
3
- "version": "1.0.31",
3
+ "version": "1.0.33",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "module": "dist/index.js",
@@ -57,6 +57,9 @@ interface DefaultOffer {
57
57
  matchedBatch?: number | null;
58
58
  liked?: boolean | null;
59
59
  recommendStack?: string[] | null;
60
+ searchReason?: string | null;
61
+ responseFormat?: string | null;
62
+
60
63
 
61
64
  screening?: {
62
65
  audioUrl?: string | null;
@@ -96,6 +96,7 @@ interface DefaultSpecialist {
96
96
  gender?: ('female' | 'male') | null;
97
97
  img?: (string | null) | Media;
98
98
  skills?: (string | Skill)[] | null;
99
+ tags?: { name: string; reason: string }[] | null;
99
100
  company?: (string | null) | Company;
100
101
  grade?: (string | null) | Grade;
101
102
  specialization?: (string | null) | Specialization;