@iconicompany/imarketplacetypes 1.0.24 → 1.0.26

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.
@@ -41,7 +41,23 @@ interface DefaultOffer {
41
41
  respondedAt?: string | null;
42
42
  matchedBatch?: number | null;
43
43
  liked?: boolean | null;
44
+ screening?: {
45
+ audioUrl?: string | null;
46
+ transcript?: {
47
+ text: string;
48
+ isUser: boolean;
49
+ timestamp: number;
50
+ }[] | null;
51
+ evaluation?: {
52
+ score: number;
53
+ level: string;
54
+ strengths: string[];
55
+ weaknesses: string[];
56
+ summary: string;
57
+ } | null;
58
+ } | null;
44
59
  updatedAt: string;
60
+ statusUpdatedAt?: string | null;
45
61
  createdAt: string;
46
62
  }
47
63
  export type Offer<TOverride extends Partial<DefaultOffer> = {}> = Omit<DefaultOffer, keyof TOverride> & TOverride;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iconicompany/imarketplacetypes",
3
- "version": "1.0.24",
3
+ "version": "1.0.26",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "module": "dist/index.js",
@@ -57,7 +57,24 @@ interface DefaultOffer {
57
57
  matchedBatch?: number | null;
58
58
  liked?: boolean | null;
59
59
 
60
+ screening?: {
61
+ audioUrl?: string | null;
62
+ transcript?: {
63
+ text: string;
64
+ isUser: boolean;
65
+ timestamp: number;
66
+ }[] | null;
67
+ evaluation?: {
68
+ score: number;
69
+ level: string;
70
+ strengths: string[];
71
+ weaknesses: string[];
72
+ summary: string;
73
+ } | null;
74
+ } | null;
75
+
60
76
  updatedAt: string;
77
+ statusUpdatedAt?: string | null;
61
78
  createdAt: string;
62
79
  }
63
80