@roll-agent/smart-reply-agent 0.4.0 → 1.1.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.
Files changed (43) hide show
  1. package/SKILL.md +25 -37
  2. package/dist/index.js +1 -1
  3. package/dist/services/reply-authority-client.d.ts +2 -0
  4. package/dist/tools/generate-reply.d.ts +31 -43
  5. package/dist/types/candidate-info.d.ts +57 -0
  6. package/dist/types/funnel-stage.d.ts +4 -0
  7. package/dist/types/model-config.d.ts +66 -0
  8. package/dist/types/reply-authority.d.ts +785 -0
  9. package/package.json +2 -16
  10. package/references/env.yaml +6 -26
  11. package/data/brand-config.sample.json +0 -83
  12. package/dist/ai/model-registry.d.ts +0 -103
  13. package/dist/ai/structured-output.d.ts +0 -61
  14. package/dist/errors/app-error.d.ts +0 -42
  15. package/dist/errors/error-codes.d.ts +0 -48
  16. package/dist/errors/error-factory.d.ts +0 -30
  17. package/dist/errors/error-utils.d.ts +0 -39
  18. package/dist/errors/index.d.ts +0 -8
  19. package/dist/log-control.d.ts +0 -2
  20. package/dist/pipeline/age-eligibility.d.ts +0 -94
  21. package/dist/pipeline/candidate-context.d.ts +0 -8
  22. package/dist/pipeline/candidate-utils.d.ts +0 -5
  23. package/dist/pipeline/classification.d.ts +0 -13
  24. package/dist/pipeline/context-builder.d.ts +0 -21
  25. package/dist/pipeline/pipeline-progress.d.ts +0 -9
  26. package/dist/pipeline/reply-gate.d.ts +0 -19
  27. package/dist/pipeline/smart-reply.d.ts +0 -64
  28. package/dist/pipeline.d.ts +0 -21
  29. package/dist/pipeline.js +0 -1
  30. package/dist/services/brand-alias.d.ts +0 -4
  31. package/dist/services/brand-config-selectors.d.ts +0 -7
  32. package/dist/services/config-loader.d.ts +0 -11
  33. package/dist/services/duliday-api.d.ts +0 -30
  34. package/dist/services/duliday-mapper.d.ts +0 -8
  35. package/dist/tools/sync-brand-data.d.ts +0 -11
  36. package/dist/types/brand-resolution.d.ts +0 -83
  37. package/dist/types/classification.d.ts +0 -181
  38. package/dist/types/config.d.ts +0 -3
  39. package/dist/types/duliday-api.d.ts +0 -7197
  40. package/dist/types/geocoding.d.ts +0 -23
  41. package/dist/types/reply-policy.d.ts +0 -1390
  42. package/dist/types/zhipin.d.ts +0 -2196
  43. package/references/reply-policy-schema.md +0 -148
