@t4dhg/mcp-factorial 8.2.0 → 9.0.0
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.
- package/README.md +2 -2
- package/dist/api/contracts.js +4 -4
- package/dist/api/contracts.js.map +1 -1
- package/dist/api/documents.d.ts +2 -2
- package/dist/api/documents.d.ts.map +1 -1
- package/dist/api/documents.js +13 -9
- package/dist/api/documents.js.map +1 -1
- package/dist/api/employees.js +2 -2
- package/dist/api/employees.js.map +1 -1
- package/dist/config.d.ts +1 -1
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +4 -1
- package/dist/config.js.map +1 -1
- package/dist/http-client.d.ts +12 -0
- package/dist/http-client.d.ts.map +1 -1
- package/dist/http-client.js +32 -1
- package/dist/http-client.js.map +1 -1
- package/dist/schemas/ats.d.ts +200 -123
- package/dist/schemas/ats.d.ts.map +1 -1
- package/dist/schemas/ats.js +77 -39
- package/dist/schemas/ats.js.map +1 -1
- package/dist/schemas/documents.d.ts +75 -45
- package/dist/schemas/documents.d.ts.map +1 -1
- package/dist/schemas/documents.js +44 -15
- package/dist/schemas/documents.js.map +1 -1
- package/dist/schemas/employees.d.ts +135 -77
- package/dist/schemas/employees.d.ts.map +1 -1
- package/dist/schemas/employees.js +65 -30
- package/dist/schemas/employees.js.map +1 -1
- package/dist/schemas/index.d.ts +1 -1
- package/dist/schemas/index.d.ts.map +1 -1
- package/dist/schemas/index.js +1 -1
- package/dist/schemas/index.js.map +1 -1
- package/dist/schemas/job-catalog.d.ts +39 -27
- package/dist/schemas/job-catalog.d.ts.map +1 -1
- package/dist/schemas/job-catalog.js +16 -9
- package/dist/schemas/job-catalog.js.map +1 -1
- package/dist/schemas/payroll.d.ts +89 -70
- package/dist/schemas/payroll.d.ts.map +1 -1
- package/dist/schemas/payroll.js +49 -24
- package/dist/schemas/payroll.js.map +1 -1
- package/dist/schemas/projects.d.ts +121 -95
- package/dist/schemas/projects.d.ts.map +1 -1
- package/dist/schemas/projects.js +51 -32
- package/dist/schemas/projects.js.map +1 -1
- package/dist/schemas/shared.d.ts +13 -0
- package/dist/schemas/shared.d.ts.map +1 -1
- package/dist/schemas/shared.js +13 -0
- package/dist/schemas/shared.js.map +1 -1
- package/dist/schemas/time-off.d.ts +209 -63
- package/dist/schemas/time-off.d.ts.map +1 -1
- package/dist/schemas/time-off.js +86 -22
- package/dist/schemas/time-off.js.map +1 -1
- package/dist/schemas/training.d.ts +180 -76
- package/dist/schemas/training.d.ts.map +1 -1
- package/dist/schemas/training.js +75 -25
- package/dist/schemas/training.js.map +1 -1
- package/dist/schemas/work-areas.d.ts +14 -21
- package/dist/schemas/work-areas.d.ts.map +1 -1
- package/dist/schemas/work-areas.js +9 -7
- package/dist/schemas/work-areas.js.map +1 -1
- package/dist/tools/ats.js +3 -3
- package/dist/tools/ats.js.map +1 -1
- package/dist/tools/documents.js +6 -6
- package/dist/tools/documents.js.map +1 -1
- package/dist/tools/index.js +1 -1
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/work-areas.js +2 -2
- package/dist/tools/work-areas.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/schemas/ats.d.ts
CHANGED
|
@@ -4,52 +4,94 @@
|
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
/**
|
|
6
6
|
* Job Posting schema
|
|
7
|
+
*
|
|
8
|
+
* Response field set taken from the 2026-07-01 reference; the verification
|
|
9
|
+
* tenant has no job postings, so it could not be checked against a live record.
|
|
7
10
|
*/
|
|
8
11
|
export declare const JobPostingSchema: z.ZodObject<{
|
|
9
|
-
id: z.
|
|
12
|
+
id: z.ZodString;
|
|
13
|
+
company_id: z.ZodOptional<z.ZodString>;
|
|
14
|
+
ats_company_id: z.ZodOptional<z.ZodString>;
|
|
10
15
|
title: z.ZodString;
|
|
11
16
|
description: z.ZodNullable<z.ZodString>;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
status: z.ZodEnum<["draft", "published", "unlisted", "archived", "cancelled", "deleted"]>;
|
|
18
|
+
contract_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
|
+
workplace_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<["onsite", "remote", "hybrid"]>>>;
|
|
21
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
22
|
+
schedule_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<["full_time", "part_time"]>>>;
|
|
23
|
+
team_id: z.ZodNullable<z.ZodString>;
|
|
24
|
+
location_id: z.ZodNullable<z.ZodString>;
|
|
25
|
+
legal_entity_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26
|
+
salary_format: z.ZodOptional<z.ZodNullable<z.ZodEnum<["fixed_amount", "range"]>>>;
|
|
27
|
+
salary_from_amount_in_cents: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
28
|
+
salary_to_amount_in_cents: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
29
|
+
salary_period: z.ZodOptional<z.ZodNullable<z.ZodEnum<["annual", "monthly", "daily"]>>>;
|
|
30
|
+
hide_salary: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
31
|
+
cv_requirement: z.ZodOptional<z.ZodEnum<["mandatory", "optional", "do_not_ask"]>>;
|
|
32
|
+
cover_letter_requirement: z.ZodOptional<z.ZodEnum<["mandatory", "optional", "do_not_ask"]>>;
|
|
33
|
+
phone_requirement: z.ZodOptional<z.ZodEnum<["mandatory", "optional", "do_not_ask"]>>;
|
|
34
|
+
photo_requirement: z.ZodOptional<z.ZodEnum<["mandatory", "optional", "do_not_ask"]>>;
|
|
35
|
+
personal_url_requirement: z.ZodOptional<z.ZodEnum<["mandatory", "optional", "do_not_ask"]>>;
|
|
36
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
37
|
published_at: z.ZodNullable<z.ZodString>;
|
|
20
|
-
closed_at: z.ZodNullable<z.ZodString>;
|
|
21
38
|
created_at: z.ZodNullable<z.ZodString>;
|
|
22
|
-
updated_at: z.ZodNullable<z.ZodString>;
|
|
23
39
|
}, "strip", z.ZodTypeAny, {
|
|
24
|
-
status: "archived" | "draft" | "
|
|
25
|
-
id:
|
|
26
|
-
|
|
27
|
-
location_id: number | null;
|
|
40
|
+
status: "cancelled" | "archived" | "draft" | "deleted" | "published" | "unlisted";
|
|
41
|
+
id: string;
|
|
42
|
+
location_id: string | null;
|
|
28
43
|
created_at: string | null;
|
|
29
|
-
updated_at: string | null;
|
|
30
44
|
description: string | null;
|
|
31
45
|
title: string;
|
|
32
|
-
|
|
33
|
-
team_id: number | null;
|
|
34
|
-
employment_type: string | null;
|
|
35
|
-
remote_status: string | null;
|
|
46
|
+
team_id: string | null;
|
|
36
47
|
published_at: string | null;
|
|
37
|
-
|
|
48
|
+
company_id?: string | undefined;
|
|
49
|
+
legal_entity_id?: string | null | undefined;
|
|
50
|
+
ats_company_id?: string | undefined;
|
|
51
|
+
contract_type?: string | null | undefined;
|
|
52
|
+
category?: string | null | undefined;
|
|
53
|
+
remote?: boolean | undefined;
|
|
54
|
+
workplace_type?: "onsite" | "remote" | "hybrid" | null | undefined;
|
|
55
|
+
schedule_type?: "full_time" | "part_time" | null | undefined;
|
|
56
|
+
salary_format?: "fixed_amount" | "range" | null | undefined;
|
|
57
|
+
salary_from_amount_in_cents?: number | null | undefined;
|
|
58
|
+
salary_to_amount_in_cents?: number | null | undefined;
|
|
59
|
+
salary_period?: "monthly" | "daily" | "annual" | null | undefined;
|
|
60
|
+
hide_salary?: boolean | null | undefined;
|
|
61
|
+
cv_requirement?: "mandatory" | "optional" | "do_not_ask" | undefined;
|
|
62
|
+
cover_letter_requirement?: "mandatory" | "optional" | "do_not_ask" | undefined;
|
|
63
|
+
phone_requirement?: "mandatory" | "optional" | "do_not_ask" | undefined;
|
|
64
|
+
photo_requirement?: "mandatory" | "optional" | "do_not_ask" | undefined;
|
|
65
|
+
personal_url_requirement?: "mandatory" | "optional" | "do_not_ask" | undefined;
|
|
66
|
+
url?: string | null | undefined;
|
|
38
67
|
}, {
|
|
39
|
-
status: "archived" | "draft" | "
|
|
40
|
-
id:
|
|
41
|
-
|
|
42
|
-
location_id: number | null;
|
|
68
|
+
status: "cancelled" | "archived" | "draft" | "deleted" | "published" | "unlisted";
|
|
69
|
+
id: string;
|
|
70
|
+
location_id: string | null;
|
|
43
71
|
created_at: string | null;
|
|
44
|
-
updated_at: string | null;
|
|
45
72
|
description: string | null;
|
|
46
73
|
title: string;
|
|
47
|
-
|
|
48
|
-
team_id: number | null;
|
|
49
|
-
employment_type: string | null;
|
|
50
|
-
remote_status: string | null;
|
|
74
|
+
team_id: string | null;
|
|
51
75
|
published_at: string | null;
|
|
52
|
-
|
|
76
|
+
company_id?: string | undefined;
|
|
77
|
+
legal_entity_id?: string | null | undefined;
|
|
78
|
+
ats_company_id?: string | undefined;
|
|
79
|
+
contract_type?: string | null | undefined;
|
|
80
|
+
category?: string | null | undefined;
|
|
81
|
+
remote?: boolean | undefined;
|
|
82
|
+
workplace_type?: "onsite" | "remote" | "hybrid" | null | undefined;
|
|
83
|
+
schedule_type?: "full_time" | "part_time" | null | undefined;
|
|
84
|
+
salary_format?: "fixed_amount" | "range" | null | undefined;
|
|
85
|
+
salary_from_amount_in_cents?: number | null | undefined;
|
|
86
|
+
salary_to_amount_in_cents?: number | null | undefined;
|
|
87
|
+
salary_period?: "monthly" | "daily" | "annual" | null | undefined;
|
|
88
|
+
hide_salary?: boolean | null | undefined;
|
|
89
|
+
cv_requirement?: "mandatory" | "optional" | "do_not_ask" | undefined;
|
|
90
|
+
cover_letter_requirement?: "mandatory" | "optional" | "do_not_ask" | undefined;
|
|
91
|
+
phone_requirement?: "mandatory" | "optional" | "do_not_ask" | undefined;
|
|
92
|
+
photo_requirement?: "mandatory" | "optional" | "do_not_ask" | undefined;
|
|
93
|
+
personal_url_requirement?: "mandatory" | "optional" | "do_not_ask" | undefined;
|
|
94
|
+
url?: string | null | undefined;
|
|
53
95
|
}>;
|
|
54
96
|
export type JobPosting = z.infer<typeof JobPostingSchema>;
|
|
55
97
|
/**
|
|
@@ -67,16 +109,16 @@ export declare const CreateJobPostingInputSchema: z.ZodObject<{
|
|
|
67
109
|
title: string;
|
|
68
110
|
location_id?: number | undefined;
|
|
69
111
|
description?: string | undefined;
|
|
70
|
-
department?: string | undefined;
|
|
71
112
|
team_id?: number | undefined;
|
|
113
|
+
department?: string | undefined;
|
|
72
114
|
employment_type?: string | undefined;
|
|
73
115
|
remote_status?: string | undefined;
|
|
74
116
|
}, {
|
|
75
117
|
title: string;
|
|
76
118
|
location_id?: number | undefined;
|
|
77
119
|
description?: string | undefined;
|
|
78
|
-
department?: string | undefined;
|
|
79
120
|
team_id?: number | undefined;
|
|
121
|
+
department?: string | undefined;
|
|
80
122
|
employment_type?: string | undefined;
|
|
81
123
|
remote_status?: string | undefined;
|
|
82
124
|
}>;
|
|
@@ -95,67 +137,94 @@ export declare const UpdateJobPostingInputSchema: z.ZodObject<{
|
|
|
95
137
|
} & {
|
|
96
138
|
status: z.ZodOptional<z.ZodEnum<["draft", "published", "closed", "archived"]>>;
|
|
97
139
|
}, "strip", z.ZodTypeAny, {
|
|
98
|
-
status?: "archived" | "
|
|
140
|
+
status?: "archived" | "closed" | "draft" | "published" | undefined;
|
|
99
141
|
location_id?: number | undefined;
|
|
100
142
|
description?: string | undefined;
|
|
101
143
|
title?: string | undefined;
|
|
102
|
-
department?: string | undefined;
|
|
103
144
|
team_id?: number | undefined;
|
|
145
|
+
department?: string | undefined;
|
|
104
146
|
employment_type?: string | undefined;
|
|
105
147
|
remote_status?: string | undefined;
|
|
106
148
|
}, {
|
|
107
|
-
status?: "archived" | "
|
|
149
|
+
status?: "archived" | "closed" | "draft" | "published" | undefined;
|
|
108
150
|
location_id?: number | undefined;
|
|
109
151
|
description?: string | undefined;
|
|
110
152
|
title?: string | undefined;
|
|
111
|
-
department?: string | undefined;
|
|
112
153
|
team_id?: number | undefined;
|
|
154
|
+
department?: string | undefined;
|
|
113
155
|
employment_type?: string | undefined;
|
|
114
156
|
remote_status?: string | undefined;
|
|
115
157
|
}>;
|
|
116
158
|
export type UpdateJobPostingInput = z.infer<typeof UpdateJobPostingInputSchema>;
|
|
117
159
|
/**
|
|
118
160
|
* Candidate schema
|
|
161
|
+
*
|
|
162
|
+
* Response field set taken from the 2026-07-01 reference; the verification
|
|
163
|
+
* tenant has no candidates, so it could not be checked against a live record.
|
|
119
164
|
*/
|
|
120
165
|
export declare const CandidateSchema: z.ZodObject<{
|
|
121
|
-
id: z.
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
166
|
+
id: z.ZodString;
|
|
167
|
+
company_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
168
|
+
first_name: z.ZodString;
|
|
169
|
+
last_name: z.ZodString;
|
|
170
|
+
full_name: z.ZodString;
|
|
125
171
|
email: z.ZodNullable<z.ZodString>;
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
172
|
+
phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
173
|
+
personal_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
174
|
+
gender: z.ZodOptional<z.ZodNullable<z.ZodEnum<["female", "male", "unanswered", "other"]>>>;
|
|
175
|
+
talent_pool: z.ZodOptional<z.ZodBoolean>;
|
|
176
|
+
consent_to_talent_pool: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
177
|
+
consent_given_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
178
|
+
consent_expiration_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
179
|
+
inactive_since: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
180
|
+
medium: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
181
|
+
source_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
182
|
+
score: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
183
|
+
ats_job_posting_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
131
184
|
created_at: z.ZodNullable<z.ZodString>;
|
|
132
185
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
133
186
|
}, "strip", z.ZodTypeAny, {
|
|
134
|
-
id:
|
|
135
|
-
first_name: string
|
|
136
|
-
last_name: string
|
|
137
|
-
full_name: string
|
|
187
|
+
id: string;
|
|
188
|
+
first_name: string;
|
|
189
|
+
last_name: string;
|
|
190
|
+
full_name: string;
|
|
138
191
|
email: string | null;
|
|
139
|
-
company_id: number | null;
|
|
140
192
|
created_at: string | null;
|
|
141
193
|
updated_at: string | null;
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
194
|
+
gender?: "male" | "female" | "other" | "unanswered" | null | undefined;
|
|
195
|
+
phone_number?: string | null | undefined;
|
|
196
|
+
company_id?: string | null | undefined;
|
|
197
|
+
personal_url?: string | null | undefined;
|
|
198
|
+
talent_pool?: boolean | undefined;
|
|
199
|
+
consent_to_talent_pool?: boolean | null | undefined;
|
|
200
|
+
consent_given_at?: string | null | undefined;
|
|
201
|
+
consent_expiration_date?: string | null | undefined;
|
|
202
|
+
inactive_since?: string | null | undefined;
|
|
203
|
+
medium?: string | null | undefined;
|
|
204
|
+
source_id?: string | null | undefined;
|
|
205
|
+
score?: number | null | undefined;
|
|
206
|
+
ats_job_posting_ids?: string[] | undefined;
|
|
146
207
|
}, {
|
|
147
|
-
id:
|
|
148
|
-
first_name: string
|
|
149
|
-
last_name: string
|
|
150
|
-
full_name: string
|
|
208
|
+
id: string;
|
|
209
|
+
first_name: string;
|
|
210
|
+
last_name: string;
|
|
211
|
+
full_name: string;
|
|
151
212
|
email: string | null;
|
|
152
|
-
company_id: number | null;
|
|
153
213
|
created_at: string | null;
|
|
154
214
|
updated_at: string | null;
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
215
|
+
gender?: "male" | "female" | "other" | "unanswered" | null | undefined;
|
|
216
|
+
phone_number?: string | null | undefined;
|
|
217
|
+
company_id?: string | null | undefined;
|
|
218
|
+
personal_url?: string | null | undefined;
|
|
219
|
+
talent_pool?: boolean | undefined;
|
|
220
|
+
consent_to_talent_pool?: boolean | null | undefined;
|
|
221
|
+
consent_given_at?: string | null | undefined;
|
|
222
|
+
consent_expiration_date?: string | null | undefined;
|
|
223
|
+
inactive_since?: string | null | undefined;
|
|
224
|
+
medium?: string | null | undefined;
|
|
225
|
+
source_id?: string | null | undefined;
|
|
226
|
+
score?: number | null | undefined;
|
|
227
|
+
ats_job_posting_ids?: string[] | undefined;
|
|
159
228
|
}>;
|
|
160
229
|
export type Candidate = z.infer<typeof CandidateSchema>;
|
|
161
230
|
/**
|
|
@@ -212,49 +281,63 @@ export declare const UpdateCandidateInputSchema: z.ZodObject<{
|
|
|
212
281
|
export type UpdateCandidateInput = z.infer<typeof UpdateCandidateInputSchema>;
|
|
213
282
|
/**
|
|
214
283
|
* Application schema
|
|
284
|
+
*
|
|
285
|
+
* Response field set taken from the 2026-07-01 reference; the verification
|
|
286
|
+
* tenant has no applications, so it could not be checked against a live record.
|
|
287
|
+
* Foreign keys are prefixed `ats_` (ats_job_posting_id, ats_candidate_id) and
|
|
288
|
+
* the pipeline position is `ats_application_phase_id`.
|
|
215
289
|
*/
|
|
216
290
|
export declare const ApplicationSchema: z.ZodObject<{
|
|
217
|
-
id: z.
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
ats_application_phase_id: z.ZodNullable<z.
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
291
|
+
id: z.ZodString;
|
|
292
|
+
company_id: z.ZodOptional<z.ZodString>;
|
|
293
|
+
ats_job_posting_id: z.ZodString;
|
|
294
|
+
ats_candidate_id: z.ZodString;
|
|
295
|
+
ats_application_phase_id: z.ZodNullable<z.ZodString>;
|
|
296
|
+
ats_conversation_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
297
|
+
ats_rejection_reason_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
298
|
+
employee_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
299
|
+
source_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
300
|
+
qualified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
301
|
+
phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
302
|
+
medium: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
303
|
+
cover_letter: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
304
|
+
cv: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
305
|
+
rating_average: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
228
306
|
created_at: z.ZodNullable<z.ZodString>;
|
|
229
|
-
updated_at: z.ZodNullable<z.ZodString>;
|
|
230
307
|
}, "strip", z.ZodTypeAny, {
|
|
231
|
-
|
|
232
|
-
id: number;
|
|
308
|
+
id: string;
|
|
233
309
|
created_at: string | null;
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
310
|
+
ats_job_posting_id: string;
|
|
311
|
+
ats_candidate_id: string;
|
|
312
|
+
ats_application_phase_id: string | null;
|
|
313
|
+
company_id?: string | undefined;
|
|
314
|
+
employee_id?: string | null | undefined;
|
|
315
|
+
medium?: string | null | undefined;
|
|
316
|
+
source_id?: string | null | undefined;
|
|
317
|
+
phone?: string | null | undefined;
|
|
318
|
+
ats_conversation_id?: string | null | undefined;
|
|
319
|
+
ats_rejection_reason_id?: string | null | undefined;
|
|
320
|
+
qualified?: boolean | null | undefined;
|
|
321
|
+
cover_letter?: string | null | undefined;
|
|
322
|
+
cv?: Record<string, unknown> | null | undefined;
|
|
323
|
+
rating_average?: number | null | undefined;
|
|
244
324
|
}, {
|
|
245
|
-
|
|
246
|
-
id: number;
|
|
325
|
+
id: string;
|
|
247
326
|
created_at: string | null;
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
327
|
+
ats_job_posting_id: string;
|
|
328
|
+
ats_candidate_id: string;
|
|
329
|
+
ats_application_phase_id: string | null;
|
|
330
|
+
company_id?: string | undefined;
|
|
331
|
+
employee_id?: string | null | undefined;
|
|
332
|
+
medium?: string | null | undefined;
|
|
333
|
+
source_id?: string | null | undefined;
|
|
334
|
+
phone?: string | null | undefined;
|
|
335
|
+
ats_conversation_id?: string | null | undefined;
|
|
336
|
+
ats_rejection_reason_id?: string | null | undefined;
|
|
337
|
+
qualified?: boolean | null | undefined;
|
|
338
|
+
cover_letter?: string | null | undefined;
|
|
339
|
+
cv?: Record<string, unknown> | null | undefined;
|
|
340
|
+
rating_average?: number | null | undefined;
|
|
258
341
|
}>;
|
|
259
342
|
export type Application = z.infer<typeof ApplicationSchema>;
|
|
260
343
|
/**
|
|
@@ -293,34 +376,28 @@ export declare const UpdateApplicationInputSchema: z.ZodObject<{
|
|
|
293
376
|
export type UpdateApplicationInput = z.infer<typeof UpdateApplicationInputSchema>;
|
|
294
377
|
/**
|
|
295
378
|
* Hiring Stage schema
|
|
379
|
+
*
|
|
380
|
+
* Field set verified against live /ats/hiring_stages responses on API
|
|
381
|
+
* version 2026-07-01. Hiring stages carry no timestamps.
|
|
296
382
|
*/
|
|
297
383
|
export declare const HiringStageSchema: z.ZodObject<{
|
|
298
|
-
id: z.
|
|
299
|
-
name: z.
|
|
300
|
-
label: z.
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
company_id: z.ZodNullable<z.ZodNumber>;
|
|
304
|
-
created_at: z.ZodNullable<z.ZodString>;
|
|
305
|
-
updated_at: z.ZodNullable<z.ZodString>;
|
|
384
|
+
id: z.ZodString;
|
|
385
|
+
name: z.ZodEnum<["new", "screening", "interview", "assessment", "offer", "hired"]>;
|
|
386
|
+
label: z.ZodString;
|
|
387
|
+
position: z.ZodNumber;
|
|
388
|
+
company_id: z.ZodNullable<z.ZodString>;
|
|
306
389
|
}, "strip", z.ZodTypeAny, {
|
|
307
|
-
id:
|
|
308
|
-
company_id:
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
ats_application_phase_id: number | null;
|
|
313
|
-
label: string | null;
|
|
314
|
-
position: number | null;
|
|
390
|
+
id: string;
|
|
391
|
+
company_id: string | null;
|
|
392
|
+
name: "new" | "screening" | "interview" | "assessment" | "offer" | "hired";
|
|
393
|
+
position: number;
|
|
394
|
+
label: string;
|
|
315
395
|
}, {
|
|
316
|
-
id:
|
|
317
|
-
company_id:
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
ats_application_phase_id: number | null;
|
|
322
|
-
label: string | null;
|
|
323
|
-
position: number | null;
|
|
396
|
+
id: string;
|
|
397
|
+
company_id: string | null;
|
|
398
|
+
name: "new" | "screening" | "interview" | "assessment" | "offer" | "hired";
|
|
399
|
+
position: number;
|
|
400
|
+
label: string;
|
|
324
401
|
}>;
|
|
325
402
|
export type HiringStage = z.infer<typeof HiringStageSchema>;
|
|
326
403
|
//# sourceMappingURL=ats.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ats.d.ts","sourceRoot":"","sources":["../../src/schemas/ats.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"ats.d.ts","sourceRoot":"","sources":["../../src/schemas/ats.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB;;;;;GAKG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6B3B,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE1D;;GAEG;AACH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;EAQtC,CAAC;AAEH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEhF;;GAEG;AACH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEtC,CAAC;AAEH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEhF;;;;;GAKG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqB1B,CAAC;AAEH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAExD;;GAEG;AACH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;EAOrC,CAAC;AAEH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAE9E;;GAEG;AACH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;EAAuC,CAAC;AAE/E,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAE9E;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkB5B,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D;;GAEG;AACH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;EAIvC,CAAC;AAEH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAElF;;GAEG;AACH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;EAIvC,CAAC;AAEH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAElF;;;;;GAKG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;EAM5B,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC"}
|
package/dist/schemas/ats.js
CHANGED
|
@@ -2,24 +2,42 @@
|
|
|
2
2
|
* ATS (Applicant Tracking System) schemas: JobPosting, Candidate, Application, HiringStage
|
|
3
3
|
*/
|
|
4
4
|
import { z } from 'zod';
|
|
5
|
+
import { resourceId } from './shared.js';
|
|
5
6
|
/**
|
|
6
7
|
* Job Posting schema
|
|
8
|
+
*
|
|
9
|
+
* Response field set taken from the 2026-07-01 reference; the verification
|
|
10
|
+
* tenant has no job postings, so it could not be checked against a live record.
|
|
7
11
|
*/
|
|
8
12
|
export const JobPostingSchema = z.object({
|
|
9
|
-
id:
|
|
13
|
+
id: resourceId,
|
|
14
|
+
company_id: resourceId.optional(),
|
|
15
|
+
ats_company_id: resourceId.optional(),
|
|
10
16
|
title: z.string(),
|
|
11
17
|
description: z.string().nullable(),
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
18
|
+
status: z.enum(['draft', 'published', 'unlisted', 'archived', 'cancelled', 'deleted']),
|
|
19
|
+
contract_type: z.string().nullable().optional(),
|
|
20
|
+
// Added in API 2026-07-01
|
|
21
|
+
category: z.string().nullable().optional(),
|
|
22
|
+
workplace_type: z.enum(['onsite', 'remote', 'hybrid']).nullable().optional(),
|
|
23
|
+
remote: z.boolean().optional(),
|
|
24
|
+
schedule_type: z.enum(['full_time', 'part_time']).nullable().optional(),
|
|
25
|
+
team_id: resourceId.nullable(),
|
|
26
|
+
location_id: resourceId.nullable(),
|
|
27
|
+
legal_entity_id: resourceId.nullable().optional(),
|
|
28
|
+
salary_format: z.enum(['fixed_amount', 'range']).nullable().optional(),
|
|
29
|
+
salary_from_amount_in_cents: z.number().nullable().optional(),
|
|
30
|
+
salary_to_amount_in_cents: z.number().nullable().optional(),
|
|
31
|
+
salary_period: z.enum(['annual', 'monthly', 'daily']).nullable().optional(),
|
|
32
|
+
hide_salary: z.boolean().nullable().optional(),
|
|
33
|
+
cv_requirement: z.enum(['mandatory', 'optional', 'do_not_ask']).optional(),
|
|
34
|
+
cover_letter_requirement: z.enum(['mandatory', 'optional', 'do_not_ask']).optional(),
|
|
35
|
+
phone_requirement: z.enum(['mandatory', 'optional', 'do_not_ask']).optional(),
|
|
36
|
+
photo_requirement: z.enum(['mandatory', 'optional', 'do_not_ask']).optional(),
|
|
37
|
+
personal_url_requirement: z.enum(['mandatory', 'optional', 'do_not_ask']).optional(),
|
|
38
|
+
url: z.string().nullable().optional(),
|
|
19
39
|
published_at: z.string().nullable(),
|
|
20
|
-
closed_at: z.string().nullable(),
|
|
21
40
|
created_at: z.string().nullable(),
|
|
22
|
-
updated_at: z.string().nullable(),
|
|
23
41
|
});
|
|
24
42
|
/**
|
|
25
43
|
* Job Posting create input schema
|
|
@@ -41,18 +59,29 @@ export const UpdateJobPostingInputSchema = CreateJobPostingInputSchema.partial()
|
|
|
41
59
|
});
|
|
42
60
|
/**
|
|
43
61
|
* Candidate schema
|
|
62
|
+
*
|
|
63
|
+
* Response field set taken from the 2026-07-01 reference; the verification
|
|
64
|
+
* tenant has no candidates, so it could not be checked against a live record.
|
|
44
65
|
*/
|
|
45
66
|
export const CandidateSchema = z.object({
|
|
46
|
-
id:
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
67
|
+
id: resourceId,
|
|
68
|
+
company_id: resourceId.nullable().optional(),
|
|
69
|
+
first_name: z.string(),
|
|
70
|
+
last_name: z.string(),
|
|
71
|
+
full_name: z.string(),
|
|
50
72
|
email: z.string().nullable(),
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
73
|
+
phone_number: z.string().nullable().optional(),
|
|
74
|
+
personal_url: z.string().nullable().optional(),
|
|
75
|
+
gender: z.enum(['female', 'male', 'unanswered', 'other']).nullable().optional(),
|
|
76
|
+
talent_pool: z.boolean().optional(),
|
|
77
|
+
consent_to_talent_pool: z.boolean().nullable().optional(),
|
|
78
|
+
consent_given_at: z.string().nullable().optional(),
|
|
79
|
+
consent_expiration_date: z.string().nullable().optional(),
|
|
80
|
+
inactive_since: z.string().nullable().optional(),
|
|
81
|
+
medium: z.string().nullable().optional(),
|
|
82
|
+
source_id: resourceId.nullable().optional(),
|
|
83
|
+
score: z.number().nullable().optional(),
|
|
84
|
+
ats_job_posting_ids: z.array(resourceId).optional(),
|
|
56
85
|
created_at: z.string().nullable(),
|
|
57
86
|
updated_at: z.string().nullable(),
|
|
58
87
|
});
|
|
@@ -73,21 +102,30 @@ export const CreateCandidateInputSchema = z.object({
|
|
|
73
102
|
export const UpdateCandidateInputSchema = CreateCandidateInputSchema.partial();
|
|
74
103
|
/**
|
|
75
104
|
* Application schema
|
|
105
|
+
*
|
|
106
|
+
* Response field set taken from the 2026-07-01 reference; the verification
|
|
107
|
+
* tenant has no applications, so it could not be checked against a live record.
|
|
108
|
+
* Foreign keys are prefixed `ats_` (ats_job_posting_id, ats_candidate_id) and
|
|
109
|
+
* the pipeline position is `ats_application_phase_id`.
|
|
76
110
|
*/
|
|
77
111
|
export const ApplicationSchema = z.object({
|
|
78
|
-
id:
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
ats_application_phase_id:
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
112
|
+
id: resourceId,
|
|
113
|
+
company_id: resourceId.optional(),
|
|
114
|
+
ats_job_posting_id: resourceId,
|
|
115
|
+
ats_candidate_id: resourceId,
|
|
116
|
+
ats_application_phase_id: resourceId.nullable(),
|
|
117
|
+
ats_conversation_id: resourceId.nullable().optional(),
|
|
118
|
+
ats_rejection_reason_id: resourceId.nullable().optional(),
|
|
119
|
+
employee_id: resourceId.nullable().optional(),
|
|
120
|
+
source_id: resourceId.nullable().optional(),
|
|
121
|
+
qualified: z.boolean().nullable().optional(),
|
|
122
|
+
phone: z.string().nullable().optional(),
|
|
123
|
+
medium: z.string().nullable().optional(),
|
|
124
|
+
cover_letter: z.string().nullable().optional(),
|
|
125
|
+
// Added in API 2026-07-01: CV attachment (filename, url, byte_size, content_type, created_at)
|
|
126
|
+
cv: z.record(z.string(), z.unknown()).nullable().optional(),
|
|
127
|
+
rating_average: z.number().nullable().optional(),
|
|
89
128
|
created_at: z.string().nullable(),
|
|
90
|
-
updated_at: z.string().nullable(),
|
|
91
129
|
});
|
|
92
130
|
/**
|
|
93
131
|
* Application create input schema
|
|
@@ -107,15 +145,15 @@ export const UpdateApplicationInputSchema = z.object({
|
|
|
107
145
|
});
|
|
108
146
|
/**
|
|
109
147
|
* Hiring Stage schema
|
|
148
|
+
*
|
|
149
|
+
* Field set verified against live /ats/hiring_stages responses on API
|
|
150
|
+
* version 2026-07-01. Hiring stages carry no timestamps.
|
|
110
151
|
*/
|
|
111
152
|
export const HiringStageSchema = z.object({
|
|
112
|
-
id:
|
|
113
|
-
name: z.
|
|
114
|
-
label: z.string()
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
company_id: z.number().nullable(),
|
|
118
|
-
created_at: z.string().nullable(),
|
|
119
|
-
updated_at: z.string().nullable(),
|
|
153
|
+
id: resourceId,
|
|
154
|
+
name: z.enum(['new', 'screening', 'interview', 'assessment', 'offer', 'hired']),
|
|
155
|
+
label: z.string(),
|
|
156
|
+
position: z.number(),
|
|
157
|
+
company_id: resourceId.nullable(),
|
|
120
158
|
});
|
|
121
159
|
//# sourceMappingURL=ats.js.map
|
package/dist/schemas/ats.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ats.js","sourceRoot":"","sources":["../../src/schemas/ats.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"ats.js","sourceRoot":"","sources":["../../src/schemas/ats.ts"],"names":[],"mappings":"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"}
|