We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8399018 commit 8ae14d8Copy full SHA for 8ae14d8
packages/backend/models/unified/candidate.ts
@@ -34,7 +34,7 @@ interface applications {
34
credited_to: { id: number; first_name: string; last_name: string; name: string; employee_id: string };
35
rejection_reason: string;
36
rejection_details: string;
37
- jobs: UnifiedJob;
+ jobs: UnifiedJob[];
38
job_post_id: number;
39
status: string;
40
current_stage: {
@@ -58,5 +58,5 @@ interface applications {
58
keyed_custom_fields: {
59
application_custom_test: { name: string; type: string; value: string };
60
};
61
- attachments: { filename: string; url: string; type: string; created_at: Date };
+ attachments: { filename: string; url: string; type: string; created_at: Date }[];
62
}
0 commit comments