wcz-test 7.1.1 → 7.1.3

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