@roll-agent/smart-reply-agent 0.0.2

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