@@ -1,2196 +0,0 @@
1
- import { z } from "zod";
2
- export declare const CandidateInfoSchema: z.ZodObject<{
3
- name: z.ZodOptional<z.ZodString>;
4
- position: z.ZodOptional<z.ZodString>;
5
- expectedPosition: z.ZodOptional<z.ZodString>;
6
- communicationPosition: z.ZodOptional<z.ZodString>;
7
- age: z.ZodOptional<z.ZodString>;
8
- gender: z.ZodOptional<z.ZodString>;
9
- experience: z.ZodOptional<z.ZodString>;
10
- education: z.ZodOptional<z.ZodString>;
11
- expectedSalary: z.ZodOptional<z.ZodString>;
12
- expectedLocation: z.ZodOptional<z.ZodString>;
13
- jobAddress: z.ZodOptional<z.ZodString>;
14
- height: z.ZodOptional<z.ZodString>;
15
- weight: z.ZodOptional<z.ZodString>;
16
- healthCertificate: z.ZodOptional<z.ZodBoolean>;
17
- activeTime: z.ZodOptional<z.ZodString>;
18
- info: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
19
- fullText: z.ZodOptional<z.ZodString>;
20
- }, "strip", z.ZodTypeAny, {
21
- info?: string[] | undefined;
22
- name?: string | undefined;
23
- education?: string | undefined;
24
- healthCertificate?: boolean | undefined;
25
- position?: string | undefined;
26
- expectedPosition?: string | undefined;
27
- communicationPosition?: string | undefined;
28
- age?: string | undefined;
29
- gender?: string | undefined;
30
- experience?: string | undefined;
31
- expectedSalary?: string | undefined;
32
- expectedLocation?: string | undefined;
33
- jobAddress?: string | undefined;
34
- height?: string | undefined;
35
- weight?: string | undefined;
36
- activeTime?: string | undefined;
37
- fullText?: string | undefined;
38
- }, {
39
- info?: string[] | undefined;
40
- name?: string | undefined;
41
- education?: string | undefined;
42
- healthCertificate?: boolean | undefined;
43
- position?: string | undefined;
44
- expectedPosition?: string | undefined;
45
- communicationPosition?: string | undefined;
46
- age?: string | undefined;
47
- gender?: string | undefined;
48
- experience?: string | undefined;
49
- expectedSalary?: string | undefined;
50
- expectedLocation?: string | undefined;
51
- jobAddress?: string | undefined;
52
- height?: string | undefined;
53
- weight?: string | undefined;
54
- activeTime?: string | undefined;
55
- fullText?: string | undefined;
56
- }>;
57
- export type CandidateInfo = z.infer<typeof CandidateInfoSchema>;
58
- export declare const SalaryDetailsSchema: z.ZodObject<{
59
- base: z.ZodNullable<z.ZodNumber>;
60
- unit: z.ZodNullable<z.ZodString>;
61
- range: z.ZodOptional<z.ZodString>;
62
- bonus: z.ZodOptional<z.ZodString>;
63
- memo: z.ZodNullable<z.ZodString>;
64
- scenarioSummary: z.ZodOptional<z.ZodString>;
65
- settlementCycle: z.ZodOptional<z.ZodString>;
66
- }, "strip", z.ZodTypeAny, {
67
- base: number | null;
68
- unit: string | null;
69
- memo: string | null;
70
- range?: string | undefined;
71
- bonus?: string | undefined;
72
- scenarioSummary?: string | undefined;
73
- settlementCycle?: string | undefined;
74
- }, {
75
- base: number | null;
76
- unit: string | null;
77
- memo: string | null;
78
- range?: string | undefined;
79
- bonus?: string | undefined;
80
- scenarioSummary?: string | undefined;
81
- settlementCycle?: string | undefined;
82
- }>;
83
- export declare const BenefitsSchema: z.ZodObject<{
84
- insurance: z.ZodNullable<z.ZodString>;
85
- accommodation: z.ZodNullable<z.ZodString>;
86
- catering: z.ZodNullable<z.ZodString>;
87
- moreWelfares: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
88
- memo: z.ZodNullable<z.ZodString>;
89
- promotion: z.ZodNullable<z.ZodString>;
90
- }, "strip", z.ZodTypeAny, {
91
- memo: string | null;
92
- insurance: string | null;
93
- accommodation: string | null;
94
- catering: string | null;
95
- moreWelfares: string[] | null;
96
- promotion: string | null;
97
- }, {
98
- memo: string | null;
99
- insurance: string | null;
100
- accommodation: string | null;
101
- catering: string | null;
102
- moreWelfares: string[] | null;
103
- promotion: string | null;
104
- }>;
105
- export declare const AttendanceRequirementSchema: z.ZodObject<{
106
- requiredDays: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
107
- minimumDays: z.ZodNullable<z.ZodNumber>;
108
- description: z.ZodNullable<z.ZodString>;
109
- }, "strip", z.ZodTypeAny, {
110
- description: string | null;
111
- minimumDays: number | null;
112
- requiredDays?: number[] | undefined;
113
- }, {
114
- description: string | null;
115
- minimumDays: number | null;
116
- requiredDays?: number[] | undefined;
117
- }>;
118
- export declare const TimeSlotAvailabilitySchema: z.ZodObject<{
119
- slot: z.ZodString;
120
- maxCapacity: z.ZodNumber;
121
- currentBooked: z.ZodNumber;
122
- isAvailable: z.ZodBoolean;
123
- priority: z.ZodEnum<["high", "medium", "low"]>;
124
- }, "strip", z.ZodTypeAny, {
125
- priority: "high" | "medium" | "low";
126
- slot: string;
127
- maxCapacity: number;
128
- currentBooked: number;
129
- isAvailable: boolean;
130
- }, {
131
- priority: "high" | "medium" | "low";
132
- slot: string;
133
- maxCapacity: number;
134
- currentBooked: number;
135
- isAvailable: boolean;
136
- }>;
137
- export declare const HiringRequirementsSchema: z.ZodObject<{
138
- minAge: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
139
- maxAge: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
140
- genderRequirement: z.ZodOptional<z.ZodNullable<z.ZodString>>;
141
- education: z.ZodOptional<z.ZodNullable<z.ZodString>>;
142
- healthCertificate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
143
- languages: z.ZodOptional<z.ZodNullable<z.ZodString>>;
144
- certificatesRaw: z.ZodOptional<z.ZodNullable<z.ZodString>>;
145
- recruitmentRemark: z.ZodOptional<z.ZodNullable<z.ZodString>>;
146
- socialIdentity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
147
- }, "strip", z.ZodTypeAny, {
148
- minAge?: number | null | undefined;
149
- maxAge?: number | null | undefined;
150
- genderRequirement?: string | null | undefined;
151
- education?: string | null | undefined;
152
- healthCertificate?: string | null | undefined;
153
- languages?: string | null | undefined;
154
- certificatesRaw?: string | null | undefined;
155
- recruitmentRemark?: string | null | undefined;
156
- socialIdentity?: string | null | undefined;
157
- }, {
158
- minAge?: number | null | undefined;
159
- maxAge?: number | null | undefined;
160
- genderRequirement?: string | null | undefined;
161
- education?: string | null | undefined;
162
- healthCertificate?: string | null | undefined;
163
- languages?: string | null | undefined;
164
- certificatesRaw?: string | null | undefined;
165
- recruitmentRemark?: string | null | undefined;
166
- socialIdentity?: string | null | undefined;
167
- }>;
168
- export type HiringRequirements = z.infer<typeof HiringRequirementsSchema>;
169
- export declare const PositionSchema: z.ZodObject<{
170
- id: z.ZodString;
171
- name: z.ZodString;
172
- sourceJobName: z.ZodString;
173
- jobCategory: z.ZodNullable<z.ZodString>;
174
- brandId: z.ZodOptional<z.ZodString>;
175
- brandName: z.ZodOptional<z.ZodString>;
176
- projectId: z.ZodOptional<z.ZodString>;
177
- projectName: z.ZodOptional<z.ZodString>;
178
- description: z.ZodNullable<z.ZodString>;
179
- laborForm: z.ZodNullable<z.ZodString>;
180
- employmentForm: z.ZodNullable<z.ZodString>;
181
- trainingRequired: z.ZodNullable<z.ZodString>;
182
- probationRequired: z.ZodNullable<z.ZodString>;
183
- salary: z.ZodObject<{
184
- base: z.ZodNullable<z.ZodNumber>;
185
- unit: z.ZodNullable<z.ZodString>;
186
- range: z.ZodOptional<z.ZodString>;
187
- bonus: z.ZodOptional<z.ZodString>;
188
- memo: z.ZodNullable<z.ZodString>;
189
- scenarioSummary: z.ZodOptional<z.ZodString>;
190
- settlementCycle: z.ZodOptional<z.ZodString>;
191
- }, "strip", z.ZodTypeAny, {
192
- base: number | null;
193
- unit: string | null;
194
- memo: string | null;
195
- range?: string | undefined;
196
- bonus?: string | undefined;
197
- scenarioSummary?: string | undefined;
198
- settlementCycle?: string | undefined;
199
- }, {
200
- base: number | null;
201
- unit: string | null;
202
- memo: string | null;
203
- range?: string | undefined;
204
- bonus?: string | undefined;
205
- scenarioSummary?: string | undefined;
206
- settlementCycle?: string | undefined;
207
- }>;
208
- timeSlots: z.ZodArray<z.ZodString, "many">;
209
- workHours: z.ZodNullable<z.ZodString>;
210
- minHoursPerWeek: z.ZodNullable<z.ZodNumber>;
211
- maxHoursPerWeek: z.ZodNullable<z.ZodNumber>;
212
- perMonthMinWorkTime: z.ZodNullable<z.ZodNumber>;
213
- perMonthMinWorkTimeUnit: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
214
- attendanceRequirement: z.ZodOptional<z.ZodObject<{
215
- requiredDays: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
216
- minimumDays: z.ZodNullable<z.ZodNumber>;
217
- description: z.ZodNullable<z.ZodString>;
218
- }, "strip", z.ZodTypeAny, {
219
- description: string | null;
220
- minimumDays: number | null;
221
- requiredDays?: number[] | undefined;
222
- }, {
223
- description: string | null;
224
- minimumDays: number | null;
225
- requiredDays?: number[] | undefined;
226
- }>>;
227
- availableSlots: z.ZodArray<z.ZodObject<{
228
- slot: z.ZodString;
229
- maxCapacity: z.ZodNumber;
230
- currentBooked: z.ZodNumber;
231
- isAvailable: z.ZodBoolean;
232
- priority: z.ZodEnum<["high", "medium", "low"]>;
233
- }, "strip", z.ZodTypeAny, {
234
- priority: "high" | "medium" | "low";
235
- slot: string;
236
- maxCapacity: number;
237
- currentBooked: number;
238
- isAvailable: boolean;
239
- }, {
240
- priority: "high" | "medium" | "low";
241
- slot: string;
242
- maxCapacity: number;
243
- currentBooked: number;
244
- isAvailable: boolean;
245
- }>, "many">;
246
- benefits: z.ZodObject<{
247
- insurance: z.ZodNullable<z.ZodString>;
248
- accommodation: z.ZodNullable<z.ZodString>;
249
- catering: z.ZodNullable<z.ZodString>;
250
- moreWelfares: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
251
- memo: z.ZodNullable<z.ZodString>;
252
- promotion: z.ZodNullable<z.ZodString>;
253
- }, "strip", z.ZodTypeAny, {
254
- memo: string | null;
255
- insurance: string | null;
256
- accommodation: string | null;
257
- catering: string | null;
258
- moreWelfares: string[] | null;
259
- promotion: string | null;
260
- }, {
261
- memo: string | null;
262
- insurance: string | null;
263
- accommodation: string | null;
264
- catering: string | null;
265
- moreWelfares: string[] | null;
266
- promotion: string | null;
267
- }>;
268
- hiringRequirements: z.ZodOptional<z.ZodObject<{
269
- minAge: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
270
- maxAge: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
271
- genderRequirement: z.ZodOptional<z.ZodNullable<z.ZodString>>;
272
- education: z.ZodOptional<z.ZodNullable<z.ZodString>>;
273
- healthCertificate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
274
- languages: z.ZodOptional<z.ZodNullable<z.ZodString>>;
275
- certificatesRaw: z.ZodOptional<z.ZodNullable<z.ZodString>>;
276
- recruitmentRemark: z.ZodOptional<z.ZodNullable<z.ZodString>>;
277
- socialIdentity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
278
- }, "strip", z.ZodTypeAny, {
279
- minAge?: number | null | undefined;
280
- maxAge?: number | null | undefined;
281
- genderRequirement?: string | null | undefined;
282
- education?: string | null | undefined;
283
- healthCertificate?: string | null | undefined;
284
- languages?: string | null | undefined;
285
- certificatesRaw?: string | null | undefined;
286
- recruitmentRemark?: string | null | undefined;
287
- socialIdentity?: string | null | undefined;
288
- }, {
289
- minAge?: number | null | undefined;
290
- maxAge?: number | null | undefined;
291
- genderRequirement?: string | null | undefined;
292
- education?: string | null | undefined;
293
- healthCertificate?: string | null | undefined;
294
- languages?: string | null | undefined;
295
- certificatesRaw?: string | null | undefined;
296
- recruitmentRemark?: string | null | undefined;
297
- socialIdentity?: string | null | undefined;
298
- }>>;
299
- }, "strip", z.ZodTypeAny, {
300
- description: string | null;
301
- name: string;
302
- id: string;
303
- sourceJobName: string;
304
- jobCategory: string | null;
305
- laborForm: string | null;
306
- employmentForm: string | null;
307
- trainingRequired: string | null;
308
- probationRequired: string | null;
309
- salary: {
310
- base: number | null;
311
- unit: string | null;
312
- memo: string | null;
313
- range?: string | undefined;
314
- bonus?: string | undefined;
315
- scenarioSummary?: string | undefined;
316
- settlementCycle?: string | undefined;
317
- };
318
- timeSlots: string[];
319
- workHours: string | null;
320
- minHoursPerWeek: number | null;
321
- maxHoursPerWeek: number | null;
322
- perMonthMinWorkTime: number | null;
323
- perMonthMinWorkTimeUnit: string | number | null;
324
- availableSlots: {
325
- priority: "high" | "medium" | "low";
326
- slot: string;
327
- maxCapacity: number;
328
- currentBooked: number;
329
- isAvailable: boolean;
330
- }[];
331
- benefits: {
332
- memo: string | null;
333
- insurance: string | null;
334
- accommodation: string | null;
335
- catering: string | null;
336
- moreWelfares: string[] | null;
337
- promotion: string | null;
338
- };
339
- brandId?: string | undefined;
340
- brandName?: string | undefined;
341
- projectId?: string | undefined;
342
- projectName?: string | undefined;
343
- attendanceRequirement?: {
344
- description: string | null;
345
- minimumDays: number | null;
346
- requiredDays?: number[] | undefined;
347
- } | undefined;
348
- hiringRequirements?: {
349
- minAge?: number | null | undefined;
350
- maxAge?: number | null | undefined;
351
- genderRequirement?: string | null | undefined;
352
- education?: string | null | undefined;
353
- healthCertificate?: string | null | undefined;
354
- languages?: string | null | undefined;
355
- certificatesRaw?: string | null | undefined;
356
- recruitmentRemark?: string | null | undefined;
357
- socialIdentity?: string | null | undefined;
358
- } | undefined;
359
- }, {
360
- description: string | null;
361
- name: string;
362
- id: string;
363
- sourceJobName: string;
364
- jobCategory: string | null;
365
- laborForm: string | null;
366
- employmentForm: string | null;
367
- trainingRequired: string | null;
368
- probationRequired: string | null;
369
- salary: {
370
- base: number | null;
371
- unit: string | null;
372
- memo: string | null;
373
- range?: string | undefined;
374
- bonus?: string | undefined;
375
- scenarioSummary?: string | undefined;
376
- settlementCycle?: string | undefined;
377
- };
378
- timeSlots: string[];
379
- workHours: string | null;
380
- minHoursPerWeek: number | null;
381
- maxHoursPerWeek: number | null;
382
- perMonthMinWorkTime: number | null;
383
- perMonthMinWorkTimeUnit: string | number | null;
384
- availableSlots: {
385
- priority: "high" | "medium" | "low";
386
- slot: string;
387
- maxCapacity: number;
388
- currentBooked: number;
389
- isAvailable: boolean;
390
- }[];
391
- benefits: {
392
- memo: string | null;
393
- insurance: string | null;
394
- accommodation: string | null;
395
- catering: string | null;
396
- moreWelfares: string[] | null;
397
- promotion: string | null;
398
- };
399
- brandId?: string | undefined;
400
- brandName?: string | undefined;
401
- projectId?: string | undefined;
402
- projectName?: string | undefined;
403
- attendanceRequirement?: {
404
- description: string | null;
405
- minimumDays: number | null;
406
- requiredDays?: number[] | undefined;
407
- } | undefined;
408
- hiringRequirements?: {
409
- minAge?: number | null | undefined;
410
- maxAge?: number | null | undefined;
411
- genderRequirement?: string | null | undefined;
412
- education?: string | null | undefined;
413
- healthCertificate?: string | null | undefined;
414
- languages?: string | null | undefined;
415
- certificatesRaw?: string | null | undefined;
416
- recruitmentRemark?: string | null | undefined;
417
- socialIdentity?: string | null | undefined;
418
- } | undefined;
419
- }>;
420
- export declare const StoreSchema: z.ZodObject<{
421
- id: z.ZodString;
422
- brandId: z.ZodString;
423
- name: z.ZodString;
424
- city: z.ZodOptional<z.ZodString>;
425
- location: z.ZodString;
426
- district: z.ZodNullable<z.ZodString>;
427
- subarea: z.ZodNullable<z.ZodString>;
428
- coordinates: z.ZodObject<{
429
- lat: z.ZodNumber;
430
- lng: z.ZodNumber;
431
- }, "strip", z.ZodTypeAny, {
432
- lat: number;
433
- lng: number;
434
- }, {
435
- lat: number;
436
- lng: number;
437
- }>;
438
- positions: z.ZodArray<z.ZodObject<{
439
- id: z.ZodString;
440
- name: z.ZodString;
441
- sourceJobName: z.ZodString;
442
- jobCategory: z.ZodNullable<z.ZodString>;
443
- brandId: z.ZodOptional<z.ZodString>;
444
- brandName: z.ZodOptional<z.ZodString>;
445
- projectId: z.ZodOptional<z.ZodString>;
446
- projectName: z.ZodOptional<z.ZodString>;
447
- description: z.ZodNullable<z.ZodString>;
448
- laborForm: z.ZodNullable<z.ZodString>;
449
- employmentForm: z.ZodNullable<z.ZodString>;
450
- trainingRequired: z.ZodNullable<z.ZodString>;
451
- probationRequired: z.ZodNullable<z.ZodString>;
452
- salary: z.ZodObject<{
453
- base: z.ZodNullable<z.ZodNumber>;
454
- unit: z.ZodNullable<z.ZodString>;
455
- range: z.ZodOptional<z.ZodString>;
456
- bonus: z.ZodOptional<z.ZodString>;
457
- memo: z.ZodNullable<z.ZodString>;
458
- scenarioSummary: z.ZodOptional<z.ZodString>;
459
- settlementCycle: z.ZodOptional<z.ZodString>;
460
- }, "strip", z.ZodTypeAny, {
461
- base: number | null;
462
- unit: string | null;
463
- memo: string | null;
464
- range?: string | undefined;
465
- bonus?: string | undefined;
466
- scenarioSummary?: string | undefined;
467
- settlementCycle?: string | undefined;
468
- }, {
469
- base: number | null;
470
- unit: string | null;
471
- memo: string | null;
472
- range?: string | undefined;
473
- bonus?: string | undefined;
474
- scenarioSummary?: string | undefined;
475
- settlementCycle?: string | undefined;
476
- }>;
477
- timeSlots: z.ZodArray<z.ZodString, "many">;
478
- workHours: z.ZodNullable<z.ZodString>;
479
- minHoursPerWeek: z.ZodNullable<z.ZodNumber>;
480
- maxHoursPerWeek: z.ZodNullable<z.ZodNumber>;
481
- perMonthMinWorkTime: z.ZodNullable<z.ZodNumber>;
482
- perMonthMinWorkTimeUnit: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
483
- attendanceRequirement: z.ZodOptional<z.ZodObject<{
484
- requiredDays: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
485
- minimumDays: z.ZodNullable<z.ZodNumber>;
486
- description: z.ZodNullable<z.ZodString>;
487
- }, "strip", z.ZodTypeAny, {
488
- description: string | null;
489
- minimumDays: number | null;
490
- requiredDays?: number[] | undefined;
491
- }, {
492
- description: string | null;
493
- minimumDays: number | null;
494
- requiredDays?: number[] | undefined;
495
- }>>;
496
- availableSlots: z.ZodArray<z.ZodObject<{
497
- slot: z.ZodString;
498
- maxCapacity: z.ZodNumber;
499
- currentBooked: z.ZodNumber;
500
- isAvailable: z.ZodBoolean;
501
- priority: z.ZodEnum<["high", "medium", "low"]>;
502
- }, "strip", z.ZodTypeAny, {
503
- priority: "high" | "medium" | "low";
504
- slot: string;
505
- maxCapacity: number;
506
- currentBooked: number;
507
- isAvailable: boolean;
508
- }, {
509
- priority: "high" | "medium" | "low";
510
- slot: string;
511
- maxCapacity: number;
512
- currentBooked: number;
513
- isAvailable: boolean;
514
- }>, "many">;
515
- benefits: z.ZodObject<{
516
- insurance: z.ZodNullable<z.ZodString>;
517
- accommodation: z.ZodNullable<z.ZodString>;
518
- catering: z.ZodNullable<z.ZodString>;
519
- moreWelfares: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
520
- memo: z.ZodNullable<z.ZodString>;
521
- promotion: z.ZodNullable<z.ZodString>;
522
- }, "strip", z.ZodTypeAny, {
523
- memo: string | null;
524
- insurance: string | null;
525
- accommodation: string | null;
526
- catering: string | null;
527
- moreWelfares: string[] | null;
528
- promotion: string | null;
529
- }, {
530
- memo: string | null;
531
- insurance: string | null;
532
- accommodation: string | null;
533
- catering: string | null;
534
- moreWelfares: string[] | null;
535
- promotion: string | null;
536
- }>;
537
- hiringRequirements: z.ZodOptional<z.ZodObject<{
538
- minAge: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
539
- maxAge: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
540
- genderRequirement: z.ZodOptional<z.ZodNullable<z.ZodString>>;
541
- education: z.ZodOptional<z.ZodNullable<z.ZodString>>;
542
- healthCertificate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
543
- languages: z.ZodOptional<z.ZodNullable<z.ZodString>>;
544
- certificatesRaw: z.ZodOptional<z.ZodNullable<z.ZodString>>;
545
- recruitmentRemark: z.ZodOptional<z.ZodNullable<z.ZodString>>;
546
- socialIdentity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
547
- }, "strip", z.ZodTypeAny, {
548
- minAge?: number | null | undefined;
549
- maxAge?: number | null | undefined;
550
- genderRequirement?: string | null | undefined;
551
- education?: string | null | undefined;
552
- healthCertificate?: string | null | undefined;
553
- languages?: string | null | undefined;
554
- certificatesRaw?: string | null | undefined;
555
- recruitmentRemark?: string | null | undefined;
556
- socialIdentity?: string | null | undefined;
557
- }, {
558
- minAge?: number | null | undefined;
559
- maxAge?: number | null | undefined;
560
- genderRequirement?: string | null | undefined;
561
- education?: string | null | undefined;
562
- healthCertificate?: string | null | undefined;
563
- languages?: string | null | undefined;
564
- certificatesRaw?: string | null | undefined;
565
- recruitmentRemark?: string | null | undefined;
566
- socialIdentity?: string | null | undefined;
567
- }>>;
568
- }, "strip", z.ZodTypeAny, {
569
- description: string | null;
570
- name: string;
571
- id: string;
572
- sourceJobName: string;
573
- jobCategory: string | null;
574
- laborForm: string | null;
575
- employmentForm: string | null;
576
- trainingRequired: string | null;
577
- probationRequired: string | null;
578
- salary: {
579
- base: number | null;
580
- unit: string | null;
581
- memo: string | null;
582
- range?: string | undefined;
583
- bonus?: string | undefined;
584
- scenarioSummary?: string | undefined;
585
- settlementCycle?: string | undefined;
586
- };
587
- timeSlots: string[];
588
- workHours: string | null;
589
- minHoursPerWeek: number | null;
590
- maxHoursPerWeek: number | null;
591
- perMonthMinWorkTime: number | null;
592
- perMonthMinWorkTimeUnit: string | number | null;
593
- availableSlots: {
594
- priority: "high" | "medium" | "low";
595
- slot: string;
596
- maxCapacity: number;
597
- currentBooked: number;
598
- isAvailable: boolean;
599
- }[];
600
- benefits: {
601
- memo: string | null;
602
- insurance: string | null;
603
- accommodation: string | null;
604
- catering: string | null;
605
- moreWelfares: string[] | null;
606
- promotion: string | null;
607
- };
608
- brandId?: string | undefined;
609
- brandName?: string | undefined;
610
- projectId?: string | undefined;
611
- projectName?: string | undefined;
612
- attendanceRequirement?: {
613
- description: string | null;
614
- minimumDays: number | null;
615
- requiredDays?: number[] | undefined;
616
- } | undefined;
617
- hiringRequirements?: {
618
- minAge?: number | null | undefined;
619
- maxAge?: number | null | undefined;
620
- genderRequirement?: string | null | undefined;
621
- education?: string | null | undefined;
622
- healthCertificate?: string | null | undefined;
623
- languages?: string | null | undefined;
624
- certificatesRaw?: string | null | undefined;
625
- recruitmentRemark?: string | null | undefined;
626
- socialIdentity?: string | null | undefined;
627
- } | undefined;
628
- }, {
629
- description: string | null;
630
- name: string;
631
- id: string;
632
- sourceJobName: string;
633
- jobCategory: string | null;
634
- laborForm: string | null;
635
- employmentForm: string | null;
636
- trainingRequired: string | null;
637
- probationRequired: string | null;
638
- salary: {
639
- base: number | null;
640
- unit: string | null;
641
- memo: string | null;
642
- range?: string | undefined;
643
- bonus?: string | undefined;
644
- scenarioSummary?: string | undefined;
645
- settlementCycle?: string | undefined;
646
- };
647
- timeSlots: string[];
648
- workHours: string | null;
649
- minHoursPerWeek: number | null;
650
- maxHoursPerWeek: number | null;
651
- perMonthMinWorkTime: number | null;
652
- perMonthMinWorkTimeUnit: string | number | null;
653
- availableSlots: {
654
- priority: "high" | "medium" | "low";
655
- slot: string;
656
- maxCapacity: number;
657
- currentBooked: number;
658
- isAvailable: boolean;
659
- }[];
660
- benefits: {
661
- memo: string | null;
662
- insurance: string | null;
663
- accommodation: string | null;
664
- catering: string | null;
665
- moreWelfares: string[] | null;
666
- promotion: string | null;
667
- };
668
- brandId?: string | undefined;
669
- brandName?: string | undefined;
670
- projectId?: string | undefined;
671
- projectName?: string | undefined;
672
- attendanceRequirement?: {
673
- description: string | null;
674
- minimumDays: number | null;
675
- requiredDays?: number[] | undefined;
676
- } | undefined;
677
- hiringRequirements?: {
678
- minAge?: number | null | undefined;
679
- maxAge?: number | null | undefined;
680
- genderRequirement?: string | null | undefined;
681
- education?: string | null | undefined;
682
- healthCertificate?: string | null | undefined;
683
- languages?: string | null | undefined;
684
- certificatesRaw?: string | null | undefined;
685
- recruitmentRemark?: string | null | undefined;
686
- socialIdentity?: string | null | undefined;
687
- } | undefined;
688
- }>, "many">;
689
- }, "strip", z.ZodTypeAny, {
690
- name: string;
691
- id: string;
692
- brandId: string;
693
- location: string;
694
- district: string | null;
695
- subarea: string | null;
696
- coordinates: {
697
- lat: number;
698
- lng: number;
699
- };
700
- positions: {
701
- description: string | null;
702
- name: string;
703
- id: string;
704
- sourceJobName: string;
705
- jobCategory: string | null;
706
- laborForm: string | null;
707
- employmentForm: string | null;
708
- trainingRequired: string | null;
709
- probationRequired: string | null;
710
- salary: {
711
- base: number | null;
712
- unit: string | null;
713
- memo: string | null;
714
- range?: string | undefined;
715
- bonus?: string | undefined;
716
- scenarioSummary?: string | undefined;
717
- settlementCycle?: string | undefined;
718
- };
719
- timeSlots: string[];
720
- workHours: string | null;
721
- minHoursPerWeek: number | null;
722
- maxHoursPerWeek: number | null;
723
- perMonthMinWorkTime: number | null;
724
- perMonthMinWorkTimeUnit: string | number | null;
725
- availableSlots: {
726
- priority: "high" | "medium" | "low";
727
- slot: string;
728
- maxCapacity: number;
729
- currentBooked: number;
730
- isAvailable: boolean;
731
- }[];
732
- benefits: {
733
- memo: string | null;
734
- insurance: string | null;
735
- accommodation: string | null;
736
- catering: string | null;
737
- moreWelfares: string[] | null;
738
- promotion: string | null;
739
- };
740
- brandId?: string | undefined;
741
- brandName?: string | undefined;
742
- projectId?: string | undefined;
743
- projectName?: string | undefined;
744
- attendanceRequirement?: {
745
- description: string | null;
746
- minimumDays: number | null;
747
- requiredDays?: number[] | undefined;
748
- } | undefined;
749
- hiringRequirements?: {
750
- minAge?: number | null | undefined;
751
- maxAge?: number | null | undefined;
752
- genderRequirement?: string | null | undefined;
753
- education?: string | null | undefined;
754
- healthCertificate?: string | null | undefined;
755
- languages?: string | null | undefined;
756
- certificatesRaw?: string | null | undefined;
757
- recruitmentRemark?: string | null | undefined;
758
- socialIdentity?: string | null | undefined;
759
- } | undefined;
760
- }[];
761
- city?: string | undefined;
762
- }, {
763
- name: string;
764
- id: string;
765
- brandId: string;
766
- location: string;
767
- district: string | null;
768
- subarea: string | null;
769
- coordinates: {
770
- lat: number;
771
- lng: number;
772
- };
773
- positions: {
774
- description: string | null;
775
- name: string;
776
- id: string;
777
- sourceJobName: string;
778
- jobCategory: string | null;
779
- laborForm: string | null;
780
- employmentForm: string | null;
781
- trainingRequired: string | null;
782
- probationRequired: string | null;
783
- salary: {
784
- base: number | null;
785
- unit: string | null;
786
- memo: string | null;
787
- range?: string | undefined;
788
- bonus?: string | undefined;
789
- scenarioSummary?: string | undefined;
790
- settlementCycle?: string | undefined;
791
- };
792
- timeSlots: string[];
793
- workHours: string | null;
794
- minHoursPerWeek: number | null;
795
- maxHoursPerWeek: number | null;
796
- perMonthMinWorkTime: number | null;
797
- perMonthMinWorkTimeUnit: string | number | null;
798
- availableSlots: {
799
- priority: "high" | "medium" | "low";
800
- slot: string;
801
- maxCapacity: number;
802
- currentBooked: number;
803
- isAvailable: boolean;
804
- }[];
805
- benefits: {
806
- memo: string | null;
807
- insurance: string | null;
808
- accommodation: string | null;
809
- catering: string | null;
810
- moreWelfares: string[] | null;
811
- promotion: string | null;
812
- };
813
- brandId?: string | undefined;
814
- brandName?: string | undefined;
815
- projectId?: string | undefined;
816
- projectName?: string | undefined;
817
- attendanceRequirement?: {
818
- description: string | null;
819
- minimumDays: number | null;
820
- requiredDays?: number[] | undefined;
821
- } | undefined;
822
- hiringRequirements?: {
823
- minAge?: number | null | undefined;
824
- maxAge?: number | null | undefined;
825
- genderRequirement?: string | null | undefined;
826
- education?: string | null | undefined;
827
- healthCertificate?: string | null | undefined;
828
- languages?: string | null | undefined;
829
- certificatesRaw?: string | null | undefined;
830
- recruitmentRemark?: string | null | undefined;
831
- socialIdentity?: string | null | undefined;
832
- } | undefined;
833
- }[];
834
- city?: string | undefined;
835
- }>;
836
- export declare const BrandDatasetMetaSchema: z.ZodObject<{
837
- defaultBrandId: z.ZodOptional<z.ZodString>;
838
- syncedAt: z.ZodOptional<z.ZodString>;
839
- source: z.ZodOptional<z.ZodString>;
840
- }, "strip", z.ZodTypeAny, {
841
- defaultBrandId?: string | undefined;
842
- syncedAt?: string | undefined;
843
- source?: string | undefined;
844
- }, {
845
- defaultBrandId?: string | undefined;
846
- syncedAt?: string | undefined;
847
- source?: string | undefined;
848
- }>;
849
- export declare const BrandSchema: z.ZodObject<{
850
- id: z.ZodString;
851
- name: z.ZodString;
852
- aliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
853
- stores: z.ZodArray<z.ZodObject<{
854
- id: z.ZodString;
855
- brandId: z.ZodString;
856
- name: z.ZodString;
857
- city: z.ZodOptional<z.ZodString>;
858
- location: z.ZodString;
859
- district: z.ZodNullable<z.ZodString>;
860
- subarea: z.ZodNullable<z.ZodString>;
861
- coordinates: z.ZodObject<{
862
- lat: z.ZodNumber;
863
- lng: z.ZodNumber;
864
- }, "strip", z.ZodTypeAny, {
865
- lat: number;
866
- lng: number;
867
- }, {
868
- lat: number;
869
- lng: number;
870
- }>;
871
- positions: z.ZodArray<z.ZodObject<{
872
- id: z.ZodString;
873
- name: z.ZodString;
874
- sourceJobName: z.ZodString;
875
- jobCategory: z.ZodNullable<z.ZodString>;
876
- brandId: z.ZodOptional<z.ZodString>;
877
- brandName: z.ZodOptional<z.ZodString>;
878
- projectId: z.ZodOptional<z.ZodString>;
879
- projectName: z.ZodOptional<z.ZodString>;
880
- description: z.ZodNullable<z.ZodString>;
881
- laborForm: z.ZodNullable<z.ZodString>;
882
- employmentForm: z.ZodNullable<z.ZodString>;
883
- trainingRequired: z.ZodNullable<z.ZodString>;
884
- probationRequired: z.ZodNullable<z.ZodString>;
885
- salary: z.ZodObject<{
886
- base: z.ZodNullable<z.ZodNumber>;
887
- unit: z.ZodNullable<z.ZodString>;
888
- range: z.ZodOptional<z.ZodString>;
889
- bonus: z.ZodOptional<z.ZodString>;
890
- memo: z.ZodNullable<z.ZodString>;
891
- scenarioSummary: z.ZodOptional<z.ZodString>;
892
- settlementCycle: z.ZodOptional<z.ZodString>;
893
- }, "strip", z.ZodTypeAny, {
894
- base: number | null;
895
- unit: string | null;
896
- memo: string | null;
897
- range?: string | undefined;
898
- bonus?: string | undefined;
899
- scenarioSummary?: string | undefined;
900
- settlementCycle?: string | undefined;
901
- }, {
902
- base: number | null;
903
- unit: string | null;
904
- memo: string | null;
905
- range?: string | undefined;
906
- bonus?: string | undefined;
907
- scenarioSummary?: string | undefined;
908
- settlementCycle?: string | undefined;
909
- }>;
910
- timeSlots: z.ZodArray<z.ZodString, "many">;
911
- workHours: z.ZodNullable<z.ZodString>;
912
- minHoursPerWeek: z.ZodNullable<z.ZodNumber>;
913
- maxHoursPerWeek: z.ZodNullable<z.ZodNumber>;
914
- perMonthMinWorkTime: z.ZodNullable<z.ZodNumber>;
915
- perMonthMinWorkTimeUnit: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
916
- attendanceRequirement: z.ZodOptional<z.ZodObject<{
917
- requiredDays: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
918
- minimumDays: z.ZodNullable<z.ZodNumber>;
919
- description: z.ZodNullable<z.ZodString>;
920
- }, "strip", z.ZodTypeAny, {
921
- description: string | null;
922
- minimumDays: number | null;
923
- requiredDays?: number[] | undefined;
924
- }, {
925
- description: string | null;
926
- minimumDays: number | null;
927
- requiredDays?: number[] | undefined;
928
- }>>;
929
- availableSlots: z.ZodArray<z.ZodObject<{
930
- slot: z.ZodString;
931
- maxCapacity: z.ZodNumber;
932
- currentBooked: z.ZodNumber;
933
- isAvailable: z.ZodBoolean;
934
- priority: z.ZodEnum<["high", "medium", "low"]>;
935
- }, "strip", z.ZodTypeAny, {
936
- priority: "high" | "medium" | "low";
937
- slot: string;
938
- maxCapacity: number;
939
- currentBooked: number;
940
- isAvailable: boolean;
941
- }, {
942
- priority: "high" | "medium" | "low";
943
- slot: string;
944
- maxCapacity: number;
945
- currentBooked: number;
946
- isAvailable: boolean;
947
- }>, "many">;
948
- benefits: z.ZodObject<{
949
- insurance: z.ZodNullable<z.ZodString>;
950
- accommodation: z.ZodNullable<z.ZodString>;
951
- catering: z.ZodNullable<z.ZodString>;
952
- moreWelfares: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
953
- memo: z.ZodNullable<z.ZodString>;
954
- promotion: z.ZodNullable<z.ZodString>;
955
- }, "strip", z.ZodTypeAny, {
956
- memo: string | null;
957
- insurance: string | null;
958
- accommodation: string | null;
959
- catering: string | null;
960
- moreWelfares: string[] | null;
961
- promotion: string | null;
962
- }, {
963
- memo: string | null;
964
- insurance: string | null;
965
- accommodation: string | null;
966
- catering: string | null;
967
- moreWelfares: string[] | null;
968
- promotion: string | null;
969
- }>;
970
- hiringRequirements: z.ZodOptional<z.ZodObject<{
971
- minAge: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
972
- maxAge: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
973
- genderRequirement: z.ZodOptional<z.ZodNullable<z.ZodString>>;
974
- education: z.ZodOptional<z.ZodNullable<z.ZodString>>;
975
- healthCertificate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
976
- languages: z.ZodOptional<z.ZodNullable<z.ZodString>>;
977
- certificatesRaw: z.ZodOptional<z.ZodNullable<z.ZodString>>;
978
- recruitmentRemark: z.ZodOptional<z.ZodNullable<z.ZodString>>;
979
- socialIdentity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
980
- }, "strip", z.ZodTypeAny, {
981
- minAge?: number | null | undefined;
982
- maxAge?: number | null | undefined;
983
- genderRequirement?: string | null | undefined;
984
- education?: string | null | undefined;
985
- healthCertificate?: string | null | undefined;
986
- languages?: string | null | undefined;
987
- certificatesRaw?: string | null | undefined;
988
- recruitmentRemark?: string | null | undefined;
989
- socialIdentity?: string | null | undefined;
990
- }, {
991
- minAge?: number | null | undefined;
992
- maxAge?: number | null | undefined;
993
- genderRequirement?: string | null | undefined;
994
- education?: string | null | undefined;
995
- healthCertificate?: string | null | undefined;
996
- languages?: string | null | undefined;
997
- certificatesRaw?: string | null | undefined;
998
- recruitmentRemark?: string | null | undefined;
999
- socialIdentity?: string | null | undefined;
1000
- }>>;
1001
- }, "strip", z.ZodTypeAny, {
1002
- description: string | null;
1003
- name: string;
1004
- id: string;
1005
- sourceJobName: string;
1006
- jobCategory: string | null;
1007
- laborForm: string | null;
1008
- employmentForm: string | null;
1009
- trainingRequired: string | null;
1010
- probationRequired: string | null;
1011
- salary: {
1012
- base: number | null;
1013
- unit: string | null;
1014
- memo: string | null;
1015
- range?: string | undefined;
1016
- bonus?: string | undefined;
1017
- scenarioSummary?: string | undefined;
1018
- settlementCycle?: string | undefined;
1019
- };
1020
- timeSlots: string[];
1021
- workHours: string | null;
1022
- minHoursPerWeek: number | null;
1023
- maxHoursPerWeek: number | null;
1024
- perMonthMinWorkTime: number | null;
1025
- perMonthMinWorkTimeUnit: string | number | null;
1026
- availableSlots: {
1027
- priority: "high" | "medium" | "low";
1028
- slot: string;
1029
- maxCapacity: number;
1030
- currentBooked: number;
1031
- isAvailable: boolean;
1032
- }[];
1033
- benefits: {
1034
- memo: string | null;
1035
- insurance: string | null;
1036
- accommodation: string | null;
1037
- catering: string | null;
1038
- moreWelfares: string[] | null;
1039
- promotion: string | null;
1040
- };
1041
- brandId?: string | undefined;
1042
- brandName?: string | undefined;
1043
- projectId?: string | undefined;
1044
- projectName?: string | undefined;
1045
- attendanceRequirement?: {
1046
- description: string | null;
1047
- minimumDays: number | null;
1048
- requiredDays?: number[] | undefined;
1049
- } | undefined;
1050
- hiringRequirements?: {
1051
- minAge?: number | null | undefined;
1052
- maxAge?: number | null | undefined;
1053
- genderRequirement?: string | null | undefined;
1054
- education?: string | null | undefined;
1055
- healthCertificate?: string | null | undefined;
1056
- languages?: string | null | undefined;
1057
- certificatesRaw?: string | null | undefined;
1058
- recruitmentRemark?: string | null | undefined;
1059
- socialIdentity?: string | null | undefined;
1060
- } | undefined;
1061
- }, {
1062
- description: string | null;
1063
- name: string;
1064
- id: string;
1065
- sourceJobName: string;
1066
- jobCategory: string | null;
1067
- laborForm: string | null;
1068
- employmentForm: string | null;
1069
- trainingRequired: string | null;
1070
- probationRequired: string | null;
1071
- salary: {
1072
- base: number | null;
1073
- unit: string | null;
1074
- memo: string | null;
1075
- range?: string | undefined;
1076
- bonus?: string | undefined;
1077
- scenarioSummary?: string | undefined;
1078
- settlementCycle?: string | undefined;
1079
- };
1080
- timeSlots: string[];
1081
- workHours: string | null;
1082
- minHoursPerWeek: number | null;
1083
- maxHoursPerWeek: number | null;
1084
- perMonthMinWorkTime: number | null;
1085
- perMonthMinWorkTimeUnit: string | number | null;
1086
- availableSlots: {
1087
- priority: "high" | "medium" | "low";
1088
- slot: string;
1089
- maxCapacity: number;
1090
- currentBooked: number;
1091
- isAvailable: boolean;
1092
- }[];
1093
- benefits: {
1094
- memo: string | null;
1095
- insurance: string | null;
1096
- accommodation: string | null;
1097
- catering: string | null;
1098
- moreWelfares: string[] | null;
1099
- promotion: string | null;
1100
- };
1101
- brandId?: string | undefined;
1102
- brandName?: string | undefined;
1103
- projectId?: string | undefined;
1104
- projectName?: string | undefined;
1105
- attendanceRequirement?: {
1106
- description: string | null;
1107
- minimumDays: number | null;
1108
- requiredDays?: number[] | undefined;
1109
- } | undefined;
1110
- hiringRequirements?: {
1111
- minAge?: number | null | undefined;
1112
- maxAge?: number | null | undefined;
1113
- genderRequirement?: string | null | undefined;
1114
- education?: string | null | undefined;
1115
- healthCertificate?: string | null | undefined;
1116
- languages?: string | null | undefined;
1117
- certificatesRaw?: string | null | undefined;
1118
- recruitmentRemark?: string | null | undefined;
1119
- socialIdentity?: string | null | undefined;
1120
- } | undefined;
1121
- }>, "many">;
1122
- }, "strip", z.ZodTypeAny, {
1123
- name: string;
1124
- id: string;
1125
- brandId: string;
1126
- location: string;
1127
- district: string | null;
1128
- subarea: string | null;
1129
- coordinates: {
1130
- lat: number;
1131
- lng: number;
1132
- };
1133
- positions: {
1134
- description: string | null;
1135
- name: string;
1136
- id: string;
1137
- sourceJobName: string;
1138
- jobCategory: string | null;
1139
- laborForm: string | null;
1140
- employmentForm: string | null;
1141
- trainingRequired: string | null;
1142
- probationRequired: string | null;
1143
- salary: {
1144
- base: number | null;
1145
- unit: string | null;
1146
- memo: string | null;
1147
- range?: string | undefined;
1148
- bonus?: string | undefined;
1149
- scenarioSummary?: string | undefined;
1150
- settlementCycle?: string | undefined;
1151
- };
1152
- timeSlots: string[];
1153
- workHours: string | null;
1154
- minHoursPerWeek: number | null;
1155
- maxHoursPerWeek: number | null;
1156
- perMonthMinWorkTime: number | null;
1157
- perMonthMinWorkTimeUnit: string | number | null;
1158
- availableSlots: {
1159
- priority: "high" | "medium" | "low";
1160
- slot: string;
1161
- maxCapacity: number;
1162
- currentBooked: number;
1163
- isAvailable: boolean;
1164
- }[];
1165
- benefits: {
1166
- memo: string | null;
1167
- insurance: string | null;
1168
- accommodation: string | null;
1169
- catering: string | null;
1170
- moreWelfares: string[] | null;
1171
- promotion: string | null;
1172
- };
1173
- brandId?: string | undefined;
1174
- brandName?: string | undefined;
1175
- projectId?: string | undefined;
1176
- projectName?: string | undefined;
1177
- attendanceRequirement?: {
1178
- description: string | null;
1179
- minimumDays: number | null;
1180
- requiredDays?: number[] | undefined;
1181
- } | undefined;
1182
- hiringRequirements?: {
1183
- minAge?: number | null | undefined;
1184
- maxAge?: number | null | undefined;
1185
- genderRequirement?: string | null | undefined;
1186
- education?: string | null | undefined;
1187
- healthCertificate?: string | null | undefined;
1188
- languages?: string | null | undefined;
1189
- certificatesRaw?: string | null | undefined;
1190
- recruitmentRemark?: string | null | undefined;
1191
- socialIdentity?: string | null | undefined;
1192
- } | undefined;
1193
- }[];
1194
- city?: string | undefined;
1195
- }, {
1196
- name: string;
1197
- id: string;
1198
- brandId: string;
1199
- location: string;
1200
- district: string | null;
1201
- subarea: string | null;
1202
- coordinates: {
1203
- lat: number;
1204
- lng: number;
1205
- };
1206
- positions: {
1207
- description: string | null;
1208
- name: string;
1209
- id: string;
1210
- sourceJobName: string;
1211
- jobCategory: string | null;
1212
- laborForm: string | null;
1213
- employmentForm: string | null;
1214
- trainingRequired: string | null;
1215
- probationRequired: string | null;
1216
- salary: {
1217
- base: number | null;
1218
- unit: string | null;
1219
- memo: string | null;
1220
- range?: string | undefined;
1221
- bonus?: string | undefined;
1222
- scenarioSummary?: string | undefined;
1223
- settlementCycle?: string | undefined;
1224
- };
1225
- timeSlots: string[];
1226
- workHours: string | null;
1227
- minHoursPerWeek: number | null;
1228
- maxHoursPerWeek: number | null;
1229
- perMonthMinWorkTime: number | null;
1230
- perMonthMinWorkTimeUnit: string | number | null;
1231
- availableSlots: {
1232
- priority: "high" | "medium" | "low";
1233
- slot: string;
1234
- maxCapacity: number;
1235
- currentBooked: number;
1236
- isAvailable: boolean;
1237
- }[];
1238
- benefits: {
1239
- memo: string | null;
1240
- insurance: string | null;
1241
- accommodation: string | null;
1242
- catering: string | null;
1243
- moreWelfares: string[] | null;
1244
- promotion: string | null;
1245
- };
1246
- brandId?: string | undefined;
1247
- brandName?: string | undefined;
1248
- projectId?: string | undefined;
1249
- projectName?: string | undefined;
1250
- attendanceRequirement?: {
1251
- description: string | null;
1252
- minimumDays: number | null;
1253
- requiredDays?: number[] | undefined;
1254
- } | undefined;
1255
- hiringRequirements?: {
1256
- minAge?: number | null | undefined;
1257
- maxAge?: number | null | undefined;
1258
- genderRequirement?: string | null | undefined;
1259
- education?: string | null | undefined;
1260
- healthCertificate?: string | null | undefined;
1261
- languages?: string | null | undefined;
1262
- certificatesRaw?: string | null | undefined;
1263
- recruitmentRemark?: string | null | undefined;
1264
- socialIdentity?: string | null | undefined;
1265
- } | undefined;
1266
- }[];
1267
- city?: string | undefined;
1268
- }>, "many">;
1269
- }, "strip", z.ZodTypeAny, {
1270
- name: string;
1271
- id: string;
1272
- stores: {
1273
- name: string;
1274
- id: string;
1275
- brandId: string;
1276
- location: string;
1277
- district: string | null;
1278
- subarea: string | null;
1279
- coordinates: {
1280
- lat: number;
1281
- lng: number;
1282
- };
1283
- positions: {
1284
- description: string | null;
1285
- name: string;
1286
- id: string;
1287
- sourceJobName: string;
1288
- jobCategory: string | null;
1289
- laborForm: string | null;
1290
- employmentForm: string | null;
1291
- trainingRequired: string | null;
1292
- probationRequired: string | null;
1293
- salary: {
1294
- base: number | null;
1295
- unit: string | null;
1296
- memo: string | null;
1297
- range?: string | undefined;
1298
- bonus?: string | undefined;
1299
- scenarioSummary?: string | undefined;
1300
- settlementCycle?: string | undefined;
1301
- };
1302
- timeSlots: string[];
1303
- workHours: string | null;
1304
- minHoursPerWeek: number | null;
1305
- maxHoursPerWeek: number | null;
1306
- perMonthMinWorkTime: number | null;
1307
- perMonthMinWorkTimeUnit: string | number | null;
1308
- availableSlots: {
1309
- priority: "high" | "medium" | "low";
1310
- slot: string;
1311
- maxCapacity: number;
1312
- currentBooked: number;
1313
- isAvailable: boolean;
1314
- }[];
1315
- benefits: {
1316
- memo: string | null;
1317
- insurance: string | null;
1318
- accommodation: string | null;
1319
- catering: string | null;
1320
- moreWelfares: string[] | null;
1321
- promotion: string | null;
1322
- };
1323
- brandId?: string | undefined;
1324
- brandName?: string | undefined;
1325
- projectId?: string | undefined;
1326
- projectName?: string | undefined;
1327
- attendanceRequirement?: {
1328
- description: string | null;
1329
- minimumDays: number | null;
1330
- requiredDays?: number[] | undefined;
1331
- } | undefined;
1332
- hiringRequirements?: {
1333
- minAge?: number | null | undefined;
1334
- maxAge?: number | null | undefined;
1335
- genderRequirement?: string | null | undefined;
1336
- education?: string | null | undefined;
1337
- healthCertificate?: string | null | undefined;
1338
- languages?: string | null | undefined;
1339
- certificatesRaw?: string | null | undefined;
1340
- recruitmentRemark?: string | null | undefined;
1341
- socialIdentity?: string | null | undefined;
1342
- } | undefined;
1343
- }[];
1344
- city?: string | undefined;
1345
- }[];
1346
- aliases?: string[] | undefined;
1347
- }, {
1348
- name: string;
1349
- id: string;
1350
- stores: {
1351
- name: string;
1352
- id: string;
1353
- brandId: string;
1354
- location: string;
1355
- district: string | null;
1356
- subarea: string | null;
1357
- coordinates: {
1358
- lat: number;
1359
- lng: number;
1360
- };
1361
- positions: {
1362
- description: string | null;
1363
- name: string;
1364
- id: string;
1365
- sourceJobName: string;
1366
- jobCategory: string | null;
1367
- laborForm: string | null;
1368
- employmentForm: string | null;
1369
- trainingRequired: string | null;
1370
- probationRequired: string | null;
1371
- salary: {
1372
- base: number | null;
1373
- unit: string | null;
1374
- memo: string | null;
1375
- range?: string | undefined;
1376
- bonus?: string | undefined;
1377
- scenarioSummary?: string | undefined;
1378
- settlementCycle?: string | undefined;
1379
- };
1380
- timeSlots: string[];
1381
- workHours: string | null;
1382
- minHoursPerWeek: number | null;
1383
- maxHoursPerWeek: number | null;
1384
- perMonthMinWorkTime: number | null;
1385
- perMonthMinWorkTimeUnit: string | number | null;
1386
- availableSlots: {
1387
- priority: "high" | "medium" | "low";
1388
- slot: string;
1389
- maxCapacity: number;
1390
- currentBooked: number;
1391
- isAvailable: boolean;
1392
- }[];
1393
- benefits: {
1394
- memo: string | null;
1395
- insurance: string | null;
1396
- accommodation: string | null;
1397
- catering: string | null;
1398
- moreWelfares: string[] | null;
1399
- promotion: string | null;
1400
- };
1401
- brandId?: string | undefined;
1402
- brandName?: string | undefined;
1403
- projectId?: string | undefined;
1404
- projectName?: string | undefined;
1405
- attendanceRequirement?: {
1406
- description: string | null;
1407
- minimumDays: number | null;
1408
- requiredDays?: number[] | undefined;
1409
- } | undefined;
1410
- hiringRequirements?: {
1411
- minAge?: number | null | undefined;
1412
- maxAge?: number | null | undefined;
1413
- genderRequirement?: string | null | undefined;
1414
- education?: string | null | undefined;
1415
- healthCertificate?: string | null | undefined;
1416
- languages?: string | null | undefined;
1417
- certificatesRaw?: string | null | undefined;
1418
- recruitmentRemark?: string | null | undefined;
1419
- socialIdentity?: string | null | undefined;
1420
- } | undefined;
1421
- }[];
1422
- city?: string | undefined;
1423
- }[];
1424
- aliases?: string[] | undefined;
1425
- }>;
1426
- export declare const ZhipinDataSchema: z.ZodObject<{
1427
- meta: z.ZodObject<{
1428
- defaultBrandId: z.ZodOptional<z.ZodString>;
1429
- syncedAt: z.ZodOptional<z.ZodString>;
1430
- source: z.ZodOptional<z.ZodString>;
1431
- }, "strip", z.ZodTypeAny, {
1432
- defaultBrandId?: string | undefined;
1433
- syncedAt?: string | undefined;
1434
- source?: string | undefined;
1435
- }, {
1436
- defaultBrandId?: string | undefined;
1437
- syncedAt?: string | undefined;
1438
- source?: string | undefined;
1439
- }>;
1440
- brands: z.ZodArray<z.ZodObject<{
1441
- id: z.ZodString;
1442
- name: z.ZodString;
1443
- aliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1444
- stores: z.ZodArray<z.ZodObject<{
1445
- id: z.ZodString;
1446
- brandId: z.ZodString;
1447
- name: z.ZodString;
1448
- city: z.ZodOptional<z.ZodString>;
1449
- location: z.ZodString;
1450
- district: z.ZodNullable<z.ZodString>;
1451
- subarea: z.ZodNullable<z.ZodString>;
1452
- coordinates: z.ZodObject<{
1453
- lat: z.ZodNumber;
1454
- lng: z.ZodNumber;
1455
- }, "strip", z.ZodTypeAny, {
1456
- lat: number;
1457
- lng: number;
1458
- }, {
1459
- lat: number;
1460
- lng: number;
1461
- }>;
1462
- positions: z.ZodArray<z.ZodObject<{
1463
- id: z.ZodString;
1464
- name: z.ZodString;
1465
- sourceJobName: z.ZodString;
1466
- jobCategory: z.ZodNullable<z.ZodString>;
1467
- brandId: z.ZodOptional<z.ZodString>;
1468
- brandName: z.ZodOptional<z.ZodString>;
1469
- projectId: z.ZodOptional<z.ZodString>;
1470
- projectName: z.ZodOptional<z.ZodString>;
1471
- description: z.ZodNullable<z.ZodString>;
1472
- laborForm: z.ZodNullable<z.ZodString>;
1473
- employmentForm: z.ZodNullable<z.ZodString>;
1474
- trainingRequired: z.ZodNullable<z.ZodString>;
1475
- probationRequired: z.ZodNullable<z.ZodString>;
1476
- salary: z.ZodObject<{
1477
- base: z.ZodNullable<z.ZodNumber>;
1478
- unit: z.ZodNullable<z.ZodString>;
1479
- range: z.ZodOptional<z.ZodString>;
1480
- bonus: z.ZodOptional<z.ZodString>;
1481
- memo: z.ZodNullable<z.ZodString>;
1482
- scenarioSummary: z.ZodOptional<z.ZodString>;
1483
- settlementCycle: z.ZodOptional<z.ZodString>;
1484
- }, "strip", z.ZodTypeAny, {
1485
- base: number | null;
1486
- unit: string | null;
1487
- memo: string | null;
1488
- range?: string | undefined;
1489
- bonus?: string | undefined;
1490
- scenarioSummary?: string | undefined;
1491
- settlementCycle?: string | undefined;
1492
- }, {
1493
- base: number | null;
1494
- unit: string | null;
1495
- memo: string | null;
1496
- range?: string | undefined;
1497
- bonus?: string | undefined;
1498
- scenarioSummary?: string | undefined;
1499
- settlementCycle?: string | undefined;
1500
- }>;
1501
- timeSlots: z.ZodArray<z.ZodString, "many">;
1502
- workHours: z.ZodNullable<z.ZodString>;
1503
- minHoursPerWeek: z.ZodNullable<z.ZodNumber>;
1504
- maxHoursPerWeek: z.ZodNullable<z.ZodNumber>;
1505
- perMonthMinWorkTime: z.ZodNullable<z.ZodNumber>;
1506
- perMonthMinWorkTimeUnit: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
1507
- attendanceRequirement: z.ZodOptional<z.ZodObject<{
1508
- requiredDays: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
1509
- minimumDays: z.ZodNullable<z.ZodNumber>;
1510
- description: z.ZodNullable<z.ZodString>;
1511
- }, "strip", z.ZodTypeAny, {
1512
- description: string | null;
1513
- minimumDays: number | null;
1514
- requiredDays?: number[] | undefined;
1515
- }, {
1516
- description: string | null;
1517
- minimumDays: number | null;
1518
- requiredDays?: number[] | undefined;
1519
- }>>;
1520
- availableSlots: z.ZodArray<z.ZodObject<{
1521
- slot: z.ZodString;
1522
- maxCapacity: z.ZodNumber;
1523
- currentBooked: z.ZodNumber;
1524
- isAvailable: z.ZodBoolean;
1525
- priority: z.ZodEnum<["high", "medium", "low"]>;
1526
- }, "strip", z.ZodTypeAny, {
1527
- priority: "high" | "medium" | "low";
1528
- slot: string;
1529
- maxCapacity: number;
1530
- currentBooked: number;
1531
- isAvailable: boolean;
1532
- }, {
1533
- priority: "high" | "medium" | "low";
1534
- slot: string;
1535
- maxCapacity: number;
1536
- currentBooked: number;
1537
- isAvailable: boolean;
1538
- }>, "many">;
1539
- benefits: z.ZodObject<{
1540
- insurance: z.ZodNullable<z.ZodString>;
1541
- accommodation: z.ZodNullable<z.ZodString>;
1542
- catering: z.ZodNullable<z.ZodString>;
1543
- moreWelfares: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
1544
- memo: z.ZodNullable<z.ZodString>;
1545
- promotion: z.ZodNullable<z.ZodString>;
1546
- }, "strip", z.ZodTypeAny, {
1547
- memo: string | null;
1548
- insurance: string | null;
1549
- accommodation: string | null;
1550
- catering: string | null;
1551
- moreWelfares: string[] | null;
1552
- promotion: string | null;
1553
- }, {
1554
- memo: string | null;
1555
- insurance: string | null;
1556
- accommodation: string | null;
1557
- catering: string | null;
1558
- moreWelfares: string[] | null;
1559
- promotion: string | null;
1560
- }>;
1561
- hiringRequirements: z.ZodOptional<z.ZodObject<{
1562
- minAge: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1563
- maxAge: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1564
- genderRequirement: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1565
- education: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1566
- healthCertificate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1567
- languages: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1568
- certificatesRaw: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1569
- recruitmentRemark: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1570
- socialIdentity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1571
- }, "strip", z.ZodTypeAny, {
1572
- minAge?: number | null | undefined;
1573
- maxAge?: number | null | undefined;
1574
- genderRequirement?: string | null | undefined;
1575
- education?: string | null | undefined;
1576
- healthCertificate?: string | null | undefined;
1577
- languages?: string | null | undefined;
1578
- certificatesRaw?: string | null | undefined;
1579
- recruitmentRemark?: string | null | undefined;
1580
- socialIdentity?: string | null | undefined;
1581
- }, {
1582
- minAge?: number | null | undefined;
1583
- maxAge?: number | null | undefined;
1584
- genderRequirement?: string | null | undefined;
1585
- education?: string | null | undefined;
1586
- healthCertificate?: string | null | undefined;
1587
- languages?: string | null | undefined;
1588
- certificatesRaw?: string | null | undefined;
1589
- recruitmentRemark?: string | null | undefined;
1590
- socialIdentity?: string | null | undefined;
1591
- }>>;
1592
- }, "strip", z.ZodTypeAny, {
1593
- description: string | null;
1594
- name: string;
1595
- id: string;
1596
- sourceJobName: string;
1597
- jobCategory: string | null;
1598
- laborForm: string | null;
1599
- employmentForm: string | null;
1600
- trainingRequired: string | null;
1601
- probationRequired: string | null;
1602
- salary: {
1603
- base: number | null;
1604
- unit: string | null;
1605
- memo: string | null;
1606
- range?: string | undefined;
1607
- bonus?: string | undefined;
1608
- scenarioSummary?: string | undefined;
1609
- settlementCycle?: string | undefined;
1610
- };
1611
- timeSlots: string[];
1612
- workHours: string | null;
1613
- minHoursPerWeek: number | null;
1614
- maxHoursPerWeek: number | null;
1615
- perMonthMinWorkTime: number | null;
1616
- perMonthMinWorkTimeUnit: string | number | null;
1617
- availableSlots: {
1618
- priority: "high" | "medium" | "low";
1619
- slot: string;
1620
- maxCapacity: number;
1621
- currentBooked: number;
1622
- isAvailable: boolean;
1623
- }[];
1624
- benefits: {
1625
- memo: string | null;
1626
- insurance: string | null;
1627
- accommodation: string | null;
1628
- catering: string | null;
1629
- moreWelfares: string[] | null;
1630
- promotion: string | null;
1631
- };
1632
- brandId?: string | undefined;
1633
- brandName?: string | undefined;
1634
- projectId?: string | undefined;
1635
- projectName?: string | undefined;
1636
- attendanceRequirement?: {
1637
- description: string | null;
1638
- minimumDays: number | null;
1639
- requiredDays?: number[] | undefined;
1640
- } | undefined;
1641
- hiringRequirements?: {
1642
- minAge?: number | null | undefined;
1643
- maxAge?: number | null | undefined;
1644
- genderRequirement?: string | null | undefined;
1645
- education?: string | null | undefined;
1646
- healthCertificate?: string | null | undefined;
1647
- languages?: string | null | undefined;
1648
- certificatesRaw?: string | null | undefined;
1649
- recruitmentRemark?: string | null | undefined;
1650
- socialIdentity?: string | null | undefined;
1651
- } | undefined;
1652
- }, {
1653
- description: string | null;
1654
- name: string;
1655
- id: string;
1656
- sourceJobName: string;
1657
- jobCategory: string | null;
1658
- laborForm: string | null;
1659
- employmentForm: string | null;
1660
- trainingRequired: string | null;
1661
- probationRequired: string | null;
1662
- salary: {
1663
- base: number | null;
1664
- unit: string | null;
1665
- memo: string | null;
1666
- range?: string | undefined;
1667
- bonus?: string | undefined;
1668
- scenarioSummary?: string | undefined;
1669
- settlementCycle?: string | undefined;
1670
- };
1671
- timeSlots: string[];
1672
- workHours: string | null;
1673
- minHoursPerWeek: number | null;
1674
- maxHoursPerWeek: number | null;
1675
- perMonthMinWorkTime: number | null;
1676
- perMonthMinWorkTimeUnit: string | number | null;
1677
- availableSlots: {
1678
- priority: "high" | "medium" | "low";
1679
- slot: string;
1680
- maxCapacity: number;
1681
- currentBooked: number;
1682
- isAvailable: boolean;
1683
- }[];
1684
- benefits: {
1685
- memo: string | null;
1686
- insurance: string | null;
1687
- accommodation: string | null;
1688
- catering: string | null;
1689
- moreWelfares: string[] | null;
1690
- promotion: string | null;
1691
- };
1692
- brandId?: string | undefined;
1693
- brandName?: string | undefined;
1694
- projectId?: string | undefined;
1695
- projectName?: string | undefined;
1696
- attendanceRequirement?: {
1697
- description: string | null;
1698
- minimumDays: number | null;
1699
- requiredDays?: number[] | undefined;
1700
- } | undefined;
1701
- hiringRequirements?: {
1702
- minAge?: number | null | undefined;
1703
- maxAge?: number | null | undefined;
1704
- genderRequirement?: string | null | undefined;
1705
- education?: string | null | undefined;
1706
- healthCertificate?: string | null | undefined;
1707
- languages?: string | null | undefined;
1708
- certificatesRaw?: string | null | undefined;
1709
- recruitmentRemark?: string | null | undefined;
1710
- socialIdentity?: string | null | undefined;
1711
- } | undefined;
1712
- }>, "many">;
1713
- }, "strip", z.ZodTypeAny, {
1714
- name: string;
1715
- id: string;
1716
- brandId: string;
1717
- location: string;
1718
- district: string | null;
1719
- subarea: string | null;
1720
- coordinates: {
1721
- lat: number;
1722
- lng: number;
1723
- };
1724
- positions: {
1725
- description: string | null;
1726
- name: string;
1727
- id: string;
1728
- sourceJobName: string;
1729
- jobCategory: string | null;
1730
- laborForm: string | null;
1731
- employmentForm: string | null;
1732
- trainingRequired: string | null;
1733
- probationRequired: string | null;
1734
- salary: {
1735
- base: number | null;
1736
- unit: string | null;
1737
- memo: string | null;
1738
- range?: string | undefined;
1739
- bonus?: string | undefined;
1740
- scenarioSummary?: string | undefined;
1741
- settlementCycle?: string | undefined;
1742
- };
1743
- timeSlots: string[];
1744
- workHours: string | null;
1745
- minHoursPerWeek: number | null;
1746
- maxHoursPerWeek: number | null;
1747
- perMonthMinWorkTime: number | null;
1748
- perMonthMinWorkTimeUnit: string | number | null;
1749
- availableSlots: {
1750
- priority: "high" | "medium" | "low";
1751
- slot: string;
1752
- maxCapacity: number;
1753
- currentBooked: number;
1754
- isAvailable: boolean;
1755
- }[];
1756
- benefits: {
1757
- memo: string | null;
1758
- insurance: string | null;
1759
- accommodation: string | null;
1760
- catering: string | null;
1761
- moreWelfares: string[] | null;
1762
- promotion: string | null;
1763
- };
1764
- brandId?: string | undefined;
1765
- brandName?: string | undefined;
1766
- projectId?: string | undefined;
1767
- projectName?: string | undefined;
1768
- attendanceRequirement?: {
1769
- description: string | null;
1770
- minimumDays: number | null;
1771
- requiredDays?: number[] | undefined;
1772
- } | undefined;
1773
- hiringRequirements?: {
1774
- minAge?: number | null | undefined;
1775
- maxAge?: number | null | undefined;
1776
- genderRequirement?: string | null | undefined;
1777
- education?: string | null | undefined;
1778
- healthCertificate?: string | null | undefined;
1779
- languages?: string | null | undefined;
1780
- certificatesRaw?: string | null | undefined;
1781
- recruitmentRemark?: string | null | undefined;
1782
- socialIdentity?: string | null | undefined;
1783
- } | undefined;
1784
- }[];
1785
- city?: string | undefined;
1786
- }, {
1787
- name: string;
1788
- id: string;
1789
- brandId: string;
1790
- location: string;
1791
- district: string | null;
1792
- subarea: string | null;
1793
- coordinates: {
1794
- lat: number;
1795
- lng: number;
1796
- };
1797
- positions: {
1798
- description: string | null;
1799
- name: string;
1800
- id: string;
1801
- sourceJobName: string;
1802
- jobCategory: string | null;
1803
- laborForm: string | null;
1804
- employmentForm: string | null;
1805
- trainingRequired: string | null;
1806
- probationRequired: string | null;
1807
- salary: {
1808
- base: number | null;
1809
- unit: string | null;
1810
- memo: string | null;
1811
- range?: string | undefined;
1812
- bonus?: string | undefined;
1813
- scenarioSummary?: string | undefined;
1814
- settlementCycle?: string | undefined;
1815
- };
1816
- timeSlots: string[];
1817
- workHours: string | null;
1818
- minHoursPerWeek: number | null;
1819
- maxHoursPerWeek: number | null;
1820
- perMonthMinWorkTime: number | null;
1821
- perMonthMinWorkTimeUnit: string | number | null;
1822
- availableSlots: {
1823
- priority: "high" | "medium" | "low";
1824
- slot: string;
1825
- maxCapacity: number;
1826
- currentBooked: number;
1827
- isAvailable: boolean;
1828
- }[];
1829
- benefits: {
1830
- memo: string | null;
1831
- insurance: string | null;
1832
- accommodation: string | null;
1833
- catering: string | null;
1834
- moreWelfares: string[] | null;
1835
- promotion: string | null;
1836
- };
1837
- brandId?: string | undefined;
1838
- brandName?: string | undefined;
1839
- projectId?: string | undefined;
1840
- projectName?: string | undefined;
1841
- attendanceRequirement?: {
1842
- description: string | null;
1843
- minimumDays: number | null;
1844
- requiredDays?: number[] | undefined;
1845
- } | undefined;
1846
- hiringRequirements?: {
1847
- minAge?: number | null | undefined;
1848
- maxAge?: number | null | undefined;
1849
- genderRequirement?: string | null | undefined;
1850
- education?: string | null | undefined;
1851
- healthCertificate?: string | null | undefined;
1852
- languages?: string | null | undefined;
1853
- certificatesRaw?: string | null | undefined;
1854
- recruitmentRemark?: string | null | undefined;
1855
- socialIdentity?: string | null | undefined;
1856
- } | undefined;
1857
- }[];
1858
- city?: string | undefined;
1859
- }>, "many">;
1860
- }, "strip", z.ZodTypeAny, {
1861
- name: string;
1862
- id: string;
1863
- stores: {
1864
- name: string;
1865
- id: string;
1866
- brandId: string;
1867
- location: string;
1868
- district: string | null;
1869
- subarea: string | null;
1870
- coordinates: {
1871
- lat: number;
1872
- lng: number;
1873
- };
1874
- positions: {
1875
- description: string | null;
1876
- name: string;
1877
- id: string;
1878
- sourceJobName: string;
1879
- jobCategory: string | null;
1880
- laborForm: string | null;
1881
- employmentForm: string | null;
1882
- trainingRequired: string | null;
1883
- probationRequired: string | null;
1884
- salary: {
1885
- base: number | null;
1886
- unit: string | null;
1887
- memo: string | null;
1888
- range?: string | undefined;
1889
- bonus?: string | undefined;
1890
- scenarioSummary?: string | undefined;
1891
- settlementCycle?: string | undefined;
1892
- };
1893
- timeSlots: string[];
1894
- workHours: string | null;
1895
- minHoursPerWeek: number | null;
1896
- maxHoursPerWeek: number | null;
1897
- perMonthMinWorkTime: number | null;
1898
- perMonthMinWorkTimeUnit: string | number | null;
1899
- availableSlots: {
1900
- priority: "high" | "medium" | "low";
1901
- slot: string;
1902
- maxCapacity: number;
1903
- currentBooked: number;
1904
- isAvailable: boolean;
1905
- }[];
1906
- benefits: {
1907
- memo: string | null;
1908
- insurance: string | null;
1909
- accommodation: string | null;
1910
- catering: string | null;
1911
- moreWelfares: string[] | null;
1912
- promotion: string | null;
1913
- };
1914
- brandId?: string | undefined;
1915
- brandName?: string | undefined;
1916
- projectId?: string | undefined;
1917
- projectName?: string | undefined;
1918
- attendanceRequirement?: {
1919
- description: string | null;
1920
- minimumDays: number | null;
1921
- requiredDays?: number[] | undefined;
1922
- } | undefined;
1923
- hiringRequirements?: {
1924
- minAge?: number | null | undefined;
1925
- maxAge?: number | null | undefined;
1926
- genderRequirement?: string | null | undefined;
1927
- education?: string | null | undefined;
1928
- healthCertificate?: string | null | undefined;
1929
- languages?: string | null | undefined;
1930
- certificatesRaw?: string | null | undefined;
1931
- recruitmentRemark?: string | null | undefined;
1932
- socialIdentity?: string | null | undefined;
1933
- } | undefined;
1934
- }[];
1935
- city?: string | undefined;
1936
- }[];
1937
- aliases?: string[] | undefined;
1938
- }, {
1939
- name: string;
1940
- id: string;
1941
- stores: {
1942
- name: string;
1943
- id: string;
1944
- brandId: string;
1945
- location: string;
1946
- district: string | null;
1947
- subarea: string | null;
1948
- coordinates: {
1949
- lat: number;
1950
- lng: number;
1951
- };
1952
- positions: {
1953
- description: string | null;
1954
- name: string;
1955
- id: string;
1956
- sourceJobName: string;
1957
- jobCategory: string | null;
1958
- laborForm: string | null;
1959
- employmentForm: string | null;
1960
- trainingRequired: string | null;
1961
- probationRequired: string | null;
1962
- salary: {
1963
- base: number | null;
1964
- unit: string | null;
1965
- memo: string | null;
1966
- range?: string | undefined;
1967
- bonus?: string | undefined;
1968
- scenarioSummary?: string | undefined;
1969
- settlementCycle?: string | undefined;
1970
- };
1971
- timeSlots: string[];
1972
- workHours: string | null;
1973
- minHoursPerWeek: number | null;
1974
- maxHoursPerWeek: number | null;
1975
- perMonthMinWorkTime: number | null;
1976
- perMonthMinWorkTimeUnit: string | number | null;
1977
- availableSlots: {
1978
- priority: "high" | "medium" | "low";
1979
- slot: string;
1980
- maxCapacity: number;
1981
- currentBooked: number;
1982
- isAvailable: boolean;
1983
- }[];
1984
- benefits: {
1985
- memo: string | null;
1986
- insurance: string | null;
1987
- accommodation: string | null;
1988
- catering: string | null;
1989
- moreWelfares: string[] | null;
1990
- promotion: string | null;
1991
- };
1992
- brandId?: string | undefined;
1993
- brandName?: string | undefined;
1994
- projectId?: string | undefined;
1995
- projectName?: string | undefined;
1996
- attendanceRequirement?: {
1997
- description: string | null;
1998
- minimumDays: number | null;
1999
- requiredDays?: number[] | undefined;
2000
- } | undefined;
2001
- hiringRequirements?: {
2002
- minAge?: number | null | undefined;
2003
- maxAge?: number | null | undefined;
2004
- genderRequirement?: string | null | undefined;
2005
- education?: string | null | undefined;
2006
- healthCertificate?: string | null | undefined;
2007
- languages?: string | null | undefined;
2008
- certificatesRaw?: string | null | undefined;
2009
- recruitmentRemark?: string | null | undefined;
2010
- socialIdentity?: string | null | undefined;
2011
- } | undefined;
2012
- }[];
2013
- city?: string | undefined;
2014
- }[];
2015
- aliases?: string[] | undefined;
2016
- }>, "many">;
2017
- }, "strip", z.ZodTypeAny, {
2018
- meta: {
2019
- defaultBrandId?: string | undefined;
2020
- syncedAt?: string | undefined;
2021
- source?: string | undefined;
2022
- };
2023
- brands: {
2024
- name: string;
2025
- id: string;
2026
- stores: {
2027
- name: string;
2028
- id: string;
2029
- brandId: string;
2030
- location: string;
2031
- district: string | null;
2032
- subarea: string | null;
2033
- coordinates: {
2034
- lat: number;
2035
- lng: number;
2036
- };
2037
- positions: {
2038
- description: string | null;
2039
- name: string;
2040
- id: string;
2041
- sourceJobName: string;
2042
- jobCategory: string | null;
2043
- laborForm: string | null;
2044
- employmentForm: string | null;
2045
- trainingRequired: string | null;
2046
- probationRequired: string | null;
2047
- salary: {
2048
- base: number | null;
2049
- unit: string | null;
2050
- memo: string | null;
2051
- range?: string | undefined;
2052
- bonus?: string | undefined;
2053
- scenarioSummary?: string | undefined;
2054
- settlementCycle?: string | undefined;
2055
- };
2056
- timeSlots: string[];
2057
- workHours: string | null;
2058
- minHoursPerWeek: number | null;
2059
- maxHoursPerWeek: number | null;
2060
- perMonthMinWorkTime: number | null;
2061
- perMonthMinWorkTimeUnit: string | number | null;
2062
- availableSlots: {
2063
- priority: "high" | "medium" | "low";
2064
- slot: string;
2065
- maxCapacity: number;
2066
- currentBooked: number;
2067
- isAvailable: boolean;
2068
- }[];
2069
- benefits: {
2070
- memo: string | null;
2071
- insurance: string | null;
2072
- accommodation: string | null;
2073
- catering: string | null;
2074
- moreWelfares: string[] | null;
2075
- promotion: string | null;
2076
- };
2077
- brandId?: string | undefined;
2078
- brandName?: string | undefined;
2079
- projectId?: string | undefined;
2080
- projectName?: string | undefined;
2081
- attendanceRequirement?: {
2082
- description: string | null;
2083
- minimumDays: number | null;
2084
- requiredDays?: number[] | undefined;
2085
- } | undefined;
2086
- hiringRequirements?: {
2087
- minAge?: number | null | undefined;
2088
- maxAge?: number | null | undefined;
2089
- genderRequirement?: string | null | undefined;
2090
- education?: string | null | undefined;
2091
- healthCertificate?: string | null | undefined;
2092
- languages?: string | null | undefined;
2093
- certificatesRaw?: string | null | undefined;
2094
- recruitmentRemark?: string | null | undefined;
2095
- socialIdentity?: string | null | undefined;
2096
- } | undefined;
2097
- }[];
2098
- city?: string | undefined;
2099
- }[];
2100
- aliases?: string[] | undefined;
2101
- }[];
2102
- }, {
2103
- meta: {
2104
- defaultBrandId?: string | undefined;
2105
- syncedAt?: string | undefined;
2106
- source?: string | undefined;
2107
- };
2108
- brands: {
2109
- name: string;
2110
- id: string;
2111
- stores: {
2112
- name: string;
2113
- id: string;
2114
- brandId: string;
2115
- location: string;
2116
- district: string | null;
2117
- subarea: string | null;
2118
- coordinates: {
2119
- lat: number;
2120
- lng: number;
2121
- };
2122
- positions: {
2123
- description: string | null;
2124
- name: string;
2125
- id: string;
2126
- sourceJobName: string;
2127
- jobCategory: string | null;
2128
- laborForm: string | null;
2129
- employmentForm: string | null;
2130
- trainingRequired: string | null;
2131
- probationRequired: string | null;
2132
- salary: {
2133
- base: number | null;
2134
- unit: string | null;
2135
- memo: string | null;
2136
- range?: string | undefined;
2137
- bonus?: string | undefined;
2138
- scenarioSummary?: string | undefined;
2139
- settlementCycle?: string | undefined;
2140
- };
2141
- timeSlots: string[];
2142
- workHours: string | null;
2143
- minHoursPerWeek: number | null;
2144
- maxHoursPerWeek: number | null;
2145
- perMonthMinWorkTime: number | null;
2146
- perMonthMinWorkTimeUnit: string | number | null;
2147
- availableSlots: {
2148
- priority: "high" | "medium" | "low";
2149
- slot: string;
2150
- maxCapacity: number;
2151
- currentBooked: number;
2152
- isAvailable: boolean;
2153
- }[];
2154
- benefits: {
2155
- memo: string | null;
2156
- insurance: string | null;
2157
- accommodation: string | null;
2158
- catering: string | null;
2159
- moreWelfares: string[] | null;
2160
- promotion: string | null;
2161
- };
2162
- brandId?: string | undefined;
2163
- brandName?: string | undefined;
2164
- projectId?: string | undefined;
2165
- projectName?: string | undefined;
2166
- attendanceRequirement?: {
2167
- description: string | null;
2168
- minimumDays: number | null;
2169
- requiredDays?: number[] | undefined;
2170
- } | undefined;
2171
- hiringRequirements?: {
2172
- minAge?: number | null | undefined;
2173
- maxAge?: number | null | undefined;
2174
- genderRequirement?: string | null | undefined;
2175
- education?: string | null | undefined;
2176
- healthCertificate?: string | null | undefined;
2177
- languages?: string | null | undefined;
2178
- certificatesRaw?: string | null | undefined;
2179
- recruitmentRemark?: string | null | undefined;
2180
- socialIdentity?: string | null | undefined;
2181
- } | undefined;
2182
- }[];
2183
- city?: string | undefined;
2184
- }[];
2185
- aliases?: string[] | undefined;
2186
- }[];
2187
- }>;
2188
- export type SalaryDetails = z.infer<typeof SalaryDetailsSchema>;
2189
- export type Benefits = z.infer<typeof BenefitsSchema>;
2190
- export type AttendanceRequirement = z.infer<typeof AttendanceRequirementSchema>;
2191
- export type TimeSlotAvailability = z.infer<typeof TimeSlotAvailabilitySchema>;
2192
- export type Position = z.infer<typeof PositionSchema>;
2193
- export type Store = z.infer<typeof StoreSchema>;
2194
- export type BrandDatasetMeta = z.infer<typeof BrandDatasetMetaSchema>;
2195
- export type Brand = z.infer<typeof BrandSchema>;
2196
- export type ZhipinData = z.infer<typeof ZhipinDataSchema>;