@meerkapp/wms-contracts 0.2.0-beta.2 → 0.2.0-beta.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.
package/dist/index.d.ts CHANGED
@@ -86,6 +86,7 @@ declare const EmployeeFindFirstSelectZodSchema: z.ZodObject<{
86
86
  isActive: z.ZodOptional<z.ZodBoolean>;
87
87
  lastSeen: z.ZodOptional<z.ZodBoolean>;
88
88
  updatedAt: z.ZodOptional<z.ZodBoolean>;
89
+ warehouse: z.ZodOptional<z.ZodBoolean>;
89
90
  roleAssignments: z.ZodOptional<z.ZodBoolean>;
90
91
  _count: z.ZodOptional<z.ZodBoolean>;
91
92
  }, "strict", z.ZodTypeAny, {
@@ -98,6 +99,7 @@ declare const EmployeeFindFirstSelectZodSchema: z.ZodObject<{
98
99
  isActive?: boolean | undefined;
99
100
  lastSeen?: boolean | undefined;
100
101
  updatedAt?: boolean | undefined;
102
+ warehouse?: boolean | undefined;
101
103
  roleAssignments?: boolean | undefined;
102
104
  _count?: boolean | undefined;
103
105
  }, {
@@ -110,6 +112,7 @@ declare const EmployeeFindFirstSelectZodSchema: z.ZodObject<{
110
112
  isActive?: boolean | undefined;
111
113
  lastSeen?: boolean | undefined;
112
114
  updatedAt?: boolean | undefined;
115
+ warehouse?: boolean | undefined;
113
116
  roleAssignments?: boolean | undefined;
114
117
  _count?: boolean | undefined;
115
118
  }>;
@@ -154,6 +157,7 @@ declare const EmployeeFindFirstOrThrowSelectZodSchema: z.ZodObject<{
154
157
  isActive: z.ZodOptional<z.ZodBoolean>;
155
158
  lastSeen: z.ZodOptional<z.ZodBoolean>;
156
159
  updatedAt: z.ZodOptional<z.ZodBoolean>;
160
+ warehouse: z.ZodOptional<z.ZodBoolean>;
157
161
  roleAssignments: z.ZodOptional<z.ZodBoolean>;
158
162
  _count: z.ZodOptional<z.ZodBoolean>;
159
163
  }, "strict", z.ZodTypeAny, {
@@ -166,6 +170,7 @@ declare const EmployeeFindFirstOrThrowSelectZodSchema: z.ZodObject<{
166
170
  isActive?: boolean | undefined;
167
171
  lastSeen?: boolean | undefined;
168
172
  updatedAt?: boolean | undefined;
173
+ warehouse?: boolean | undefined;
169
174
  roleAssignments?: boolean | undefined;
170
175
  _count?: boolean | undefined;
171
176
  }, {
@@ -178,6 +183,7 @@ declare const EmployeeFindFirstOrThrowSelectZodSchema: z.ZodObject<{
178
183
  isActive?: boolean | undefined;
179
184
  lastSeen?: boolean | undefined;
180
185
  updatedAt?: boolean | undefined;
186
+ warehouse?: boolean | undefined;
181
187
  roleAssignments?: boolean | undefined;
182
188
  _count?: boolean | undefined;
183
189
  }>;
@@ -222,6 +228,7 @@ declare const EmployeeFindManySelectZodSchema: z.ZodObject<{
222
228
  isActive: z.ZodOptional<z.ZodBoolean>;
223
229
  lastSeen: z.ZodOptional<z.ZodBoolean>;
224
230
  updatedAt: z.ZodOptional<z.ZodBoolean>;
231
+ warehouse: z.ZodOptional<z.ZodBoolean>;
225
232
  roleAssignments: z.ZodOptional<z.ZodBoolean>;
226
233
  _count: z.ZodOptional<z.ZodBoolean>;
227
234
  }, "strict", z.ZodTypeAny, {
@@ -234,6 +241,7 @@ declare const EmployeeFindManySelectZodSchema: z.ZodObject<{
234
241
  isActive?: boolean | undefined;
235
242
  lastSeen?: boolean | undefined;
236
243
  updatedAt?: boolean | undefined;
244
+ warehouse?: boolean | undefined;
237
245
  roleAssignments?: boolean | undefined;
238
246
  _count?: boolean | undefined;
239
247
  }, {
@@ -246,6 +254,7 @@ declare const EmployeeFindManySelectZodSchema: z.ZodObject<{
246
254
  isActive?: boolean | undefined;
247
255
  lastSeen?: boolean | undefined;
248
256
  updatedAt?: boolean | undefined;
257
+ warehouse?: boolean | undefined;
249
258
  roleAssignments?: boolean | undefined;
250
259
  _count?: boolean | undefined;
251
260
  }>;
@@ -2590,15 +2599,15 @@ declare const CountryFindFirstSelectZodSchema: z.ZodObject<{
2590
2599
  id?: boolean | undefined;
2591
2600
  updatedAt?: boolean | undefined;
2592
2601
  name?: boolean | undefined;
2593
- _count?: boolean | undefined;
2594
2602
  cities?: boolean | undefined;
2603
+ _count?: boolean | undefined;
2595
2604
  }, {
2596
2605
  code?: boolean | undefined;
2597
2606
  id?: boolean | undefined;
2598
2607
  updatedAt?: boolean | undefined;
2599
2608
  name?: boolean | undefined;
2600
- _count?: boolean | undefined;
2601
2609
  cities?: boolean | undefined;
2610
+ _count?: boolean | undefined;
2602
2611
  }>;
2603
2612
  declare const CountryFindFirstSchema: z.ZodType<Prisma.CountryFindFirstArgs>;
2604
2613
  declare const CountryFindFirstZodSchema: z.ZodObject<{
@@ -2643,15 +2652,15 @@ declare const CountryFindFirstOrThrowSelectZodSchema: z.ZodObject<{
2643
2652
  id?: boolean | undefined;
2644
2653
  updatedAt?: boolean | undefined;
2645
2654
  name?: boolean | undefined;
2646
- _count?: boolean | undefined;
2647
2655
  cities?: boolean | undefined;
2656
+ _count?: boolean | undefined;
2648
2657
  }, {
2649
2658
  code?: boolean | undefined;
2650
2659
  id?: boolean | undefined;
2651
2660
  updatedAt?: boolean | undefined;
2652
2661
  name?: boolean | undefined;
2653
- _count?: boolean | undefined;
2654
2662
  cities?: boolean | undefined;
2663
+ _count?: boolean | undefined;
2655
2664
  }>;
2656
2665
  declare const CountryFindFirstOrThrowSchema: z.ZodType<Prisma.CountryFindFirstOrThrowArgs>;
2657
2666
  declare const CountryFindFirstOrThrowZodSchema: z.ZodObject<{
@@ -2696,15 +2705,15 @@ declare const CountryFindManySelectZodSchema: z.ZodObject<{
2696
2705
  id?: boolean | undefined;
2697
2706
  updatedAt?: boolean | undefined;
2698
2707
  name?: boolean | undefined;
2699
- _count?: boolean | undefined;
2700
2708
  cities?: boolean | undefined;
2709
+ _count?: boolean | undefined;
2701
2710
  }, {
2702
2711
  code?: boolean | undefined;
2703
2712
  id?: boolean | undefined;
2704
2713
  updatedAt?: boolean | undefined;
2705
2714
  name?: boolean | undefined;
2706
- _count?: boolean | undefined;
2707
2715
  cities?: boolean | undefined;
2716
+ _count?: boolean | undefined;
2708
2717
  }>;
2709
2718
  declare const CountryFindManySchema: z.ZodType<Prisma.CountryFindManyArgs>;
2710
2719
  declare const CountryFindManyZodSchema: z.ZodObject<{
@@ -3011,17 +3020,17 @@ declare const CityFindFirstSelectZodSchema: z.ZodObject<{
3011
3020
  updatedAt?: boolean | undefined;
3012
3021
  name?: boolean | undefined;
3013
3022
  countryId?: boolean | undefined;
3014
- _count?: boolean | undefined;
3015
3023
  warehouses?: boolean | undefined;
3016
3024
  country?: boolean | undefined;
3025
+ _count?: boolean | undefined;
3017
3026
  }, {
3018
3027
  id?: boolean | undefined;
3019
3028
  updatedAt?: boolean | undefined;
3020
3029
  name?: boolean | undefined;
3021
3030
  countryId?: boolean | undefined;
3022
- _count?: boolean | undefined;
3023
3031
  warehouses?: boolean | undefined;
3024
3032
  country?: boolean | undefined;
3033
+ _count?: boolean | undefined;
3025
3034
  }>;
3026
3035
  declare const CityFindFirstSchema: z.ZodType<Prisma.CityFindFirstArgs>;
3027
3036
  declare const CityFindFirstZodSchema: z.ZodObject<{
@@ -3067,17 +3076,17 @@ declare const CityFindFirstOrThrowSelectZodSchema: z.ZodObject<{
3067
3076
  updatedAt?: boolean | undefined;
3068
3077
  name?: boolean | undefined;
3069
3078
  countryId?: boolean | undefined;
3070
- _count?: boolean | undefined;
3071
3079
  warehouses?: boolean | undefined;
3072
3080
  country?: boolean | undefined;
3081
+ _count?: boolean | undefined;
3073
3082
  }, {
3074
3083
  id?: boolean | undefined;
3075
3084
  updatedAt?: boolean | undefined;
3076
3085
  name?: boolean | undefined;
3077
3086
  countryId?: boolean | undefined;
3078
- _count?: boolean | undefined;
3079
3087
  warehouses?: boolean | undefined;
3080
3088
  country?: boolean | undefined;
3089
+ _count?: boolean | undefined;
3081
3090
  }>;
3082
3091
  declare const CityFindFirstOrThrowSchema: z.ZodType<Prisma.CityFindFirstOrThrowArgs>;
3083
3092
  declare const CityFindFirstOrThrowZodSchema: z.ZodObject<{
@@ -3123,17 +3132,17 @@ declare const CityFindManySelectZodSchema: z.ZodObject<{
3123
3132
  updatedAt?: boolean | undefined;
3124
3133
  name?: boolean | undefined;
3125
3134
  countryId?: boolean | undefined;
3126
- _count?: boolean | undefined;
3127
3135
  warehouses?: boolean | undefined;
3128
3136
  country?: boolean | undefined;
3137
+ _count?: boolean | undefined;
3129
3138
  }, {
3130
3139
  id?: boolean | undefined;
3131
3140
  updatedAt?: boolean | undefined;
3132
3141
  name?: boolean | undefined;
3133
3142
  countryId?: boolean | undefined;
3134
- _count?: boolean | undefined;
3135
3143
  warehouses?: boolean | undefined;
3136
3144
  country?: boolean | undefined;
3145
+ _count?: boolean | undefined;
3137
3146
  }>;
3138
3147
  declare const CityFindManySchema: z.ZodType<Prisma.CityFindManyArgs>;
3139
3148
  declare const CityFindManyZodSchema: z.ZodObject<{
@@ -3439,15 +3448,15 @@ declare const OrganizationFindFirstSelectZodSchema: z.ZodObject<{
3439
3448
  updatedAt?: boolean | undefined;
3440
3449
  name?: boolean | undefined;
3441
3450
  website?: boolean | undefined;
3442
- _count?: boolean | undefined;
3443
3451
  warehouses?: boolean | undefined;
3452
+ _count?: boolean | undefined;
3444
3453
  }, {
3445
3454
  id?: boolean | undefined;
3446
3455
  updatedAt?: boolean | undefined;
3447
3456
  name?: boolean | undefined;
3448
3457
  website?: boolean | undefined;
3449
- _count?: boolean | undefined;
3450
3458
  warehouses?: boolean | undefined;
3459
+ _count?: boolean | undefined;
3451
3460
  }>;
3452
3461
  declare const OrganizationFindFirstSchema: z.ZodType<Prisma.OrganizationFindFirstArgs>;
3453
3462
  declare const OrganizationFindFirstZodSchema: z.ZodObject<{
@@ -3492,15 +3501,15 @@ declare const OrganizationFindFirstOrThrowSelectZodSchema: z.ZodObject<{
3492
3501
  updatedAt?: boolean | undefined;
3493
3502
  name?: boolean | undefined;
3494
3503
  website?: boolean | undefined;
3495
- _count?: boolean | undefined;
3496
3504
  warehouses?: boolean | undefined;
3505
+ _count?: boolean | undefined;
3497
3506
  }, {
3498
3507
  id?: boolean | undefined;
3499
3508
  updatedAt?: boolean | undefined;
3500
3509
  name?: boolean | undefined;
3501
3510
  website?: boolean | undefined;
3502
- _count?: boolean | undefined;
3503
3511
  warehouses?: boolean | undefined;
3512
+ _count?: boolean | undefined;
3504
3513
  }>;
3505
3514
  declare const OrganizationFindFirstOrThrowSchema: z.ZodType<Prisma.OrganizationFindFirstOrThrowArgs>;
3506
3515
  declare const OrganizationFindFirstOrThrowZodSchema: z.ZodObject<{
@@ -3545,15 +3554,15 @@ declare const OrganizationFindManySelectZodSchema: z.ZodObject<{
3545
3554
  updatedAt?: boolean | undefined;
3546
3555
  name?: boolean | undefined;
3547
3556
  website?: boolean | undefined;
3548
- _count?: boolean | undefined;
3549
3557
  warehouses?: boolean | undefined;
3558
+ _count?: boolean | undefined;
3550
3559
  }, {
3551
3560
  id?: boolean | undefined;
3552
3561
  updatedAt?: boolean | undefined;
3553
3562
  name?: boolean | undefined;
3554
3563
  website?: boolean | undefined;
3555
- _count?: boolean | undefined;
3556
3564
  warehouses?: boolean | undefined;
3565
+ _count?: boolean | undefined;
3557
3566
  }>;
3558
3567
  declare const OrganizationFindManySchema: z.ZodType<Prisma.OrganizationFindManyArgs>;
3559
3568
  declare const OrganizationFindManyZodSchema: z.ZodObject<{
@@ -3857,6 +3866,8 @@ declare const WarehouseFindFirstSelectZodSchema: z.ZodObject<{
3857
3866
  updatedAt: z.ZodOptional<z.ZodBoolean>;
3858
3867
  organization: z.ZodOptional<z.ZodBoolean>;
3859
3868
  city: z.ZodOptional<z.ZodBoolean>;
3869
+ employees: z.ZodOptional<z.ZodBoolean>;
3870
+ _count: z.ZodOptional<z.ZodBoolean>;
3860
3871
  }, "strict", z.ZodTypeAny, {
3861
3872
  code?: boolean | undefined;
3862
3873
  id?: boolean | undefined;
@@ -3867,6 +3878,8 @@ declare const WarehouseFindFirstSelectZodSchema: z.ZodObject<{
3867
3878
  cityId?: boolean | undefined;
3868
3879
  organization?: boolean | undefined;
3869
3880
  city?: boolean | undefined;
3881
+ employees?: boolean | undefined;
3882
+ _count?: boolean | undefined;
3870
3883
  }, {
3871
3884
  code?: boolean | undefined;
3872
3885
  id?: boolean | undefined;
@@ -3877,6 +3890,8 @@ declare const WarehouseFindFirstSelectZodSchema: z.ZodObject<{
3877
3890
  cityId?: boolean | undefined;
3878
3891
  organization?: boolean | undefined;
3879
3892
  city?: boolean | undefined;
3893
+ employees?: boolean | undefined;
3894
+ _count?: boolean | undefined;
3880
3895
  }>;
3881
3896
  declare const WarehouseFindFirstSchema: z.ZodType<Prisma.WarehouseFindFirstArgs>;
3882
3897
  declare const WarehouseFindFirstZodSchema: z.ZodObject<{
@@ -3919,6 +3934,8 @@ declare const WarehouseFindFirstOrThrowSelectZodSchema: z.ZodObject<{
3919
3934
  updatedAt: z.ZodOptional<z.ZodBoolean>;
3920
3935
  organization: z.ZodOptional<z.ZodBoolean>;
3921
3936
  city: z.ZodOptional<z.ZodBoolean>;
3937
+ employees: z.ZodOptional<z.ZodBoolean>;
3938
+ _count: z.ZodOptional<z.ZodBoolean>;
3922
3939
  }, "strict", z.ZodTypeAny, {
3923
3940
  code?: boolean | undefined;
3924
3941
  id?: boolean | undefined;
@@ -3929,6 +3946,8 @@ declare const WarehouseFindFirstOrThrowSelectZodSchema: z.ZodObject<{
3929
3946
  cityId?: boolean | undefined;
3930
3947
  organization?: boolean | undefined;
3931
3948
  city?: boolean | undefined;
3949
+ employees?: boolean | undefined;
3950
+ _count?: boolean | undefined;
3932
3951
  }, {
3933
3952
  code?: boolean | undefined;
3934
3953
  id?: boolean | undefined;
@@ -3939,6 +3958,8 @@ declare const WarehouseFindFirstOrThrowSelectZodSchema: z.ZodObject<{
3939
3958
  cityId?: boolean | undefined;
3940
3959
  organization?: boolean | undefined;
3941
3960
  city?: boolean | undefined;
3961
+ employees?: boolean | undefined;
3962
+ _count?: boolean | undefined;
3942
3963
  }>;
3943
3964
  declare const WarehouseFindFirstOrThrowSchema: z.ZodType<Prisma.WarehouseFindFirstOrThrowArgs>;
3944
3965
  declare const WarehouseFindFirstOrThrowZodSchema: z.ZodObject<{
@@ -3981,6 +4002,8 @@ declare const WarehouseFindManySelectZodSchema: z.ZodObject<{
3981
4002
  updatedAt: z.ZodOptional<z.ZodBoolean>;
3982
4003
  organization: z.ZodOptional<z.ZodBoolean>;
3983
4004
  city: z.ZodOptional<z.ZodBoolean>;
4005
+ employees: z.ZodOptional<z.ZodBoolean>;
4006
+ _count: z.ZodOptional<z.ZodBoolean>;
3984
4007
  }, "strict", z.ZodTypeAny, {
3985
4008
  code?: boolean | undefined;
3986
4009
  id?: boolean | undefined;
@@ -3991,6 +4014,8 @@ declare const WarehouseFindManySelectZodSchema: z.ZodObject<{
3991
4014
  cityId?: boolean | undefined;
3992
4015
  organization?: boolean | undefined;
3993
4016
  city?: boolean | undefined;
4017
+ employees?: boolean | undefined;
4018
+ _count?: boolean | undefined;
3994
4019
  }, {
3995
4020
  code?: boolean | undefined;
3996
4021
  id?: boolean | undefined;
@@ -4001,6 +4026,8 @@ declare const WarehouseFindManySelectZodSchema: z.ZodObject<{
4001
4026
  cityId?: boolean | undefined;
4002
4027
  organization?: boolean | undefined;
4003
4028
  city?: boolean | undefined;
4029
+ employees?: boolean | undefined;
4030
+ _count?: boolean | undefined;
4004
4031
  }>;
4005
4032
  declare const WarehouseFindManySchema: z.ZodType<Prisma.WarehouseFindManyArgs>;
4006
4033
  declare const WarehouseFindManyZodSchema: z.ZodObject<{
@@ -4273,6 +4300,7 @@ declare const EmployeeFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
4273
4300
  isActive: z.ZodBoolean;
4274
4301
  lastSeen: z.ZodOptional<z.ZodDate>;
4275
4302
  updatedAt: z.ZodDate;
4303
+ warehouse: z.ZodOptional<z.ZodUnknown>;
4276
4304
  roleAssignments: z.ZodArray<z.ZodUnknown, "many">;
4277
4305
  }, "strip", z.ZodTypeAny, {
4278
4306
  id: string;
@@ -4285,6 +4313,7 @@ declare const EmployeeFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
4285
4313
  roleAssignments: unknown[];
4286
4314
  warehouseId?: number | undefined;
4287
4315
  lastSeen?: Date | undefined;
4316
+ warehouse?: unknown;
4288
4317
  }, {
4289
4318
  id: string;
4290
4319
  email: string;
@@ -4296,6 +4325,7 @@ declare const EmployeeFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
4296
4325
  roleAssignments: unknown[];
4297
4326
  warehouseId?: number | undefined;
4298
4327
  lastSeen?: Date | undefined;
4328
+ warehouse?: unknown;
4299
4329
  }>>;
4300
4330
 
4301
4331
  declare const EmployeeFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
@@ -4308,6 +4338,7 @@ declare const EmployeeFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
4308
4338
  isActive: z.ZodBoolean;
4309
4339
  lastSeen: z.ZodOptional<z.ZodDate>;
4310
4340
  updatedAt: z.ZodDate;
4341
+ warehouse: z.ZodOptional<z.ZodUnknown>;
4311
4342
  roleAssignments: z.ZodArray<z.ZodUnknown, "many">;
4312
4343
  }, "strip", z.ZodTypeAny, {
4313
4344
  id: string;
@@ -4320,6 +4351,7 @@ declare const EmployeeFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
4320
4351
  roleAssignments: unknown[];
4321
4352
  warehouseId?: number | undefined;
4322
4353
  lastSeen?: Date | undefined;
4354
+ warehouse?: unknown;
4323
4355
  }, {
4324
4356
  id: string;
4325
4357
  email: string;
@@ -4331,6 +4363,7 @@ declare const EmployeeFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
4331
4363
  roleAssignments: unknown[];
4332
4364
  warehouseId?: number | undefined;
4333
4365
  lastSeen?: Date | undefined;
4366
+ warehouse?: unknown;
4334
4367
  }>>;
4335
4368
 
4336
4369
  declare const EmployeeFindManyResultSchema: z.ZodObject<{
@@ -4344,6 +4377,7 @@ declare const EmployeeFindManyResultSchema: z.ZodObject<{
4344
4377
  isActive: z.ZodBoolean;
4345
4378
  lastSeen: z.ZodOptional<z.ZodDate>;
4346
4379
  updatedAt: z.ZodDate;
4380
+ warehouse: z.ZodOptional<z.ZodUnknown>;
4347
4381
  roleAssignments: z.ZodArray<z.ZodUnknown, "many">;
4348
4382
  }, "strip", z.ZodTypeAny, {
4349
4383
  id: string;
@@ -4356,6 +4390,7 @@ declare const EmployeeFindManyResultSchema: z.ZodObject<{
4356
4390
  roleAssignments: unknown[];
4357
4391
  warehouseId?: number | undefined;
4358
4392
  lastSeen?: Date | undefined;
4393
+ warehouse?: unknown;
4359
4394
  }, {
4360
4395
  id: string;
4361
4396
  email: string;
@@ -4367,6 +4402,7 @@ declare const EmployeeFindManyResultSchema: z.ZodObject<{
4367
4402
  roleAssignments: unknown[];
4368
4403
  warehouseId?: number | undefined;
4369
4404
  lastSeen?: Date | undefined;
4405
+ warehouse?: unknown;
4370
4406
  }>, "many">;
4371
4407
  pagination: z.ZodObject<{
4372
4408
  page: z.ZodNumber;
@@ -4402,6 +4438,7 @@ declare const EmployeeFindManyResultSchema: z.ZodObject<{
4402
4438
  roleAssignments: unknown[];
4403
4439
  warehouseId?: number | undefined;
4404
4440
  lastSeen?: Date | undefined;
4441
+ warehouse?: unknown;
4405
4442
  }[];
4406
4443
  pagination: {
4407
4444
  page: number;
@@ -4423,6 +4460,7 @@ declare const EmployeeFindManyResultSchema: z.ZodObject<{
4423
4460
  roleAssignments: unknown[];
4424
4461
  warehouseId?: number | undefined;
4425
4462
  lastSeen?: Date | undefined;
4463
+ warehouse?: unknown;
4426
4464
  }[];
4427
4465
  pagination: {
4428
4466
  page: number;
@@ -4444,6 +4482,7 @@ declare const EmployeeCreateResultSchema: z.ZodObject<{
4444
4482
  isActive: z.ZodBoolean;
4445
4483
  lastSeen: z.ZodOptional<z.ZodDate>;
4446
4484
  updatedAt: z.ZodDate;
4485
+ warehouse: z.ZodOptional<z.ZodUnknown>;
4447
4486
  roleAssignments: z.ZodArray<z.ZodUnknown, "many">;
4448
4487
  }, "strip", z.ZodTypeAny, {
4449
4488
  id: string;
@@ -4456,6 +4495,7 @@ declare const EmployeeCreateResultSchema: z.ZodObject<{
4456
4495
  roleAssignments: unknown[];
4457
4496
  warehouseId?: number | undefined;
4458
4497
  lastSeen?: Date | undefined;
4498
+ warehouse?: unknown;
4459
4499
  }, {
4460
4500
  id: string;
4461
4501
  email: string;
@@ -4467,6 +4507,7 @@ declare const EmployeeCreateResultSchema: z.ZodObject<{
4467
4507
  roleAssignments: unknown[];
4468
4508
  warehouseId?: number | undefined;
4469
4509
  lastSeen?: Date | undefined;
4510
+ warehouse?: unknown;
4470
4511
  }>;
4471
4512
 
4472
4513
  declare const EmployeeCreateManyResultSchema: z.ZodObject<{
@@ -4487,6 +4528,7 @@ declare const EmployeeUpdateResultSchema: z.ZodNullable<z.ZodObject<{
4487
4528
  isActive: z.ZodBoolean;
4488
4529
  lastSeen: z.ZodOptional<z.ZodDate>;
4489
4530
  updatedAt: z.ZodDate;
4531
+ warehouse: z.ZodOptional<z.ZodUnknown>;
4490
4532
  roleAssignments: z.ZodArray<z.ZodUnknown, "many">;
4491
4533
  }, "strip", z.ZodTypeAny, {
4492
4534
  id: string;
@@ -4499,6 +4541,7 @@ declare const EmployeeUpdateResultSchema: z.ZodNullable<z.ZodObject<{
4499
4541
  roleAssignments: unknown[];
4500
4542
  warehouseId?: number | undefined;
4501
4543
  lastSeen?: Date | undefined;
4544
+ warehouse?: unknown;
4502
4545
  }, {
4503
4546
  id: string;
4504
4547
  email: string;
@@ -4510,6 +4553,7 @@ declare const EmployeeUpdateResultSchema: z.ZodNullable<z.ZodObject<{
4510
4553
  roleAssignments: unknown[];
4511
4554
  warehouseId?: number | undefined;
4512
4555
  lastSeen?: Date | undefined;
4556
+ warehouse?: unknown;
4513
4557
  }>>;
4514
4558
 
4515
4559
  declare const EmployeeUpdateManyResultSchema: z.ZodObject<{
@@ -4530,6 +4574,7 @@ declare const EmployeeUpsertResultSchema: z.ZodObject<{
4530
4574
  isActive: z.ZodBoolean;
4531
4575
  lastSeen: z.ZodOptional<z.ZodDate>;
4532
4576
  updatedAt: z.ZodDate;
4577
+ warehouse: z.ZodOptional<z.ZodUnknown>;
4533
4578
  roleAssignments: z.ZodArray<z.ZodUnknown, "many">;
4534
4579
  }, "strip", z.ZodTypeAny, {
4535
4580
  id: string;
@@ -4542,6 +4587,7 @@ declare const EmployeeUpsertResultSchema: z.ZodObject<{
4542
4587
  roleAssignments: unknown[];
4543
4588
  warehouseId?: number | undefined;
4544
4589
  lastSeen?: Date | undefined;
4590
+ warehouse?: unknown;
4545
4591
  }, {
4546
4592
  id: string;
4547
4593
  email: string;
@@ -4553,6 +4599,7 @@ declare const EmployeeUpsertResultSchema: z.ZodObject<{
4553
4599
  roleAssignments: unknown[];
4554
4600
  warehouseId?: number | undefined;
4555
4601
  lastSeen?: Date | undefined;
4602
+ warehouse?: unknown;
4556
4603
  }>;
4557
4604
 
4558
4605
  declare const EmployeeDeleteResultSchema: z.ZodNullable<z.ZodObject<{
@@ -4565,6 +4612,7 @@ declare const EmployeeDeleteResultSchema: z.ZodNullable<z.ZodObject<{
4565
4612
  isActive: z.ZodBoolean;
4566
4613
  lastSeen: z.ZodOptional<z.ZodDate>;
4567
4614
  updatedAt: z.ZodDate;
4615
+ warehouse: z.ZodOptional<z.ZodUnknown>;
4568
4616
  roleAssignments: z.ZodArray<z.ZodUnknown, "many">;
4569
4617
  }, "strip", z.ZodTypeAny, {
4570
4618
  id: string;
@@ -4577,6 +4625,7 @@ declare const EmployeeDeleteResultSchema: z.ZodNullable<z.ZodObject<{
4577
4625
  roleAssignments: unknown[];
4578
4626
  warehouseId?: number | undefined;
4579
4627
  lastSeen?: Date | undefined;
4628
+ warehouse?: unknown;
4580
4629
  }, {
4581
4630
  id: string;
4582
4631
  email: string;
@@ -4588,6 +4637,7 @@ declare const EmployeeDeleteResultSchema: z.ZodNullable<z.ZodObject<{
4588
4637
  roleAssignments: unknown[];
4589
4638
  warehouseId?: number | undefined;
4590
4639
  lastSeen?: Date | undefined;
4640
+ warehouse?: unknown;
4591
4641
  }>>;
4592
4642
 
4593
4643
  declare const EmployeeDeleteManyResultSchema: z.ZodObject<{
@@ -4609,6 +4659,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
4609
4659
  isActive: z.ZodNumber;
4610
4660
  lastSeen: z.ZodNumber;
4611
4661
  updatedAt: z.ZodNumber;
4662
+ warehouse: z.ZodNumber;
4612
4663
  roleAssignments: z.ZodNumber;
4613
4664
  }, "strip", z.ZodTypeAny, {
4614
4665
  id: number;
@@ -4620,6 +4671,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
4620
4671
  isActive: number;
4621
4672
  lastSeen: number;
4622
4673
  updatedAt: number;
4674
+ warehouse: number;
4623
4675
  roleAssignments: number;
4624
4676
  }, {
4625
4677
  id: number;
@@ -4631,6 +4683,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
4631
4683
  isActive: number;
4632
4684
  lastSeen: number;
4633
4685
  updatedAt: number;
4686
+ warehouse: number;
4634
4687
  roleAssignments: number;
4635
4688
  }>>;
4636
4689
  _sum: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4714,6 +4767,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
4714
4767
  isActive: number;
4715
4768
  lastSeen: number;
4716
4769
  updatedAt: number;
4770
+ warehouse: number;
4717
4771
  roleAssignments: number;
4718
4772
  } | undefined;
4719
4773
  _min?: {
@@ -4753,6 +4807,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
4753
4807
  isActive: number;
4754
4808
  lastSeen: number;
4755
4809
  updatedAt: number;
4810
+ warehouse: number;
4756
4811
  roleAssignments: number;
4757
4812
  } | undefined;
4758
4813
  _min?: {
@@ -4803,6 +4858,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
4803
4858
  isActive: z.ZodNumber;
4804
4859
  lastSeen: z.ZodNumber;
4805
4860
  updatedAt: z.ZodNumber;
4861
+ warehouse: z.ZodNumber;
4806
4862
  roleAssignments: z.ZodNumber;
4807
4863
  }, "strip", z.ZodTypeAny, {
4808
4864
  id: number;
@@ -4814,6 +4870,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
4814
4870
  isActive: number;
4815
4871
  lastSeen: number;
4816
4872
  updatedAt: number;
4873
+ warehouse: number;
4817
4874
  roleAssignments: number;
4818
4875
  }, {
4819
4876
  id: number;
@@ -4825,6 +4882,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
4825
4882
  isActive: number;
4826
4883
  lastSeen: number;
4827
4884
  updatedAt: number;
4885
+ warehouse: number;
4828
4886
  roleAssignments: number;
4829
4887
  }>>;
4830
4888
  _sum: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4917,6 +4975,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
4917
4975
  isActive: number;
4918
4976
  lastSeen: number;
4919
4977
  updatedAt: number;
4978
+ warehouse: number;
4920
4979
  roleAssignments: number;
4921
4980
  } | undefined;
4922
4981
  _min?: {
@@ -4965,6 +5024,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
4965
5024
  isActive: number;
4966
5025
  lastSeen: number;
4967
5026
  updatedAt: number;
5027
+ warehouse: number;
4968
5028
  roleAssignments: number;
4969
5029
  } | undefined;
4970
5030
  _min?: {
@@ -8790,6 +8850,7 @@ declare const WarehouseFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
8790
8850
  updatedAt: z.ZodDate;
8791
8851
  organization: z.ZodUnknown;
8792
8852
  city: z.ZodUnknown;
8853
+ employees: z.ZodArray<z.ZodUnknown, "many">;
8793
8854
  }, "strip", z.ZodTypeAny, {
8794
8855
  code: string;
8795
8856
  id: number;
@@ -8797,6 +8858,7 @@ declare const WarehouseFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
8797
8858
  address: string;
8798
8859
  organizationId: number;
8799
8860
  cityId: number;
8861
+ employees: unknown[];
8800
8862
  note?: string | undefined;
8801
8863
  organization?: unknown;
8802
8864
  city?: unknown;
@@ -8807,6 +8869,7 @@ declare const WarehouseFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
8807
8869
  address: string;
8808
8870
  organizationId: number;
8809
8871
  cityId: number;
8872
+ employees: unknown[];
8810
8873
  note?: string | undefined;
8811
8874
  organization?: unknown;
8812
8875
  city?: unknown;
@@ -8822,6 +8885,7 @@ declare const WarehouseFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
8822
8885
  updatedAt: z.ZodDate;
8823
8886
  organization: z.ZodUnknown;
8824
8887
  city: z.ZodUnknown;
8888
+ employees: z.ZodArray<z.ZodUnknown, "many">;
8825
8889
  }, "strip", z.ZodTypeAny, {
8826
8890
  code: string;
8827
8891
  id: number;
@@ -8829,6 +8893,7 @@ declare const WarehouseFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
8829
8893
  address: string;
8830
8894
  organizationId: number;
8831
8895
  cityId: number;
8896
+ employees: unknown[];
8832
8897
  note?: string | undefined;
8833
8898
  organization?: unknown;
8834
8899
  city?: unknown;
@@ -8839,6 +8904,7 @@ declare const WarehouseFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
8839
8904
  address: string;
8840
8905
  organizationId: number;
8841
8906
  cityId: number;
8907
+ employees: unknown[];
8842
8908
  note?: string | undefined;
8843
8909
  organization?: unknown;
8844
8910
  city?: unknown;
@@ -8855,6 +8921,7 @@ declare const WarehouseFindManyResultSchema: z.ZodObject<{
8855
8921
  updatedAt: z.ZodDate;
8856
8922
  organization: z.ZodUnknown;
8857
8923
  city: z.ZodUnknown;
8924
+ employees: z.ZodArray<z.ZodUnknown, "many">;
8858
8925
  }, "strip", z.ZodTypeAny, {
8859
8926
  code: string;
8860
8927
  id: number;
@@ -8862,6 +8929,7 @@ declare const WarehouseFindManyResultSchema: z.ZodObject<{
8862
8929
  address: string;
8863
8930
  organizationId: number;
8864
8931
  cityId: number;
8932
+ employees: unknown[];
8865
8933
  note?: string | undefined;
8866
8934
  organization?: unknown;
8867
8935
  city?: unknown;
@@ -8872,6 +8940,7 @@ declare const WarehouseFindManyResultSchema: z.ZodObject<{
8872
8940
  address: string;
8873
8941
  organizationId: number;
8874
8942
  cityId: number;
8943
+ employees: unknown[];
8875
8944
  note?: string | undefined;
8876
8945
  organization?: unknown;
8877
8946
  city?: unknown;
@@ -8906,6 +8975,7 @@ declare const WarehouseFindManyResultSchema: z.ZodObject<{
8906
8975
  address: string;
8907
8976
  organizationId: number;
8908
8977
  cityId: number;
8978
+ employees: unknown[];
8909
8979
  note?: string | undefined;
8910
8980
  organization?: unknown;
8911
8981
  city?: unknown;
@@ -8926,6 +8996,7 @@ declare const WarehouseFindManyResultSchema: z.ZodObject<{
8926
8996
  address: string;
8927
8997
  organizationId: number;
8928
8998
  cityId: number;
8999
+ employees: unknown[];
8929
9000
  note?: string | undefined;
8930
9001
  organization?: unknown;
8931
9002
  city?: unknown;
@@ -8950,6 +9021,7 @@ declare const WarehouseCreateResultSchema: z.ZodObject<{
8950
9021
  updatedAt: z.ZodDate;
8951
9022
  organization: z.ZodUnknown;
8952
9023
  city: z.ZodUnknown;
9024
+ employees: z.ZodArray<z.ZodUnknown, "many">;
8953
9025
  }, "strip", z.ZodTypeAny, {
8954
9026
  code: string;
8955
9027
  id: number;
@@ -8957,6 +9029,7 @@ declare const WarehouseCreateResultSchema: z.ZodObject<{
8957
9029
  address: string;
8958
9030
  organizationId: number;
8959
9031
  cityId: number;
9032
+ employees: unknown[];
8960
9033
  note?: string | undefined;
8961
9034
  organization?: unknown;
8962
9035
  city?: unknown;
@@ -8967,6 +9040,7 @@ declare const WarehouseCreateResultSchema: z.ZodObject<{
8967
9040
  address: string;
8968
9041
  organizationId: number;
8969
9042
  cityId: number;
9043
+ employees: unknown[];
8970
9044
  note?: string | undefined;
8971
9045
  organization?: unknown;
8972
9046
  city?: unknown;
@@ -8990,6 +9064,7 @@ declare const WarehouseUpdateResultSchema: z.ZodNullable<z.ZodObject<{
8990
9064
  updatedAt: z.ZodDate;
8991
9065
  organization: z.ZodUnknown;
8992
9066
  city: z.ZodUnknown;
9067
+ employees: z.ZodArray<z.ZodUnknown, "many">;
8993
9068
  }, "strip", z.ZodTypeAny, {
8994
9069
  code: string;
8995
9070
  id: number;
@@ -8997,6 +9072,7 @@ declare const WarehouseUpdateResultSchema: z.ZodNullable<z.ZodObject<{
8997
9072
  address: string;
8998
9073
  organizationId: number;
8999
9074
  cityId: number;
9075
+ employees: unknown[];
9000
9076
  note?: string | undefined;
9001
9077
  organization?: unknown;
9002
9078
  city?: unknown;
@@ -9007,6 +9083,7 @@ declare const WarehouseUpdateResultSchema: z.ZodNullable<z.ZodObject<{
9007
9083
  address: string;
9008
9084
  organizationId: number;
9009
9085
  cityId: number;
9086
+ employees: unknown[];
9010
9087
  note?: string | undefined;
9011
9088
  organization?: unknown;
9012
9089
  city?: unknown;
@@ -9030,6 +9107,7 @@ declare const WarehouseUpsertResultSchema: z.ZodObject<{
9030
9107
  updatedAt: z.ZodDate;
9031
9108
  organization: z.ZodUnknown;
9032
9109
  city: z.ZodUnknown;
9110
+ employees: z.ZodArray<z.ZodUnknown, "many">;
9033
9111
  }, "strip", z.ZodTypeAny, {
9034
9112
  code: string;
9035
9113
  id: number;
@@ -9037,6 +9115,7 @@ declare const WarehouseUpsertResultSchema: z.ZodObject<{
9037
9115
  address: string;
9038
9116
  organizationId: number;
9039
9117
  cityId: number;
9118
+ employees: unknown[];
9040
9119
  note?: string | undefined;
9041
9120
  organization?: unknown;
9042
9121
  city?: unknown;
@@ -9047,6 +9126,7 @@ declare const WarehouseUpsertResultSchema: z.ZodObject<{
9047
9126
  address: string;
9048
9127
  organizationId: number;
9049
9128
  cityId: number;
9129
+ employees: unknown[];
9050
9130
  note?: string | undefined;
9051
9131
  organization?: unknown;
9052
9132
  city?: unknown;
@@ -9062,6 +9142,7 @@ declare const WarehouseDeleteResultSchema: z.ZodNullable<z.ZodObject<{
9062
9142
  updatedAt: z.ZodDate;
9063
9143
  organization: z.ZodUnknown;
9064
9144
  city: z.ZodUnknown;
9145
+ employees: z.ZodArray<z.ZodUnknown, "many">;
9065
9146
  }, "strip", z.ZodTypeAny, {
9066
9147
  code: string;
9067
9148
  id: number;
@@ -9069,6 +9150,7 @@ declare const WarehouseDeleteResultSchema: z.ZodNullable<z.ZodObject<{
9069
9150
  address: string;
9070
9151
  organizationId: number;
9071
9152
  cityId: number;
9153
+ employees: unknown[];
9072
9154
  note?: string | undefined;
9073
9155
  organization?: unknown;
9074
9156
  city?: unknown;
@@ -9079,6 +9161,7 @@ declare const WarehouseDeleteResultSchema: z.ZodNullable<z.ZodObject<{
9079
9161
  address: string;
9080
9162
  organizationId: number;
9081
9163
  cityId: number;
9164
+ employees: unknown[];
9082
9165
  note?: string | undefined;
9083
9166
  organization?: unknown;
9084
9167
  city?: unknown;
@@ -9103,6 +9186,7 @@ declare const WarehouseAggregateResultSchema: z.ZodObject<{
9103
9186
  updatedAt: z.ZodNumber;
9104
9187
  organization: z.ZodNumber;
9105
9188
  city: z.ZodNumber;
9189
+ employees: z.ZodNumber;
9106
9190
  }, "strip", z.ZodTypeAny, {
9107
9191
  code: number;
9108
9192
  id: number;
@@ -9113,6 +9197,7 @@ declare const WarehouseAggregateResultSchema: z.ZodObject<{
9113
9197
  cityId: number;
9114
9198
  organization: number;
9115
9199
  city: number;
9200
+ employees: number;
9116
9201
  }, {
9117
9202
  code: number;
9118
9203
  id: number;
@@ -9123,6 +9208,7 @@ declare const WarehouseAggregateResultSchema: z.ZodObject<{
9123
9208
  cityId: number;
9124
9209
  organization: number;
9125
9210
  city: number;
9211
+ employees: number;
9126
9212
  }>>;
9127
9213
  _sum: z.ZodOptional<z.ZodNullable<z.ZodObject<{
9128
9214
  id: z.ZodNullable<z.ZodNumber>;
@@ -9211,6 +9297,7 @@ declare const WarehouseAggregateResultSchema: z.ZodObject<{
9211
9297
  cityId: number;
9212
9298
  organization: number;
9213
9299
  city: number;
9300
+ employees: number;
9214
9301
  } | undefined;
9215
9302
  _min?: {
9216
9303
  code: string | null;
@@ -9251,6 +9338,7 @@ declare const WarehouseAggregateResultSchema: z.ZodObject<{
9251
9338
  cityId: number;
9252
9339
  organization: number;
9253
9340
  city: number;
9341
+ employees: number;
9254
9342
  } | undefined;
9255
9343
  _min?: {
9256
9344
  code: string | null;
@@ -9300,6 +9388,7 @@ declare const WarehouseGroupByResultSchema: z.ZodArray<z.ZodObject<{
9300
9388
  updatedAt: z.ZodNumber;
9301
9389
  organization: z.ZodNumber;
9302
9390
  city: z.ZodNumber;
9391
+ employees: z.ZodNumber;
9303
9392
  }, "strip", z.ZodTypeAny, {
9304
9393
  code: number;
9305
9394
  id: number;
@@ -9310,6 +9399,7 @@ declare const WarehouseGroupByResultSchema: z.ZodArray<z.ZodObject<{
9310
9399
  cityId: number;
9311
9400
  organization: number;
9312
9401
  city: number;
9402
+ employees: number;
9313
9403
  }, {
9314
9404
  code: number;
9315
9405
  id: number;
@@ -9320,6 +9410,7 @@ declare const WarehouseGroupByResultSchema: z.ZodArray<z.ZodObject<{
9320
9410
  cityId: number;
9321
9411
  organization: number;
9322
9412
  city: number;
9413
+ employees: number;
9323
9414
  }>>;
9324
9415
  _sum: z.ZodOptional<z.ZodNullable<z.ZodObject<{
9325
9416
  id: z.ZodNullable<z.ZodNumber>;
@@ -9415,6 +9506,7 @@ declare const WarehouseGroupByResultSchema: z.ZodArray<z.ZodObject<{
9415
9506
  cityId: number;
9416
9507
  organization: number;
9417
9508
  city: number;
9509
+ employees: number;
9418
9510
  } | undefined;
9419
9511
  _min?: {
9420
9512
  code: string | null;
@@ -9462,6 +9554,7 @@ declare const WarehouseGroupByResultSchema: z.ZodArray<z.ZodObject<{
9462
9554
  cityId: number;
9463
9555
  organization: number;
9464
9556
  city: number;
9557
+ employees: number;
9465
9558
  } | undefined;
9466
9559
  _min?: {
9467
9560
  code: string | null;
@@ -9934,23 +10027,23 @@ declare const CityIncludeObjectZodSchema: z.ZodObject<{
9934
10027
  select?: Prisma.CityCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
9935
10028
  }>>]>>;
9936
10029
  }, "strict", z.ZodTypeAny, {
9937
- _count?: boolean | {
9938
- select?: Prisma.CityCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
9939
- } | undefined;
9940
10030
  warehouses?: boolean | Prisma.WarehouseFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
9941
10031
  country?: boolean | {
9942
10032
  select?: Prisma.CountrySelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
9943
10033
  include?: Prisma.CountryInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
9944
10034
  } | undefined;
9945
- }, {
9946
10035
  _count?: boolean | {
9947
10036
  select?: Prisma.CityCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
9948
10037
  } | undefined;
10038
+ }, {
9949
10039
  warehouses?: boolean | Prisma.WarehouseFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
9950
10040
  country?: boolean | {
9951
10041
  select?: Prisma.CountrySelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
9952
10042
  include?: Prisma.CountryInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
9953
10043
  } | undefined;
10044
+ _count?: boolean | {
10045
+ select?: Prisma.CityCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
10046
+ } | undefined;
9954
10047
  }>;
9955
10048
 
9956
10049
  declare const CityListRelationFilterObjectSchema: z.ZodType<Prisma.CityListRelationFilter>;
@@ -10201,27 +10294,27 @@ declare const CitySelectObjectZodSchema: z.ZodObject<{
10201
10294
  updatedAt?: boolean | undefined;
10202
10295
  name?: boolean | undefined;
10203
10296
  countryId?: boolean | undefined;
10204
- _count?: boolean | {
10205
- select?: Prisma.CityCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
10206
- } | undefined;
10207
10297
  warehouses?: boolean | Prisma.WarehouseFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
10208
10298
  country?: boolean | {
10209
10299
  select?: Prisma.CountrySelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
10210
10300
  include?: Prisma.CountryInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
10211
10301
  } | undefined;
10302
+ _count?: boolean | {
10303
+ select?: Prisma.CityCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
10304
+ } | undefined;
10212
10305
  }, {
10213
10306
  id?: boolean | undefined;
10214
10307
  updatedAt?: boolean | undefined;
10215
10308
  name?: boolean | undefined;
10216
10309
  countryId?: boolean | undefined;
10217
- _count?: boolean | {
10218
- select?: Prisma.CityCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
10219
- } | undefined;
10220
10310
  warehouses?: boolean | Prisma.WarehouseFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
10221
10311
  country?: boolean | {
10222
10312
  select?: Prisma.CountrySelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
10223
10313
  include?: Prisma.CountryInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
10224
10314
  } | undefined;
10315
+ _count?: boolean | {
10316
+ select?: Prisma.CityCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
10317
+ } | undefined;
10225
10318
  }>;
10226
10319
 
10227
10320
  declare const CitySumAggregateInputObjectSchema: z.ZodType<Prisma.CitySumAggregateInputType>;
@@ -10890,15 +10983,15 @@ declare const CountryIncludeObjectZodSchema: z.ZodObject<{
10890
10983
  select?: Prisma.CountryCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
10891
10984
  }>>]>>;
10892
10985
  }, "strict", z.ZodTypeAny, {
10986
+ cities?: boolean | Prisma.CityFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
10893
10987
  _count?: boolean | {
10894
10988
  select?: Prisma.CountryCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
10895
10989
  } | undefined;
10896
- cities?: boolean | Prisma.CityFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
10897
10990
  }, {
10991
+ cities?: boolean | Prisma.CityFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
10898
10992
  _count?: boolean | {
10899
10993
  select?: Prisma.CountryCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
10900
10994
  } | undefined;
10901
- cities?: boolean | Prisma.CityFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
10902
10995
  }>;
10903
10996
 
10904
10997
  declare const CountryMaxAggregateInputObjectSchema: z.ZodType<Prisma.CountryMaxAggregateInputType>;
@@ -11085,19 +11178,19 @@ declare const CountrySelectObjectZodSchema: z.ZodObject<{
11085
11178
  id?: boolean | undefined;
11086
11179
  updatedAt?: boolean | undefined;
11087
11180
  name?: boolean | undefined;
11181
+ cities?: boolean | Prisma.CityFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
11088
11182
  _count?: boolean | {
11089
11183
  select?: Prisma.CountryCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
11090
11184
  } | undefined;
11091
- cities?: boolean | Prisma.CityFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
11092
11185
  }, {
11093
11186
  code?: boolean | undefined;
11094
11187
  id?: boolean | undefined;
11095
11188
  updatedAt?: boolean | undefined;
11096
11189
  name?: boolean | undefined;
11190
+ cities?: boolean | Prisma.CityFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
11097
11191
  _count?: boolean | {
11098
11192
  select?: Prisma.CountryCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
11099
11193
  } | undefined;
11100
- cities?: boolean | Prisma.CityFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
11101
11194
  }>;
11102
11195
 
11103
11196
  declare const CountrySumAggregateInputObjectSchema: z.ZodType<Prisma.CountrySumAggregateInputType>;
@@ -11660,9 +11753,9 @@ declare const EmployeeCreateInputObjectZodSchema: z.ZodObject<{
11660
11753
  password: z.ZodString;
11661
11754
  firstName: z.ZodString;
11662
11755
  lastName: z.ZodString;
11663
- warehouseId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
11664
11756
  isActive: z.ZodOptional<z.ZodBoolean>;
11665
11757
  lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
11758
+ warehouse: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseCreateNestedOneWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseCreateNestedOneWithoutEmployeesInput>>>;
11666
11759
  roleAssignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeInput>>>;
11667
11760
  }, "strict", z.ZodTypeAny, {
11668
11761
  email: string;
@@ -11670,9 +11763,9 @@ declare const EmployeeCreateInputObjectZodSchema: z.ZodObject<{
11670
11763
  firstName: string;
11671
11764
  lastName: string;
11672
11765
  id?: string | undefined;
11673
- warehouseId?: number | null | undefined;
11674
11766
  isActive?: boolean | undefined;
11675
11767
  lastSeen?: Date | null | undefined;
11768
+ warehouse?: Prisma.WarehouseCreateNestedOneWithoutEmployeesInput | undefined;
11676
11769
  roleAssignments?: Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeInput | undefined;
11677
11770
  }, {
11678
11771
  email: string;
@@ -11680,9 +11773,9 @@ declare const EmployeeCreateInputObjectZodSchema: z.ZodObject<{
11680
11773
  firstName: string;
11681
11774
  lastName: string;
11682
11775
  id?: string | undefined;
11683
- warehouseId?: number | null | undefined;
11684
11776
  isActive?: boolean | undefined;
11685
11777
  lastSeen?: Date | null | undefined;
11778
+ warehouse?: Prisma.WarehouseCreateNestedOneWithoutEmployeesInput | undefined;
11686
11779
  roleAssignments?: Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeInput | undefined;
11687
11780
  }>;
11688
11781
 
@@ -11719,6 +11812,66 @@ declare const EmployeeCreateManyInputObjectZodSchema: z.ZodObject<{
11719
11812
  updatedAt?: Date | undefined;
11720
11813
  }>;
11721
11814
 
11815
+ declare const EmployeeCreateManyWarehouseInputObjectSchema: z.ZodType<Prisma.EmployeeCreateManyWarehouseInput>;
11816
+ declare const EmployeeCreateManyWarehouseInputObjectZodSchema: z.ZodObject<{
11817
+ id: z.ZodOptional<z.ZodString>;
11818
+ email: z.ZodString;
11819
+ password: z.ZodString;
11820
+ firstName: z.ZodString;
11821
+ lastName: z.ZodString;
11822
+ isActive: z.ZodOptional<z.ZodBoolean>;
11823
+ lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
11824
+ updatedAt: z.ZodOptional<z.ZodDate>;
11825
+ }, "strict", z.ZodTypeAny, {
11826
+ email: string;
11827
+ password: string;
11828
+ firstName: string;
11829
+ lastName: string;
11830
+ id?: string | undefined;
11831
+ isActive?: boolean | undefined;
11832
+ lastSeen?: Date | null | undefined;
11833
+ updatedAt?: Date | undefined;
11834
+ }, {
11835
+ email: string;
11836
+ password: string;
11837
+ firstName: string;
11838
+ lastName: string;
11839
+ id?: string | undefined;
11840
+ isActive?: boolean | undefined;
11841
+ lastSeen?: Date | null | undefined;
11842
+ updatedAt?: Date | undefined;
11843
+ }>;
11844
+
11845
+ declare const EmployeeCreateManyWarehouseInputEnvelopeObjectSchema: z.ZodType<Prisma.EmployeeCreateManyWarehouseInputEnvelope>;
11846
+ declare const EmployeeCreateManyWarehouseInputEnvelopeObjectZodSchema: z.ZodObject<{
11847
+ data: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeCreateManyWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateManyWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeCreateManyWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateManyWarehouseInput>>, "many">]>;
11848
+ skipDuplicates: z.ZodOptional<z.ZodBoolean>;
11849
+ }, "strict", z.ZodTypeAny, {
11850
+ data: Prisma.EmployeeCreateManyWarehouseInput | Prisma.EmployeeCreateManyWarehouseInput[];
11851
+ skipDuplicates?: boolean | undefined;
11852
+ }, {
11853
+ data: Prisma.EmployeeCreateManyWarehouseInput | Prisma.EmployeeCreateManyWarehouseInput[];
11854
+ skipDuplicates?: boolean | undefined;
11855
+ }>;
11856
+
11857
+ declare const EmployeeCreateNestedManyWithoutWarehouseInputObjectSchema: z.ZodType<Prisma.EmployeeCreateNestedManyWithoutWarehouseInput>;
11858
+ declare const EmployeeCreateNestedManyWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
11859
+ create: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateWithoutWarehouseInput>>, "many">, z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUncheckedCreateWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUncheckedCreateWithoutWarehouseInput>>, "many">]>>;
11860
+ connectOrCreate: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeCreateOrConnectWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateOrConnectWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeCreateOrConnectWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateOrConnectWithoutWarehouseInput>>, "many">]>>;
11861
+ createMany: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeCreateManyWarehouseInputEnvelope, z.ZodTypeDef, Prisma.EmployeeCreateManyWarehouseInputEnvelope>>>;
11862
+ connect: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, "many">]>>;
11863
+ }, "strict", z.ZodTypeAny, {
11864
+ create?: Prisma.EmployeeCreateWithoutWarehouseInput | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput | Prisma.EmployeeCreateWithoutWarehouseInput[] | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput[] | undefined;
11865
+ connectOrCreate?: Prisma.EmployeeCreateOrConnectWithoutWarehouseInput | Prisma.EmployeeCreateOrConnectWithoutWarehouseInput[] | undefined;
11866
+ connect?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
11867
+ createMany?: Prisma.EmployeeCreateManyWarehouseInputEnvelope | undefined;
11868
+ }, {
11869
+ create?: Prisma.EmployeeCreateWithoutWarehouseInput | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput | Prisma.EmployeeCreateWithoutWarehouseInput[] | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput[] | undefined;
11870
+ connectOrCreate?: Prisma.EmployeeCreateOrConnectWithoutWarehouseInput | Prisma.EmployeeCreateOrConnectWithoutWarehouseInput[] | undefined;
11871
+ connect?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
11872
+ createMany?: Prisma.EmployeeCreateManyWarehouseInputEnvelope | undefined;
11873
+ }>;
11874
+
11722
11875
  declare const EmployeeCreateNestedOneWithoutRoleAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeCreateNestedOneWithoutRoleAssignmentsInput>;
11723
11876
  declare const EmployeeCreateNestedOneWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObject<{
11724
11877
  create: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeCreateWithoutRoleAssignmentsInput, z.ZodTypeDef, Prisma.EmployeeCreateWithoutRoleAssignmentsInput>>, z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedCreateWithoutRoleAssignmentsInput, z.ZodTypeDef, Prisma.EmployeeUncheckedCreateWithoutRoleAssignmentsInput>>]>>;
@@ -11746,6 +11899,18 @@ declare const EmployeeCreateOrConnectWithoutRoleAssignmentsInputObjectZodSchema:
11746
11899
  where: Prisma.EmployeeWhereUniqueInput;
11747
11900
  }>;
11748
11901
 
11902
+ declare const EmployeeCreateOrConnectWithoutWarehouseInputObjectSchema: z.ZodType<Prisma.EmployeeCreateOrConnectWithoutWarehouseInput>;
11903
+ declare const EmployeeCreateOrConnectWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
11904
+ where: z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>;
11905
+ create: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateWithoutWarehouseInput>>, z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUncheckedCreateWithoutWarehouseInput>>]>;
11906
+ }, "strict", z.ZodTypeAny, {
11907
+ create: Prisma.EmployeeCreateWithoutWarehouseInput | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput;
11908
+ where: Prisma.EmployeeWhereUniqueInput;
11909
+ }, {
11910
+ create: Prisma.EmployeeCreateWithoutWarehouseInput | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput;
11911
+ where: Prisma.EmployeeWhereUniqueInput;
11912
+ }>;
11913
+
11749
11914
  declare const EmployeeCreateWithoutRoleAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeCreateWithoutRoleAssignmentsInput>;
11750
11915
  declare const EmployeeCreateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObject<{
11751
11916
  id: z.ZodOptional<z.ZodString>;
@@ -11753,34 +11918,77 @@ declare const EmployeeCreateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObj
11753
11918
  password: z.ZodString;
11754
11919
  firstName: z.ZodString;
11755
11920
  lastName: z.ZodString;
11756
- warehouseId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
11757
11921
  isActive: z.ZodOptional<z.ZodBoolean>;
11758
11922
  lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
11759
11923
  updatedAt: z.ZodOptional<z.ZodDate>;
11924
+ warehouse: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseCreateNestedOneWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseCreateNestedOneWithoutEmployeesInput>>>;
11760
11925
  }, "strict", z.ZodTypeAny, {
11761
11926
  email: string;
11762
11927
  password: string;
11763
11928
  firstName: string;
11764
11929
  lastName: string;
11765
11930
  id?: string | undefined;
11766
- warehouseId?: number | null | undefined;
11767
11931
  isActive?: boolean | undefined;
11768
11932
  lastSeen?: Date | null | undefined;
11769
11933
  updatedAt?: Date | undefined;
11934
+ warehouse?: Prisma.WarehouseCreateNestedOneWithoutEmployeesInput | undefined;
11935
+ }, {
11936
+ email: string;
11937
+ password: string;
11938
+ firstName: string;
11939
+ lastName: string;
11940
+ id?: string | undefined;
11941
+ isActive?: boolean | undefined;
11942
+ lastSeen?: Date | null | undefined;
11943
+ updatedAt?: Date | undefined;
11944
+ warehouse?: Prisma.WarehouseCreateNestedOneWithoutEmployeesInput | undefined;
11945
+ }>;
11946
+
11947
+ declare const EmployeeCreateWithoutWarehouseInputObjectSchema: z.ZodType<Prisma.EmployeeCreateWithoutWarehouseInput>;
11948
+ declare const EmployeeCreateWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
11949
+ id: z.ZodOptional<z.ZodString>;
11950
+ email: z.ZodString;
11951
+ password: z.ZodString;
11952
+ firstName: z.ZodString;
11953
+ lastName: z.ZodString;
11954
+ isActive: z.ZodOptional<z.ZodBoolean>;
11955
+ lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
11956
+ updatedAt: z.ZodOptional<z.ZodDate>;
11957
+ roleAssignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeInput>>>;
11958
+ }, "strict", z.ZodTypeAny, {
11959
+ email: string;
11960
+ password: string;
11961
+ firstName: string;
11962
+ lastName: string;
11963
+ id?: string | undefined;
11964
+ isActive?: boolean | undefined;
11965
+ lastSeen?: Date | null | undefined;
11966
+ updatedAt?: Date | undefined;
11967
+ roleAssignments?: Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeInput | undefined;
11770
11968
  }, {
11771
11969
  email: string;
11772
11970
  password: string;
11773
11971
  firstName: string;
11774
11972
  lastName: string;
11775
11973
  id?: string | undefined;
11776
- warehouseId?: number | null | undefined;
11777
11974
  isActive?: boolean | undefined;
11778
11975
  lastSeen?: Date | null | undefined;
11779
11976
  updatedAt?: Date | undefined;
11977
+ roleAssignments?: Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeInput | undefined;
11780
11978
  }>;
11781
11979
 
11782
11980
  declare const EmployeeIncludeObjectSchema: z.ZodType<Prisma.EmployeeInclude>;
11783
11981
  declare const EmployeeIncludeObjectZodSchema: z.ZodObject<{
11982
+ warehouse: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
11983
+ select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseSelect<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.WarehouseSelect<_prisma_client_runtime_library.DefaultArgs>>>>;
11984
+ include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseInclude<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.WarehouseInclude<_prisma_client_runtime_library.DefaultArgs>>>>;
11985
+ }, "strict", z.ZodTypeAny, {
11986
+ select?: Prisma.WarehouseSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
11987
+ include?: Prisma.WarehouseInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
11988
+ }, {
11989
+ select?: Prisma.WarehouseSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
11990
+ include?: Prisma.WarehouseInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
11991
+ }>>]>>;
11784
11992
  roleAssignments: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentFindManyArgs<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentFindManyArgs<_prisma_client_runtime_library.DefaultArgs>>>]>>;
11785
11993
  _count: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
11786
11994
  select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.EmployeeCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs>>>>;
@@ -11790,17 +11998,40 @@ declare const EmployeeIncludeObjectZodSchema: z.ZodObject<{
11790
11998
  select?: Prisma.EmployeeCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
11791
11999
  }>>]>>;
11792
12000
  }, "strict", z.ZodTypeAny, {
12001
+ warehouse?: boolean | {
12002
+ select?: Prisma.WarehouseSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
12003
+ include?: Prisma.WarehouseInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
12004
+ } | undefined;
11793
12005
  roleAssignments?: boolean | Prisma.EmployeeRoleAssignmentFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
11794
12006
  _count?: boolean | {
11795
12007
  select?: Prisma.EmployeeCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
11796
12008
  } | undefined;
11797
12009
  }, {
12010
+ warehouse?: boolean | {
12011
+ select?: Prisma.WarehouseSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
12012
+ include?: Prisma.WarehouseInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
12013
+ } | undefined;
11798
12014
  roleAssignments?: boolean | Prisma.EmployeeRoleAssignmentFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
11799
12015
  _count?: boolean | {
11800
12016
  select?: Prisma.EmployeeCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
11801
12017
  } | undefined;
11802
12018
  }>;
11803
12019
 
12020
+ declare const EmployeeListRelationFilterObjectSchema: z.ZodType<Prisma.EmployeeListRelationFilter>;
12021
+ declare const EmployeeListRelationFilterObjectZodSchema: z.ZodObject<{
12022
+ every: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeWhereInput, z.ZodTypeDef, Prisma.EmployeeWhereInput>>>;
12023
+ some: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeWhereInput, z.ZodTypeDef, Prisma.EmployeeWhereInput>>>;
12024
+ none: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeWhereInput, z.ZodTypeDef, Prisma.EmployeeWhereInput>>>;
12025
+ }, "strict", z.ZodTypeAny, {
12026
+ every?: Prisma.EmployeeWhereInput | undefined;
12027
+ some?: Prisma.EmployeeWhereInput | undefined;
12028
+ none?: Prisma.EmployeeWhereInput | undefined;
12029
+ }, {
12030
+ every?: Prisma.EmployeeWhereInput | undefined;
12031
+ some?: Prisma.EmployeeWhereInput | undefined;
12032
+ none?: Prisma.EmployeeWhereInput | undefined;
12033
+ }>;
12034
+
11804
12035
  declare const EmployeeMaxAggregateInputObjectSchema: z.ZodType<Prisma.EmployeeMaxAggregateInputType>;
11805
12036
  declare const EmployeeMaxAggregateInputObjectZodSchema: z.ZodObject<{
11806
12037
  id: z.ZodOptional<z.ZodLiteral<true>>;
@@ -11933,6 +12164,15 @@ declare const EmployeeMinOrderByAggregateInputObjectZodSchema: z.ZodObject<{
11933
12164
  updatedAt?: "asc" | "desc" | undefined;
11934
12165
  }>;
11935
12166
 
12167
+ declare const EmployeeOrderByRelationAggregateInputObjectSchema: z.ZodType<Prisma.EmployeeOrderByRelationAggregateInput>;
12168
+ declare const EmployeeOrderByRelationAggregateInputObjectZodSchema: z.ZodObject<{
12169
+ _count: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
12170
+ }, "strict", z.ZodTypeAny, {
12171
+ _count?: "asc" | "desc" | undefined;
12172
+ }, {
12173
+ _count?: "asc" | "desc" | undefined;
12174
+ }>;
12175
+
11936
12176
  declare const EmployeeOrderByWithAggregationInputObjectSchema: z.ZodType<Prisma.EmployeeOrderByWithAggregationInput>;
11937
12177
  declare const EmployeeOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
11938
12178
  id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
@@ -11992,6 +12232,7 @@ declare const EmployeeOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
11992
12232
  isActive: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
11993
12233
  lastSeen: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
11994
12234
  updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
12235
+ warehouse: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseOrderByWithRelationInput, z.ZodTypeDef, Prisma.WarehouseOrderByWithRelationInput>>>;
11995
12236
  roleAssignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentOrderByRelationAggregateInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentOrderByRelationAggregateInput>>>;
11996
12237
  }, "strict", z.ZodTypeAny, {
11997
12238
  id?: "asc" | "desc" | undefined;
@@ -12003,6 +12244,7 @@ declare const EmployeeOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
12003
12244
  isActive?: "asc" | "desc" | undefined;
12004
12245
  lastSeen?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
12005
12246
  updatedAt?: "asc" | "desc" | undefined;
12247
+ warehouse?: Prisma.WarehouseOrderByWithRelationInput | undefined;
12006
12248
  roleAssignments?: Prisma.EmployeeRoleAssignmentOrderByRelationAggregateInput | undefined;
12007
12249
  }, {
12008
12250
  id?: "asc" | "desc" | undefined;
@@ -12014,6 +12256,7 @@ declare const EmployeeOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
12014
12256
  isActive?: "asc" | "desc" | undefined;
12015
12257
  lastSeen?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
12016
12258
  updatedAt?: "asc" | "desc" | undefined;
12259
+ warehouse?: Prisma.WarehouseOrderByWithRelationInput | undefined;
12017
12260
  roleAssignments?: Prisma.EmployeeRoleAssignmentOrderByRelationAggregateInput | undefined;
12018
12261
  }>;
12019
12262
 
@@ -13750,7 +13993,7 @@ declare const EmployeeRoleAssignmentWhereInputObjectZodSchema: z.ZodObject<{
13750
13993
  OR?: Prisma.EmployeeRoleAssignmentWhereInput[] | undefined;
13751
13994
  NOT?: Prisma.EmployeeRoleAssignmentWhereInput | Prisma.EmployeeRoleAssignmentWhereInput[] | undefined;
13752
13995
  employeeRole?: Prisma.EmployeeRoleScalarRelationFilter | Prisma.EmployeeRoleWhereInput | undefined;
13753
- employee?: Prisma.EmployeeWhereInput | Prisma.EmployeeScalarRelationFilter | undefined;
13996
+ employee?: Prisma.EmployeeScalarRelationFilter | Prisma.EmployeeWhereInput | undefined;
13754
13997
  }, {
13755
13998
  id?: bigint | Prisma.BigIntFilter<never> | undefined;
13756
13999
  updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
@@ -13760,7 +14003,7 @@ declare const EmployeeRoleAssignmentWhereInputObjectZodSchema: z.ZodObject<{
13760
14003
  OR?: Prisma.EmployeeRoleAssignmentWhereInput[] | undefined;
13761
14004
  NOT?: Prisma.EmployeeRoleAssignmentWhereInput | Prisma.EmployeeRoleAssignmentWhereInput[] | undefined;
13762
14005
  employeeRole?: Prisma.EmployeeRoleScalarRelationFilter | Prisma.EmployeeRoleWhereInput | undefined;
13763
- employee?: Prisma.EmployeeWhereInput | Prisma.EmployeeScalarRelationFilter | undefined;
14006
+ employee?: Prisma.EmployeeScalarRelationFilter | Prisma.EmployeeWhereInput | undefined;
13764
14007
  }>;
13765
14008
 
13766
14009
  declare const EmployeeRoleAssignmentWhereUniqueInputObjectSchema: z.ZodType<Prisma.EmployeeRoleAssignmentWhereUniqueInput>;
@@ -15726,6 +15969,48 @@ declare const EmployeeScalarRelationFilterObjectZodSchema: z.ZodObject<{
15726
15969
  isNot?: Prisma.EmployeeWhereInput | undefined;
15727
15970
  }>;
15728
15971
 
15972
+ declare const EmployeeScalarWhereInputObjectSchema: z.ZodType<Prisma.EmployeeScalarWhereInput>;
15973
+ declare const EmployeeScalarWhereInputObjectZodSchema: z.ZodObject<{
15974
+ AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeScalarWhereInput, z.ZodTypeDef, Prisma.EmployeeScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeScalarWhereInput, z.ZodTypeDef, Prisma.EmployeeScalarWhereInput>>, "many">]>>;
15975
+ OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeScalarWhereInput, z.ZodTypeDef, Prisma.EmployeeScalarWhereInput>>, "many">>;
15976
+ NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeScalarWhereInput, z.ZodTypeDef, Prisma.EmployeeScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeScalarWhereInput, z.ZodTypeDef, Prisma.EmployeeScalarWhereInput>>, "many">]>>;
15977
+ id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.UuidFilter<never>, z.ZodTypeDef, Prisma.UuidFilter<never>>>, z.ZodString]>>;
15978
+ email: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
15979
+ password: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
15980
+ firstName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
15981
+ lastName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
15982
+ warehouseId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
15983
+ isActive: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BoolFilter<never>, z.ZodTypeDef, Prisma.BoolFilter<never>>>, z.ZodBoolean]>>;
15984
+ lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeNullableFilter<never>, z.ZodTypeDef, Prisma.DateTimeNullableFilter<never>>>, z.ZodDate]>>>;
15985
+ updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
15986
+ }, "strict", z.ZodTypeAny, {
15987
+ id?: string | Prisma.UuidFilter<never> | undefined;
15988
+ email?: string | Prisma.StringFilter<never> | undefined;
15989
+ password?: string | Prisma.StringFilter<never> | undefined;
15990
+ firstName?: string | Prisma.StringFilter<never> | undefined;
15991
+ lastName?: string | Prisma.StringFilter<never> | undefined;
15992
+ warehouseId?: number | Prisma.IntNullableFilter<never> | null | undefined;
15993
+ isActive?: boolean | Prisma.BoolFilter<never> | undefined;
15994
+ lastSeen?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
15995
+ updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
15996
+ AND?: Prisma.EmployeeScalarWhereInput | Prisma.EmployeeScalarWhereInput[] | undefined;
15997
+ OR?: Prisma.EmployeeScalarWhereInput[] | undefined;
15998
+ NOT?: Prisma.EmployeeScalarWhereInput | Prisma.EmployeeScalarWhereInput[] | undefined;
15999
+ }, {
16000
+ id?: string | Prisma.UuidFilter<never> | undefined;
16001
+ email?: string | Prisma.StringFilter<never> | undefined;
16002
+ password?: string | Prisma.StringFilter<never> | undefined;
16003
+ firstName?: string | Prisma.StringFilter<never> | undefined;
16004
+ lastName?: string | Prisma.StringFilter<never> | undefined;
16005
+ warehouseId?: number | Prisma.IntNullableFilter<never> | null | undefined;
16006
+ isActive?: boolean | Prisma.BoolFilter<never> | undefined;
16007
+ lastSeen?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
16008
+ updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
16009
+ AND?: Prisma.EmployeeScalarWhereInput | Prisma.EmployeeScalarWhereInput[] | undefined;
16010
+ OR?: Prisma.EmployeeScalarWhereInput[] | undefined;
16011
+ NOT?: Prisma.EmployeeScalarWhereInput | Prisma.EmployeeScalarWhereInput[] | undefined;
16012
+ }>;
16013
+
15729
16014
  declare const EmployeeScalarWhereWithAggregatesInputObjectSchema: z.ZodType<Prisma.EmployeeScalarWhereWithAggregatesInput>;
15730
16015
  declare const EmployeeScalarWhereWithAggregatesInputObjectZodSchema: z.ZodObject<{
15731
16016
  AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.EmployeeScalarWhereWithAggregatesInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.EmployeeScalarWhereWithAggregatesInput>>, "many">]>>;
@@ -15779,6 +16064,16 @@ declare const EmployeeSelectObjectZodSchema: z.ZodObject<{
15779
16064
  isActive: z.ZodOptional<z.ZodBoolean>;
15780
16065
  lastSeen: z.ZodOptional<z.ZodBoolean>;
15781
16066
  updatedAt: z.ZodOptional<z.ZodBoolean>;
16067
+ warehouse: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
16068
+ select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseSelect<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.WarehouseSelect<_prisma_client_runtime_library.DefaultArgs>>>>;
16069
+ include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseInclude<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.WarehouseInclude<_prisma_client_runtime_library.DefaultArgs>>>>;
16070
+ }, "strict", z.ZodTypeAny, {
16071
+ select?: Prisma.WarehouseSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
16072
+ include?: Prisma.WarehouseInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
16073
+ }, {
16074
+ select?: Prisma.WarehouseSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
16075
+ include?: Prisma.WarehouseInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
16076
+ }>>]>>;
15782
16077
  roleAssignments: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentFindManyArgs<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentFindManyArgs<_prisma_client_runtime_library.DefaultArgs>>>]>>;
15783
16078
  _count: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
15784
16079
  select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.EmployeeCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs>>>>;
@@ -15797,6 +16092,10 @@ declare const EmployeeSelectObjectZodSchema: z.ZodObject<{
15797
16092
  isActive?: boolean | undefined;
15798
16093
  lastSeen?: boolean | undefined;
15799
16094
  updatedAt?: boolean | undefined;
16095
+ warehouse?: boolean | {
16096
+ select?: Prisma.WarehouseSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
16097
+ include?: Prisma.WarehouseInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
16098
+ } | undefined;
15800
16099
  roleAssignments?: boolean | Prisma.EmployeeRoleAssignmentFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
15801
16100
  _count?: boolean | {
15802
16101
  select?: Prisma.EmployeeCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -15811,6 +16110,10 @@ declare const EmployeeSelectObjectZodSchema: z.ZodObject<{
15811
16110
  isActive?: boolean | undefined;
15812
16111
  lastSeen?: boolean | undefined;
15813
16112
  updatedAt?: boolean | undefined;
16113
+ warehouse?: boolean | {
16114
+ select?: Prisma.WarehouseSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
16115
+ include?: Prisma.WarehouseInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
16116
+ } | undefined;
15814
16117
  roleAssignments?: boolean | Prisma.EmployeeRoleAssignmentFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
15815
16118
  _count?: boolean | {
15816
16119
  select?: Prisma.EmployeeCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -15868,6 +16171,24 @@ declare const EmployeeUncheckedCreateInputObjectZodSchema: z.ZodObject<{
15868
16171
  roleAssignments?: Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeInput | undefined;
15869
16172
  }>;
15870
16173
 
16174
+ declare const EmployeeUncheckedCreateNestedManyWithoutWarehouseInputObjectSchema: z.ZodType<Prisma.EmployeeUncheckedCreateNestedManyWithoutWarehouseInput>;
16175
+ declare const EmployeeUncheckedCreateNestedManyWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
16176
+ create: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateWithoutWarehouseInput>>, "many">, z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUncheckedCreateWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUncheckedCreateWithoutWarehouseInput>>, "many">]>>;
16177
+ connectOrCreate: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeCreateOrConnectWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateOrConnectWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeCreateOrConnectWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateOrConnectWithoutWarehouseInput>>, "many">]>>;
16178
+ createMany: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeCreateManyWarehouseInputEnvelope, z.ZodTypeDef, Prisma.EmployeeCreateManyWarehouseInputEnvelope>>>;
16179
+ connect: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, "many">]>>;
16180
+ }, "strict", z.ZodTypeAny, {
16181
+ create?: Prisma.EmployeeCreateWithoutWarehouseInput | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput | Prisma.EmployeeCreateWithoutWarehouseInput[] | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput[] | undefined;
16182
+ connectOrCreate?: Prisma.EmployeeCreateOrConnectWithoutWarehouseInput | Prisma.EmployeeCreateOrConnectWithoutWarehouseInput[] | undefined;
16183
+ connect?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16184
+ createMany?: Prisma.EmployeeCreateManyWarehouseInputEnvelope | undefined;
16185
+ }, {
16186
+ create?: Prisma.EmployeeCreateWithoutWarehouseInput | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput | Prisma.EmployeeCreateWithoutWarehouseInput[] | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput[] | undefined;
16187
+ connectOrCreate?: Prisma.EmployeeCreateOrConnectWithoutWarehouseInput | Prisma.EmployeeCreateOrConnectWithoutWarehouseInput[] | undefined;
16188
+ connect?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16189
+ createMany?: Prisma.EmployeeCreateManyWarehouseInputEnvelope | undefined;
16190
+ }>;
16191
+
15871
16192
  declare const EmployeeUncheckedCreateWithoutRoleAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeUncheckedCreateWithoutRoleAssignmentsInput>;
15872
16193
  declare const EmployeeUncheckedCreateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObject<{
15873
16194
  id: z.ZodOptional<z.ZodString>;
@@ -15901,6 +16222,39 @@ declare const EmployeeUncheckedCreateWithoutRoleAssignmentsInputObjectZodSchema:
15901
16222
  updatedAt?: Date | undefined;
15902
16223
  }>;
15903
16224
 
16225
+ declare const EmployeeUncheckedCreateWithoutWarehouseInputObjectSchema: z.ZodType<Prisma.EmployeeUncheckedCreateWithoutWarehouseInput>;
16226
+ declare const EmployeeUncheckedCreateWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
16227
+ id: z.ZodOptional<z.ZodString>;
16228
+ email: z.ZodString;
16229
+ password: z.ZodString;
16230
+ firstName: z.ZodString;
16231
+ lastName: z.ZodString;
16232
+ isActive: z.ZodOptional<z.ZodBoolean>;
16233
+ lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
16234
+ updatedAt: z.ZodOptional<z.ZodDate>;
16235
+ roleAssignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeInput>>>;
16236
+ }, "strict", z.ZodTypeAny, {
16237
+ email: string;
16238
+ password: string;
16239
+ firstName: string;
16240
+ lastName: string;
16241
+ id?: string | undefined;
16242
+ isActive?: boolean | undefined;
16243
+ lastSeen?: Date | null | undefined;
16244
+ updatedAt?: Date | undefined;
16245
+ roleAssignments?: Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeInput | undefined;
16246
+ }, {
16247
+ email: string;
16248
+ password: string;
16249
+ firstName: string;
16250
+ lastName: string;
16251
+ id?: string | undefined;
16252
+ isActive?: boolean | undefined;
16253
+ lastSeen?: Date | null | undefined;
16254
+ updatedAt?: Date | undefined;
16255
+ roleAssignments?: Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeInput | undefined;
16256
+ }>;
16257
+
15904
16258
  declare const EmployeeUncheckedUpdateInputObjectSchema: z.ZodType<Prisma.EmployeeUncheckedUpdateInput>;
15905
16259
  declare const EmployeeUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
15906
16260
  id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
@@ -15970,14 +16324,13 @@ declare const EmployeeUncheckedUpdateManyInputObjectZodSchema: z.ZodObject<{
15970
16324
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
15971
16325
  }>;
15972
16326
 
15973
- declare const EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeUncheckedUpdateWithoutRoleAssignmentsInput>;
15974
- declare const EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObject<{
16327
+ declare const EmployeeUncheckedUpdateManyWithoutWarehouseInputObjectSchema: z.ZodType<Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseInput>;
16328
+ declare const EmployeeUncheckedUpdateManyWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
15975
16329
  id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
15976
16330
  email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
15977
16331
  password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
15978
16332
  firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
15979
16333
  lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
15980
- warehouseId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
15981
16334
  isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
15982
16335
  lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
15983
16336
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
@@ -15987,7 +16340,6 @@ declare const EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectZodSchema:
15987
16340
  password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
15988
16341
  firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
15989
16342
  lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
15990
- warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
15991
16343
  isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
15992
16344
  lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
15993
16345
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
@@ -15997,14 +16349,52 @@ declare const EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectZodSchema:
15997
16349
  password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
15998
16350
  firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
15999
16351
  lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16000
- warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
16001
16352
  isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
16002
16353
  lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
16003
16354
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
16004
16355
  }>;
16005
16356
 
16006
- declare const EmployeeUpdateInputObjectSchema: z.ZodType<Prisma.EmployeeUpdateInput>;
16007
- declare const EmployeeUpdateInputObjectZodSchema: z.ZodObject<{
16357
+ declare const EmployeeUncheckedUpdateManyWithoutWarehouseNestedInputObjectSchema: z.ZodType<Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseNestedInput>;
16358
+ declare const EmployeeUncheckedUpdateManyWithoutWarehouseNestedInputObjectZodSchema: z.ZodObject<{
16359
+ create: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateWithoutWarehouseInput>>, "many">, z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUncheckedCreateWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUncheckedCreateWithoutWarehouseInput>>, "many">]>>;
16360
+ connectOrCreate: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeCreateOrConnectWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateOrConnectWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeCreateOrConnectWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateOrConnectWithoutWarehouseInput>>, "many">]>>;
16361
+ upsert: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput>>, "many">]>>;
16362
+ createMany: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeCreateManyWarehouseInputEnvelope, z.ZodTypeDef, Prisma.EmployeeCreateManyWarehouseInputEnvelope>>>;
16363
+ set: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, "many">]>>;
16364
+ disconnect: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, "many">]>>;
16365
+ delete: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, "many">]>>;
16366
+ connect: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, "many">]>>;
16367
+ update: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput>>, "many">]>>;
16368
+ updateMany: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput>>, "many">]>>;
16369
+ deleteMany: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeScalarWhereInput, z.ZodTypeDef, Prisma.EmployeeScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeScalarWhereInput, z.ZodTypeDef, Prisma.EmployeeScalarWhereInput>>, "many">]>>;
16370
+ }, "strict", z.ZodTypeAny, {
16371
+ set?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16372
+ create?: Prisma.EmployeeCreateWithoutWarehouseInput | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput | Prisma.EmployeeCreateWithoutWarehouseInput[] | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput[] | undefined;
16373
+ connectOrCreate?: Prisma.EmployeeCreateOrConnectWithoutWarehouseInput | Prisma.EmployeeCreateOrConnectWithoutWarehouseInput[] | undefined;
16374
+ connect?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16375
+ createMany?: Prisma.EmployeeCreateManyWarehouseInputEnvelope | undefined;
16376
+ update?: Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput | Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput[] | undefined;
16377
+ upsert?: Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput | Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput[] | undefined;
16378
+ disconnect?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16379
+ delete?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16380
+ updateMany?: Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput | Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput[] | undefined;
16381
+ deleteMany?: Prisma.EmployeeScalarWhereInput | Prisma.EmployeeScalarWhereInput[] | undefined;
16382
+ }, {
16383
+ set?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16384
+ create?: Prisma.EmployeeCreateWithoutWarehouseInput | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput | Prisma.EmployeeCreateWithoutWarehouseInput[] | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput[] | undefined;
16385
+ connectOrCreate?: Prisma.EmployeeCreateOrConnectWithoutWarehouseInput | Prisma.EmployeeCreateOrConnectWithoutWarehouseInput[] | undefined;
16386
+ connect?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16387
+ createMany?: Prisma.EmployeeCreateManyWarehouseInputEnvelope | undefined;
16388
+ update?: Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput | Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput[] | undefined;
16389
+ upsert?: Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput | Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput[] | undefined;
16390
+ disconnect?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16391
+ delete?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16392
+ updateMany?: Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput | Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput[] | undefined;
16393
+ deleteMany?: Prisma.EmployeeScalarWhereInput | Prisma.EmployeeScalarWhereInput[] | undefined;
16394
+ }>;
16395
+
16396
+ declare const EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeUncheckedUpdateWithoutRoleAssignmentsInput>;
16397
+ declare const EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObject<{
16008
16398
  id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16009
16399
  email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16010
16400
  password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
@@ -16014,7 +16404,6 @@ declare const EmployeeUpdateInputObjectZodSchema: z.ZodObject<{
16014
16404
  isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
16015
16405
  lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
16016
16406
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
16017
- roleAssignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInput>>>;
16018
16407
  }, "strict", z.ZodTypeAny, {
16019
16408
  id?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16020
16409
  email?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
@@ -16025,7 +16414,6 @@ declare const EmployeeUpdateInputObjectZodSchema: z.ZodObject<{
16025
16414
  isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
16026
16415
  lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
16027
16416
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
16028
- roleAssignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInput | undefined;
16029
16417
  }, {
16030
16418
  id?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16031
16419
  email?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
@@ -16036,6 +16424,74 @@ declare const EmployeeUpdateInputObjectZodSchema: z.ZodObject<{
16036
16424
  isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
16037
16425
  lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
16038
16426
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
16427
+ }>;
16428
+
16429
+ declare const EmployeeUncheckedUpdateWithoutWarehouseInputObjectSchema: z.ZodType<Prisma.EmployeeUncheckedUpdateWithoutWarehouseInput>;
16430
+ declare const EmployeeUncheckedUpdateWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
16431
+ id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16432
+ email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16433
+ password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16434
+ firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16435
+ lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16436
+ isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
16437
+ lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
16438
+ updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
16439
+ roleAssignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeNestedInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeNestedInput>>>;
16440
+ }, "strict", z.ZodTypeAny, {
16441
+ id?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16442
+ email?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16443
+ password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16444
+ firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16445
+ lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16446
+ isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
16447
+ lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
16448
+ updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
16449
+ roleAssignments?: Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeNestedInput | undefined;
16450
+ }, {
16451
+ id?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16452
+ email?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16453
+ password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16454
+ firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16455
+ lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16456
+ isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
16457
+ lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
16458
+ updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
16459
+ roleAssignments?: Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeNestedInput | undefined;
16460
+ }>;
16461
+
16462
+ declare const EmployeeUpdateInputObjectSchema: z.ZodType<Prisma.EmployeeUpdateInput>;
16463
+ declare const EmployeeUpdateInputObjectZodSchema: z.ZodObject<{
16464
+ id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16465
+ email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16466
+ password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16467
+ firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16468
+ lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16469
+ isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
16470
+ lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
16471
+ updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
16472
+ warehouse: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseUpdateOneWithoutEmployeesNestedInput, z.ZodTypeDef, Prisma.WarehouseUpdateOneWithoutEmployeesNestedInput>>>;
16473
+ roleAssignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInput>>>;
16474
+ }, "strict", z.ZodTypeAny, {
16475
+ id?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16476
+ email?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16477
+ password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16478
+ firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16479
+ lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16480
+ isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
16481
+ lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
16482
+ updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
16483
+ warehouse?: Prisma.WarehouseUpdateOneWithoutEmployeesNestedInput | undefined;
16484
+ roleAssignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInput | undefined;
16485
+ }, {
16486
+ id?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16487
+ email?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16488
+ password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16489
+ firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16490
+ lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16491
+ isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
16492
+ lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
16493
+ updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
16494
+ warehouse?: Prisma.WarehouseUpdateOneWithoutEmployeesNestedInput | undefined;
16039
16495
  roleAssignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInput | undefined;
16040
16496
  }>;
16041
16497
 
@@ -16046,7 +16502,6 @@ declare const EmployeeUpdateManyMutationInputObjectZodSchema: z.ZodObject<{
16046
16502
  password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16047
16503
  firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16048
16504
  lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16049
- warehouseId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
16050
16505
  isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
16051
16506
  lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
16052
16507
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
@@ -16056,7 +16511,6 @@ declare const EmployeeUpdateManyMutationInputObjectZodSchema: z.ZodObject<{
16056
16511
  password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16057
16512
  firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16058
16513
  lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16059
- warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
16060
16514
  isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
16061
16515
  lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
16062
16516
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
@@ -16066,12 +16520,62 @@ declare const EmployeeUpdateManyMutationInputObjectZodSchema: z.ZodObject<{
16066
16520
  password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16067
16521
  firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16068
16522
  lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16069
- warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
16070
16523
  isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
16071
16524
  lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
16072
16525
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
16073
16526
  }>;
16074
16527
 
16528
+ declare const EmployeeUpdateManyWithWhereWithoutWarehouseInputObjectSchema: z.ZodType<Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput>;
16529
+ declare const EmployeeUpdateManyWithWhereWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
16530
+ where: z.ZodLazy<z.ZodType<Prisma.EmployeeScalarWhereInput, z.ZodTypeDef, Prisma.EmployeeScalarWhereInput>>;
16531
+ data: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeUpdateManyMutationInput, z.ZodTypeDef, Prisma.EmployeeUpdateManyMutationInput>>, z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseInput>>]>;
16532
+ }, "strict", z.ZodTypeAny, {
16533
+ where: Prisma.EmployeeScalarWhereInput;
16534
+ data: Prisma.EmployeeUpdateManyMutationInput | Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseInput;
16535
+ }, {
16536
+ where: Prisma.EmployeeScalarWhereInput;
16537
+ data: Prisma.EmployeeUpdateManyMutationInput | Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseInput;
16538
+ }>;
16539
+
16540
+ declare const EmployeeUpdateManyWithoutWarehouseNestedInputObjectSchema: z.ZodType<Prisma.EmployeeUpdateManyWithoutWarehouseNestedInput>;
16541
+ declare const EmployeeUpdateManyWithoutWarehouseNestedInputObjectZodSchema: z.ZodObject<{
16542
+ create: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateWithoutWarehouseInput>>, "many">, z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUncheckedCreateWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUncheckedCreateWithoutWarehouseInput>>, "many">]>>;
16543
+ connectOrCreate: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeCreateOrConnectWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateOrConnectWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeCreateOrConnectWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateOrConnectWithoutWarehouseInput>>, "many">]>>;
16544
+ upsert: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput>>, "many">]>>;
16545
+ createMany: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeCreateManyWarehouseInputEnvelope, z.ZodTypeDef, Prisma.EmployeeCreateManyWarehouseInputEnvelope>>>;
16546
+ set: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, "many">]>>;
16547
+ disconnect: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, "many">]>>;
16548
+ delete: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, "many">]>>;
16549
+ connect: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>, "many">]>>;
16550
+ update: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput>>, "many">]>>;
16551
+ updateMany: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput>>, "many">]>>;
16552
+ deleteMany: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeScalarWhereInput, z.ZodTypeDef, Prisma.EmployeeScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeScalarWhereInput, z.ZodTypeDef, Prisma.EmployeeScalarWhereInput>>, "many">]>>;
16553
+ }, "strict", z.ZodTypeAny, {
16554
+ set?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16555
+ create?: Prisma.EmployeeCreateWithoutWarehouseInput | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput | Prisma.EmployeeCreateWithoutWarehouseInput[] | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput[] | undefined;
16556
+ connectOrCreate?: Prisma.EmployeeCreateOrConnectWithoutWarehouseInput | Prisma.EmployeeCreateOrConnectWithoutWarehouseInput[] | undefined;
16557
+ connect?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16558
+ createMany?: Prisma.EmployeeCreateManyWarehouseInputEnvelope | undefined;
16559
+ update?: Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput | Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput[] | undefined;
16560
+ upsert?: Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput | Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput[] | undefined;
16561
+ disconnect?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16562
+ delete?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16563
+ updateMany?: Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput | Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput[] | undefined;
16564
+ deleteMany?: Prisma.EmployeeScalarWhereInput | Prisma.EmployeeScalarWhereInput[] | undefined;
16565
+ }, {
16566
+ set?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16567
+ create?: Prisma.EmployeeCreateWithoutWarehouseInput | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput | Prisma.EmployeeCreateWithoutWarehouseInput[] | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput[] | undefined;
16568
+ connectOrCreate?: Prisma.EmployeeCreateOrConnectWithoutWarehouseInput | Prisma.EmployeeCreateOrConnectWithoutWarehouseInput[] | undefined;
16569
+ connect?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16570
+ createMany?: Prisma.EmployeeCreateManyWarehouseInputEnvelope | undefined;
16571
+ update?: Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput | Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput[] | undefined;
16572
+ upsert?: Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput | Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput[] | undefined;
16573
+ disconnect?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16574
+ delete?: Prisma.EmployeeWhereUniqueInput | Prisma.EmployeeWhereUniqueInput[] | undefined;
16575
+ updateMany?: Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput | Prisma.EmployeeUpdateManyWithWhereWithoutWarehouseInput[] | undefined;
16576
+ deleteMany?: Prisma.EmployeeScalarWhereInput | Prisma.EmployeeScalarWhereInput[] | undefined;
16577
+ }>;
16578
+
16075
16579
  declare const EmployeeUpdateOneRequiredWithoutRoleAssignmentsNestedInputObjectSchema: z.ZodType<Prisma.EmployeeUpdateOneRequiredWithoutRoleAssignmentsNestedInput>;
16076
16580
  declare const EmployeeUpdateOneRequiredWithoutRoleAssignmentsNestedInputObjectZodSchema: z.ZodObject<{
16077
16581
  create: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeCreateWithoutRoleAssignmentsInput, z.ZodTypeDef, Prisma.EmployeeCreateWithoutRoleAssignmentsInput>>, z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedCreateWithoutRoleAssignmentsInput, z.ZodTypeDef, Prisma.EmployeeUncheckedCreateWithoutRoleAssignmentsInput>>]>>;
@@ -16105,6 +16609,18 @@ declare const EmployeeUpdateToOneWithWhereWithoutRoleAssignmentsInputObjectZodSc
16105
16609
  where?: Prisma.EmployeeWhereInput | undefined;
16106
16610
  }>;
16107
16611
 
16612
+ declare const EmployeeUpdateWithWhereUniqueWithoutWarehouseInputObjectSchema: z.ZodType<Prisma.EmployeeUpdateWithWhereUniqueWithoutWarehouseInput>;
16613
+ declare const EmployeeUpdateWithWhereUniqueWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
16614
+ where: z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>;
16615
+ data: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeUpdateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUpdateWithoutWarehouseInput>>, z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedUpdateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUncheckedUpdateWithoutWarehouseInput>>]>;
16616
+ }, "strict", z.ZodTypeAny, {
16617
+ where: Prisma.EmployeeWhereUniqueInput;
16618
+ data: Prisma.EmployeeUpdateWithoutWarehouseInput | Prisma.EmployeeUncheckedUpdateWithoutWarehouseInput;
16619
+ }, {
16620
+ where: Prisma.EmployeeWhereUniqueInput;
16621
+ data: Prisma.EmployeeUpdateWithoutWarehouseInput | Prisma.EmployeeUncheckedUpdateWithoutWarehouseInput;
16622
+ }>;
16623
+
16108
16624
  declare const EmployeeUpdateWithoutRoleAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeUpdateWithoutRoleAssignmentsInput>;
16109
16625
  declare const EmployeeUpdateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObject<{
16110
16626
  id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
@@ -16112,30 +16628,78 @@ declare const EmployeeUpdateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObj
16112
16628
  password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16113
16629
  firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16114
16630
  lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16115
- warehouseId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
16116
16631
  isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
16117
16632
  lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
16118
16633
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
16634
+ warehouse: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseUpdateOneWithoutEmployeesNestedInput, z.ZodTypeDef, Prisma.WarehouseUpdateOneWithoutEmployeesNestedInput>>>;
16119
16635
  }, "strict", z.ZodTypeAny, {
16120
16636
  id?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16121
16637
  email?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16122
16638
  password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16123
16639
  firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16124
16640
  lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16125
- warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
16126
16641
  isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
16127
16642
  lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
16128
16643
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
16644
+ warehouse?: Prisma.WarehouseUpdateOneWithoutEmployeesNestedInput | undefined;
16129
16645
  }, {
16130
16646
  id?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16131
16647
  email?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16132
16648
  password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16133
16649
  firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16134
16650
  lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16135
- warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
16136
16651
  isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
16137
16652
  lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
16138
16653
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
16654
+ warehouse?: Prisma.WarehouseUpdateOneWithoutEmployeesNestedInput | undefined;
16655
+ }>;
16656
+
16657
+ declare const EmployeeUpdateWithoutWarehouseInputObjectSchema: z.ZodType<Prisma.EmployeeUpdateWithoutWarehouseInput>;
16658
+ declare const EmployeeUpdateWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
16659
+ id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16660
+ email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16661
+ password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16662
+ firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16663
+ lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
16664
+ isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
16665
+ lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
16666
+ updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
16667
+ roleAssignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInput>>>;
16668
+ }, "strict", z.ZodTypeAny, {
16669
+ id?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16670
+ email?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16671
+ password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16672
+ firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16673
+ lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16674
+ isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
16675
+ lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
16676
+ updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
16677
+ roleAssignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInput | undefined;
16678
+ }, {
16679
+ id?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16680
+ email?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16681
+ password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16682
+ firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16683
+ lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
16684
+ isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
16685
+ lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
16686
+ updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
16687
+ roleAssignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInput | undefined;
16688
+ }>;
16689
+
16690
+ declare const EmployeeUpsertWithWhereUniqueWithoutWarehouseInputObjectSchema: z.ZodType<Prisma.EmployeeUpsertWithWhereUniqueWithoutWarehouseInput>;
16691
+ declare const EmployeeUpsertWithWhereUniqueWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
16692
+ where: z.ZodLazy<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>;
16693
+ update: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeUpdateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUpdateWithoutWarehouseInput>>, z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedUpdateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUncheckedUpdateWithoutWarehouseInput>>]>;
16694
+ create: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateWithoutWarehouseInput>>, z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedCreateWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUncheckedCreateWithoutWarehouseInput>>]>;
16695
+ }, "strict", z.ZodTypeAny, {
16696
+ create: Prisma.EmployeeCreateWithoutWarehouseInput | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput;
16697
+ where: Prisma.EmployeeWhereUniqueInput;
16698
+ update: Prisma.EmployeeUpdateWithoutWarehouseInput | Prisma.EmployeeUncheckedUpdateWithoutWarehouseInput;
16699
+ }, {
16700
+ create: Prisma.EmployeeCreateWithoutWarehouseInput | Prisma.EmployeeUncheckedCreateWithoutWarehouseInput;
16701
+ where: Prisma.EmployeeWhereUniqueInput;
16702
+ update: Prisma.EmployeeUpdateWithoutWarehouseInput | Prisma.EmployeeUncheckedUpdateWithoutWarehouseInput;
16139
16703
  }>;
16140
16704
 
16141
16705
  declare const EmployeeUpsertWithoutRoleAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeUpsertWithoutRoleAssignmentsInput>;
@@ -16167,6 +16731,7 @@ declare const EmployeeWhereInputObjectZodSchema: z.ZodObject<{
16167
16731
  isActive: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BoolFilter<never>, z.ZodTypeDef, Prisma.BoolFilter<never>>>, z.ZodBoolean]>>;
16168
16732
  lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeNullableFilter<never>, z.ZodTypeDef, Prisma.DateTimeNullableFilter<never>>>, z.ZodDate]>>>;
16169
16733
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
16734
+ warehouse: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.WarehouseNullableScalarRelationFilter, z.ZodTypeDef, Prisma.WarehouseNullableScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.WarehouseWhereInput, z.ZodTypeDef, Prisma.WarehouseWhereInput>>]>>;
16170
16735
  roleAssignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentListRelationFilter, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentListRelationFilter>>>;
16171
16736
  }, "strict", z.ZodTypeAny, {
16172
16737
  id?: string | Prisma.UuidFilter<never> | undefined;
@@ -16181,6 +16746,7 @@ declare const EmployeeWhereInputObjectZodSchema: z.ZodObject<{
16181
16746
  AND?: Prisma.EmployeeWhereInput | Prisma.EmployeeWhereInput[] | undefined;
16182
16747
  OR?: Prisma.EmployeeWhereInput[] | undefined;
16183
16748
  NOT?: Prisma.EmployeeWhereInput | Prisma.EmployeeWhereInput[] | undefined;
16749
+ warehouse?: Prisma.WarehouseWhereInput | Prisma.WarehouseNullableScalarRelationFilter | undefined;
16184
16750
  roleAssignments?: Prisma.EmployeeRoleAssignmentListRelationFilter | undefined;
16185
16751
  }, {
16186
16752
  id?: string | Prisma.UuidFilter<never> | undefined;
@@ -16195,6 +16761,7 @@ declare const EmployeeWhereInputObjectZodSchema: z.ZodObject<{
16195
16761
  AND?: Prisma.EmployeeWhereInput | Prisma.EmployeeWhereInput[] | undefined;
16196
16762
  OR?: Prisma.EmployeeWhereInput[] | undefined;
16197
16763
  NOT?: Prisma.EmployeeWhereInput | Prisma.EmployeeWhereInput[] | undefined;
16764
+ warehouse?: Prisma.WarehouseWhereInput | Prisma.WarehouseNullableScalarRelationFilter | undefined;
16198
16765
  roleAssignments?: Prisma.EmployeeRoleAssignmentListRelationFilter | undefined;
16199
16766
  }>;
16200
16767
 
@@ -17332,15 +17899,15 @@ declare const OrganizationIncludeObjectZodSchema: z.ZodObject<{
17332
17899
  select?: Prisma.OrganizationCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
17333
17900
  }>>]>>;
17334
17901
  }, "strict", z.ZodTypeAny, {
17902
+ warehouses?: boolean | Prisma.WarehouseFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
17335
17903
  _count?: boolean | {
17336
17904
  select?: Prisma.OrganizationCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
17337
17905
  } | undefined;
17338
- warehouses?: boolean | Prisma.WarehouseFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
17339
17906
  }, {
17907
+ warehouses?: boolean | Prisma.WarehouseFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
17340
17908
  _count?: boolean | {
17341
17909
  select?: Prisma.OrganizationCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
17342
17910
  } | undefined;
17343
- warehouses?: boolean | Prisma.WarehouseFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
17344
17911
  }>;
17345
17912
 
17346
17913
  declare const OrganizationMaxAggregateInputObjectSchema: z.ZodType<Prisma.OrganizationMaxAggregateInputType>;
@@ -17527,19 +18094,19 @@ declare const OrganizationSelectObjectZodSchema: z.ZodObject<{
17527
18094
  updatedAt?: boolean | undefined;
17528
18095
  name?: boolean | undefined;
17529
18096
  website?: boolean | undefined;
18097
+ warehouses?: boolean | Prisma.WarehouseFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
17530
18098
  _count?: boolean | {
17531
18099
  select?: Prisma.OrganizationCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
17532
18100
  } | undefined;
17533
- warehouses?: boolean | Prisma.WarehouseFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
17534
18101
  }, {
17535
18102
  id?: boolean | undefined;
17536
18103
  updatedAt?: boolean | undefined;
17537
18104
  name?: boolean | undefined;
17538
18105
  website?: boolean | undefined;
18106
+ warehouses?: boolean | Prisma.WarehouseFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
17539
18107
  _count?: boolean | {
17540
18108
  select?: Prisma.OrganizationCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
17541
18109
  } | undefined;
17542
- warehouses?: boolean | Prisma.WarehouseFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
17543
18110
  }>;
17544
18111
 
17545
18112
  declare const OrganizationSumAggregateInputObjectSchema: z.ZodType<Prisma.OrganizationSumAggregateInputType>;
@@ -18192,10 +18759,10 @@ declare const StringFilterObjectZodSchema: z.ZodObject<{
18192
18759
  gt?: string | undefined;
18193
18760
  gte?: string | undefined;
18194
18761
  not?: string | Prisma.NestedStringFilter<never> | undefined;
18195
- mode?: "default" | "insensitive" | undefined;
18196
18762
  contains?: string | undefined;
18197
18763
  startsWith?: string | undefined;
18198
18764
  endsWith?: string | undefined;
18765
+ mode?: "default" | "insensitive" | undefined;
18199
18766
  }, {
18200
18767
  equals?: string | undefined;
18201
18768
  in?: string[] | undefined;
@@ -18205,10 +18772,10 @@ declare const StringFilterObjectZodSchema: z.ZodObject<{
18205
18772
  gt?: string | undefined;
18206
18773
  gte?: string | undefined;
18207
18774
  not?: string | Prisma.NestedStringFilter<never> | undefined;
18208
- mode?: "default" | "insensitive" | undefined;
18209
18775
  contains?: string | undefined;
18210
18776
  startsWith?: string | undefined;
18211
18777
  endsWith?: string | undefined;
18778
+ mode?: "default" | "insensitive" | undefined;
18212
18779
  }>;
18213
18780
 
18214
18781
  declare const StringNullableFilterObjectSchema: z.ZodType<Prisma.StringNullableFilter>;
@@ -18234,10 +18801,10 @@ declare const StringNullableFilterObjectZodSchema: z.ZodObject<{
18234
18801
  gt?: string | undefined;
18235
18802
  gte?: string | undefined;
18236
18803
  not?: string | Prisma.NestedStringNullableFilter<never> | null | undefined;
18237
- mode?: "default" | "insensitive" | undefined;
18238
18804
  contains?: string | undefined;
18239
18805
  startsWith?: string | undefined;
18240
18806
  endsWith?: string | undefined;
18807
+ mode?: "default" | "insensitive" | undefined;
18241
18808
  }, {
18242
18809
  equals?: string | null | undefined;
18243
18810
  in?: string[] | null | undefined;
@@ -18247,10 +18814,10 @@ declare const StringNullableFilterObjectZodSchema: z.ZodObject<{
18247
18814
  gt?: string | undefined;
18248
18815
  gte?: string | undefined;
18249
18816
  not?: string | Prisma.NestedStringNullableFilter<never> | null | undefined;
18250
- mode?: "default" | "insensitive" | undefined;
18251
18817
  contains?: string | undefined;
18252
18818
  startsWith?: string | undefined;
18253
18819
  endsWith?: string | undefined;
18820
+ mode?: "default" | "insensitive" | undefined;
18254
18821
  }>;
18255
18822
 
18256
18823
  declare const StringNullableWithAggregatesFilterObjectSchema: z.ZodType<Prisma.StringNullableWithAggregatesFilter>;
@@ -18279,10 +18846,10 @@ declare const StringNullableWithAggregatesFilterObjectZodSchema: z.ZodObject<{
18279
18846
  gt?: string | undefined;
18280
18847
  gte?: string | undefined;
18281
18848
  not?: string | Prisma.NestedStringNullableWithAggregatesFilter<never> | null | undefined;
18282
- mode?: "default" | "insensitive" | undefined;
18283
18849
  contains?: string | undefined;
18284
18850
  startsWith?: string | undefined;
18285
18851
  endsWith?: string | undefined;
18852
+ mode?: "default" | "insensitive" | undefined;
18286
18853
  _count?: Prisma.NestedIntNullableFilter<never> | undefined;
18287
18854
  _min?: Prisma.NestedStringNullableFilter<never> | undefined;
18288
18855
  _max?: Prisma.NestedStringNullableFilter<never> | undefined;
@@ -18295,10 +18862,10 @@ declare const StringNullableWithAggregatesFilterObjectZodSchema: z.ZodObject<{
18295
18862
  gt?: string | undefined;
18296
18863
  gte?: string | undefined;
18297
18864
  not?: string | Prisma.NestedStringNullableWithAggregatesFilter<never> | null | undefined;
18298
- mode?: "default" | "insensitive" | undefined;
18299
18865
  contains?: string | undefined;
18300
18866
  startsWith?: string | undefined;
18301
18867
  endsWith?: string | undefined;
18868
+ mode?: "default" | "insensitive" | undefined;
18302
18869
  _count?: Prisma.NestedIntNullableFilter<never> | undefined;
18303
18870
  _min?: Prisma.NestedStringNullableFilter<never> | undefined;
18304
18871
  _max?: Prisma.NestedStringNullableFilter<never> | undefined;
@@ -18330,10 +18897,10 @@ declare const StringWithAggregatesFilterObjectZodSchema: z.ZodObject<{
18330
18897
  gt?: string | undefined;
18331
18898
  gte?: string | undefined;
18332
18899
  not?: string | Prisma.NestedStringWithAggregatesFilter<never> | undefined;
18333
- mode?: "default" | "insensitive" | undefined;
18334
18900
  contains?: string | undefined;
18335
18901
  startsWith?: string | undefined;
18336
18902
  endsWith?: string | undefined;
18903
+ mode?: "default" | "insensitive" | undefined;
18337
18904
  _count?: Prisma.NestedIntFilter<never> | undefined;
18338
18905
  _min?: Prisma.NestedStringFilter<never> | undefined;
18339
18906
  _max?: Prisma.NestedStringFilter<never> | undefined;
@@ -18346,10 +18913,10 @@ declare const StringWithAggregatesFilterObjectZodSchema: z.ZodObject<{
18346
18913
  gt?: string | undefined;
18347
18914
  gte?: string | undefined;
18348
18915
  not?: string | Prisma.NestedStringWithAggregatesFilter<never> | undefined;
18349
- mode?: "default" | "insensitive" | undefined;
18350
18916
  contains?: string | undefined;
18351
18917
  startsWith?: string | undefined;
18352
18918
  endsWith?: string | undefined;
18919
+ mode?: "default" | "insensitive" | undefined;
18353
18920
  _count?: Prisma.NestedIntFilter<never> | undefined;
18354
18921
  _min?: Prisma.NestedStringFilter<never> | undefined;
18355
18922
  _max?: Prisma.NestedStringFilter<never> | undefined;
@@ -18538,6 +19105,55 @@ declare const WarehouseCountOrderByAggregateInputObjectZodSchema: z.ZodObject<{
18538
19105
  cityId?: "asc" | "desc" | undefined;
18539
19106
  }>;
18540
19107
 
19108
+ declare const WarehouseCountOutputTypeArgsObjectSchema: z.ZodObject<{
19109
+ select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs>>>>;
19110
+ }, "strict", z.ZodTypeAny, {
19111
+ select?: Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
19112
+ }, {
19113
+ select?: Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
19114
+ }>;
19115
+ declare const WarehouseCountOutputTypeArgsObjectZodSchema: z.ZodObject<{
19116
+ select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs>>>>;
19117
+ }, "strict", z.ZodTypeAny, {
19118
+ select?: Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
19119
+ }, {
19120
+ select?: Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
19121
+ }>;
19122
+
19123
+ declare const WarehouseCountOutputTypeCountEmployeesArgsObjectSchema: z.ZodObject<{
19124
+ where: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeWhereInput, z.ZodTypeDef, Prisma.EmployeeWhereInput>>>;
19125
+ }, "strict", z.ZodTypeAny, {
19126
+ where?: Prisma.EmployeeWhereInput | undefined;
19127
+ }, {
19128
+ where?: Prisma.EmployeeWhereInput | undefined;
19129
+ }>;
19130
+ declare const WarehouseCountOutputTypeCountEmployeesArgsObjectZodSchema: z.ZodObject<{
19131
+ where: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeWhereInput, z.ZodTypeDef, Prisma.EmployeeWhereInput>>>;
19132
+ }, "strict", z.ZodTypeAny, {
19133
+ where?: Prisma.EmployeeWhereInput | undefined;
19134
+ }, {
19135
+ where?: Prisma.EmployeeWhereInput | undefined;
19136
+ }>;
19137
+
19138
+ declare const WarehouseCountOutputTypeSelectObjectSchema: z.ZodType<Prisma.WarehouseCountOutputTypeSelect>;
19139
+ declare const WarehouseCountOutputTypeSelectObjectZodSchema: z.ZodObject<{
19140
+ employees: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
19141
+ where: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeWhereInput, z.ZodTypeDef, Prisma.EmployeeWhereInput>>>;
19142
+ }, "strict", z.ZodTypeAny, {
19143
+ where?: Prisma.EmployeeWhereInput | undefined;
19144
+ }, {
19145
+ where?: Prisma.EmployeeWhereInput | undefined;
19146
+ }>>]>>;
19147
+ }, "strict", z.ZodTypeAny, {
19148
+ employees?: boolean | {
19149
+ where?: Prisma.EmployeeWhereInput | undefined;
19150
+ } | undefined;
19151
+ }, {
19152
+ employees?: boolean | {
19153
+ where?: Prisma.EmployeeWhereInput | undefined;
19154
+ } | undefined;
19155
+ }>;
19156
+
18541
19157
  declare const WarehouseCreateInputObjectSchema: z.ZodType<Prisma.WarehouseCreateInput>;
18542
19158
  declare const WarehouseCreateInputObjectZodSchema: z.ZodObject<{
18543
19159
  address: z.ZodString;
@@ -18545,18 +19161,21 @@ declare const WarehouseCreateInputObjectZodSchema: z.ZodObject<{
18545
19161
  code: z.ZodString;
18546
19162
  organization: z.ZodLazy<z.ZodType<Prisma.OrganizationCreateNestedOneWithoutWarehousesInput, z.ZodTypeDef, Prisma.OrganizationCreateNestedOneWithoutWarehousesInput>>;
18547
19163
  city: z.ZodLazy<z.ZodType<Prisma.CityCreateNestedOneWithoutWarehousesInput, z.ZodTypeDef, Prisma.CityCreateNestedOneWithoutWarehousesInput>>;
19164
+ employees: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeCreateNestedManyWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateNestedManyWithoutWarehouseInput>>>;
18548
19165
  }, "strict", z.ZodTypeAny, {
18549
19166
  code: string;
18550
19167
  address: string;
18551
19168
  organization: Prisma.OrganizationCreateNestedOneWithoutWarehousesInput;
18552
19169
  city: Prisma.CityCreateNestedOneWithoutWarehousesInput;
18553
19170
  note?: string | null | undefined;
19171
+ employees?: Prisma.EmployeeCreateNestedManyWithoutWarehouseInput | undefined;
18554
19172
  }, {
18555
19173
  code: string;
18556
19174
  address: string;
18557
19175
  organization: Prisma.OrganizationCreateNestedOneWithoutWarehousesInput;
18558
19176
  city: Prisma.CityCreateNestedOneWithoutWarehousesInput;
18559
19177
  note?: string | null | undefined;
19178
+ employees?: Prisma.EmployeeCreateNestedManyWithoutWarehouseInput | undefined;
18560
19179
  }>;
18561
19180
 
18562
19181
  declare const WarehouseCreateManyCityInputObjectSchema: z.ZodType<Prisma.WarehouseCreateManyCityInput>;
@@ -18694,6 +19313,21 @@ declare const WarehouseCreateNestedManyWithoutOrganizationInputObjectZodSchema:
18694
19313
  createMany?: Prisma.WarehouseCreateManyOrganizationInputEnvelope | undefined;
18695
19314
  }>;
18696
19315
 
19316
+ declare const WarehouseCreateNestedOneWithoutEmployeesInputObjectSchema: z.ZodType<Prisma.WarehouseCreateNestedOneWithoutEmployeesInput>;
19317
+ declare const WarehouseCreateNestedOneWithoutEmployeesInputObjectZodSchema: z.ZodObject<{
19318
+ create: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.WarehouseCreateWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseCreateWithoutEmployeesInput>>, z.ZodLazy<z.ZodType<Prisma.WarehouseUncheckedCreateWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseUncheckedCreateWithoutEmployeesInput>>]>>;
19319
+ connectOrCreate: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseCreateOrConnectWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseCreateOrConnectWithoutEmployeesInput>>>;
19320
+ connect: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseWhereUniqueInput, z.ZodTypeDef, Prisma.WarehouseWhereUniqueInput>>>;
19321
+ }, "strict", z.ZodTypeAny, {
19322
+ create?: Prisma.WarehouseCreateWithoutEmployeesInput | Prisma.WarehouseUncheckedCreateWithoutEmployeesInput | undefined;
19323
+ connectOrCreate?: Prisma.WarehouseCreateOrConnectWithoutEmployeesInput | undefined;
19324
+ connect?: Prisma.WarehouseWhereUniqueInput | undefined;
19325
+ }, {
19326
+ create?: Prisma.WarehouseCreateWithoutEmployeesInput | Prisma.WarehouseUncheckedCreateWithoutEmployeesInput | undefined;
19327
+ connectOrCreate?: Prisma.WarehouseCreateOrConnectWithoutEmployeesInput | undefined;
19328
+ connect?: Prisma.WarehouseWhereUniqueInput | undefined;
19329
+ }>;
19330
+
18697
19331
  declare const WarehouseCreateOrConnectWithoutCityInputObjectSchema: z.ZodType<Prisma.WarehouseCreateOrConnectWithoutCityInput>;
18698
19332
  declare const WarehouseCreateOrConnectWithoutCityInputObjectZodSchema: z.ZodObject<{
18699
19333
  where: z.ZodLazy<z.ZodType<Prisma.WarehouseWhereUniqueInput, z.ZodTypeDef, Prisma.WarehouseWhereUniqueInput>>;
@@ -18706,6 +19340,18 @@ declare const WarehouseCreateOrConnectWithoutCityInputObjectZodSchema: z.ZodObje
18706
19340
  where: Prisma.WarehouseWhereUniqueInput;
18707
19341
  }>;
18708
19342
 
19343
+ declare const WarehouseCreateOrConnectWithoutEmployeesInputObjectSchema: z.ZodType<Prisma.WarehouseCreateOrConnectWithoutEmployeesInput>;
19344
+ declare const WarehouseCreateOrConnectWithoutEmployeesInputObjectZodSchema: z.ZodObject<{
19345
+ where: z.ZodLazy<z.ZodType<Prisma.WarehouseWhereUniqueInput, z.ZodTypeDef, Prisma.WarehouseWhereUniqueInput>>;
19346
+ create: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.WarehouseCreateWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseCreateWithoutEmployeesInput>>, z.ZodLazy<z.ZodType<Prisma.WarehouseUncheckedCreateWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseUncheckedCreateWithoutEmployeesInput>>]>;
19347
+ }, "strict", z.ZodTypeAny, {
19348
+ create: Prisma.WarehouseCreateWithoutEmployeesInput | Prisma.WarehouseUncheckedCreateWithoutEmployeesInput;
19349
+ where: Prisma.WarehouseWhereUniqueInput;
19350
+ }, {
19351
+ create: Prisma.WarehouseCreateWithoutEmployeesInput | Prisma.WarehouseUncheckedCreateWithoutEmployeesInput;
19352
+ where: Prisma.WarehouseWhereUniqueInput;
19353
+ }>;
19354
+
18709
19355
  declare const WarehouseCreateOrConnectWithoutOrganizationInputObjectSchema: z.ZodType<Prisma.WarehouseCreateOrConnectWithoutOrganizationInput>;
18710
19356
  declare const WarehouseCreateOrConnectWithoutOrganizationInputObjectZodSchema: z.ZodObject<{
18711
19357
  where: z.ZodLazy<z.ZodType<Prisma.WarehouseWhereUniqueInput, z.ZodTypeDef, Prisma.WarehouseWhereUniqueInput>>;
@@ -18725,18 +19371,45 @@ declare const WarehouseCreateWithoutCityInputObjectZodSchema: z.ZodObject<{
18725
19371
  code: z.ZodString;
18726
19372
  updatedAt: z.ZodOptional<z.ZodDate>;
18727
19373
  organization: z.ZodLazy<z.ZodType<Prisma.OrganizationCreateNestedOneWithoutWarehousesInput, z.ZodTypeDef, Prisma.OrganizationCreateNestedOneWithoutWarehousesInput>>;
19374
+ employees: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeCreateNestedManyWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateNestedManyWithoutWarehouseInput>>>;
18728
19375
  }, "strict", z.ZodTypeAny, {
18729
19376
  code: string;
18730
19377
  address: string;
18731
19378
  organization: Prisma.OrganizationCreateNestedOneWithoutWarehousesInput;
18732
19379
  updatedAt?: Date | undefined;
18733
19380
  note?: string | null | undefined;
19381
+ employees?: Prisma.EmployeeCreateNestedManyWithoutWarehouseInput | undefined;
18734
19382
  }, {
18735
19383
  code: string;
18736
19384
  address: string;
18737
19385
  organization: Prisma.OrganizationCreateNestedOneWithoutWarehousesInput;
18738
19386
  updatedAt?: Date | undefined;
18739
19387
  note?: string | null | undefined;
19388
+ employees?: Prisma.EmployeeCreateNestedManyWithoutWarehouseInput | undefined;
19389
+ }>;
19390
+
19391
+ declare const WarehouseCreateWithoutEmployeesInputObjectSchema: z.ZodType<Prisma.WarehouseCreateWithoutEmployeesInput>;
19392
+ declare const WarehouseCreateWithoutEmployeesInputObjectZodSchema: z.ZodObject<{
19393
+ address: z.ZodString;
19394
+ note: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19395
+ code: z.ZodString;
19396
+ updatedAt: z.ZodOptional<z.ZodDate>;
19397
+ organization: z.ZodLazy<z.ZodType<Prisma.OrganizationCreateNestedOneWithoutWarehousesInput, z.ZodTypeDef, Prisma.OrganizationCreateNestedOneWithoutWarehousesInput>>;
19398
+ city: z.ZodLazy<z.ZodType<Prisma.CityCreateNestedOneWithoutWarehousesInput, z.ZodTypeDef, Prisma.CityCreateNestedOneWithoutWarehousesInput>>;
19399
+ }, "strict", z.ZodTypeAny, {
19400
+ code: string;
19401
+ address: string;
19402
+ organization: Prisma.OrganizationCreateNestedOneWithoutWarehousesInput;
19403
+ city: Prisma.CityCreateNestedOneWithoutWarehousesInput;
19404
+ updatedAt?: Date | undefined;
19405
+ note?: string | null | undefined;
19406
+ }, {
19407
+ code: string;
19408
+ address: string;
19409
+ organization: Prisma.OrganizationCreateNestedOneWithoutWarehousesInput;
19410
+ city: Prisma.CityCreateNestedOneWithoutWarehousesInput;
19411
+ updatedAt?: Date | undefined;
19412
+ note?: string | null | undefined;
18740
19413
  }>;
18741
19414
 
18742
19415
  declare const WarehouseCreateWithoutOrganizationInputObjectSchema: z.ZodType<Prisma.WarehouseCreateWithoutOrganizationInput>;
@@ -18746,18 +19419,21 @@ declare const WarehouseCreateWithoutOrganizationInputObjectZodSchema: z.ZodObjec
18746
19419
  code: z.ZodString;
18747
19420
  updatedAt: z.ZodOptional<z.ZodDate>;
18748
19421
  city: z.ZodLazy<z.ZodType<Prisma.CityCreateNestedOneWithoutWarehousesInput, z.ZodTypeDef, Prisma.CityCreateNestedOneWithoutWarehousesInput>>;
19422
+ employees: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeCreateNestedManyWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeCreateNestedManyWithoutWarehouseInput>>>;
18749
19423
  }, "strict", z.ZodTypeAny, {
18750
19424
  code: string;
18751
19425
  address: string;
18752
19426
  city: Prisma.CityCreateNestedOneWithoutWarehousesInput;
18753
19427
  updatedAt?: Date | undefined;
18754
19428
  note?: string | null | undefined;
19429
+ employees?: Prisma.EmployeeCreateNestedManyWithoutWarehouseInput | undefined;
18755
19430
  }, {
18756
19431
  code: string;
18757
19432
  address: string;
18758
19433
  city: Prisma.CityCreateNestedOneWithoutWarehousesInput;
18759
19434
  updatedAt?: Date | undefined;
18760
19435
  note?: string | null | undefined;
19436
+ employees?: Prisma.EmployeeCreateNestedManyWithoutWarehouseInput | undefined;
18761
19437
  }>;
18762
19438
 
18763
19439
  declare const WarehouseIncludeObjectSchema: z.ZodType<Prisma.WarehouseInclude>;
@@ -18782,6 +19458,14 @@ declare const WarehouseIncludeObjectZodSchema: z.ZodObject<{
18782
19458
  select?: Prisma.CitySelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
18783
19459
  include?: Prisma.CityInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
18784
19460
  }>>]>>;
19461
+ employees: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.EmployeeFindManyArgs<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.EmployeeFindManyArgs<_prisma_client_runtime_library.DefaultArgs>>>]>>;
19462
+ _count: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
19463
+ select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs>>>>;
19464
+ }, "strict", z.ZodTypeAny, {
19465
+ select?: Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
19466
+ }, {
19467
+ select?: Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
19468
+ }>>]>>;
18785
19469
  }, "strict", z.ZodTypeAny, {
18786
19470
  organization?: boolean | {
18787
19471
  select?: Prisma.OrganizationSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -18791,6 +19475,10 @@ declare const WarehouseIncludeObjectZodSchema: z.ZodObject<{
18791
19475
  select?: Prisma.CitySelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
18792
19476
  include?: Prisma.CityInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
18793
19477
  } | undefined;
19478
+ employees?: boolean | Prisma.EmployeeFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
19479
+ _count?: boolean | {
19480
+ select?: Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
19481
+ } | undefined;
18794
19482
  }, {
18795
19483
  organization?: boolean | {
18796
19484
  select?: Prisma.OrganizationSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -18800,6 +19488,10 @@ declare const WarehouseIncludeObjectZodSchema: z.ZodObject<{
18800
19488
  select?: Prisma.CitySelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
18801
19489
  include?: Prisma.CityInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
18802
19490
  } | undefined;
19491
+ employees?: boolean | Prisma.EmployeeFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
19492
+ _count?: boolean | {
19493
+ select?: Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
19494
+ } | undefined;
18803
19495
  }>;
18804
19496
 
18805
19497
  declare const WarehouseListRelationFilterObjectSchema: z.ZodType<Prisma.WarehouseListRelationFilter>;
@@ -18925,6 +19617,18 @@ declare const WarehouseMinOrderByAggregateInputObjectZodSchema: z.ZodObject<{
18925
19617
  cityId?: "asc" | "desc" | undefined;
18926
19618
  }>;
18927
19619
 
19620
+ declare const WarehouseNullableScalarRelationFilterObjectSchema: z.ZodType<Prisma.WarehouseNullableScalarRelationFilter>;
19621
+ declare const WarehouseNullableScalarRelationFilterObjectZodSchema: z.ZodObject<{
19622
+ is: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseWhereInput, z.ZodTypeDef, Prisma.WarehouseWhereInput>>>>;
19623
+ isNot: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseWhereInput, z.ZodTypeDef, Prisma.WarehouseWhereInput>>>>;
19624
+ }, "strict", z.ZodTypeAny, {
19625
+ is?: Prisma.WarehouseWhereInput | null | undefined;
19626
+ isNot?: Prisma.WarehouseWhereInput | null | undefined;
19627
+ }, {
19628
+ is?: Prisma.WarehouseWhereInput | null | undefined;
19629
+ isNot?: Prisma.WarehouseWhereInput | null | undefined;
19630
+ }>;
19631
+
18928
19632
  declare const WarehouseOrderByRelationAggregateInputObjectSchema: z.ZodType<Prisma.WarehouseOrderByRelationAggregateInput>;
18929
19633
  declare const WarehouseOrderByRelationAggregateInputObjectZodSchema: z.ZodObject<{
18930
19634
  _count: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
@@ -18987,6 +19691,7 @@ declare const WarehouseOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
18987
19691
  updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
18988
19692
  organization: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.OrganizationOrderByWithRelationInput, z.ZodTypeDef, Prisma.OrganizationOrderByWithRelationInput>>>;
18989
19693
  city: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CityOrderByWithRelationInput, z.ZodTypeDef, Prisma.CityOrderByWithRelationInput>>>;
19694
+ employees: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeOrderByRelationAggregateInput, z.ZodTypeDef, Prisma.EmployeeOrderByRelationAggregateInput>>>;
18990
19695
  }, "strict", z.ZodTypeAny, {
18991
19696
  code?: "asc" | "desc" | undefined;
18992
19697
  id?: "asc" | "desc" | undefined;
@@ -18997,6 +19702,7 @@ declare const WarehouseOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
18997
19702
  cityId?: "asc" | "desc" | undefined;
18998
19703
  organization?: Prisma.OrganizationOrderByWithRelationInput | undefined;
18999
19704
  city?: Prisma.CityOrderByWithRelationInput | undefined;
19705
+ employees?: Prisma.EmployeeOrderByRelationAggregateInput | undefined;
19000
19706
  }, {
19001
19707
  code?: "asc" | "desc" | undefined;
19002
19708
  id?: "asc" | "desc" | undefined;
@@ -19007,6 +19713,7 @@ declare const WarehouseOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
19007
19713
  cityId?: "asc" | "desc" | undefined;
19008
19714
  organization?: Prisma.OrganizationOrderByWithRelationInput | undefined;
19009
19715
  city?: Prisma.CityOrderByWithRelationInput | undefined;
19716
+ employees?: Prisma.EmployeeOrderByRelationAggregateInput | undefined;
19010
19717
  }>;
19011
19718
 
19012
19719
  declare const WarehouseScalarWhereInputObjectSchema: z.ZodType<Prisma.WarehouseScalarWhereInput>;
@@ -19110,6 +19817,14 @@ declare const WarehouseSelectObjectZodSchema: z.ZodObject<{
19110
19817
  select?: Prisma.CitySelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
19111
19818
  include?: Prisma.CityInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
19112
19819
  }>>]>>;
19820
+ employees: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.EmployeeFindManyArgs<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.EmployeeFindManyArgs<_prisma_client_runtime_library.DefaultArgs>>>]>>;
19821
+ _count: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
19822
+ select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs>>>>;
19823
+ }, "strict", z.ZodTypeAny, {
19824
+ select?: Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
19825
+ }, {
19826
+ select?: Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
19827
+ }>>]>>;
19113
19828
  }, "strict", z.ZodTypeAny, {
19114
19829
  code?: boolean | undefined;
19115
19830
  id?: boolean | undefined;
@@ -19126,6 +19841,10 @@ declare const WarehouseSelectObjectZodSchema: z.ZodObject<{
19126
19841
  select?: Prisma.CitySelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
19127
19842
  include?: Prisma.CityInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
19128
19843
  } | undefined;
19844
+ employees?: boolean | Prisma.EmployeeFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
19845
+ _count?: boolean | {
19846
+ select?: Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
19847
+ } | undefined;
19129
19848
  }, {
19130
19849
  code?: boolean | undefined;
19131
19850
  id?: boolean | undefined;
@@ -19142,6 +19861,10 @@ declare const WarehouseSelectObjectZodSchema: z.ZodObject<{
19142
19861
  select?: Prisma.CitySelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
19143
19862
  include?: Prisma.CityInclude<_prisma_client_runtime_library.DefaultArgs> | undefined;
19144
19863
  } | undefined;
19864
+ employees?: boolean | Prisma.EmployeeFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
19865
+ _count?: boolean | {
19866
+ select?: Prisma.WarehouseCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
19867
+ } | undefined;
19145
19868
  }>;
19146
19869
 
19147
19870
  declare const WarehouseSumAggregateInputObjectSchema: z.ZodType<Prisma.WarehouseSumAggregateInputType>;
@@ -19182,6 +19905,7 @@ declare const WarehouseUncheckedCreateInputObjectZodSchema: z.ZodObject<{
19182
19905
  code: z.ZodString;
19183
19906
  organizationId: z.ZodNumber;
19184
19907
  cityId: z.ZodNumber;
19908
+ employees: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedCreateNestedManyWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUncheckedCreateNestedManyWithoutWarehouseInput>>>;
19185
19909
  }, "strict", z.ZodTypeAny, {
19186
19910
  code: string;
19187
19911
  address: string;
@@ -19189,6 +19913,7 @@ declare const WarehouseUncheckedCreateInputObjectZodSchema: z.ZodObject<{
19189
19913
  cityId: number;
19190
19914
  id?: number | undefined;
19191
19915
  note?: string | null | undefined;
19916
+ employees?: Prisma.EmployeeUncheckedCreateNestedManyWithoutWarehouseInput | undefined;
19192
19917
  }, {
19193
19918
  code: string;
19194
19919
  address: string;
@@ -19196,6 +19921,7 @@ declare const WarehouseUncheckedCreateInputObjectZodSchema: z.ZodObject<{
19196
19921
  cityId: number;
19197
19922
  id?: number | undefined;
19198
19923
  note?: string | null | undefined;
19924
+ employees?: Prisma.EmployeeUncheckedCreateNestedManyWithoutWarehouseInput | undefined;
19199
19925
  }>;
19200
19926
 
19201
19927
  declare const WarehouseUncheckedCreateNestedManyWithoutCityInputObjectSchema: z.ZodType<Prisma.WarehouseUncheckedCreateNestedManyWithoutCityInput>;
@@ -19242,10 +19968,39 @@ declare const WarehouseUncheckedCreateWithoutCityInputObjectZodSchema: z.ZodObje
19242
19968
  code: z.ZodString;
19243
19969
  organizationId: z.ZodNumber;
19244
19970
  updatedAt: z.ZodOptional<z.ZodDate>;
19971
+ employees: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedCreateNestedManyWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUncheckedCreateNestedManyWithoutWarehouseInput>>>;
19972
+ }, "strict", z.ZodTypeAny, {
19973
+ code: string;
19974
+ address: string;
19975
+ organizationId: number;
19976
+ id?: number | undefined;
19977
+ updatedAt?: Date | undefined;
19978
+ note?: string | null | undefined;
19979
+ employees?: Prisma.EmployeeUncheckedCreateNestedManyWithoutWarehouseInput | undefined;
19980
+ }, {
19981
+ code: string;
19982
+ address: string;
19983
+ organizationId: number;
19984
+ id?: number | undefined;
19985
+ updatedAt?: Date | undefined;
19986
+ note?: string | null | undefined;
19987
+ employees?: Prisma.EmployeeUncheckedCreateNestedManyWithoutWarehouseInput | undefined;
19988
+ }>;
19989
+
19990
+ declare const WarehouseUncheckedCreateWithoutEmployeesInputObjectSchema: z.ZodType<Prisma.WarehouseUncheckedCreateWithoutEmployeesInput>;
19991
+ declare const WarehouseUncheckedCreateWithoutEmployeesInputObjectZodSchema: z.ZodObject<{
19992
+ id: z.ZodOptional<z.ZodNumber>;
19993
+ address: z.ZodString;
19994
+ note: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19995
+ code: z.ZodString;
19996
+ organizationId: z.ZodNumber;
19997
+ cityId: z.ZodNumber;
19998
+ updatedAt: z.ZodOptional<z.ZodDate>;
19245
19999
  }, "strict", z.ZodTypeAny, {
19246
20000
  code: string;
19247
20001
  address: string;
19248
20002
  organizationId: number;
20003
+ cityId: number;
19249
20004
  id?: number | undefined;
19250
20005
  updatedAt?: Date | undefined;
19251
20006
  note?: string | null | undefined;
@@ -19253,6 +20008,7 @@ declare const WarehouseUncheckedCreateWithoutCityInputObjectZodSchema: z.ZodObje
19253
20008
  code: string;
19254
20009
  address: string;
19255
20010
  organizationId: number;
20011
+ cityId: number;
19256
20012
  id?: number | undefined;
19257
20013
  updatedAt?: Date | undefined;
19258
20014
  note?: string | null | undefined;
@@ -19266,6 +20022,7 @@ declare const WarehouseUncheckedCreateWithoutOrganizationInputObjectZodSchema: z
19266
20022
  code: z.ZodString;
19267
20023
  cityId: z.ZodNumber;
19268
20024
  updatedAt: z.ZodOptional<z.ZodDate>;
20025
+ employees: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedCreateNestedManyWithoutWarehouseInput, z.ZodTypeDef, Prisma.EmployeeUncheckedCreateNestedManyWithoutWarehouseInput>>>;
19269
20026
  }, "strict", z.ZodTypeAny, {
19270
20027
  code: string;
19271
20028
  address: string;
@@ -19273,6 +20030,7 @@ declare const WarehouseUncheckedCreateWithoutOrganizationInputObjectZodSchema: z
19273
20030
  id?: number | undefined;
19274
20031
  updatedAt?: Date | undefined;
19275
20032
  note?: string | null | undefined;
20033
+ employees?: Prisma.EmployeeUncheckedCreateNestedManyWithoutWarehouseInput | undefined;
19276
20034
  }, {
19277
20035
  code: string;
19278
20036
  address: string;
@@ -19280,6 +20038,7 @@ declare const WarehouseUncheckedCreateWithoutOrganizationInputObjectZodSchema: z
19280
20038
  id?: number | undefined;
19281
20039
  updatedAt?: Date | undefined;
19282
20040
  note?: string | null | undefined;
20041
+ employees?: Prisma.EmployeeUncheckedCreateNestedManyWithoutWarehouseInput | undefined;
19283
20042
  }>;
19284
20043
 
19285
20044
  declare const WarehouseUncheckedUpdateInputObjectSchema: z.ZodType<Prisma.WarehouseUncheckedUpdateInput>;
@@ -19291,6 +20050,7 @@ declare const WarehouseUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
19291
20050
  organizationId: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
19292
20051
  cityId: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
19293
20052
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
20053
+ employees: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseNestedInput, z.ZodTypeDef, Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseNestedInput>>>;
19294
20054
  }, "strict", z.ZodTypeAny, {
19295
20055
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19296
20056
  id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
@@ -19299,6 +20059,7 @@ declare const WarehouseUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
19299
20059
  note?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
19300
20060
  organizationId?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
19301
20061
  cityId?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
20062
+ employees?: Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseNestedInput | undefined;
19302
20063
  }, {
19303
20064
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19304
20065
  id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
@@ -19307,6 +20068,7 @@ declare const WarehouseUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
19307
20068
  note?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
19308
20069
  organizationId?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
19309
20070
  cityId?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
20071
+ employees?: Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseNestedInput | undefined;
19310
20072
  }>;
19311
20073
 
19312
20074
  declare const WarehouseUncheckedUpdateManyInputObjectSchema: z.ZodType<Prisma.WarehouseUncheckedUpdateManyInput>;
@@ -19470,6 +20232,7 @@ declare const WarehouseUncheckedUpdateWithoutCityInputObjectZodSchema: z.ZodObje
19470
20232
  code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
19471
20233
  organizationId: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
19472
20234
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
20235
+ employees: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseNestedInput, z.ZodTypeDef, Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseNestedInput>>>;
19473
20236
  }, "strict", z.ZodTypeAny, {
19474
20237
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19475
20238
  id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
@@ -19477,6 +20240,7 @@ declare const WarehouseUncheckedUpdateWithoutCityInputObjectZodSchema: z.ZodObje
19477
20240
  address?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19478
20241
  note?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
19479
20242
  organizationId?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
20243
+ employees?: Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseNestedInput | undefined;
19480
20244
  }, {
19481
20245
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19482
20246
  id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
@@ -19484,6 +20248,34 @@ declare const WarehouseUncheckedUpdateWithoutCityInputObjectZodSchema: z.ZodObje
19484
20248
  address?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19485
20249
  note?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
19486
20250
  organizationId?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
20251
+ employees?: Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseNestedInput | undefined;
20252
+ }>;
20253
+
20254
+ declare const WarehouseUncheckedUpdateWithoutEmployeesInputObjectSchema: z.ZodType<Prisma.WarehouseUncheckedUpdateWithoutEmployeesInput>;
20255
+ declare const WarehouseUncheckedUpdateWithoutEmployeesInputObjectZodSchema: z.ZodObject<{
20256
+ id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
20257
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
20258
+ note: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
20259
+ code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
20260
+ organizationId: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
20261
+ cityId: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
20262
+ updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
20263
+ }, "strict", z.ZodTypeAny, {
20264
+ code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
20265
+ id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
20266
+ updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
20267
+ address?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
20268
+ note?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
20269
+ organizationId?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
20270
+ cityId?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
20271
+ }, {
20272
+ code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
20273
+ id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
20274
+ updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
20275
+ address?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
20276
+ note?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
20277
+ organizationId?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
20278
+ cityId?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
19487
20279
  }>;
19488
20280
 
19489
20281
  declare const WarehouseUncheckedUpdateWithoutOrganizationInputObjectSchema: z.ZodType<Prisma.WarehouseUncheckedUpdateWithoutOrganizationInput>;
@@ -19494,6 +20286,7 @@ declare const WarehouseUncheckedUpdateWithoutOrganizationInputObjectZodSchema: z
19494
20286
  code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
19495
20287
  cityId: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
19496
20288
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
20289
+ employees: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseNestedInput, z.ZodTypeDef, Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseNestedInput>>>;
19497
20290
  }, "strict", z.ZodTypeAny, {
19498
20291
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19499
20292
  id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
@@ -19501,6 +20294,7 @@ declare const WarehouseUncheckedUpdateWithoutOrganizationInputObjectZodSchema: z
19501
20294
  address?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19502
20295
  note?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
19503
20296
  cityId?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
20297
+ employees?: Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseNestedInput | undefined;
19504
20298
  }, {
19505
20299
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19506
20300
  id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
@@ -19508,6 +20302,7 @@ declare const WarehouseUncheckedUpdateWithoutOrganizationInputObjectZodSchema: z
19508
20302
  address?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19509
20303
  note?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
19510
20304
  cityId?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
20305
+ employees?: Prisma.EmployeeUncheckedUpdateManyWithoutWarehouseNestedInput | undefined;
19511
20306
  }>;
19512
20307
 
19513
20308
  declare const WarehouseUpdateInputObjectSchema: z.ZodType<Prisma.WarehouseUpdateInput>;
@@ -19518,6 +20313,7 @@ declare const WarehouseUpdateInputObjectZodSchema: z.ZodObject<{
19518
20313
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
19519
20314
  organization: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.OrganizationUpdateOneRequiredWithoutWarehousesNestedInput, z.ZodTypeDef, Prisma.OrganizationUpdateOneRequiredWithoutWarehousesNestedInput>>>;
19520
20315
  city: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CityUpdateOneRequiredWithoutWarehousesNestedInput, z.ZodTypeDef, Prisma.CityUpdateOneRequiredWithoutWarehousesNestedInput>>>;
20316
+ employees: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeUpdateManyWithoutWarehouseNestedInput, z.ZodTypeDef, Prisma.EmployeeUpdateManyWithoutWarehouseNestedInput>>>;
19521
20317
  }, "strict", z.ZodTypeAny, {
19522
20318
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19523
20319
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
@@ -19525,6 +20321,7 @@ declare const WarehouseUpdateInputObjectZodSchema: z.ZodObject<{
19525
20321
  note?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
19526
20322
  organization?: Prisma.OrganizationUpdateOneRequiredWithoutWarehousesNestedInput | undefined;
19527
20323
  city?: Prisma.CityUpdateOneRequiredWithoutWarehousesNestedInput | undefined;
20324
+ employees?: Prisma.EmployeeUpdateManyWithoutWarehouseNestedInput | undefined;
19528
20325
  }, {
19529
20326
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19530
20327
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
@@ -19532,6 +20329,7 @@ declare const WarehouseUpdateInputObjectZodSchema: z.ZodObject<{
19532
20329
  note?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
19533
20330
  organization?: Prisma.OrganizationUpdateOneRequiredWithoutWarehousesNestedInput | undefined;
19534
20331
  city?: Prisma.CityUpdateOneRequiredWithoutWarehousesNestedInput | undefined;
20332
+ employees?: Prisma.EmployeeUpdateManyWithoutWarehouseNestedInput | undefined;
19535
20333
  }>;
19536
20334
 
19537
20335
  declare const WarehouseUpdateManyMutationInputObjectSchema: z.ZodType<Prisma.WarehouseUpdateManyMutationInput>;
@@ -19654,6 +20452,45 @@ declare const WarehouseUpdateManyWithoutOrganizationNestedInputObjectZodSchema:
19654
20452
  deleteMany?: Prisma.WarehouseScalarWhereInput | Prisma.WarehouseScalarWhereInput[] | undefined;
19655
20453
  }>;
19656
20454
 
20455
+ declare const WarehouseUpdateOneWithoutEmployeesNestedInputObjectSchema: z.ZodType<Prisma.WarehouseUpdateOneWithoutEmployeesNestedInput>;
20456
+ declare const WarehouseUpdateOneWithoutEmployeesNestedInputObjectZodSchema: z.ZodObject<{
20457
+ create: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.WarehouseCreateWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseCreateWithoutEmployeesInput>>, z.ZodLazy<z.ZodType<Prisma.WarehouseUncheckedCreateWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseUncheckedCreateWithoutEmployeesInput>>]>>;
20458
+ connectOrCreate: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseCreateOrConnectWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseCreateOrConnectWithoutEmployeesInput>>>;
20459
+ upsert: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseUpsertWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseUpsertWithoutEmployeesInput>>>;
20460
+ disconnect: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.WarehouseWhereInput, z.ZodTypeDef, Prisma.WarehouseWhereInput>>]>>;
20461
+ delete: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.WarehouseWhereInput, z.ZodTypeDef, Prisma.WarehouseWhereInput>>]>>;
20462
+ connect: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseWhereUniqueInput, z.ZodTypeDef, Prisma.WarehouseWhereUniqueInput>>>;
20463
+ update: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.WarehouseUpdateToOneWithWhereWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseUpdateToOneWithWhereWithoutEmployeesInput>>, z.ZodLazy<z.ZodType<Prisma.WarehouseUpdateWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseUpdateWithoutEmployeesInput>>, z.ZodLazy<z.ZodType<Prisma.WarehouseUncheckedUpdateWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseUncheckedUpdateWithoutEmployeesInput>>]>>;
20464
+ }, "strict", z.ZodTypeAny, {
20465
+ create?: Prisma.WarehouseCreateWithoutEmployeesInput | Prisma.WarehouseUncheckedCreateWithoutEmployeesInput | undefined;
20466
+ connectOrCreate?: Prisma.WarehouseCreateOrConnectWithoutEmployeesInput | undefined;
20467
+ connect?: Prisma.WarehouseWhereUniqueInput | undefined;
20468
+ update?: Prisma.WarehouseUpdateWithoutEmployeesInput | Prisma.WarehouseUncheckedUpdateWithoutEmployeesInput | Prisma.WarehouseUpdateToOneWithWhereWithoutEmployeesInput | undefined;
20469
+ upsert?: Prisma.WarehouseUpsertWithoutEmployeesInput | undefined;
20470
+ disconnect?: boolean | Prisma.WarehouseWhereInput | undefined;
20471
+ delete?: boolean | Prisma.WarehouseWhereInput | undefined;
20472
+ }, {
20473
+ create?: Prisma.WarehouseCreateWithoutEmployeesInput | Prisma.WarehouseUncheckedCreateWithoutEmployeesInput | undefined;
20474
+ connectOrCreate?: Prisma.WarehouseCreateOrConnectWithoutEmployeesInput | undefined;
20475
+ connect?: Prisma.WarehouseWhereUniqueInput | undefined;
20476
+ update?: Prisma.WarehouseUpdateWithoutEmployeesInput | Prisma.WarehouseUncheckedUpdateWithoutEmployeesInput | Prisma.WarehouseUpdateToOneWithWhereWithoutEmployeesInput | undefined;
20477
+ upsert?: Prisma.WarehouseUpsertWithoutEmployeesInput | undefined;
20478
+ disconnect?: boolean | Prisma.WarehouseWhereInput | undefined;
20479
+ delete?: boolean | Prisma.WarehouseWhereInput | undefined;
20480
+ }>;
20481
+
20482
+ declare const WarehouseUpdateToOneWithWhereWithoutEmployeesInputObjectSchema: z.ZodType<Prisma.WarehouseUpdateToOneWithWhereWithoutEmployeesInput>;
20483
+ declare const WarehouseUpdateToOneWithWhereWithoutEmployeesInputObjectZodSchema: z.ZodObject<{
20484
+ where: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseWhereInput, z.ZodTypeDef, Prisma.WarehouseWhereInput>>>;
20485
+ data: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.WarehouseUpdateWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseUpdateWithoutEmployeesInput>>, z.ZodLazy<z.ZodType<Prisma.WarehouseUncheckedUpdateWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseUncheckedUpdateWithoutEmployeesInput>>]>;
20486
+ }, "strict", z.ZodTypeAny, {
20487
+ data: Prisma.WarehouseUpdateWithoutEmployeesInput | Prisma.WarehouseUncheckedUpdateWithoutEmployeesInput;
20488
+ where?: Prisma.WarehouseWhereInput | undefined;
20489
+ }, {
20490
+ data: Prisma.WarehouseUpdateWithoutEmployeesInput | Prisma.WarehouseUncheckedUpdateWithoutEmployeesInput;
20491
+ where?: Prisma.WarehouseWhereInput | undefined;
20492
+ }>;
20493
+
19657
20494
  declare const WarehouseUpdateWithWhereUniqueWithoutCityInputObjectSchema: z.ZodType<Prisma.WarehouseUpdateWithWhereUniqueWithoutCityInput>;
19658
20495
  declare const WarehouseUpdateWithWhereUniqueWithoutCityInputObjectZodSchema: z.ZodObject<{
19659
20496
  where: z.ZodLazy<z.ZodType<Prisma.WarehouseWhereUniqueInput, z.ZodTypeDef, Prisma.WarehouseWhereUniqueInput>>;
@@ -19685,18 +20522,45 @@ declare const WarehouseUpdateWithoutCityInputObjectZodSchema: z.ZodObject<{
19685
20522
  code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
19686
20523
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
19687
20524
  organization: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.OrganizationUpdateOneRequiredWithoutWarehousesNestedInput, z.ZodTypeDef, Prisma.OrganizationUpdateOneRequiredWithoutWarehousesNestedInput>>>;
20525
+ employees: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeUpdateManyWithoutWarehouseNestedInput, z.ZodTypeDef, Prisma.EmployeeUpdateManyWithoutWarehouseNestedInput>>>;
20526
+ }, "strict", z.ZodTypeAny, {
20527
+ code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
20528
+ updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
20529
+ address?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
20530
+ note?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
20531
+ organization?: Prisma.OrganizationUpdateOneRequiredWithoutWarehousesNestedInput | undefined;
20532
+ employees?: Prisma.EmployeeUpdateManyWithoutWarehouseNestedInput | undefined;
20533
+ }, {
20534
+ code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
20535
+ updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
20536
+ address?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
20537
+ note?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
20538
+ organization?: Prisma.OrganizationUpdateOneRequiredWithoutWarehousesNestedInput | undefined;
20539
+ employees?: Prisma.EmployeeUpdateManyWithoutWarehouseNestedInput | undefined;
20540
+ }>;
20541
+
20542
+ declare const WarehouseUpdateWithoutEmployeesInputObjectSchema: z.ZodType<Prisma.WarehouseUpdateWithoutEmployeesInput>;
20543
+ declare const WarehouseUpdateWithoutEmployeesInputObjectZodSchema: z.ZodObject<{
20544
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
20545
+ note: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
20546
+ code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
20547
+ updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
20548
+ organization: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.OrganizationUpdateOneRequiredWithoutWarehousesNestedInput, z.ZodTypeDef, Prisma.OrganizationUpdateOneRequiredWithoutWarehousesNestedInput>>>;
20549
+ city: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CityUpdateOneRequiredWithoutWarehousesNestedInput, z.ZodTypeDef, Prisma.CityUpdateOneRequiredWithoutWarehousesNestedInput>>>;
19688
20550
  }, "strict", z.ZodTypeAny, {
19689
20551
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19690
20552
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
19691
20553
  address?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19692
20554
  note?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
19693
20555
  organization?: Prisma.OrganizationUpdateOneRequiredWithoutWarehousesNestedInput | undefined;
20556
+ city?: Prisma.CityUpdateOneRequiredWithoutWarehousesNestedInput | undefined;
19694
20557
  }, {
19695
20558
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19696
20559
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
19697
20560
  address?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19698
20561
  note?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
19699
20562
  organization?: Prisma.OrganizationUpdateOneRequiredWithoutWarehousesNestedInput | undefined;
20563
+ city?: Prisma.CityUpdateOneRequiredWithoutWarehousesNestedInput | undefined;
19700
20564
  }>;
19701
20565
 
19702
20566
  declare const WarehouseUpdateWithoutOrganizationInputObjectSchema: z.ZodType<Prisma.WarehouseUpdateWithoutOrganizationInput>;
@@ -19706,18 +20570,21 @@ declare const WarehouseUpdateWithoutOrganizationInputObjectZodSchema: z.ZodObjec
19706
20570
  code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
19707
20571
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
19708
20572
  city: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CityUpdateOneRequiredWithoutWarehousesNestedInput, z.ZodTypeDef, Prisma.CityUpdateOneRequiredWithoutWarehousesNestedInput>>>;
20573
+ employees: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeUpdateManyWithoutWarehouseNestedInput, z.ZodTypeDef, Prisma.EmployeeUpdateManyWithoutWarehouseNestedInput>>>;
19709
20574
  }, "strict", z.ZodTypeAny, {
19710
20575
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19711
20576
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
19712
20577
  address?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19713
20578
  note?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
19714
20579
  city?: Prisma.CityUpdateOneRequiredWithoutWarehousesNestedInput | undefined;
20580
+ employees?: Prisma.EmployeeUpdateManyWithoutWarehouseNestedInput | undefined;
19715
20581
  }, {
19716
20582
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19717
20583
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
19718
20584
  address?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
19719
20585
  note?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
19720
20586
  city?: Prisma.CityUpdateOneRequiredWithoutWarehousesNestedInput | undefined;
20587
+ employees?: Prisma.EmployeeUpdateManyWithoutWarehouseNestedInput | undefined;
19721
20588
  }>;
19722
20589
 
19723
20590
  declare const WarehouseUpsertWithWhereUniqueWithoutCityInputObjectSchema: z.ZodType<Prisma.WarehouseUpsertWithWhereUniqueWithoutCityInput>;
@@ -19750,6 +20617,21 @@ declare const WarehouseUpsertWithWhereUniqueWithoutOrganizationInputObjectZodSch
19750
20617
  update: Prisma.WarehouseUpdateWithoutOrganizationInput | Prisma.WarehouseUncheckedUpdateWithoutOrganizationInput;
19751
20618
  }>;
19752
20619
 
20620
+ declare const WarehouseUpsertWithoutEmployeesInputObjectSchema: z.ZodType<Prisma.WarehouseUpsertWithoutEmployeesInput>;
20621
+ declare const WarehouseUpsertWithoutEmployeesInputObjectZodSchema: z.ZodObject<{
20622
+ update: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.WarehouseUpdateWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseUpdateWithoutEmployeesInput>>, z.ZodLazy<z.ZodType<Prisma.WarehouseUncheckedUpdateWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseUncheckedUpdateWithoutEmployeesInput>>]>;
20623
+ create: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.WarehouseCreateWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseCreateWithoutEmployeesInput>>, z.ZodLazy<z.ZodType<Prisma.WarehouseUncheckedCreateWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseUncheckedCreateWithoutEmployeesInput>>]>;
20624
+ where: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseWhereInput, z.ZodTypeDef, Prisma.WarehouseWhereInput>>>;
20625
+ }, "strict", z.ZodTypeAny, {
20626
+ create: Prisma.WarehouseCreateWithoutEmployeesInput | Prisma.WarehouseUncheckedCreateWithoutEmployeesInput;
20627
+ update: Prisma.WarehouseUpdateWithoutEmployeesInput | Prisma.WarehouseUncheckedUpdateWithoutEmployeesInput;
20628
+ where?: Prisma.WarehouseWhereInput | undefined;
20629
+ }, {
20630
+ create: Prisma.WarehouseCreateWithoutEmployeesInput | Prisma.WarehouseUncheckedCreateWithoutEmployeesInput;
20631
+ update: Prisma.WarehouseUpdateWithoutEmployeesInput | Prisma.WarehouseUncheckedUpdateWithoutEmployeesInput;
20632
+ where?: Prisma.WarehouseWhereInput | undefined;
20633
+ }>;
20634
+
19753
20635
  declare const WarehouseWhereInputObjectSchema: z.ZodType<Prisma.WarehouseWhereInput>;
19754
20636
  declare const WarehouseWhereInputObjectZodSchema: z.ZodObject<{
19755
20637
  AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.WarehouseWhereInput, z.ZodTypeDef, Prisma.WarehouseWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.WarehouseWhereInput, z.ZodTypeDef, Prisma.WarehouseWhereInput>>, "many">]>>;
@@ -19764,6 +20646,7 @@ declare const WarehouseWhereInputObjectZodSchema: z.ZodObject<{
19764
20646
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
19765
20647
  organization: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.OrganizationScalarRelationFilter, z.ZodTypeDef, Prisma.OrganizationScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.OrganizationWhereInput, z.ZodTypeDef, Prisma.OrganizationWhereInput>>]>>;
19766
20648
  city: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CityScalarRelationFilter, z.ZodTypeDef, Prisma.CityScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.CityWhereInput, z.ZodTypeDef, Prisma.CityWhereInput>>]>>;
20649
+ employees: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeListRelationFilter, z.ZodTypeDef, Prisma.EmployeeListRelationFilter>>>;
19767
20650
  }, "strict", z.ZodTypeAny, {
19768
20651
  code?: string | Prisma.StringFilter<never> | undefined;
19769
20652
  id?: number | Prisma.IntFilter<never> | undefined;
@@ -19777,6 +20660,7 @@ declare const WarehouseWhereInputObjectZodSchema: z.ZodObject<{
19777
20660
  NOT?: Prisma.WarehouseWhereInput | Prisma.WarehouseWhereInput[] | undefined;
19778
20661
  organization?: Prisma.OrganizationWhereInput | Prisma.OrganizationScalarRelationFilter | undefined;
19779
20662
  city?: Prisma.CityWhereInput | Prisma.CityScalarRelationFilter | undefined;
20663
+ employees?: Prisma.EmployeeListRelationFilter | undefined;
19780
20664
  }, {
19781
20665
  code?: string | Prisma.StringFilter<never> | undefined;
19782
20666
  id?: number | Prisma.IntFilter<never> | undefined;
@@ -19790,6 +20674,7 @@ declare const WarehouseWhereInputObjectZodSchema: z.ZodObject<{
19790
20674
  NOT?: Prisma.WarehouseWhereInput | Prisma.WarehouseWhereInput[] | undefined;
19791
20675
  organization?: Prisma.OrganizationWhereInput | Prisma.OrganizationScalarRelationFilter | undefined;
19792
20676
  city?: Prisma.CityWhereInput | Prisma.CityScalarRelationFilter | undefined;
20677
+ employees?: Prisma.EmployeeListRelationFilter | undefined;
19793
20678
  }>;
19794
20679
 
19795
20680
  declare const WarehouseWhereUniqueInputObjectSchema: z.ZodType<Prisma.WarehouseWhereUniqueInput>;
@@ -19814,6 +20699,7 @@ declare const EmployeeModelSchema: z.ZodObject<{
19814
20699
  isActive: z.ZodBoolean;
19815
20700
  lastSeen: z.ZodNullable<z.ZodDate>;
19816
20701
  updatedAt: z.ZodDate;
20702
+ warehouse: z.ZodNullable<z.ZodUnknown>;
19817
20703
  roleAssignments: z.ZodArray<z.ZodUnknown, "many">;
19818
20704
  }, "strict", z.ZodTypeAny, {
19819
20705
  id: string;
@@ -19826,6 +20712,7 @@ declare const EmployeeModelSchema: z.ZodObject<{
19826
20712
  lastSeen: Date | null;
19827
20713
  updatedAt: Date;
19828
20714
  roleAssignments: unknown[];
20715
+ warehouse?: unknown;
19829
20716
  }, {
19830
20717
  id: string;
19831
20718
  email: string;
@@ -19837,6 +20724,7 @@ declare const EmployeeModelSchema: z.ZodObject<{
19837
20724
  lastSeen: Date | null;
19838
20725
  updatedAt: Date;
19839
20726
  roleAssignments: unknown[];
20727
+ warehouse?: unknown;
19840
20728
  }>;
19841
20729
  type EmployeePureType = z.infer<typeof EmployeeModelSchema>;
19842
20730
 
@@ -20018,6 +20906,7 @@ declare const WarehouseModelSchema: z.ZodObject<{
20018
20906
  updatedAt: z.ZodDate;
20019
20907
  organization: z.ZodUnknown;
20020
20908
  city: z.ZodUnknown;
20909
+ employees: z.ZodArray<z.ZodUnknown, "many">;
20021
20910
  }, "strict", z.ZodTypeAny, {
20022
20911
  code: string;
20023
20912
  id: number;
@@ -20026,6 +20915,7 @@ declare const WarehouseModelSchema: z.ZodObject<{
20026
20915
  note: string | null;
20027
20916
  organizationId: number;
20028
20917
  cityId: number;
20918
+ employees: unknown[];
20029
20919
  organization?: unknown;
20030
20920
  city?: unknown;
20031
20921
  }, {
@@ -20036,6 +20926,7 @@ declare const WarehouseModelSchema: z.ZodObject<{
20036
20926
  note: string | null;
20037
20927
  organizationId: number;
20038
20928
  cityId: number;
20929
+ employees: unknown[];
20039
20930
  organization?: unknown;
20040
20931
  city?: unknown;
20041
20932
  }>;
@@ -20051,6 +20942,7 @@ declare const EmployeeInputSchema: z.ZodObject<{
20051
20942
  isActive: z.ZodBoolean;
20052
20943
  lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
20053
20944
  updatedAt: z.ZodDate;
20945
+ warehouse: z.ZodNullable<z.ZodOptional<z.ZodUnknown>>;
20054
20946
  roleAssignments: z.ZodArray<z.ZodUnknown, "many">;
20055
20947
  }, "strict", z.ZodTypeAny, {
20056
20948
  id: string;
@@ -20063,6 +20955,7 @@ declare const EmployeeInputSchema: z.ZodObject<{
20063
20955
  roleAssignments: unknown[];
20064
20956
  warehouseId?: number | null | undefined;
20065
20957
  lastSeen?: Date | null | undefined;
20958
+ warehouse?: unknown;
20066
20959
  }, {
20067
20960
  id: string;
20068
20961
  email: string;
@@ -20074,6 +20967,7 @@ declare const EmployeeInputSchema: z.ZodObject<{
20074
20967
  roleAssignments: unknown[];
20075
20968
  warehouseId?: number | null | undefined;
20076
20969
  lastSeen?: Date | null | undefined;
20970
+ warehouse?: unknown;
20077
20971
  }>;
20078
20972
  type EmployeeInputType = z.infer<typeof EmployeeInputSchema>;
20079
20973
 
@@ -20255,6 +21149,7 @@ declare const WarehouseInputSchema: z.ZodObject<{
20255
21149
  updatedAt: z.ZodDate;
20256
21150
  organization: z.ZodUnknown;
20257
21151
  city: z.ZodUnknown;
21152
+ employees: z.ZodArray<z.ZodUnknown, "many">;
20258
21153
  }, "strict", z.ZodTypeAny, {
20259
21154
  code: string;
20260
21155
  id: number;
@@ -20262,6 +21157,7 @@ declare const WarehouseInputSchema: z.ZodObject<{
20262
21157
  address: string;
20263
21158
  organizationId: number;
20264
21159
  cityId: number;
21160
+ employees: unknown[];
20265
21161
  note?: string | null | undefined;
20266
21162
  organization?: unknown;
20267
21163
  city?: unknown;
@@ -20272,6 +21168,7 @@ declare const WarehouseInputSchema: z.ZodObject<{
20272
21168
  address: string;
20273
21169
  organizationId: number;
20274
21170
  cityId: number;
21171
+ employees: unknown[];
20275
21172
  note?: string | null | undefined;
20276
21173
  organization?: unknown;
20277
21174
  city?: unknown;
@@ -20288,6 +21185,7 @@ declare const EmployeeResultSchema: z.ZodObject<{
20288
21185
  isActive: z.ZodBoolean;
20289
21186
  lastSeen: z.ZodNullable<z.ZodDate>;
20290
21187
  updatedAt: z.ZodDate;
21188
+ warehouse: z.ZodNullable<z.ZodUnknown>;
20291
21189
  roleAssignments: z.ZodArray<z.ZodUnknown, "many">;
20292
21190
  }, "strict", z.ZodTypeAny, {
20293
21191
  id: string;
@@ -20300,6 +21198,7 @@ declare const EmployeeResultSchema: z.ZodObject<{
20300
21198
  lastSeen: Date | null;
20301
21199
  updatedAt: Date;
20302
21200
  roleAssignments: unknown[];
21201
+ warehouse?: unknown;
20303
21202
  }, {
20304
21203
  id: string;
20305
21204
  email: string;
@@ -20311,6 +21210,7 @@ declare const EmployeeResultSchema: z.ZodObject<{
20311
21210
  lastSeen: Date | null;
20312
21211
  updatedAt: Date;
20313
21212
  roleAssignments: unknown[];
21213
+ warehouse?: unknown;
20314
21214
  }>;
20315
21215
  type EmployeeResultType = z.infer<typeof EmployeeResultSchema>;
20316
21216
 
@@ -20492,6 +21392,7 @@ declare const WarehouseResultSchema: z.ZodObject<{
20492
21392
  updatedAt: z.ZodDate;
20493
21393
  organization: z.ZodUnknown;
20494
21394
  city: z.ZodUnknown;
21395
+ employees: z.ZodArray<z.ZodUnknown, "many">;
20495
21396
  }, "strict", z.ZodTypeAny, {
20496
21397
  code: string;
20497
21398
  id: number;
@@ -20500,6 +21401,7 @@ declare const WarehouseResultSchema: z.ZodObject<{
20500
21401
  note: string | null;
20501
21402
  organizationId: number;
20502
21403
  cityId: number;
21404
+ employees: unknown[];
20503
21405
  organization?: unknown;
20504
21406
  city?: unknown;
20505
21407
  }, {
@@ -20510,6 +21412,7 @@ declare const WarehouseResultSchema: z.ZodObject<{
20510
21412
  note: string | null;
20511
21413
  organizationId: number;
20512
21414
  cityId: number;
21415
+ employees: unknown[];
20513
21416
  organization?: unknown;
20514
21417
  city?: unknown;
20515
21418
  }>;
@@ -20601,6 +21504,10 @@ declare const OrganizationSchema: z$1.ZodObject<{
20601
21504
  type CreateOrganizationDto = z$1.infer<typeof CreateOrganizationSchema>;
20602
21505
  type UpdateOrganizationDto = z$1.infer<typeof UpdateOrganizationSchema>;
20603
21506
  type Organization = z$1.infer<typeof OrganizationSchema>;
21507
+ interface OrganizationStats {
21508
+ warehouseCount: number;
21509
+ employeeCount: number;
21510
+ }
20604
21511
 
20605
21512
  declare const CreateWarehouseSchema: z$1.ZodObject<{
20606
21513
  address: z$1.ZodString;
@@ -20647,6 +21554,7 @@ declare const WarehouseSchema: z$1.ZodObject<{
20647
21554
  note: z$1.ZodNullable<z$1.ZodString>;
20648
21555
  organizationId: z$1.ZodNumber;
20649
21556
  cityId: z$1.ZodNumber;
21557
+ employees: z$1.ZodArray<z$1.ZodUnknown, "many">;
20650
21558
  } & {
20651
21559
  updatedAt: z$1.ZodString;
20652
21560
  }, "strict", z$1.ZodTypeAny, {
@@ -20657,6 +21565,7 @@ declare const WarehouseSchema: z$1.ZodObject<{
20657
21565
  note: string | null;
20658
21566
  organizationId: number;
20659
21567
  cityId: number;
21568
+ employees: unknown[];
20660
21569
  }, {
20661
21570
  code: string;
20662
21571
  id: number;
@@ -20665,6 +21574,7 @@ declare const WarehouseSchema: z$1.ZodObject<{
20665
21574
  note: string | null;
20666
21575
  organizationId: number;
20667
21576
  cityId: number;
21577
+ employees: unknown[];
20668
21578
  }>;
20669
21579
  type CreateWarehouseDto = z$1.infer<typeof CreateWarehouseSchema>;
20670
21580
  type UpdateWarehouseDto = z$1.infer<typeof UpdateWarehouseSchema>;
@@ -20730,4 +21640,4 @@ declare const CountrySchema: z$1.ZodObject<{
20730
21640
  type CreateCountryDto = z$1.infer<typeof CreateCountrySchema>;
20731
21641
  type Country = z$1.infer<typeof CountrySchema>;
20732
21642
 
20733
- export { type AuthTokens, BigIntFieldUpdateOperationsInputObjectSchema, BigIntFieldUpdateOperationsInputObjectZodSchema, BigIntFilterObjectSchema, BigIntFilterObjectZodSchema, BigIntWithAggregatesFilterObjectSchema, BigIntWithAggregatesFilterObjectZodSchema, BoolFieldUpdateOperationsInputObjectSchema, BoolFieldUpdateOperationsInputObjectZodSchema, BoolFilterObjectSchema, BoolFilterObjectZodSchema, BoolWithAggregatesFilterObjectSchema, BoolWithAggregatesFilterObjectZodSchema, type City, CityAggregateResultSchema, CityAggregateSchema, CityAggregateZodSchema, CityArgsObjectSchema, CityArgsObjectZodSchema, CityAvgAggregateInputObjectSchema, CityAvgAggregateInputObjectZodSchema, CityAvgOrderByAggregateInputObjectSchema, CityAvgOrderByAggregateInputObjectZodSchema, CityCountAggregateInputObjectSchema, CityCountAggregateInputObjectZodSchema, CityCountOrderByAggregateInputObjectSchema, CityCountOrderByAggregateInputObjectZodSchema, CityCountOutputTypeArgsObjectSchema, CityCountOutputTypeArgsObjectZodSchema, CityCountOutputTypeCountWarehousesArgsObjectSchema, CityCountOutputTypeCountWarehousesArgsObjectZodSchema, CityCountOutputTypeSelectObjectSchema, CityCountOutputTypeSelectObjectZodSchema, CityCountResultSchema, CityCountSchema, CityCountZodSchema, CityCreateInputObjectSchema, CityCreateInputObjectZodSchema, CityCreateManyAndReturnSchema, CityCreateManyAndReturnZodSchema, CityCreateManyCountryInputEnvelopeObjectSchema, CityCreateManyCountryInputEnvelopeObjectZodSchema, CityCreateManyCountryInputObjectSchema, CityCreateManyCountryInputObjectZodSchema, CityCreateManyInputObjectSchema, CityCreateManyInputObjectZodSchema, CityCreateManyResultSchema, CityCreateManySchema, CityCreateManyZodSchema, CityCreateNestedManyWithoutCountryInputObjectSchema, CityCreateNestedManyWithoutCountryInputObjectZodSchema, CityCreateNestedOneWithoutWarehousesInputObjectSchema, CityCreateNestedOneWithoutWarehousesInputObjectZodSchema, CityCreateOneSchema, CityCreateOneZodSchema, CityCreateOrConnectWithoutCountryInputObjectSchema, CityCreateOrConnectWithoutCountryInputObjectZodSchema, CityCreateOrConnectWithoutWarehousesInputObjectSchema, CityCreateOrConnectWithoutWarehousesInputObjectZodSchema, CityCreateResultSchema, CityCreateWithoutCountryInputObjectSchema, CityCreateWithoutCountryInputObjectZodSchema, CityCreateWithoutWarehousesInputObjectSchema, CityCreateWithoutWarehousesInputObjectZodSchema, CityDeleteManyResultSchema, CityDeleteManySchema, CityDeleteManyZodSchema, CityDeleteOneSchema, CityDeleteOneZodSchema, CityDeleteResultSchema, CityFindFirstOrThrowSchema, CityFindFirstOrThrowSelectSchema, CityFindFirstOrThrowSelectZodSchema, CityFindFirstOrThrowZodSchema, CityFindFirstResultSchema, CityFindFirstSchema, CityFindFirstSelectSchema, CityFindFirstSelectZodSchema, CityFindFirstZodSchema, CityFindManyResultSchema, CityFindManySchema, CityFindManySelectSchema, CityFindManySelectZodSchema, CityFindManyZodSchema, CityFindUniqueOrThrowSchema, CityFindUniqueOrThrowZodSchema, CityFindUniqueResultSchema, CityFindUniqueSchema, CityFindUniqueZodSchema, CityGroupByResultSchema, CityGroupBySchema, CityGroupByZodSchema, CityIncludeObjectSchema, CityIncludeObjectZodSchema, CityInputSchema, type CityInputType, CityListRelationFilterObjectSchema, CityListRelationFilterObjectZodSchema, CityMaxAggregateInputObjectSchema, CityMaxAggregateInputObjectZodSchema, CityMaxOrderByAggregateInputObjectSchema, CityMaxOrderByAggregateInputObjectZodSchema, CityMinAggregateInputObjectSchema, CityMinAggregateInputObjectZodSchema, CityMinOrderByAggregateInputObjectSchema, CityMinOrderByAggregateInputObjectZodSchema, CityModelSchema, CityOrderByRelationAggregateInputObjectSchema, CityOrderByRelationAggregateInputObjectZodSchema, CityOrderByWithAggregationInputObjectSchema, CityOrderByWithAggregationInputObjectZodSchema, CityOrderByWithRelationInputObjectSchema, CityOrderByWithRelationInputObjectZodSchema, type CityPureType, CityResultSchema, type CityResultType, type CityScalarFieldEnum, CityScalarFieldEnumSchema, CityScalarRelationFilterObjectSchema, CityScalarRelationFilterObjectZodSchema, CityScalarWhereInputObjectSchema, CityScalarWhereInputObjectZodSchema, CityScalarWhereWithAggregatesInputObjectSchema, CityScalarWhereWithAggregatesInputObjectZodSchema, CitySchema, CitySelectObjectSchema, CitySelectObjectZodSchema, CitySumAggregateInputObjectSchema, CitySumAggregateInputObjectZodSchema, CitySumOrderByAggregateInputObjectSchema, CitySumOrderByAggregateInputObjectZodSchema, CityUncheckedCreateInputObjectSchema, CityUncheckedCreateInputObjectZodSchema, CityUncheckedCreateNestedManyWithoutCountryInputObjectSchema, CityUncheckedCreateNestedManyWithoutCountryInputObjectZodSchema, CityUncheckedCreateWithoutCountryInputObjectSchema, CityUncheckedCreateWithoutCountryInputObjectZodSchema, CityUncheckedCreateWithoutWarehousesInputObjectSchema, CityUncheckedCreateWithoutWarehousesInputObjectZodSchema, CityUncheckedUpdateInputObjectSchema, CityUncheckedUpdateInputObjectZodSchema, CityUncheckedUpdateManyInputObjectSchema, CityUncheckedUpdateManyInputObjectZodSchema, CityUncheckedUpdateManyWithoutCountryInputObjectSchema, CityUncheckedUpdateManyWithoutCountryInputObjectZodSchema, CityUncheckedUpdateManyWithoutCountryNestedInputObjectSchema, CityUncheckedUpdateManyWithoutCountryNestedInputObjectZodSchema, CityUncheckedUpdateWithoutCountryInputObjectSchema, CityUncheckedUpdateWithoutCountryInputObjectZodSchema, CityUncheckedUpdateWithoutWarehousesInputObjectSchema, CityUncheckedUpdateWithoutWarehousesInputObjectZodSchema, CityUpdateInputObjectSchema, CityUpdateInputObjectZodSchema, CityUpdateManyAndReturnSchema, CityUpdateManyAndReturnZodSchema, CityUpdateManyMutationInputObjectSchema, CityUpdateManyMutationInputObjectZodSchema, CityUpdateManyResultSchema, CityUpdateManySchema, CityUpdateManyWithWhereWithoutCountryInputObjectSchema, CityUpdateManyWithWhereWithoutCountryInputObjectZodSchema, CityUpdateManyWithoutCountryNestedInputObjectSchema, CityUpdateManyWithoutCountryNestedInputObjectZodSchema, CityUpdateManyZodSchema, CityUpdateOneRequiredWithoutWarehousesNestedInputObjectSchema, CityUpdateOneRequiredWithoutWarehousesNestedInputObjectZodSchema, CityUpdateOneSchema, CityUpdateOneZodSchema, CityUpdateResultSchema, CityUpdateToOneWithWhereWithoutWarehousesInputObjectSchema, CityUpdateToOneWithWhereWithoutWarehousesInputObjectZodSchema, CityUpdateWithWhereUniqueWithoutCountryInputObjectSchema, CityUpdateWithWhereUniqueWithoutCountryInputObjectZodSchema, CityUpdateWithoutCountryInputObjectSchema, CityUpdateWithoutCountryInputObjectZodSchema, CityUpdateWithoutWarehousesInputObjectSchema, CityUpdateWithoutWarehousesInputObjectZodSchema, CityUpsertOneSchema, CityUpsertOneZodSchema, CityUpsertResultSchema, CityUpsertWithWhereUniqueWithoutCountryInputObjectSchema, CityUpsertWithWhereUniqueWithoutCountryInputObjectZodSchema, CityUpsertWithoutWarehousesInputObjectSchema, CityUpsertWithoutWarehousesInputObjectZodSchema, CityWhereInputObjectSchema, CityWhereInputObjectZodSchema, CityWhereUniqueInputObjectSchema, CityWhereUniqueInputObjectZodSchema, type Country, CountryAggregateResultSchema, CountryAggregateSchema, CountryAggregateZodSchema, CountryArgsObjectSchema, CountryArgsObjectZodSchema, CountryAvgAggregateInputObjectSchema, CountryAvgAggregateInputObjectZodSchema, CountryAvgOrderByAggregateInputObjectSchema, CountryAvgOrderByAggregateInputObjectZodSchema, CountryCountAggregateInputObjectSchema, CountryCountAggregateInputObjectZodSchema, CountryCountOrderByAggregateInputObjectSchema, CountryCountOrderByAggregateInputObjectZodSchema, CountryCountOutputTypeArgsObjectSchema, CountryCountOutputTypeArgsObjectZodSchema, CountryCountOutputTypeCountCitiesArgsObjectSchema, CountryCountOutputTypeCountCitiesArgsObjectZodSchema, CountryCountOutputTypeSelectObjectSchema, CountryCountOutputTypeSelectObjectZodSchema, CountryCountResultSchema, CountryCountSchema, CountryCountZodSchema, CountryCreateInputObjectSchema, CountryCreateInputObjectZodSchema, CountryCreateManyAndReturnSchema, CountryCreateManyAndReturnZodSchema, CountryCreateManyInputObjectSchema, CountryCreateManyInputObjectZodSchema, CountryCreateManyResultSchema, CountryCreateManySchema, CountryCreateManyZodSchema, CountryCreateNestedOneWithoutCitiesInputObjectSchema, CountryCreateNestedOneWithoutCitiesInputObjectZodSchema, CountryCreateOneSchema, CountryCreateOneZodSchema, CountryCreateOrConnectWithoutCitiesInputObjectSchema, CountryCreateOrConnectWithoutCitiesInputObjectZodSchema, CountryCreateResultSchema, CountryCreateWithoutCitiesInputObjectSchema, CountryCreateWithoutCitiesInputObjectZodSchema, CountryDeleteManyResultSchema, CountryDeleteManySchema, CountryDeleteManyZodSchema, CountryDeleteOneSchema, CountryDeleteOneZodSchema, CountryDeleteResultSchema, CountryFindFirstOrThrowSchema, CountryFindFirstOrThrowSelectSchema, CountryFindFirstOrThrowSelectZodSchema, CountryFindFirstOrThrowZodSchema, CountryFindFirstResultSchema, CountryFindFirstSchema, CountryFindFirstSelectSchema, CountryFindFirstSelectZodSchema, CountryFindFirstZodSchema, CountryFindManyResultSchema, CountryFindManySchema, CountryFindManySelectSchema, CountryFindManySelectZodSchema, CountryFindManyZodSchema, CountryFindUniqueOrThrowSchema, CountryFindUniqueOrThrowZodSchema, CountryFindUniqueResultSchema, CountryFindUniqueSchema, CountryFindUniqueZodSchema, CountryGroupByResultSchema, CountryGroupBySchema, CountryGroupByZodSchema, CountryIncludeObjectSchema, CountryIncludeObjectZodSchema, CountryInputSchema, type CountryInputType, CountryMaxAggregateInputObjectSchema, CountryMaxAggregateInputObjectZodSchema, CountryMaxOrderByAggregateInputObjectSchema, CountryMaxOrderByAggregateInputObjectZodSchema, CountryMinAggregateInputObjectSchema, CountryMinAggregateInputObjectZodSchema, CountryMinOrderByAggregateInputObjectSchema, CountryMinOrderByAggregateInputObjectZodSchema, CountryModelSchema, CountryOrderByWithAggregationInputObjectSchema, CountryOrderByWithAggregationInputObjectZodSchema, CountryOrderByWithRelationInputObjectSchema, CountryOrderByWithRelationInputObjectZodSchema, type CountryPureType, CountryResultSchema, type CountryResultType, type CountryScalarFieldEnum, CountryScalarFieldEnumSchema, CountryScalarRelationFilterObjectSchema, CountryScalarRelationFilterObjectZodSchema, CountryScalarWhereWithAggregatesInputObjectSchema, CountryScalarWhereWithAggregatesInputObjectZodSchema, CountrySchema, CountrySelectObjectSchema, CountrySelectObjectZodSchema, CountrySumAggregateInputObjectSchema, CountrySumAggregateInputObjectZodSchema, CountrySumOrderByAggregateInputObjectSchema, CountrySumOrderByAggregateInputObjectZodSchema, CountryUncheckedCreateInputObjectSchema, CountryUncheckedCreateInputObjectZodSchema, CountryUncheckedCreateWithoutCitiesInputObjectSchema, CountryUncheckedCreateWithoutCitiesInputObjectZodSchema, CountryUncheckedUpdateInputObjectSchema, CountryUncheckedUpdateInputObjectZodSchema, CountryUncheckedUpdateManyInputObjectSchema, CountryUncheckedUpdateManyInputObjectZodSchema, CountryUncheckedUpdateWithoutCitiesInputObjectSchema, CountryUncheckedUpdateWithoutCitiesInputObjectZodSchema, CountryUpdateInputObjectSchema, CountryUpdateInputObjectZodSchema, CountryUpdateManyAndReturnSchema, CountryUpdateManyAndReturnZodSchema, CountryUpdateManyMutationInputObjectSchema, CountryUpdateManyMutationInputObjectZodSchema, CountryUpdateManyResultSchema, CountryUpdateManySchema, CountryUpdateManyZodSchema, CountryUpdateOneRequiredWithoutCitiesNestedInputObjectSchema, CountryUpdateOneRequiredWithoutCitiesNestedInputObjectZodSchema, CountryUpdateOneSchema, CountryUpdateOneZodSchema, CountryUpdateResultSchema, CountryUpdateToOneWithWhereWithoutCitiesInputObjectSchema, CountryUpdateToOneWithWhereWithoutCitiesInputObjectZodSchema, CountryUpdateWithoutCitiesInputObjectSchema, CountryUpdateWithoutCitiesInputObjectZodSchema, CountryUpsertOneSchema, CountryUpsertOneZodSchema, CountryUpsertResultSchema, CountryUpsertWithoutCitiesInputObjectSchema, CountryUpsertWithoutCitiesInputObjectZodSchema, CountryWhereInputObjectSchema, CountryWhereInputObjectZodSchema, CountryWhereUniqueInputObjectSchema, CountryWhereUniqueInputObjectZodSchema, type CreateCityDto, CreateCitySchema, type CreateCountryDto, CreateCountrySchema, type CreateOrganizationDto, CreateOrganizationSchema, type CreateWarehouseDto, CreateWarehouseSchema, DateTimeFieldUpdateOperationsInputObjectSchema, DateTimeFieldUpdateOperationsInputObjectZodSchema, DateTimeFilterObjectSchema, DateTimeFilterObjectZodSchema, DateTimeNullableFilterObjectSchema, DateTimeNullableFilterObjectZodSchema, DateTimeNullableWithAggregatesFilterObjectSchema, DateTimeNullableWithAggregatesFilterObjectZodSchema, DateTimeWithAggregatesFilterObjectSchema, DateTimeWithAggregatesFilterObjectZodSchema, EmployeeAggregateResultSchema, EmployeeAggregateSchema, EmployeeAggregateZodSchema, EmployeeArgsObjectSchema, EmployeeArgsObjectZodSchema, EmployeeAvgAggregateInputObjectSchema, EmployeeAvgAggregateInputObjectZodSchema, EmployeeAvgOrderByAggregateInputObjectSchema, EmployeeAvgOrderByAggregateInputObjectZodSchema, EmployeeCountAggregateInputObjectSchema, EmployeeCountAggregateInputObjectZodSchema, EmployeeCountOrderByAggregateInputObjectSchema, EmployeeCountOrderByAggregateInputObjectZodSchema, EmployeeCountOutputTypeArgsObjectSchema, EmployeeCountOutputTypeArgsObjectZodSchema, EmployeeCountOutputTypeCountRoleAssignmentsArgsObjectSchema, EmployeeCountOutputTypeCountRoleAssignmentsArgsObjectZodSchema, EmployeeCountOutputTypeSelectObjectSchema, EmployeeCountOutputTypeSelectObjectZodSchema, EmployeeCountResultSchema, EmployeeCountSchema, EmployeeCountZodSchema, EmployeeCreateInputObjectSchema, EmployeeCreateInputObjectZodSchema, EmployeeCreateManyAndReturnSchema, EmployeeCreateManyAndReturnZodSchema, EmployeeCreateManyInputObjectSchema, EmployeeCreateManyInputObjectZodSchema, EmployeeCreateManyResultSchema, EmployeeCreateManySchema, EmployeeCreateManyZodSchema, EmployeeCreateNestedOneWithoutRoleAssignmentsInputObjectSchema, EmployeeCreateNestedOneWithoutRoleAssignmentsInputObjectZodSchema, EmployeeCreateOneSchema, EmployeeCreateOneZodSchema, EmployeeCreateOrConnectWithoutRoleAssignmentsInputObjectSchema, EmployeeCreateOrConnectWithoutRoleAssignmentsInputObjectZodSchema, EmployeeCreateResultSchema, EmployeeCreateWithoutRoleAssignmentsInputObjectSchema, EmployeeCreateWithoutRoleAssignmentsInputObjectZodSchema, EmployeeDeleteManyResultSchema, EmployeeDeleteManySchema, EmployeeDeleteManyZodSchema, EmployeeDeleteOneSchema, EmployeeDeleteOneZodSchema, EmployeeDeleteResultSchema, EmployeeFindFirstOrThrowSchema, EmployeeFindFirstOrThrowSelectSchema, EmployeeFindFirstOrThrowSelectZodSchema, EmployeeFindFirstOrThrowZodSchema, EmployeeFindFirstResultSchema, EmployeeFindFirstSchema, EmployeeFindFirstSelectSchema, EmployeeFindFirstSelectZodSchema, EmployeeFindFirstZodSchema, EmployeeFindManyResultSchema, EmployeeFindManySchema, EmployeeFindManySelectSchema, EmployeeFindManySelectZodSchema, EmployeeFindManyZodSchema, EmployeeFindUniqueOrThrowSchema, EmployeeFindUniqueOrThrowZodSchema, EmployeeFindUniqueResultSchema, EmployeeFindUniqueSchema, EmployeeFindUniqueZodSchema, EmployeeGroupByResultSchema, EmployeeGroupBySchema, EmployeeGroupByZodSchema, EmployeeIncludeObjectSchema, EmployeeIncludeObjectZodSchema, EmployeeInputSchema, type EmployeeInputType, EmployeeMaxAggregateInputObjectSchema, EmployeeMaxAggregateInputObjectZodSchema, EmployeeMaxOrderByAggregateInputObjectSchema, EmployeeMaxOrderByAggregateInputObjectZodSchema, EmployeeMinAggregateInputObjectSchema, EmployeeMinAggregateInputObjectZodSchema, EmployeeMinOrderByAggregateInputObjectSchema, EmployeeMinOrderByAggregateInputObjectZodSchema, EmployeeModelSchema, EmployeeOrderByWithAggregationInputObjectSchema, EmployeeOrderByWithAggregationInputObjectZodSchema, EmployeeOrderByWithRelationInputObjectSchema, EmployeeOrderByWithRelationInputObjectZodSchema, EmployeePermissionAggregateResultSchema, EmployeePermissionAggregateSchema, EmployeePermissionAggregateZodSchema, EmployeePermissionArgsObjectSchema, EmployeePermissionArgsObjectZodSchema, EmployeePermissionAvgAggregateInputObjectSchema, EmployeePermissionAvgAggregateInputObjectZodSchema, EmployeePermissionAvgOrderByAggregateInputObjectSchema, EmployeePermissionAvgOrderByAggregateInputObjectZodSchema, EmployeePermissionCountAggregateInputObjectSchema, EmployeePermissionCountAggregateInputObjectZodSchema, EmployeePermissionCountOrderByAggregateInputObjectSchema, EmployeePermissionCountOrderByAggregateInputObjectZodSchema, EmployeePermissionCountOutputTypeArgsObjectSchema, EmployeePermissionCountOutputTypeArgsObjectZodSchema, EmployeePermissionCountOutputTypeCountRolePermissionsArgsObjectSchema, EmployeePermissionCountOutputTypeCountRolePermissionsArgsObjectZodSchema, EmployeePermissionCountOutputTypeSelectObjectSchema, EmployeePermissionCountOutputTypeSelectObjectZodSchema, EmployeePermissionCountResultSchema, EmployeePermissionCountSchema, EmployeePermissionCountZodSchema, EmployeePermissionCreateInputObjectSchema, EmployeePermissionCreateInputObjectZodSchema, EmployeePermissionCreateManyAndReturnSchema, EmployeePermissionCreateManyAndReturnZodSchema, EmployeePermissionCreateManyInputObjectSchema, EmployeePermissionCreateManyInputObjectZodSchema, EmployeePermissionCreateManyResultSchema, EmployeePermissionCreateManySchema, EmployeePermissionCreateManyZodSchema, EmployeePermissionCreateNestedOneWithoutRolePermissionsInputObjectSchema, EmployeePermissionCreateNestedOneWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionCreateOneSchema, EmployeePermissionCreateOneZodSchema, EmployeePermissionCreateOrConnectWithoutRolePermissionsInputObjectSchema, EmployeePermissionCreateOrConnectWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionCreateResultSchema, EmployeePermissionCreateWithoutRolePermissionsInputObjectSchema, EmployeePermissionCreateWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionDeleteManyResultSchema, EmployeePermissionDeleteManySchema, EmployeePermissionDeleteManyZodSchema, EmployeePermissionDeleteOneSchema, EmployeePermissionDeleteOneZodSchema, EmployeePermissionDeleteResultSchema, EmployeePermissionFindFirstOrThrowSchema, EmployeePermissionFindFirstOrThrowSelectSchema, EmployeePermissionFindFirstOrThrowSelectZodSchema, EmployeePermissionFindFirstOrThrowZodSchema, EmployeePermissionFindFirstResultSchema, EmployeePermissionFindFirstSchema, EmployeePermissionFindFirstSelectSchema, EmployeePermissionFindFirstSelectZodSchema, EmployeePermissionFindFirstZodSchema, EmployeePermissionFindManyResultSchema, EmployeePermissionFindManySchema, EmployeePermissionFindManySelectSchema, EmployeePermissionFindManySelectZodSchema, EmployeePermissionFindManyZodSchema, EmployeePermissionFindUniqueOrThrowSchema, EmployeePermissionFindUniqueOrThrowZodSchema, EmployeePermissionFindUniqueResultSchema, EmployeePermissionFindUniqueSchema, EmployeePermissionFindUniqueZodSchema, EmployeePermissionGroupByResultSchema, EmployeePermissionGroupBySchema, EmployeePermissionGroupByZodSchema, EmployeePermissionIncludeObjectSchema, EmployeePermissionIncludeObjectZodSchema, EmployeePermissionInputSchema, type EmployeePermissionInputType, EmployeePermissionMaxAggregateInputObjectSchema, EmployeePermissionMaxAggregateInputObjectZodSchema, EmployeePermissionMaxOrderByAggregateInputObjectSchema, EmployeePermissionMaxOrderByAggregateInputObjectZodSchema, EmployeePermissionMinAggregateInputObjectSchema, EmployeePermissionMinAggregateInputObjectZodSchema, EmployeePermissionMinOrderByAggregateInputObjectSchema, EmployeePermissionMinOrderByAggregateInputObjectZodSchema, EmployeePermissionModelSchema, EmployeePermissionOrderByWithAggregationInputObjectSchema, EmployeePermissionOrderByWithAggregationInputObjectZodSchema, EmployeePermissionOrderByWithRelationInputObjectSchema, EmployeePermissionOrderByWithRelationInputObjectZodSchema, type EmployeePermissionPureType, EmployeePermissionResultSchema, type EmployeePermissionResultType, type EmployeePermissionScalarFieldEnum, EmployeePermissionScalarFieldEnumSchema, EmployeePermissionScalarRelationFilterObjectSchema, EmployeePermissionScalarRelationFilterObjectZodSchema, EmployeePermissionScalarWhereWithAggregatesInputObjectSchema, EmployeePermissionScalarWhereWithAggregatesInputObjectZodSchema, EmployeePermissionSelectObjectSchema, EmployeePermissionSelectObjectZodSchema, EmployeePermissionSumAggregateInputObjectSchema, EmployeePermissionSumAggregateInputObjectZodSchema, EmployeePermissionSumOrderByAggregateInputObjectSchema, EmployeePermissionSumOrderByAggregateInputObjectZodSchema, EmployeePermissionUncheckedCreateInputObjectSchema, EmployeePermissionUncheckedCreateInputObjectZodSchema, EmployeePermissionUncheckedCreateWithoutRolePermissionsInputObjectSchema, EmployeePermissionUncheckedCreateWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionUncheckedUpdateInputObjectSchema, EmployeePermissionUncheckedUpdateInputObjectZodSchema, EmployeePermissionUncheckedUpdateManyInputObjectSchema, EmployeePermissionUncheckedUpdateManyInputObjectZodSchema, EmployeePermissionUncheckedUpdateWithoutRolePermissionsInputObjectSchema, EmployeePermissionUncheckedUpdateWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionUpdateInputObjectSchema, EmployeePermissionUpdateInputObjectZodSchema, EmployeePermissionUpdateManyAndReturnSchema, EmployeePermissionUpdateManyAndReturnZodSchema, EmployeePermissionUpdateManyMutationInputObjectSchema, EmployeePermissionUpdateManyMutationInputObjectZodSchema, EmployeePermissionUpdateManyResultSchema, EmployeePermissionUpdateManySchema, EmployeePermissionUpdateManyZodSchema, EmployeePermissionUpdateOneRequiredWithoutRolePermissionsNestedInputObjectSchema, EmployeePermissionUpdateOneRequiredWithoutRolePermissionsNestedInputObjectZodSchema, EmployeePermissionUpdateOneSchema, EmployeePermissionUpdateOneZodSchema, EmployeePermissionUpdateResultSchema, EmployeePermissionUpdateToOneWithWhereWithoutRolePermissionsInputObjectSchema, EmployeePermissionUpdateToOneWithWhereWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionUpdateWithoutRolePermissionsInputObjectSchema, EmployeePermissionUpdateWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionUpsertOneSchema, EmployeePermissionUpsertOneZodSchema, EmployeePermissionUpsertResultSchema, EmployeePermissionUpsertWithoutRolePermissionsInputObjectSchema, EmployeePermissionUpsertWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionWhereInputObjectSchema, EmployeePermissionWhereInputObjectZodSchema, EmployeePermissionWhereUniqueInputObjectSchema, EmployeePermissionWhereUniqueInputObjectZodSchema, type EmployeePureType, EmployeeResultSchema, type EmployeeResultType, EmployeeRoleAggregateResultSchema, EmployeeRoleAggregateSchema, EmployeeRoleAggregateZodSchema, EmployeeRoleArgsObjectSchema, EmployeeRoleArgsObjectZodSchema, EmployeeRoleAssignmentAggregateResultSchema, EmployeeRoleAssignmentAggregateSchema, EmployeeRoleAssignmentAggregateZodSchema, EmployeeRoleAssignmentArgsObjectSchema, EmployeeRoleAssignmentArgsObjectZodSchema, EmployeeRoleAssignmentAvgAggregateInputObjectSchema, EmployeeRoleAssignmentAvgAggregateInputObjectZodSchema, EmployeeRoleAssignmentAvgOrderByAggregateInputObjectSchema, EmployeeRoleAssignmentAvgOrderByAggregateInputObjectZodSchema, EmployeeRoleAssignmentCountAggregateInputObjectSchema, EmployeeRoleAssignmentCountAggregateInputObjectZodSchema, EmployeeRoleAssignmentCountOrderByAggregateInputObjectSchema, EmployeeRoleAssignmentCountOrderByAggregateInputObjectZodSchema, EmployeeRoleAssignmentCountResultSchema, EmployeeRoleAssignmentCountSchema, EmployeeRoleAssignmentCountZodSchema, EmployeeRoleAssignmentCreateInputObjectSchema, EmployeeRoleAssignmentCreateInputObjectZodSchema, EmployeeRoleAssignmentCreateManyAndReturnSchema, EmployeeRoleAssignmentCreateManyAndReturnZodSchema, EmployeeRoleAssignmentCreateManyEmployeeInputEnvelopeObjectSchema, EmployeeRoleAssignmentCreateManyEmployeeInputEnvelopeObjectZodSchema, EmployeeRoleAssignmentCreateManyEmployeeInputObjectSchema, EmployeeRoleAssignmentCreateManyEmployeeInputObjectZodSchema, EmployeeRoleAssignmentCreateManyEmployeeRoleInputEnvelopeObjectSchema, EmployeeRoleAssignmentCreateManyEmployeeRoleInputEnvelopeObjectZodSchema, EmployeeRoleAssignmentCreateManyEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentCreateManyEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentCreateManyInputObjectSchema, EmployeeRoleAssignmentCreateManyInputObjectZodSchema, EmployeeRoleAssignmentCreateManyResultSchema, EmployeeRoleAssignmentCreateManySchema, EmployeeRoleAssignmentCreateManyZodSchema, EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentCreateOneSchema, EmployeeRoleAssignmentCreateOneZodSchema, EmployeeRoleAssignmentCreateOrConnectWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentCreateOrConnectWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentCreateOrConnectWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentCreateOrConnectWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentCreateResultSchema, EmployeeRoleAssignmentCreateWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentCreateWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentCreateWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentCreateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentDeleteManyResultSchema, EmployeeRoleAssignmentDeleteManySchema, EmployeeRoleAssignmentDeleteManyZodSchema, EmployeeRoleAssignmentDeleteOneSchema, EmployeeRoleAssignmentDeleteOneZodSchema, EmployeeRoleAssignmentDeleteResultSchema, EmployeeRoleAssignmentEmployeeIdEmployeeRoleIdCompoundUniqueInputObjectSchema, EmployeeRoleAssignmentEmployeeIdEmployeeRoleIdCompoundUniqueInputObjectZodSchema, EmployeeRoleAssignmentFindFirstOrThrowSchema, EmployeeRoleAssignmentFindFirstOrThrowSelectSchema, EmployeeRoleAssignmentFindFirstOrThrowSelectZodSchema, EmployeeRoleAssignmentFindFirstOrThrowZodSchema, EmployeeRoleAssignmentFindFirstResultSchema, EmployeeRoleAssignmentFindFirstSchema, EmployeeRoleAssignmentFindFirstSelectSchema, EmployeeRoleAssignmentFindFirstSelectZodSchema, EmployeeRoleAssignmentFindFirstZodSchema, EmployeeRoleAssignmentFindManyResultSchema, EmployeeRoleAssignmentFindManySchema, EmployeeRoleAssignmentFindManySelectSchema, EmployeeRoleAssignmentFindManySelectZodSchema, EmployeeRoleAssignmentFindManyZodSchema, EmployeeRoleAssignmentFindUniqueOrThrowSchema, EmployeeRoleAssignmentFindUniqueOrThrowZodSchema, EmployeeRoleAssignmentFindUniqueResultSchema, EmployeeRoleAssignmentFindUniqueSchema, EmployeeRoleAssignmentFindUniqueZodSchema, EmployeeRoleAssignmentGroupByResultSchema, EmployeeRoleAssignmentGroupBySchema, EmployeeRoleAssignmentGroupByZodSchema, EmployeeRoleAssignmentIncludeObjectSchema, EmployeeRoleAssignmentIncludeObjectZodSchema, EmployeeRoleAssignmentInputSchema, type EmployeeRoleAssignmentInputType, EmployeeRoleAssignmentListRelationFilterObjectSchema, EmployeeRoleAssignmentListRelationFilterObjectZodSchema, EmployeeRoleAssignmentMaxAggregateInputObjectSchema, EmployeeRoleAssignmentMaxAggregateInputObjectZodSchema, EmployeeRoleAssignmentMaxOrderByAggregateInputObjectSchema, EmployeeRoleAssignmentMaxOrderByAggregateInputObjectZodSchema, EmployeeRoleAssignmentMinAggregateInputObjectSchema, EmployeeRoleAssignmentMinAggregateInputObjectZodSchema, EmployeeRoleAssignmentMinOrderByAggregateInputObjectSchema, EmployeeRoleAssignmentMinOrderByAggregateInputObjectZodSchema, EmployeeRoleAssignmentModelSchema, EmployeeRoleAssignmentOrderByRelationAggregateInputObjectSchema, EmployeeRoleAssignmentOrderByRelationAggregateInputObjectZodSchema, EmployeeRoleAssignmentOrderByWithAggregationInputObjectSchema, EmployeeRoleAssignmentOrderByWithAggregationInputObjectZodSchema, EmployeeRoleAssignmentOrderByWithRelationInputObjectSchema, EmployeeRoleAssignmentOrderByWithRelationInputObjectZodSchema, type EmployeeRoleAssignmentPureType, EmployeeRoleAssignmentResultSchema, type EmployeeRoleAssignmentResultType, type EmployeeRoleAssignmentScalarFieldEnum, EmployeeRoleAssignmentScalarFieldEnumSchema, EmployeeRoleAssignmentScalarWhereInputObjectSchema, EmployeeRoleAssignmentScalarWhereInputObjectZodSchema, EmployeeRoleAssignmentScalarWhereWithAggregatesInputObjectSchema, EmployeeRoleAssignmentScalarWhereWithAggregatesInputObjectZodSchema, EmployeeRoleAssignmentSelectObjectSchema, EmployeeRoleAssignmentSelectObjectZodSchema, EmployeeRoleAssignmentSumAggregateInputObjectSchema, EmployeeRoleAssignmentSumAggregateInputObjectZodSchema, EmployeeRoleAssignmentSumOrderByAggregateInputObjectSchema, EmployeeRoleAssignmentSumOrderByAggregateInputObjectZodSchema, EmployeeRoleAssignmentUncheckedCreateInputObjectSchema, EmployeeRoleAssignmentUncheckedCreateInputObjectZodSchema, EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUncheckedCreateWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUncheckedCreateWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUncheckedCreateWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUncheckedCreateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateManyInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateManyInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeNestedInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeNestedInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUpdateInputObjectSchema, EmployeeRoleAssignmentUpdateInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyAndReturnSchema, EmployeeRoleAssignmentUpdateManyAndReturnZodSchema, EmployeeRoleAssignmentUpdateManyMutationInputObjectSchema, EmployeeRoleAssignmentUpdateManyMutationInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyResultSchema, EmployeeRoleAssignmentUpdateManySchema, EmployeeRoleAssignmentUpdateManyWithWhereWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUpdateManyWithWhereWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyWithWhereWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUpdateManyWithWhereWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInputObjectSchema, EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInputObjectSchema, EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyZodSchema, EmployeeRoleAssignmentUpdateOneSchema, EmployeeRoleAssignmentUpdateOneZodSchema, EmployeeRoleAssignmentUpdateResultSchema, EmployeeRoleAssignmentUpdateWithWhereUniqueWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUpdateWithWhereUniqueWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUpdateWithWhereUniqueWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUpdateWithWhereUniqueWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUpdateWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUpdateWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUpdateWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUpdateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUpsertOneSchema, EmployeeRoleAssignmentUpsertOneZodSchema, EmployeeRoleAssignmentUpsertResultSchema, EmployeeRoleAssignmentUpsertWithWhereUniqueWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUpsertWithWhereUniqueWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUpsertWithWhereUniqueWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUpsertWithWhereUniqueWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentWhereInputObjectSchema, EmployeeRoleAssignmentWhereInputObjectZodSchema, EmployeeRoleAssignmentWhereUniqueInputObjectSchema, EmployeeRoleAssignmentWhereUniqueInputObjectZodSchema, EmployeeRoleAvgAggregateInputObjectSchema, EmployeeRoleAvgAggregateInputObjectZodSchema, EmployeeRoleAvgOrderByAggregateInputObjectSchema, EmployeeRoleAvgOrderByAggregateInputObjectZodSchema, EmployeeRoleCountAggregateInputObjectSchema, EmployeeRoleCountAggregateInputObjectZodSchema, EmployeeRoleCountOrderByAggregateInputObjectSchema, EmployeeRoleCountOrderByAggregateInputObjectZodSchema, EmployeeRoleCountOutputTypeArgsObjectSchema, EmployeeRoleCountOutputTypeArgsObjectZodSchema, EmployeeRoleCountOutputTypeCountAssignmentsArgsObjectSchema, EmployeeRoleCountOutputTypeCountAssignmentsArgsObjectZodSchema, EmployeeRoleCountOutputTypeCountPermissionsArgsObjectSchema, EmployeeRoleCountOutputTypeCountPermissionsArgsObjectZodSchema, EmployeeRoleCountOutputTypeSelectObjectSchema, EmployeeRoleCountOutputTypeSelectObjectZodSchema, EmployeeRoleCountResultSchema, EmployeeRoleCountSchema, EmployeeRoleCountZodSchema, EmployeeRoleCreateInputObjectSchema, EmployeeRoleCreateInputObjectZodSchema, EmployeeRoleCreateManyAndReturnSchema, EmployeeRoleCreateManyAndReturnZodSchema, EmployeeRoleCreateManyInputObjectSchema, EmployeeRoleCreateManyInputObjectZodSchema, EmployeeRoleCreateManyResultSchema, EmployeeRoleCreateManySchema, EmployeeRoleCreateManyZodSchema, EmployeeRoleCreateNestedOneWithoutAssignmentsInputObjectSchema, EmployeeRoleCreateNestedOneWithoutAssignmentsInputObjectZodSchema, EmployeeRoleCreateNestedOneWithoutPermissionsInputObjectSchema, EmployeeRoleCreateNestedOneWithoutPermissionsInputObjectZodSchema, EmployeeRoleCreateOneSchema, EmployeeRoleCreateOneZodSchema, EmployeeRoleCreateOrConnectWithoutAssignmentsInputObjectSchema, EmployeeRoleCreateOrConnectWithoutAssignmentsInputObjectZodSchema, EmployeeRoleCreateOrConnectWithoutPermissionsInputObjectSchema, EmployeeRoleCreateOrConnectWithoutPermissionsInputObjectZodSchema, EmployeeRoleCreateResultSchema, EmployeeRoleCreateWithoutAssignmentsInputObjectSchema, EmployeeRoleCreateWithoutAssignmentsInputObjectZodSchema, EmployeeRoleCreateWithoutPermissionsInputObjectSchema, EmployeeRoleCreateWithoutPermissionsInputObjectZodSchema, EmployeeRoleDeleteManyResultSchema, EmployeeRoleDeleteManySchema, EmployeeRoleDeleteManyZodSchema, EmployeeRoleDeleteOneSchema, EmployeeRoleDeleteOneZodSchema, EmployeeRoleDeleteResultSchema, EmployeeRoleFindFirstOrThrowSchema, EmployeeRoleFindFirstOrThrowSelectSchema, EmployeeRoleFindFirstOrThrowSelectZodSchema, EmployeeRoleFindFirstOrThrowZodSchema, EmployeeRoleFindFirstResultSchema, EmployeeRoleFindFirstSchema, EmployeeRoleFindFirstSelectSchema, EmployeeRoleFindFirstSelectZodSchema, EmployeeRoleFindFirstZodSchema, EmployeeRoleFindManyResultSchema, EmployeeRoleFindManySchema, EmployeeRoleFindManySelectSchema, EmployeeRoleFindManySelectZodSchema, EmployeeRoleFindManyZodSchema, EmployeeRoleFindUniqueOrThrowSchema, EmployeeRoleFindUniqueOrThrowZodSchema, EmployeeRoleFindUniqueResultSchema, EmployeeRoleFindUniqueSchema, EmployeeRoleFindUniqueZodSchema, EmployeeRoleGroupByResultSchema, EmployeeRoleGroupBySchema, EmployeeRoleGroupByZodSchema, EmployeeRoleIncludeObjectSchema, EmployeeRoleIncludeObjectZodSchema, EmployeeRoleInputSchema, type EmployeeRoleInputType, EmployeeRoleMaxAggregateInputObjectSchema, EmployeeRoleMaxAggregateInputObjectZodSchema, EmployeeRoleMaxOrderByAggregateInputObjectSchema, EmployeeRoleMaxOrderByAggregateInputObjectZodSchema, EmployeeRoleMinAggregateInputObjectSchema, EmployeeRoleMinAggregateInputObjectZodSchema, EmployeeRoleMinOrderByAggregateInputObjectSchema, EmployeeRoleMinOrderByAggregateInputObjectZodSchema, EmployeeRoleModelSchema, EmployeeRoleOrderByWithAggregationInputObjectSchema, EmployeeRoleOrderByWithAggregationInputObjectZodSchema, EmployeeRoleOrderByWithRelationInputObjectSchema, EmployeeRoleOrderByWithRelationInputObjectZodSchema, EmployeeRolePermissionAggregateResultSchema, EmployeeRolePermissionAggregateSchema, EmployeeRolePermissionAggregateZodSchema, EmployeeRolePermissionArgsObjectSchema, EmployeeRolePermissionArgsObjectZodSchema, EmployeeRolePermissionAvgAggregateInputObjectSchema, EmployeeRolePermissionAvgAggregateInputObjectZodSchema, EmployeeRolePermissionAvgOrderByAggregateInputObjectSchema, EmployeeRolePermissionAvgOrderByAggregateInputObjectZodSchema, EmployeeRolePermissionCountAggregateInputObjectSchema, EmployeeRolePermissionCountAggregateInputObjectZodSchema, EmployeeRolePermissionCountOrderByAggregateInputObjectSchema, EmployeeRolePermissionCountOrderByAggregateInputObjectZodSchema, EmployeeRolePermissionCountResultSchema, EmployeeRolePermissionCountSchema, EmployeeRolePermissionCountZodSchema, EmployeeRolePermissionCreateInputObjectSchema, EmployeeRolePermissionCreateInputObjectZodSchema, EmployeeRolePermissionCreateManyAndReturnSchema, EmployeeRolePermissionCreateManyAndReturnZodSchema, EmployeeRolePermissionCreateManyEmployeePermissionInputEnvelopeObjectSchema, EmployeeRolePermissionCreateManyEmployeePermissionInputEnvelopeObjectZodSchema, EmployeeRolePermissionCreateManyEmployeePermissionInputObjectSchema, EmployeeRolePermissionCreateManyEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionCreateManyEmployeeRoleInputEnvelopeObjectSchema, EmployeeRolePermissionCreateManyEmployeeRoleInputEnvelopeObjectZodSchema, EmployeeRolePermissionCreateManyEmployeeRoleInputObjectSchema, EmployeeRolePermissionCreateManyEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionCreateManyInputObjectSchema, EmployeeRolePermissionCreateManyInputObjectZodSchema, EmployeeRolePermissionCreateManyResultSchema, EmployeeRolePermissionCreateManySchema, EmployeeRolePermissionCreateManyZodSchema, EmployeeRolePermissionCreateNestedManyWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionCreateNestedManyWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionCreateOneSchema, EmployeeRolePermissionCreateOneZodSchema, EmployeeRolePermissionCreateOrConnectWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionCreateOrConnectWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionCreateOrConnectWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionCreateOrConnectWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionCreateResultSchema, EmployeeRolePermissionCreateWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionCreateWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionCreateWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionCreateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionDeleteManyResultSchema, EmployeeRolePermissionDeleteManySchema, EmployeeRolePermissionDeleteManyZodSchema, EmployeeRolePermissionDeleteOneSchema, EmployeeRolePermissionDeleteOneZodSchema, EmployeeRolePermissionDeleteResultSchema, EmployeeRolePermissionEmployeeRoleIdEmployeePermissionIdCompoundUniqueInputObjectSchema, EmployeeRolePermissionEmployeeRoleIdEmployeePermissionIdCompoundUniqueInputObjectZodSchema, EmployeeRolePermissionFindFirstOrThrowSchema, EmployeeRolePermissionFindFirstOrThrowSelectSchema, EmployeeRolePermissionFindFirstOrThrowSelectZodSchema, EmployeeRolePermissionFindFirstOrThrowZodSchema, EmployeeRolePermissionFindFirstResultSchema, EmployeeRolePermissionFindFirstSchema, EmployeeRolePermissionFindFirstSelectSchema, EmployeeRolePermissionFindFirstSelectZodSchema, EmployeeRolePermissionFindFirstZodSchema, EmployeeRolePermissionFindManyResultSchema, EmployeeRolePermissionFindManySchema, EmployeeRolePermissionFindManySelectSchema, EmployeeRolePermissionFindManySelectZodSchema, EmployeeRolePermissionFindManyZodSchema, EmployeeRolePermissionFindUniqueOrThrowSchema, EmployeeRolePermissionFindUniqueOrThrowZodSchema, EmployeeRolePermissionFindUniqueResultSchema, EmployeeRolePermissionFindUniqueSchema, EmployeeRolePermissionFindUniqueZodSchema, EmployeeRolePermissionGroupByResultSchema, EmployeeRolePermissionGroupBySchema, EmployeeRolePermissionGroupByZodSchema, EmployeeRolePermissionIncludeObjectSchema, EmployeeRolePermissionIncludeObjectZodSchema, EmployeeRolePermissionInputSchema, type EmployeeRolePermissionInputType, EmployeeRolePermissionListRelationFilterObjectSchema, EmployeeRolePermissionListRelationFilterObjectZodSchema, EmployeeRolePermissionMaxAggregateInputObjectSchema, EmployeeRolePermissionMaxAggregateInputObjectZodSchema, EmployeeRolePermissionMaxOrderByAggregateInputObjectSchema, EmployeeRolePermissionMaxOrderByAggregateInputObjectZodSchema, EmployeeRolePermissionMinAggregateInputObjectSchema, EmployeeRolePermissionMinAggregateInputObjectZodSchema, EmployeeRolePermissionMinOrderByAggregateInputObjectSchema, EmployeeRolePermissionMinOrderByAggregateInputObjectZodSchema, EmployeeRolePermissionModelSchema, EmployeeRolePermissionOrderByRelationAggregateInputObjectSchema, EmployeeRolePermissionOrderByRelationAggregateInputObjectZodSchema, EmployeeRolePermissionOrderByWithAggregationInputObjectSchema, EmployeeRolePermissionOrderByWithAggregationInputObjectZodSchema, EmployeeRolePermissionOrderByWithRelationInputObjectSchema, EmployeeRolePermissionOrderByWithRelationInputObjectZodSchema, type EmployeeRolePermissionPureType, EmployeeRolePermissionResultSchema, type EmployeeRolePermissionResultType, type EmployeeRolePermissionScalarFieldEnum, EmployeeRolePermissionScalarFieldEnumSchema, EmployeeRolePermissionScalarWhereInputObjectSchema, EmployeeRolePermissionScalarWhereInputObjectZodSchema, EmployeeRolePermissionScalarWhereWithAggregatesInputObjectSchema, EmployeeRolePermissionScalarWhereWithAggregatesInputObjectZodSchema, EmployeeRolePermissionSelectObjectSchema, EmployeeRolePermissionSelectObjectZodSchema, EmployeeRolePermissionSumAggregateInputObjectSchema, EmployeeRolePermissionSumAggregateInputObjectZodSchema, EmployeeRolePermissionSumOrderByAggregateInputObjectSchema, EmployeeRolePermissionSumOrderByAggregateInputObjectZodSchema, EmployeeRolePermissionUncheckedCreateInputObjectSchema, EmployeeRolePermissionUncheckedCreateInputObjectZodSchema, EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUncheckedCreateWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUncheckedCreateWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUncheckedCreateWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUncheckedCreateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateInputObjectSchema, EmployeeRolePermissionUncheckedUpdateInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateManyInputObjectSchema, EmployeeRolePermissionUncheckedUpdateManyInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeePermissionNestedInputObjectSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeePermissionNestedInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInputObjectSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUncheckedUpdateWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUncheckedUpdateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUpdateInputObjectSchema, EmployeeRolePermissionUpdateInputObjectZodSchema, EmployeeRolePermissionUpdateManyAndReturnSchema, EmployeeRolePermissionUpdateManyAndReturnZodSchema, EmployeeRolePermissionUpdateManyMutationInputObjectSchema, EmployeeRolePermissionUpdateManyMutationInputObjectZodSchema, EmployeeRolePermissionUpdateManyResultSchema, EmployeeRolePermissionUpdateManySchema, EmployeeRolePermissionUpdateManyWithWhereWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUpdateManyWithWhereWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUpdateManyWithWhereWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUpdateManyWithWhereWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUpdateManyWithoutEmployeePermissionNestedInputObjectSchema, EmployeeRolePermissionUpdateManyWithoutEmployeePermissionNestedInputObjectZodSchema, EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInputObjectSchema, EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInputObjectZodSchema, EmployeeRolePermissionUpdateManyZodSchema, EmployeeRolePermissionUpdateOneSchema, EmployeeRolePermissionUpdateOneZodSchema, EmployeeRolePermissionUpdateResultSchema, EmployeeRolePermissionUpdateWithWhereUniqueWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUpdateWithWhereUniqueWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUpdateWithWhereUniqueWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUpdateWithWhereUniqueWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUpdateWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUpdateWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUpdateWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUpdateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUpsertOneSchema, EmployeeRolePermissionUpsertOneZodSchema, EmployeeRolePermissionUpsertResultSchema, EmployeeRolePermissionUpsertWithWhereUniqueWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUpsertWithWhereUniqueWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUpsertWithWhereUniqueWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUpsertWithWhereUniqueWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionWhereInputObjectSchema, EmployeeRolePermissionWhereInputObjectZodSchema, EmployeeRolePermissionWhereUniqueInputObjectSchema, EmployeeRolePermissionWhereUniqueInputObjectZodSchema, type EmployeeRolePureType, EmployeeRoleResultSchema, type EmployeeRoleResultType, type EmployeeRoleScalarFieldEnum, EmployeeRoleScalarFieldEnumSchema, EmployeeRoleScalarRelationFilterObjectSchema, EmployeeRoleScalarRelationFilterObjectZodSchema, EmployeeRoleScalarWhereWithAggregatesInputObjectSchema, EmployeeRoleScalarWhereWithAggregatesInputObjectZodSchema, EmployeeRoleSelectObjectSchema, EmployeeRoleSelectObjectZodSchema, EmployeeRoleSumAggregateInputObjectSchema, EmployeeRoleSumAggregateInputObjectZodSchema, EmployeeRoleSumOrderByAggregateInputObjectSchema, EmployeeRoleSumOrderByAggregateInputObjectZodSchema, EmployeeRoleUncheckedCreateInputObjectSchema, EmployeeRoleUncheckedCreateInputObjectZodSchema, EmployeeRoleUncheckedCreateWithoutAssignmentsInputObjectSchema, EmployeeRoleUncheckedCreateWithoutAssignmentsInputObjectZodSchema, EmployeeRoleUncheckedCreateWithoutPermissionsInputObjectSchema, EmployeeRoleUncheckedCreateWithoutPermissionsInputObjectZodSchema, EmployeeRoleUncheckedUpdateInputObjectSchema, EmployeeRoleUncheckedUpdateInputObjectZodSchema, EmployeeRoleUncheckedUpdateManyInputObjectSchema, EmployeeRoleUncheckedUpdateManyInputObjectZodSchema, EmployeeRoleUncheckedUpdateWithoutAssignmentsInputObjectSchema, EmployeeRoleUncheckedUpdateWithoutAssignmentsInputObjectZodSchema, EmployeeRoleUncheckedUpdateWithoutPermissionsInputObjectSchema, EmployeeRoleUncheckedUpdateWithoutPermissionsInputObjectZodSchema, EmployeeRoleUpdateInputObjectSchema, EmployeeRoleUpdateInputObjectZodSchema, EmployeeRoleUpdateManyAndReturnSchema, EmployeeRoleUpdateManyAndReturnZodSchema, EmployeeRoleUpdateManyMutationInputObjectSchema, EmployeeRoleUpdateManyMutationInputObjectZodSchema, EmployeeRoleUpdateManyResultSchema, EmployeeRoleUpdateManySchema, EmployeeRoleUpdateManyZodSchema, EmployeeRoleUpdateOneRequiredWithoutAssignmentsNestedInputObjectSchema, EmployeeRoleUpdateOneRequiredWithoutAssignmentsNestedInputObjectZodSchema, EmployeeRoleUpdateOneRequiredWithoutPermissionsNestedInputObjectSchema, EmployeeRoleUpdateOneRequiredWithoutPermissionsNestedInputObjectZodSchema, EmployeeRoleUpdateOneSchema, EmployeeRoleUpdateOneZodSchema, EmployeeRoleUpdateResultSchema, EmployeeRoleUpdateToOneWithWhereWithoutAssignmentsInputObjectSchema, EmployeeRoleUpdateToOneWithWhereWithoutAssignmentsInputObjectZodSchema, EmployeeRoleUpdateToOneWithWhereWithoutPermissionsInputObjectSchema, EmployeeRoleUpdateToOneWithWhereWithoutPermissionsInputObjectZodSchema, EmployeeRoleUpdateWithoutAssignmentsInputObjectSchema, EmployeeRoleUpdateWithoutAssignmentsInputObjectZodSchema, EmployeeRoleUpdateWithoutPermissionsInputObjectSchema, EmployeeRoleUpdateWithoutPermissionsInputObjectZodSchema, EmployeeRoleUpsertOneSchema, EmployeeRoleUpsertOneZodSchema, EmployeeRoleUpsertResultSchema, EmployeeRoleUpsertWithoutAssignmentsInputObjectSchema, EmployeeRoleUpsertWithoutAssignmentsInputObjectZodSchema, EmployeeRoleUpsertWithoutPermissionsInputObjectSchema, EmployeeRoleUpsertWithoutPermissionsInputObjectZodSchema, EmployeeRoleWhereInputObjectSchema, EmployeeRoleWhereInputObjectZodSchema, EmployeeRoleWhereUniqueInputObjectSchema, EmployeeRoleWhereUniqueInputObjectZodSchema, type EmployeeScalarFieldEnum, EmployeeScalarFieldEnumSchema, EmployeeScalarRelationFilterObjectSchema, EmployeeScalarRelationFilterObjectZodSchema, EmployeeScalarWhereWithAggregatesInputObjectSchema, EmployeeScalarWhereWithAggregatesInputObjectZodSchema, EmployeeSelectObjectSchema, EmployeeSelectObjectZodSchema, EmployeeSumAggregateInputObjectSchema, EmployeeSumAggregateInputObjectZodSchema, EmployeeSumOrderByAggregateInputObjectSchema, EmployeeSumOrderByAggregateInputObjectZodSchema, EmployeeUncheckedCreateInputObjectSchema, EmployeeUncheckedCreateInputObjectZodSchema, EmployeeUncheckedCreateWithoutRoleAssignmentsInputObjectSchema, EmployeeUncheckedCreateWithoutRoleAssignmentsInputObjectZodSchema, EmployeeUncheckedUpdateInputObjectSchema, EmployeeUncheckedUpdateInputObjectZodSchema, EmployeeUncheckedUpdateManyInputObjectSchema, EmployeeUncheckedUpdateManyInputObjectZodSchema, EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectSchema, EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectZodSchema, EmployeeUpdateInputObjectSchema, EmployeeUpdateInputObjectZodSchema, EmployeeUpdateManyAndReturnSchema, EmployeeUpdateManyAndReturnZodSchema, EmployeeUpdateManyMutationInputObjectSchema, EmployeeUpdateManyMutationInputObjectZodSchema, EmployeeUpdateManyResultSchema, EmployeeUpdateManySchema, EmployeeUpdateManyZodSchema, EmployeeUpdateOneRequiredWithoutRoleAssignmentsNestedInputObjectSchema, EmployeeUpdateOneRequiredWithoutRoleAssignmentsNestedInputObjectZodSchema, EmployeeUpdateOneSchema, EmployeeUpdateOneZodSchema, EmployeeUpdateResultSchema, EmployeeUpdateToOneWithWhereWithoutRoleAssignmentsInputObjectSchema, EmployeeUpdateToOneWithWhereWithoutRoleAssignmentsInputObjectZodSchema, EmployeeUpdateWithoutRoleAssignmentsInputObjectSchema, EmployeeUpdateWithoutRoleAssignmentsInputObjectZodSchema, EmployeeUpsertOneSchema, EmployeeUpsertOneZodSchema, EmployeeUpsertResultSchema, EmployeeUpsertWithoutRoleAssignmentsInputObjectSchema, EmployeeUpsertWithoutRoleAssignmentsInputObjectZodSchema, EmployeeWhereInputObjectSchema, EmployeeWhereInputObjectZodSchema, EmployeeWhereUniqueInputObjectSchema, EmployeeWhereUniqueInputObjectZodSchema, IntFieldUpdateOperationsInputObjectSchema, IntFieldUpdateOperationsInputObjectZodSchema, IntFilterObjectSchema, IntFilterObjectZodSchema, IntNullableFilterObjectSchema, IntNullableFilterObjectZodSchema, IntNullableWithAggregatesFilterObjectSchema, IntNullableWithAggregatesFilterObjectZodSchema, IntWithAggregatesFilterObjectSchema, IntWithAggregatesFilterObjectZodSchema, type JwtPayload, type LoginDto, LoginSchema, NestedBigIntFilterObjectSchema, NestedBigIntFilterObjectZodSchema, NestedBigIntWithAggregatesFilterObjectSchema, NestedBigIntWithAggregatesFilterObjectZodSchema, NestedBoolFilterObjectSchema, NestedBoolFilterObjectZodSchema, NestedBoolWithAggregatesFilterObjectSchema, NestedBoolWithAggregatesFilterObjectZodSchema, NestedDateTimeFilterObjectSchema, NestedDateTimeFilterObjectZodSchema, NestedDateTimeNullableFilterObjectSchema, NestedDateTimeNullableFilterObjectZodSchema, NestedDateTimeNullableWithAggregatesFilterObjectSchema, NestedDateTimeNullableWithAggregatesFilterObjectZodSchema, NestedDateTimeWithAggregatesFilterObjectSchema, NestedDateTimeWithAggregatesFilterObjectZodSchema, NestedFloatFilterObjectSchema, NestedFloatFilterObjectZodSchema, NestedFloatNullableFilterObjectSchema, NestedFloatNullableFilterObjectZodSchema, NestedIntFilterObjectSchema, NestedIntFilterObjectZodSchema, NestedIntNullableFilterObjectSchema, NestedIntNullableFilterObjectZodSchema, NestedIntNullableWithAggregatesFilterObjectSchema, NestedIntNullableWithAggregatesFilterObjectZodSchema, NestedIntWithAggregatesFilterObjectSchema, NestedIntWithAggregatesFilterObjectZodSchema, NestedStringFilterObjectSchema, NestedStringFilterObjectZodSchema, NestedStringNullableFilterObjectSchema, NestedStringNullableFilterObjectZodSchema, NestedStringNullableWithAggregatesFilterObjectSchema, NestedStringNullableWithAggregatesFilterObjectZodSchema, NestedStringWithAggregatesFilterObjectSchema, NestedStringWithAggregatesFilterObjectZodSchema, NestedUuidFilterObjectSchema, NestedUuidFilterObjectZodSchema, NestedUuidWithAggregatesFilterObjectSchema, NestedUuidWithAggregatesFilterObjectZodSchema, NullableDateTimeFieldUpdateOperationsInputObjectSchema, NullableDateTimeFieldUpdateOperationsInputObjectZodSchema, NullableIntFieldUpdateOperationsInputObjectSchema, NullableIntFieldUpdateOperationsInputObjectZodSchema, NullableStringFieldUpdateOperationsInputObjectSchema, NullableStringFieldUpdateOperationsInputObjectZodSchema, type NullsOrder, NullsOrderSchema, type Organization, OrganizationAggregateResultSchema, OrganizationAggregateSchema, OrganizationAggregateZodSchema, OrganizationArgsObjectSchema, OrganizationArgsObjectZodSchema, OrganizationAvgAggregateInputObjectSchema, OrganizationAvgAggregateInputObjectZodSchema, OrganizationAvgOrderByAggregateInputObjectSchema, OrganizationAvgOrderByAggregateInputObjectZodSchema, OrganizationCountAggregateInputObjectSchema, OrganizationCountAggregateInputObjectZodSchema, OrganizationCountOrderByAggregateInputObjectSchema, OrganizationCountOrderByAggregateInputObjectZodSchema, OrganizationCountOutputTypeArgsObjectSchema, OrganizationCountOutputTypeArgsObjectZodSchema, OrganizationCountOutputTypeCountWarehousesArgsObjectSchema, OrganizationCountOutputTypeCountWarehousesArgsObjectZodSchema, OrganizationCountOutputTypeSelectObjectSchema, OrganizationCountOutputTypeSelectObjectZodSchema, OrganizationCountResultSchema, OrganizationCountSchema, OrganizationCountZodSchema, OrganizationCreateInputObjectSchema, OrganizationCreateInputObjectZodSchema, OrganizationCreateManyAndReturnSchema, OrganizationCreateManyAndReturnZodSchema, OrganizationCreateManyInputObjectSchema, OrganizationCreateManyInputObjectZodSchema, OrganizationCreateManyResultSchema, OrganizationCreateManySchema, OrganizationCreateManyZodSchema, OrganizationCreateNestedOneWithoutWarehousesInputObjectSchema, OrganizationCreateNestedOneWithoutWarehousesInputObjectZodSchema, OrganizationCreateOneSchema, OrganizationCreateOneZodSchema, OrganizationCreateOrConnectWithoutWarehousesInputObjectSchema, OrganizationCreateOrConnectWithoutWarehousesInputObjectZodSchema, OrganizationCreateResultSchema, OrganizationCreateWithoutWarehousesInputObjectSchema, OrganizationCreateWithoutWarehousesInputObjectZodSchema, OrganizationDeleteManyResultSchema, OrganizationDeleteManySchema, OrganizationDeleteManyZodSchema, OrganizationDeleteOneSchema, OrganizationDeleteOneZodSchema, OrganizationDeleteResultSchema, OrganizationFindFirstOrThrowSchema, OrganizationFindFirstOrThrowSelectSchema, OrganizationFindFirstOrThrowSelectZodSchema, OrganizationFindFirstOrThrowZodSchema, OrganizationFindFirstResultSchema, OrganizationFindFirstSchema, OrganizationFindFirstSelectSchema, OrganizationFindFirstSelectZodSchema, OrganizationFindFirstZodSchema, OrganizationFindManyResultSchema, OrganizationFindManySchema, OrganizationFindManySelectSchema, OrganizationFindManySelectZodSchema, OrganizationFindManyZodSchema, OrganizationFindUniqueOrThrowSchema, OrganizationFindUniqueOrThrowZodSchema, OrganizationFindUniqueResultSchema, OrganizationFindUniqueSchema, OrganizationFindUniqueZodSchema, OrganizationGroupByResultSchema, OrganizationGroupBySchema, OrganizationGroupByZodSchema, OrganizationIncludeObjectSchema, OrganizationIncludeObjectZodSchema, OrganizationInputSchema, type OrganizationInputType, OrganizationMaxAggregateInputObjectSchema, OrganizationMaxAggregateInputObjectZodSchema, OrganizationMaxOrderByAggregateInputObjectSchema, OrganizationMaxOrderByAggregateInputObjectZodSchema, OrganizationMinAggregateInputObjectSchema, OrganizationMinAggregateInputObjectZodSchema, OrganizationMinOrderByAggregateInputObjectSchema, OrganizationMinOrderByAggregateInputObjectZodSchema, OrganizationModelSchema, OrganizationOrderByWithAggregationInputObjectSchema, OrganizationOrderByWithAggregationInputObjectZodSchema, OrganizationOrderByWithRelationInputObjectSchema, OrganizationOrderByWithRelationInputObjectZodSchema, type OrganizationPureType, OrganizationResultSchema, type OrganizationResultType, type OrganizationScalarFieldEnum, OrganizationScalarFieldEnumSchema, OrganizationScalarRelationFilterObjectSchema, OrganizationScalarRelationFilterObjectZodSchema, OrganizationScalarWhereWithAggregatesInputObjectSchema, OrganizationScalarWhereWithAggregatesInputObjectZodSchema, OrganizationSchema, OrganizationSelectObjectSchema, OrganizationSelectObjectZodSchema, OrganizationSumAggregateInputObjectSchema, OrganizationSumAggregateInputObjectZodSchema, OrganizationSumOrderByAggregateInputObjectSchema, OrganizationSumOrderByAggregateInputObjectZodSchema, OrganizationUncheckedCreateInputObjectSchema, OrganizationUncheckedCreateInputObjectZodSchema, OrganizationUncheckedCreateWithoutWarehousesInputObjectSchema, OrganizationUncheckedCreateWithoutWarehousesInputObjectZodSchema, OrganizationUncheckedUpdateInputObjectSchema, OrganizationUncheckedUpdateInputObjectZodSchema, OrganizationUncheckedUpdateManyInputObjectSchema, OrganizationUncheckedUpdateManyInputObjectZodSchema, OrganizationUncheckedUpdateWithoutWarehousesInputObjectSchema, OrganizationUncheckedUpdateWithoutWarehousesInputObjectZodSchema, OrganizationUpdateInputObjectSchema, OrganizationUpdateInputObjectZodSchema, OrganizationUpdateManyAndReturnSchema, OrganizationUpdateManyAndReturnZodSchema, OrganizationUpdateManyMutationInputObjectSchema, OrganizationUpdateManyMutationInputObjectZodSchema, OrganizationUpdateManyResultSchema, OrganizationUpdateManySchema, OrganizationUpdateManyZodSchema, OrganizationUpdateOneRequiredWithoutWarehousesNestedInputObjectSchema, OrganizationUpdateOneRequiredWithoutWarehousesNestedInputObjectZodSchema, OrganizationUpdateOneSchema, OrganizationUpdateOneZodSchema, OrganizationUpdateResultSchema, OrganizationUpdateToOneWithWhereWithoutWarehousesInputObjectSchema, OrganizationUpdateToOneWithWhereWithoutWarehousesInputObjectZodSchema, OrganizationUpdateWithoutWarehousesInputObjectSchema, OrganizationUpdateWithoutWarehousesInputObjectZodSchema, OrganizationUpsertOneSchema, OrganizationUpsertOneZodSchema, OrganizationUpsertResultSchema, OrganizationUpsertWithoutWarehousesInputObjectSchema, OrganizationUpsertWithoutWarehousesInputObjectZodSchema, OrganizationWhereInputObjectSchema, OrganizationWhereInputObjectZodSchema, OrganizationWhereUniqueInputObjectSchema, OrganizationWhereUniqueInputObjectZodSchema, type QueryMode, QueryModeSchema, ServerSettingsAggregateResultSchema, ServerSettingsAggregateSchema, ServerSettingsAggregateZodSchema, ServerSettingsArgsObjectSchema, ServerSettingsArgsObjectZodSchema, ServerSettingsAvgAggregateInputObjectSchema, ServerSettingsAvgAggregateInputObjectZodSchema, ServerSettingsAvgOrderByAggregateInputObjectSchema, ServerSettingsAvgOrderByAggregateInputObjectZodSchema, ServerSettingsCountAggregateInputObjectSchema, ServerSettingsCountAggregateInputObjectZodSchema, ServerSettingsCountOrderByAggregateInputObjectSchema, ServerSettingsCountOrderByAggregateInputObjectZodSchema, ServerSettingsCountResultSchema, ServerSettingsCountSchema, ServerSettingsCountZodSchema, ServerSettingsCreateInputObjectSchema, ServerSettingsCreateInputObjectZodSchema, ServerSettingsCreateManyAndReturnSchema, ServerSettingsCreateManyAndReturnZodSchema, ServerSettingsCreateManyInputObjectSchema, ServerSettingsCreateManyInputObjectZodSchema, ServerSettingsCreateManyResultSchema, ServerSettingsCreateManySchema, ServerSettingsCreateManyZodSchema, ServerSettingsCreateOneSchema, ServerSettingsCreateOneZodSchema, ServerSettingsCreateResultSchema, ServerSettingsDeleteManyResultSchema, ServerSettingsDeleteManySchema, ServerSettingsDeleteManyZodSchema, ServerSettingsDeleteOneSchema, ServerSettingsDeleteOneZodSchema, ServerSettingsDeleteResultSchema, ServerSettingsFindFirstOrThrowSchema, ServerSettingsFindFirstOrThrowSelectSchema, ServerSettingsFindFirstOrThrowSelectZodSchema, ServerSettingsFindFirstOrThrowZodSchema, ServerSettingsFindFirstResultSchema, ServerSettingsFindFirstSchema, ServerSettingsFindFirstSelectSchema, ServerSettingsFindFirstSelectZodSchema, ServerSettingsFindFirstZodSchema, ServerSettingsFindManyResultSchema, ServerSettingsFindManySchema, ServerSettingsFindManySelectSchema, ServerSettingsFindManySelectZodSchema, ServerSettingsFindManyZodSchema, ServerSettingsFindUniqueOrThrowSchema, ServerSettingsFindUniqueOrThrowZodSchema, ServerSettingsFindUniqueResultSchema, ServerSettingsFindUniqueSchema, ServerSettingsFindUniqueZodSchema, ServerSettingsGroupByResultSchema, ServerSettingsGroupBySchema, ServerSettingsGroupByZodSchema, ServerSettingsInputSchema, type ServerSettingsInputType, ServerSettingsMaxAggregateInputObjectSchema, ServerSettingsMaxAggregateInputObjectZodSchema, ServerSettingsMaxOrderByAggregateInputObjectSchema, ServerSettingsMaxOrderByAggregateInputObjectZodSchema, ServerSettingsMinAggregateInputObjectSchema, ServerSettingsMinAggregateInputObjectZodSchema, ServerSettingsMinOrderByAggregateInputObjectSchema, ServerSettingsMinOrderByAggregateInputObjectZodSchema, ServerSettingsModelSchema, ServerSettingsOrderByWithAggregationInputObjectSchema, ServerSettingsOrderByWithAggregationInputObjectZodSchema, ServerSettingsOrderByWithRelationInputObjectSchema, ServerSettingsOrderByWithRelationInputObjectZodSchema, type ServerSettingsPureType, ServerSettingsResultSchema, type ServerSettingsResultType, type ServerSettingsScalarFieldEnum, ServerSettingsScalarFieldEnumSchema, ServerSettingsScalarWhereWithAggregatesInputObjectSchema, ServerSettingsScalarWhereWithAggregatesInputObjectZodSchema, ServerSettingsSelectObjectSchema, ServerSettingsSelectObjectZodSchema, ServerSettingsSumAggregateInputObjectSchema, ServerSettingsSumAggregateInputObjectZodSchema, ServerSettingsSumOrderByAggregateInputObjectSchema, ServerSettingsSumOrderByAggregateInputObjectZodSchema, ServerSettingsUncheckedCreateInputObjectSchema, ServerSettingsUncheckedCreateInputObjectZodSchema, ServerSettingsUncheckedUpdateInputObjectSchema, ServerSettingsUncheckedUpdateInputObjectZodSchema, ServerSettingsUncheckedUpdateManyInputObjectSchema, ServerSettingsUncheckedUpdateManyInputObjectZodSchema, ServerSettingsUpdateInputObjectSchema, ServerSettingsUpdateInputObjectZodSchema, ServerSettingsUpdateManyAndReturnSchema, ServerSettingsUpdateManyAndReturnZodSchema, ServerSettingsUpdateManyMutationInputObjectSchema, ServerSettingsUpdateManyMutationInputObjectZodSchema, ServerSettingsUpdateManyResultSchema, ServerSettingsUpdateManySchema, ServerSettingsUpdateManyZodSchema, ServerSettingsUpdateOneSchema, ServerSettingsUpdateOneZodSchema, ServerSettingsUpdateResultSchema, ServerSettingsUpsertOneSchema, ServerSettingsUpsertOneZodSchema, ServerSettingsUpsertResultSchema, ServerSettingsWhereInputObjectSchema, ServerSettingsWhereInputObjectZodSchema, ServerSettingsWhereUniqueInputObjectSchema, ServerSettingsWhereUniqueInputObjectZodSchema, type SetupInitDto, SetupInitSchema, type SetupStatusResponse, type SortOrder, SortOrderInputObjectSchema, SortOrderInputObjectZodSchema, SortOrderSchema, StringFieldUpdateOperationsInputObjectSchema, StringFieldUpdateOperationsInputObjectZodSchema, StringFilterObjectSchema, StringFilterObjectZodSchema, StringNullableFilterObjectSchema, StringNullableFilterObjectZodSchema, StringNullableWithAggregatesFilterObjectSchema, StringNullableWithAggregatesFilterObjectZodSchema, StringWithAggregatesFilterObjectSchema, StringWithAggregatesFilterObjectZodSchema, type TransactionIsolationLevel, TransactionIsolationLevelSchema, type UpdateOrganizationDto, UpdateOrganizationSchema, type UpdateWarehouseDto, UpdateWarehouseSchema, UuidFilterObjectSchema, UuidFilterObjectZodSchema, UuidWithAggregatesFilterObjectSchema, UuidWithAggregatesFilterObjectZodSchema, type Warehouse, WarehouseAggregateResultSchema, WarehouseAggregateSchema, WarehouseAggregateZodSchema, WarehouseArgsObjectSchema, WarehouseArgsObjectZodSchema, WarehouseAvgAggregateInputObjectSchema, WarehouseAvgAggregateInputObjectZodSchema, WarehouseAvgOrderByAggregateInputObjectSchema, WarehouseAvgOrderByAggregateInputObjectZodSchema, WarehouseCountAggregateInputObjectSchema, WarehouseCountAggregateInputObjectZodSchema, WarehouseCountOrderByAggregateInputObjectSchema, WarehouseCountOrderByAggregateInputObjectZodSchema, WarehouseCountResultSchema, WarehouseCountSchema, WarehouseCountZodSchema, WarehouseCreateInputObjectSchema, WarehouseCreateInputObjectZodSchema, WarehouseCreateManyAndReturnSchema, WarehouseCreateManyAndReturnZodSchema, WarehouseCreateManyCityInputEnvelopeObjectSchema, WarehouseCreateManyCityInputEnvelopeObjectZodSchema, WarehouseCreateManyCityInputObjectSchema, WarehouseCreateManyCityInputObjectZodSchema, WarehouseCreateManyInputObjectSchema, WarehouseCreateManyInputObjectZodSchema, WarehouseCreateManyOrganizationInputEnvelopeObjectSchema, WarehouseCreateManyOrganizationInputEnvelopeObjectZodSchema, WarehouseCreateManyOrganizationInputObjectSchema, WarehouseCreateManyOrganizationInputObjectZodSchema, WarehouseCreateManyResultSchema, WarehouseCreateManySchema, WarehouseCreateManyZodSchema, WarehouseCreateNestedManyWithoutCityInputObjectSchema, WarehouseCreateNestedManyWithoutCityInputObjectZodSchema, WarehouseCreateNestedManyWithoutOrganizationInputObjectSchema, WarehouseCreateNestedManyWithoutOrganizationInputObjectZodSchema, WarehouseCreateOneSchema, WarehouseCreateOneZodSchema, WarehouseCreateOrConnectWithoutCityInputObjectSchema, WarehouseCreateOrConnectWithoutCityInputObjectZodSchema, WarehouseCreateOrConnectWithoutOrganizationInputObjectSchema, WarehouseCreateOrConnectWithoutOrganizationInputObjectZodSchema, WarehouseCreateResultSchema, WarehouseCreateWithoutCityInputObjectSchema, WarehouseCreateWithoutCityInputObjectZodSchema, WarehouseCreateWithoutOrganizationInputObjectSchema, WarehouseCreateWithoutOrganizationInputObjectZodSchema, WarehouseDeleteManyResultSchema, WarehouseDeleteManySchema, WarehouseDeleteManyZodSchema, WarehouseDeleteOneSchema, WarehouseDeleteOneZodSchema, WarehouseDeleteResultSchema, WarehouseFindFirstOrThrowSchema, WarehouseFindFirstOrThrowSelectSchema, WarehouseFindFirstOrThrowSelectZodSchema, WarehouseFindFirstOrThrowZodSchema, WarehouseFindFirstResultSchema, WarehouseFindFirstSchema, WarehouseFindFirstSelectSchema, WarehouseFindFirstSelectZodSchema, WarehouseFindFirstZodSchema, WarehouseFindManyResultSchema, WarehouseFindManySchema, WarehouseFindManySelectSchema, WarehouseFindManySelectZodSchema, WarehouseFindManyZodSchema, WarehouseFindUniqueOrThrowSchema, WarehouseFindUniqueOrThrowZodSchema, WarehouseFindUniqueResultSchema, WarehouseFindUniqueSchema, WarehouseFindUniqueZodSchema, WarehouseGroupByResultSchema, WarehouseGroupBySchema, WarehouseGroupByZodSchema, WarehouseIncludeObjectSchema, WarehouseIncludeObjectZodSchema, WarehouseInputSchema, type WarehouseInputType, WarehouseListRelationFilterObjectSchema, WarehouseListRelationFilterObjectZodSchema, WarehouseMaxAggregateInputObjectSchema, WarehouseMaxAggregateInputObjectZodSchema, WarehouseMaxOrderByAggregateInputObjectSchema, WarehouseMaxOrderByAggregateInputObjectZodSchema, WarehouseMinAggregateInputObjectSchema, WarehouseMinAggregateInputObjectZodSchema, WarehouseMinOrderByAggregateInputObjectSchema, WarehouseMinOrderByAggregateInputObjectZodSchema, WarehouseModelSchema, WarehouseOrderByRelationAggregateInputObjectSchema, WarehouseOrderByRelationAggregateInputObjectZodSchema, WarehouseOrderByWithAggregationInputObjectSchema, WarehouseOrderByWithAggregationInputObjectZodSchema, WarehouseOrderByWithRelationInputObjectSchema, WarehouseOrderByWithRelationInputObjectZodSchema, type WarehousePureType, WarehouseResultSchema, type WarehouseResultType, type WarehouseScalarFieldEnum, WarehouseScalarFieldEnumSchema, WarehouseScalarWhereInputObjectSchema, WarehouseScalarWhereInputObjectZodSchema, WarehouseScalarWhereWithAggregatesInputObjectSchema, WarehouseScalarWhereWithAggregatesInputObjectZodSchema, WarehouseSchema, WarehouseSelectObjectSchema, WarehouseSelectObjectZodSchema, WarehouseSumAggregateInputObjectSchema, WarehouseSumAggregateInputObjectZodSchema, WarehouseSumOrderByAggregateInputObjectSchema, WarehouseSumOrderByAggregateInputObjectZodSchema, WarehouseUncheckedCreateInputObjectSchema, WarehouseUncheckedCreateInputObjectZodSchema, WarehouseUncheckedCreateNestedManyWithoutCityInputObjectSchema, WarehouseUncheckedCreateNestedManyWithoutCityInputObjectZodSchema, WarehouseUncheckedCreateNestedManyWithoutOrganizationInputObjectSchema, WarehouseUncheckedCreateNestedManyWithoutOrganizationInputObjectZodSchema, WarehouseUncheckedCreateWithoutCityInputObjectSchema, WarehouseUncheckedCreateWithoutCityInputObjectZodSchema, WarehouseUncheckedCreateWithoutOrganizationInputObjectSchema, WarehouseUncheckedCreateWithoutOrganizationInputObjectZodSchema, WarehouseUncheckedUpdateInputObjectSchema, WarehouseUncheckedUpdateInputObjectZodSchema, WarehouseUncheckedUpdateManyInputObjectSchema, WarehouseUncheckedUpdateManyInputObjectZodSchema, WarehouseUncheckedUpdateManyWithoutCityInputObjectSchema, WarehouseUncheckedUpdateManyWithoutCityInputObjectZodSchema, WarehouseUncheckedUpdateManyWithoutCityNestedInputObjectSchema, WarehouseUncheckedUpdateManyWithoutCityNestedInputObjectZodSchema, WarehouseUncheckedUpdateManyWithoutOrganizationInputObjectSchema, WarehouseUncheckedUpdateManyWithoutOrganizationInputObjectZodSchema, WarehouseUncheckedUpdateManyWithoutOrganizationNestedInputObjectSchema, WarehouseUncheckedUpdateManyWithoutOrganizationNestedInputObjectZodSchema, WarehouseUncheckedUpdateWithoutCityInputObjectSchema, WarehouseUncheckedUpdateWithoutCityInputObjectZodSchema, WarehouseUncheckedUpdateWithoutOrganizationInputObjectSchema, WarehouseUncheckedUpdateWithoutOrganizationInputObjectZodSchema, WarehouseUpdateInputObjectSchema, WarehouseUpdateInputObjectZodSchema, WarehouseUpdateManyAndReturnSchema, WarehouseUpdateManyAndReturnZodSchema, WarehouseUpdateManyMutationInputObjectSchema, WarehouseUpdateManyMutationInputObjectZodSchema, WarehouseUpdateManyResultSchema, WarehouseUpdateManySchema, WarehouseUpdateManyWithWhereWithoutCityInputObjectSchema, WarehouseUpdateManyWithWhereWithoutCityInputObjectZodSchema, WarehouseUpdateManyWithWhereWithoutOrganizationInputObjectSchema, WarehouseUpdateManyWithWhereWithoutOrganizationInputObjectZodSchema, WarehouseUpdateManyWithoutCityNestedInputObjectSchema, WarehouseUpdateManyWithoutCityNestedInputObjectZodSchema, WarehouseUpdateManyWithoutOrganizationNestedInputObjectSchema, WarehouseUpdateManyWithoutOrganizationNestedInputObjectZodSchema, WarehouseUpdateManyZodSchema, WarehouseUpdateOneSchema, WarehouseUpdateOneZodSchema, WarehouseUpdateResultSchema, WarehouseUpdateWithWhereUniqueWithoutCityInputObjectSchema, WarehouseUpdateWithWhereUniqueWithoutCityInputObjectZodSchema, WarehouseUpdateWithWhereUniqueWithoutOrganizationInputObjectSchema, WarehouseUpdateWithWhereUniqueWithoutOrganizationInputObjectZodSchema, WarehouseUpdateWithoutCityInputObjectSchema, WarehouseUpdateWithoutCityInputObjectZodSchema, WarehouseUpdateWithoutOrganizationInputObjectSchema, WarehouseUpdateWithoutOrganizationInputObjectZodSchema, WarehouseUpsertOneSchema, WarehouseUpsertOneZodSchema, WarehouseUpsertResultSchema, WarehouseUpsertWithWhereUniqueWithoutCityInputObjectSchema, WarehouseUpsertWithWhereUniqueWithoutCityInputObjectZodSchema, WarehouseUpsertWithWhereUniqueWithoutOrganizationInputObjectSchema, WarehouseUpsertWithWhereUniqueWithoutOrganizationInputObjectZodSchema, WarehouseWhereInputObjectSchema, WarehouseWhereInputObjectZodSchema, WarehouseWhereUniqueInputObjectSchema, WarehouseWhereUniqueInputObjectZodSchema };
21643
+ export { type AuthTokens, BigIntFieldUpdateOperationsInputObjectSchema, BigIntFieldUpdateOperationsInputObjectZodSchema, BigIntFilterObjectSchema, BigIntFilterObjectZodSchema, BigIntWithAggregatesFilterObjectSchema, BigIntWithAggregatesFilterObjectZodSchema, BoolFieldUpdateOperationsInputObjectSchema, BoolFieldUpdateOperationsInputObjectZodSchema, BoolFilterObjectSchema, BoolFilterObjectZodSchema, BoolWithAggregatesFilterObjectSchema, BoolWithAggregatesFilterObjectZodSchema, type City, CityAggregateResultSchema, CityAggregateSchema, CityAggregateZodSchema, CityArgsObjectSchema, CityArgsObjectZodSchema, CityAvgAggregateInputObjectSchema, CityAvgAggregateInputObjectZodSchema, CityAvgOrderByAggregateInputObjectSchema, CityAvgOrderByAggregateInputObjectZodSchema, CityCountAggregateInputObjectSchema, CityCountAggregateInputObjectZodSchema, CityCountOrderByAggregateInputObjectSchema, CityCountOrderByAggregateInputObjectZodSchema, CityCountOutputTypeArgsObjectSchema, CityCountOutputTypeArgsObjectZodSchema, CityCountOutputTypeCountWarehousesArgsObjectSchema, CityCountOutputTypeCountWarehousesArgsObjectZodSchema, CityCountOutputTypeSelectObjectSchema, CityCountOutputTypeSelectObjectZodSchema, CityCountResultSchema, CityCountSchema, CityCountZodSchema, CityCreateInputObjectSchema, CityCreateInputObjectZodSchema, CityCreateManyAndReturnSchema, CityCreateManyAndReturnZodSchema, CityCreateManyCountryInputEnvelopeObjectSchema, CityCreateManyCountryInputEnvelopeObjectZodSchema, CityCreateManyCountryInputObjectSchema, CityCreateManyCountryInputObjectZodSchema, CityCreateManyInputObjectSchema, CityCreateManyInputObjectZodSchema, CityCreateManyResultSchema, CityCreateManySchema, CityCreateManyZodSchema, CityCreateNestedManyWithoutCountryInputObjectSchema, CityCreateNestedManyWithoutCountryInputObjectZodSchema, CityCreateNestedOneWithoutWarehousesInputObjectSchema, CityCreateNestedOneWithoutWarehousesInputObjectZodSchema, CityCreateOneSchema, CityCreateOneZodSchema, CityCreateOrConnectWithoutCountryInputObjectSchema, CityCreateOrConnectWithoutCountryInputObjectZodSchema, CityCreateOrConnectWithoutWarehousesInputObjectSchema, CityCreateOrConnectWithoutWarehousesInputObjectZodSchema, CityCreateResultSchema, CityCreateWithoutCountryInputObjectSchema, CityCreateWithoutCountryInputObjectZodSchema, CityCreateWithoutWarehousesInputObjectSchema, CityCreateWithoutWarehousesInputObjectZodSchema, CityDeleteManyResultSchema, CityDeleteManySchema, CityDeleteManyZodSchema, CityDeleteOneSchema, CityDeleteOneZodSchema, CityDeleteResultSchema, CityFindFirstOrThrowSchema, CityFindFirstOrThrowSelectSchema, CityFindFirstOrThrowSelectZodSchema, CityFindFirstOrThrowZodSchema, CityFindFirstResultSchema, CityFindFirstSchema, CityFindFirstSelectSchema, CityFindFirstSelectZodSchema, CityFindFirstZodSchema, CityFindManyResultSchema, CityFindManySchema, CityFindManySelectSchema, CityFindManySelectZodSchema, CityFindManyZodSchema, CityFindUniqueOrThrowSchema, CityFindUniqueOrThrowZodSchema, CityFindUniqueResultSchema, CityFindUniqueSchema, CityFindUniqueZodSchema, CityGroupByResultSchema, CityGroupBySchema, CityGroupByZodSchema, CityIncludeObjectSchema, CityIncludeObjectZodSchema, CityInputSchema, type CityInputType, CityListRelationFilterObjectSchema, CityListRelationFilterObjectZodSchema, CityMaxAggregateInputObjectSchema, CityMaxAggregateInputObjectZodSchema, CityMaxOrderByAggregateInputObjectSchema, CityMaxOrderByAggregateInputObjectZodSchema, CityMinAggregateInputObjectSchema, CityMinAggregateInputObjectZodSchema, CityMinOrderByAggregateInputObjectSchema, CityMinOrderByAggregateInputObjectZodSchema, CityModelSchema, CityOrderByRelationAggregateInputObjectSchema, CityOrderByRelationAggregateInputObjectZodSchema, CityOrderByWithAggregationInputObjectSchema, CityOrderByWithAggregationInputObjectZodSchema, CityOrderByWithRelationInputObjectSchema, CityOrderByWithRelationInputObjectZodSchema, type CityPureType, CityResultSchema, type CityResultType, type CityScalarFieldEnum, CityScalarFieldEnumSchema, CityScalarRelationFilterObjectSchema, CityScalarRelationFilterObjectZodSchema, CityScalarWhereInputObjectSchema, CityScalarWhereInputObjectZodSchema, CityScalarWhereWithAggregatesInputObjectSchema, CityScalarWhereWithAggregatesInputObjectZodSchema, CitySchema, CitySelectObjectSchema, CitySelectObjectZodSchema, CitySumAggregateInputObjectSchema, CitySumAggregateInputObjectZodSchema, CitySumOrderByAggregateInputObjectSchema, CitySumOrderByAggregateInputObjectZodSchema, CityUncheckedCreateInputObjectSchema, CityUncheckedCreateInputObjectZodSchema, CityUncheckedCreateNestedManyWithoutCountryInputObjectSchema, CityUncheckedCreateNestedManyWithoutCountryInputObjectZodSchema, CityUncheckedCreateWithoutCountryInputObjectSchema, CityUncheckedCreateWithoutCountryInputObjectZodSchema, CityUncheckedCreateWithoutWarehousesInputObjectSchema, CityUncheckedCreateWithoutWarehousesInputObjectZodSchema, CityUncheckedUpdateInputObjectSchema, CityUncheckedUpdateInputObjectZodSchema, CityUncheckedUpdateManyInputObjectSchema, CityUncheckedUpdateManyInputObjectZodSchema, CityUncheckedUpdateManyWithoutCountryInputObjectSchema, CityUncheckedUpdateManyWithoutCountryInputObjectZodSchema, CityUncheckedUpdateManyWithoutCountryNestedInputObjectSchema, CityUncheckedUpdateManyWithoutCountryNestedInputObjectZodSchema, CityUncheckedUpdateWithoutCountryInputObjectSchema, CityUncheckedUpdateWithoutCountryInputObjectZodSchema, CityUncheckedUpdateWithoutWarehousesInputObjectSchema, CityUncheckedUpdateWithoutWarehousesInputObjectZodSchema, CityUpdateInputObjectSchema, CityUpdateInputObjectZodSchema, CityUpdateManyAndReturnSchema, CityUpdateManyAndReturnZodSchema, CityUpdateManyMutationInputObjectSchema, CityUpdateManyMutationInputObjectZodSchema, CityUpdateManyResultSchema, CityUpdateManySchema, CityUpdateManyWithWhereWithoutCountryInputObjectSchema, CityUpdateManyWithWhereWithoutCountryInputObjectZodSchema, CityUpdateManyWithoutCountryNestedInputObjectSchema, CityUpdateManyWithoutCountryNestedInputObjectZodSchema, CityUpdateManyZodSchema, CityUpdateOneRequiredWithoutWarehousesNestedInputObjectSchema, CityUpdateOneRequiredWithoutWarehousesNestedInputObjectZodSchema, CityUpdateOneSchema, CityUpdateOneZodSchema, CityUpdateResultSchema, CityUpdateToOneWithWhereWithoutWarehousesInputObjectSchema, CityUpdateToOneWithWhereWithoutWarehousesInputObjectZodSchema, CityUpdateWithWhereUniqueWithoutCountryInputObjectSchema, CityUpdateWithWhereUniqueWithoutCountryInputObjectZodSchema, CityUpdateWithoutCountryInputObjectSchema, CityUpdateWithoutCountryInputObjectZodSchema, CityUpdateWithoutWarehousesInputObjectSchema, CityUpdateWithoutWarehousesInputObjectZodSchema, CityUpsertOneSchema, CityUpsertOneZodSchema, CityUpsertResultSchema, CityUpsertWithWhereUniqueWithoutCountryInputObjectSchema, CityUpsertWithWhereUniqueWithoutCountryInputObjectZodSchema, CityUpsertWithoutWarehousesInputObjectSchema, CityUpsertWithoutWarehousesInputObjectZodSchema, CityWhereInputObjectSchema, CityWhereInputObjectZodSchema, CityWhereUniqueInputObjectSchema, CityWhereUniqueInputObjectZodSchema, type Country, CountryAggregateResultSchema, CountryAggregateSchema, CountryAggregateZodSchema, CountryArgsObjectSchema, CountryArgsObjectZodSchema, CountryAvgAggregateInputObjectSchema, CountryAvgAggregateInputObjectZodSchema, CountryAvgOrderByAggregateInputObjectSchema, CountryAvgOrderByAggregateInputObjectZodSchema, CountryCountAggregateInputObjectSchema, CountryCountAggregateInputObjectZodSchema, CountryCountOrderByAggregateInputObjectSchema, CountryCountOrderByAggregateInputObjectZodSchema, CountryCountOutputTypeArgsObjectSchema, CountryCountOutputTypeArgsObjectZodSchema, CountryCountOutputTypeCountCitiesArgsObjectSchema, CountryCountOutputTypeCountCitiesArgsObjectZodSchema, CountryCountOutputTypeSelectObjectSchema, CountryCountOutputTypeSelectObjectZodSchema, CountryCountResultSchema, CountryCountSchema, CountryCountZodSchema, CountryCreateInputObjectSchema, CountryCreateInputObjectZodSchema, CountryCreateManyAndReturnSchema, CountryCreateManyAndReturnZodSchema, CountryCreateManyInputObjectSchema, CountryCreateManyInputObjectZodSchema, CountryCreateManyResultSchema, CountryCreateManySchema, CountryCreateManyZodSchema, CountryCreateNestedOneWithoutCitiesInputObjectSchema, CountryCreateNestedOneWithoutCitiesInputObjectZodSchema, CountryCreateOneSchema, CountryCreateOneZodSchema, CountryCreateOrConnectWithoutCitiesInputObjectSchema, CountryCreateOrConnectWithoutCitiesInputObjectZodSchema, CountryCreateResultSchema, CountryCreateWithoutCitiesInputObjectSchema, CountryCreateWithoutCitiesInputObjectZodSchema, CountryDeleteManyResultSchema, CountryDeleteManySchema, CountryDeleteManyZodSchema, CountryDeleteOneSchema, CountryDeleteOneZodSchema, CountryDeleteResultSchema, CountryFindFirstOrThrowSchema, CountryFindFirstOrThrowSelectSchema, CountryFindFirstOrThrowSelectZodSchema, CountryFindFirstOrThrowZodSchema, CountryFindFirstResultSchema, CountryFindFirstSchema, CountryFindFirstSelectSchema, CountryFindFirstSelectZodSchema, CountryFindFirstZodSchema, CountryFindManyResultSchema, CountryFindManySchema, CountryFindManySelectSchema, CountryFindManySelectZodSchema, CountryFindManyZodSchema, CountryFindUniqueOrThrowSchema, CountryFindUniqueOrThrowZodSchema, CountryFindUniqueResultSchema, CountryFindUniqueSchema, CountryFindUniqueZodSchema, CountryGroupByResultSchema, CountryGroupBySchema, CountryGroupByZodSchema, CountryIncludeObjectSchema, CountryIncludeObjectZodSchema, CountryInputSchema, type CountryInputType, CountryMaxAggregateInputObjectSchema, CountryMaxAggregateInputObjectZodSchema, CountryMaxOrderByAggregateInputObjectSchema, CountryMaxOrderByAggregateInputObjectZodSchema, CountryMinAggregateInputObjectSchema, CountryMinAggregateInputObjectZodSchema, CountryMinOrderByAggregateInputObjectSchema, CountryMinOrderByAggregateInputObjectZodSchema, CountryModelSchema, CountryOrderByWithAggregationInputObjectSchema, CountryOrderByWithAggregationInputObjectZodSchema, CountryOrderByWithRelationInputObjectSchema, CountryOrderByWithRelationInputObjectZodSchema, type CountryPureType, CountryResultSchema, type CountryResultType, type CountryScalarFieldEnum, CountryScalarFieldEnumSchema, CountryScalarRelationFilterObjectSchema, CountryScalarRelationFilterObjectZodSchema, CountryScalarWhereWithAggregatesInputObjectSchema, CountryScalarWhereWithAggregatesInputObjectZodSchema, CountrySchema, CountrySelectObjectSchema, CountrySelectObjectZodSchema, CountrySumAggregateInputObjectSchema, CountrySumAggregateInputObjectZodSchema, CountrySumOrderByAggregateInputObjectSchema, CountrySumOrderByAggregateInputObjectZodSchema, CountryUncheckedCreateInputObjectSchema, CountryUncheckedCreateInputObjectZodSchema, CountryUncheckedCreateWithoutCitiesInputObjectSchema, CountryUncheckedCreateWithoutCitiesInputObjectZodSchema, CountryUncheckedUpdateInputObjectSchema, CountryUncheckedUpdateInputObjectZodSchema, CountryUncheckedUpdateManyInputObjectSchema, CountryUncheckedUpdateManyInputObjectZodSchema, CountryUncheckedUpdateWithoutCitiesInputObjectSchema, CountryUncheckedUpdateWithoutCitiesInputObjectZodSchema, CountryUpdateInputObjectSchema, CountryUpdateInputObjectZodSchema, CountryUpdateManyAndReturnSchema, CountryUpdateManyAndReturnZodSchema, CountryUpdateManyMutationInputObjectSchema, CountryUpdateManyMutationInputObjectZodSchema, CountryUpdateManyResultSchema, CountryUpdateManySchema, CountryUpdateManyZodSchema, CountryUpdateOneRequiredWithoutCitiesNestedInputObjectSchema, CountryUpdateOneRequiredWithoutCitiesNestedInputObjectZodSchema, CountryUpdateOneSchema, CountryUpdateOneZodSchema, CountryUpdateResultSchema, CountryUpdateToOneWithWhereWithoutCitiesInputObjectSchema, CountryUpdateToOneWithWhereWithoutCitiesInputObjectZodSchema, CountryUpdateWithoutCitiesInputObjectSchema, CountryUpdateWithoutCitiesInputObjectZodSchema, CountryUpsertOneSchema, CountryUpsertOneZodSchema, CountryUpsertResultSchema, CountryUpsertWithoutCitiesInputObjectSchema, CountryUpsertWithoutCitiesInputObjectZodSchema, CountryWhereInputObjectSchema, CountryWhereInputObjectZodSchema, CountryWhereUniqueInputObjectSchema, CountryWhereUniqueInputObjectZodSchema, type CreateCityDto, CreateCitySchema, type CreateCountryDto, CreateCountrySchema, type CreateOrganizationDto, CreateOrganizationSchema, type CreateWarehouseDto, CreateWarehouseSchema, DateTimeFieldUpdateOperationsInputObjectSchema, DateTimeFieldUpdateOperationsInputObjectZodSchema, DateTimeFilterObjectSchema, DateTimeFilterObjectZodSchema, DateTimeNullableFilterObjectSchema, DateTimeNullableFilterObjectZodSchema, DateTimeNullableWithAggregatesFilterObjectSchema, DateTimeNullableWithAggregatesFilterObjectZodSchema, DateTimeWithAggregatesFilterObjectSchema, DateTimeWithAggregatesFilterObjectZodSchema, EmployeeAggregateResultSchema, EmployeeAggregateSchema, EmployeeAggregateZodSchema, EmployeeArgsObjectSchema, EmployeeArgsObjectZodSchema, EmployeeAvgAggregateInputObjectSchema, EmployeeAvgAggregateInputObjectZodSchema, EmployeeAvgOrderByAggregateInputObjectSchema, EmployeeAvgOrderByAggregateInputObjectZodSchema, EmployeeCountAggregateInputObjectSchema, EmployeeCountAggregateInputObjectZodSchema, EmployeeCountOrderByAggregateInputObjectSchema, EmployeeCountOrderByAggregateInputObjectZodSchema, EmployeeCountOutputTypeArgsObjectSchema, EmployeeCountOutputTypeArgsObjectZodSchema, EmployeeCountOutputTypeCountRoleAssignmentsArgsObjectSchema, EmployeeCountOutputTypeCountRoleAssignmentsArgsObjectZodSchema, EmployeeCountOutputTypeSelectObjectSchema, EmployeeCountOutputTypeSelectObjectZodSchema, EmployeeCountResultSchema, EmployeeCountSchema, EmployeeCountZodSchema, EmployeeCreateInputObjectSchema, EmployeeCreateInputObjectZodSchema, EmployeeCreateManyAndReturnSchema, EmployeeCreateManyAndReturnZodSchema, EmployeeCreateManyInputObjectSchema, EmployeeCreateManyInputObjectZodSchema, EmployeeCreateManyResultSchema, EmployeeCreateManySchema, EmployeeCreateManyWarehouseInputEnvelopeObjectSchema, EmployeeCreateManyWarehouseInputEnvelopeObjectZodSchema, EmployeeCreateManyWarehouseInputObjectSchema, EmployeeCreateManyWarehouseInputObjectZodSchema, EmployeeCreateManyZodSchema, EmployeeCreateNestedManyWithoutWarehouseInputObjectSchema, EmployeeCreateNestedManyWithoutWarehouseInputObjectZodSchema, EmployeeCreateNestedOneWithoutRoleAssignmentsInputObjectSchema, EmployeeCreateNestedOneWithoutRoleAssignmentsInputObjectZodSchema, EmployeeCreateOneSchema, EmployeeCreateOneZodSchema, EmployeeCreateOrConnectWithoutRoleAssignmentsInputObjectSchema, EmployeeCreateOrConnectWithoutRoleAssignmentsInputObjectZodSchema, EmployeeCreateOrConnectWithoutWarehouseInputObjectSchema, EmployeeCreateOrConnectWithoutWarehouseInputObjectZodSchema, EmployeeCreateResultSchema, EmployeeCreateWithoutRoleAssignmentsInputObjectSchema, EmployeeCreateWithoutRoleAssignmentsInputObjectZodSchema, EmployeeCreateWithoutWarehouseInputObjectSchema, EmployeeCreateWithoutWarehouseInputObjectZodSchema, EmployeeDeleteManyResultSchema, EmployeeDeleteManySchema, EmployeeDeleteManyZodSchema, EmployeeDeleteOneSchema, EmployeeDeleteOneZodSchema, EmployeeDeleteResultSchema, EmployeeFindFirstOrThrowSchema, EmployeeFindFirstOrThrowSelectSchema, EmployeeFindFirstOrThrowSelectZodSchema, EmployeeFindFirstOrThrowZodSchema, EmployeeFindFirstResultSchema, EmployeeFindFirstSchema, EmployeeFindFirstSelectSchema, EmployeeFindFirstSelectZodSchema, EmployeeFindFirstZodSchema, EmployeeFindManyResultSchema, EmployeeFindManySchema, EmployeeFindManySelectSchema, EmployeeFindManySelectZodSchema, EmployeeFindManyZodSchema, EmployeeFindUniqueOrThrowSchema, EmployeeFindUniqueOrThrowZodSchema, EmployeeFindUniqueResultSchema, EmployeeFindUniqueSchema, EmployeeFindUniqueZodSchema, EmployeeGroupByResultSchema, EmployeeGroupBySchema, EmployeeGroupByZodSchema, EmployeeIncludeObjectSchema, EmployeeIncludeObjectZodSchema, EmployeeInputSchema, type EmployeeInputType, EmployeeListRelationFilterObjectSchema, EmployeeListRelationFilterObjectZodSchema, EmployeeMaxAggregateInputObjectSchema, EmployeeMaxAggregateInputObjectZodSchema, EmployeeMaxOrderByAggregateInputObjectSchema, EmployeeMaxOrderByAggregateInputObjectZodSchema, EmployeeMinAggregateInputObjectSchema, EmployeeMinAggregateInputObjectZodSchema, EmployeeMinOrderByAggregateInputObjectSchema, EmployeeMinOrderByAggregateInputObjectZodSchema, EmployeeModelSchema, EmployeeOrderByRelationAggregateInputObjectSchema, EmployeeOrderByRelationAggregateInputObjectZodSchema, EmployeeOrderByWithAggregationInputObjectSchema, EmployeeOrderByWithAggregationInputObjectZodSchema, EmployeeOrderByWithRelationInputObjectSchema, EmployeeOrderByWithRelationInputObjectZodSchema, EmployeePermissionAggregateResultSchema, EmployeePermissionAggregateSchema, EmployeePermissionAggregateZodSchema, EmployeePermissionArgsObjectSchema, EmployeePermissionArgsObjectZodSchema, EmployeePermissionAvgAggregateInputObjectSchema, EmployeePermissionAvgAggregateInputObjectZodSchema, EmployeePermissionAvgOrderByAggregateInputObjectSchema, EmployeePermissionAvgOrderByAggregateInputObjectZodSchema, EmployeePermissionCountAggregateInputObjectSchema, EmployeePermissionCountAggregateInputObjectZodSchema, EmployeePermissionCountOrderByAggregateInputObjectSchema, EmployeePermissionCountOrderByAggregateInputObjectZodSchema, EmployeePermissionCountOutputTypeArgsObjectSchema, EmployeePermissionCountOutputTypeArgsObjectZodSchema, EmployeePermissionCountOutputTypeCountRolePermissionsArgsObjectSchema, EmployeePermissionCountOutputTypeCountRolePermissionsArgsObjectZodSchema, EmployeePermissionCountOutputTypeSelectObjectSchema, EmployeePermissionCountOutputTypeSelectObjectZodSchema, EmployeePermissionCountResultSchema, EmployeePermissionCountSchema, EmployeePermissionCountZodSchema, EmployeePermissionCreateInputObjectSchema, EmployeePermissionCreateInputObjectZodSchema, EmployeePermissionCreateManyAndReturnSchema, EmployeePermissionCreateManyAndReturnZodSchema, EmployeePermissionCreateManyInputObjectSchema, EmployeePermissionCreateManyInputObjectZodSchema, EmployeePermissionCreateManyResultSchema, EmployeePermissionCreateManySchema, EmployeePermissionCreateManyZodSchema, EmployeePermissionCreateNestedOneWithoutRolePermissionsInputObjectSchema, EmployeePermissionCreateNestedOneWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionCreateOneSchema, EmployeePermissionCreateOneZodSchema, EmployeePermissionCreateOrConnectWithoutRolePermissionsInputObjectSchema, EmployeePermissionCreateOrConnectWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionCreateResultSchema, EmployeePermissionCreateWithoutRolePermissionsInputObjectSchema, EmployeePermissionCreateWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionDeleteManyResultSchema, EmployeePermissionDeleteManySchema, EmployeePermissionDeleteManyZodSchema, EmployeePermissionDeleteOneSchema, EmployeePermissionDeleteOneZodSchema, EmployeePermissionDeleteResultSchema, EmployeePermissionFindFirstOrThrowSchema, EmployeePermissionFindFirstOrThrowSelectSchema, EmployeePermissionFindFirstOrThrowSelectZodSchema, EmployeePermissionFindFirstOrThrowZodSchema, EmployeePermissionFindFirstResultSchema, EmployeePermissionFindFirstSchema, EmployeePermissionFindFirstSelectSchema, EmployeePermissionFindFirstSelectZodSchema, EmployeePermissionFindFirstZodSchema, EmployeePermissionFindManyResultSchema, EmployeePermissionFindManySchema, EmployeePermissionFindManySelectSchema, EmployeePermissionFindManySelectZodSchema, EmployeePermissionFindManyZodSchema, EmployeePermissionFindUniqueOrThrowSchema, EmployeePermissionFindUniqueOrThrowZodSchema, EmployeePermissionFindUniqueResultSchema, EmployeePermissionFindUniqueSchema, EmployeePermissionFindUniqueZodSchema, EmployeePermissionGroupByResultSchema, EmployeePermissionGroupBySchema, EmployeePermissionGroupByZodSchema, EmployeePermissionIncludeObjectSchema, EmployeePermissionIncludeObjectZodSchema, EmployeePermissionInputSchema, type EmployeePermissionInputType, EmployeePermissionMaxAggregateInputObjectSchema, EmployeePermissionMaxAggregateInputObjectZodSchema, EmployeePermissionMaxOrderByAggregateInputObjectSchema, EmployeePermissionMaxOrderByAggregateInputObjectZodSchema, EmployeePermissionMinAggregateInputObjectSchema, EmployeePermissionMinAggregateInputObjectZodSchema, EmployeePermissionMinOrderByAggregateInputObjectSchema, EmployeePermissionMinOrderByAggregateInputObjectZodSchema, EmployeePermissionModelSchema, EmployeePermissionOrderByWithAggregationInputObjectSchema, EmployeePermissionOrderByWithAggregationInputObjectZodSchema, EmployeePermissionOrderByWithRelationInputObjectSchema, EmployeePermissionOrderByWithRelationInputObjectZodSchema, type EmployeePermissionPureType, EmployeePermissionResultSchema, type EmployeePermissionResultType, type EmployeePermissionScalarFieldEnum, EmployeePermissionScalarFieldEnumSchema, EmployeePermissionScalarRelationFilterObjectSchema, EmployeePermissionScalarRelationFilterObjectZodSchema, EmployeePermissionScalarWhereWithAggregatesInputObjectSchema, EmployeePermissionScalarWhereWithAggregatesInputObjectZodSchema, EmployeePermissionSelectObjectSchema, EmployeePermissionSelectObjectZodSchema, EmployeePermissionSumAggregateInputObjectSchema, EmployeePermissionSumAggregateInputObjectZodSchema, EmployeePermissionSumOrderByAggregateInputObjectSchema, EmployeePermissionSumOrderByAggregateInputObjectZodSchema, EmployeePermissionUncheckedCreateInputObjectSchema, EmployeePermissionUncheckedCreateInputObjectZodSchema, EmployeePermissionUncheckedCreateWithoutRolePermissionsInputObjectSchema, EmployeePermissionUncheckedCreateWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionUncheckedUpdateInputObjectSchema, EmployeePermissionUncheckedUpdateInputObjectZodSchema, EmployeePermissionUncheckedUpdateManyInputObjectSchema, EmployeePermissionUncheckedUpdateManyInputObjectZodSchema, EmployeePermissionUncheckedUpdateWithoutRolePermissionsInputObjectSchema, EmployeePermissionUncheckedUpdateWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionUpdateInputObjectSchema, EmployeePermissionUpdateInputObjectZodSchema, EmployeePermissionUpdateManyAndReturnSchema, EmployeePermissionUpdateManyAndReturnZodSchema, EmployeePermissionUpdateManyMutationInputObjectSchema, EmployeePermissionUpdateManyMutationInputObjectZodSchema, EmployeePermissionUpdateManyResultSchema, EmployeePermissionUpdateManySchema, EmployeePermissionUpdateManyZodSchema, EmployeePermissionUpdateOneRequiredWithoutRolePermissionsNestedInputObjectSchema, EmployeePermissionUpdateOneRequiredWithoutRolePermissionsNestedInputObjectZodSchema, EmployeePermissionUpdateOneSchema, EmployeePermissionUpdateOneZodSchema, EmployeePermissionUpdateResultSchema, EmployeePermissionUpdateToOneWithWhereWithoutRolePermissionsInputObjectSchema, EmployeePermissionUpdateToOneWithWhereWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionUpdateWithoutRolePermissionsInputObjectSchema, EmployeePermissionUpdateWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionUpsertOneSchema, EmployeePermissionUpsertOneZodSchema, EmployeePermissionUpsertResultSchema, EmployeePermissionUpsertWithoutRolePermissionsInputObjectSchema, EmployeePermissionUpsertWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionWhereInputObjectSchema, EmployeePermissionWhereInputObjectZodSchema, EmployeePermissionWhereUniqueInputObjectSchema, EmployeePermissionWhereUniqueInputObjectZodSchema, type EmployeePureType, EmployeeResultSchema, type EmployeeResultType, EmployeeRoleAggregateResultSchema, EmployeeRoleAggregateSchema, EmployeeRoleAggregateZodSchema, EmployeeRoleArgsObjectSchema, EmployeeRoleArgsObjectZodSchema, EmployeeRoleAssignmentAggregateResultSchema, EmployeeRoleAssignmentAggregateSchema, EmployeeRoleAssignmentAggregateZodSchema, EmployeeRoleAssignmentArgsObjectSchema, EmployeeRoleAssignmentArgsObjectZodSchema, EmployeeRoleAssignmentAvgAggregateInputObjectSchema, EmployeeRoleAssignmentAvgAggregateInputObjectZodSchema, EmployeeRoleAssignmentAvgOrderByAggregateInputObjectSchema, EmployeeRoleAssignmentAvgOrderByAggregateInputObjectZodSchema, EmployeeRoleAssignmentCountAggregateInputObjectSchema, EmployeeRoleAssignmentCountAggregateInputObjectZodSchema, EmployeeRoleAssignmentCountOrderByAggregateInputObjectSchema, EmployeeRoleAssignmentCountOrderByAggregateInputObjectZodSchema, EmployeeRoleAssignmentCountResultSchema, EmployeeRoleAssignmentCountSchema, EmployeeRoleAssignmentCountZodSchema, EmployeeRoleAssignmentCreateInputObjectSchema, EmployeeRoleAssignmentCreateInputObjectZodSchema, EmployeeRoleAssignmentCreateManyAndReturnSchema, EmployeeRoleAssignmentCreateManyAndReturnZodSchema, EmployeeRoleAssignmentCreateManyEmployeeInputEnvelopeObjectSchema, EmployeeRoleAssignmentCreateManyEmployeeInputEnvelopeObjectZodSchema, EmployeeRoleAssignmentCreateManyEmployeeInputObjectSchema, EmployeeRoleAssignmentCreateManyEmployeeInputObjectZodSchema, EmployeeRoleAssignmentCreateManyEmployeeRoleInputEnvelopeObjectSchema, EmployeeRoleAssignmentCreateManyEmployeeRoleInputEnvelopeObjectZodSchema, EmployeeRoleAssignmentCreateManyEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentCreateManyEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentCreateManyInputObjectSchema, EmployeeRoleAssignmentCreateManyInputObjectZodSchema, EmployeeRoleAssignmentCreateManyResultSchema, EmployeeRoleAssignmentCreateManySchema, EmployeeRoleAssignmentCreateManyZodSchema, EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentCreateOneSchema, EmployeeRoleAssignmentCreateOneZodSchema, EmployeeRoleAssignmentCreateOrConnectWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentCreateOrConnectWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentCreateOrConnectWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentCreateOrConnectWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentCreateResultSchema, EmployeeRoleAssignmentCreateWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentCreateWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentCreateWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentCreateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentDeleteManyResultSchema, EmployeeRoleAssignmentDeleteManySchema, EmployeeRoleAssignmentDeleteManyZodSchema, EmployeeRoleAssignmentDeleteOneSchema, EmployeeRoleAssignmentDeleteOneZodSchema, EmployeeRoleAssignmentDeleteResultSchema, EmployeeRoleAssignmentEmployeeIdEmployeeRoleIdCompoundUniqueInputObjectSchema, EmployeeRoleAssignmentEmployeeIdEmployeeRoleIdCompoundUniqueInputObjectZodSchema, EmployeeRoleAssignmentFindFirstOrThrowSchema, EmployeeRoleAssignmentFindFirstOrThrowSelectSchema, EmployeeRoleAssignmentFindFirstOrThrowSelectZodSchema, EmployeeRoleAssignmentFindFirstOrThrowZodSchema, EmployeeRoleAssignmentFindFirstResultSchema, EmployeeRoleAssignmentFindFirstSchema, EmployeeRoleAssignmentFindFirstSelectSchema, EmployeeRoleAssignmentFindFirstSelectZodSchema, EmployeeRoleAssignmentFindFirstZodSchema, EmployeeRoleAssignmentFindManyResultSchema, EmployeeRoleAssignmentFindManySchema, EmployeeRoleAssignmentFindManySelectSchema, EmployeeRoleAssignmentFindManySelectZodSchema, EmployeeRoleAssignmentFindManyZodSchema, EmployeeRoleAssignmentFindUniqueOrThrowSchema, EmployeeRoleAssignmentFindUniqueOrThrowZodSchema, EmployeeRoleAssignmentFindUniqueResultSchema, EmployeeRoleAssignmentFindUniqueSchema, EmployeeRoleAssignmentFindUniqueZodSchema, EmployeeRoleAssignmentGroupByResultSchema, EmployeeRoleAssignmentGroupBySchema, EmployeeRoleAssignmentGroupByZodSchema, EmployeeRoleAssignmentIncludeObjectSchema, EmployeeRoleAssignmentIncludeObjectZodSchema, EmployeeRoleAssignmentInputSchema, type EmployeeRoleAssignmentInputType, EmployeeRoleAssignmentListRelationFilterObjectSchema, EmployeeRoleAssignmentListRelationFilterObjectZodSchema, EmployeeRoleAssignmentMaxAggregateInputObjectSchema, EmployeeRoleAssignmentMaxAggregateInputObjectZodSchema, EmployeeRoleAssignmentMaxOrderByAggregateInputObjectSchema, EmployeeRoleAssignmentMaxOrderByAggregateInputObjectZodSchema, EmployeeRoleAssignmentMinAggregateInputObjectSchema, EmployeeRoleAssignmentMinAggregateInputObjectZodSchema, EmployeeRoleAssignmentMinOrderByAggregateInputObjectSchema, EmployeeRoleAssignmentMinOrderByAggregateInputObjectZodSchema, EmployeeRoleAssignmentModelSchema, EmployeeRoleAssignmentOrderByRelationAggregateInputObjectSchema, EmployeeRoleAssignmentOrderByRelationAggregateInputObjectZodSchema, EmployeeRoleAssignmentOrderByWithAggregationInputObjectSchema, EmployeeRoleAssignmentOrderByWithAggregationInputObjectZodSchema, EmployeeRoleAssignmentOrderByWithRelationInputObjectSchema, EmployeeRoleAssignmentOrderByWithRelationInputObjectZodSchema, type EmployeeRoleAssignmentPureType, EmployeeRoleAssignmentResultSchema, type EmployeeRoleAssignmentResultType, type EmployeeRoleAssignmentScalarFieldEnum, EmployeeRoleAssignmentScalarFieldEnumSchema, EmployeeRoleAssignmentScalarWhereInputObjectSchema, EmployeeRoleAssignmentScalarWhereInputObjectZodSchema, EmployeeRoleAssignmentScalarWhereWithAggregatesInputObjectSchema, EmployeeRoleAssignmentScalarWhereWithAggregatesInputObjectZodSchema, EmployeeRoleAssignmentSelectObjectSchema, EmployeeRoleAssignmentSelectObjectZodSchema, EmployeeRoleAssignmentSumAggregateInputObjectSchema, EmployeeRoleAssignmentSumAggregateInputObjectZodSchema, EmployeeRoleAssignmentSumOrderByAggregateInputObjectSchema, EmployeeRoleAssignmentSumOrderByAggregateInputObjectZodSchema, EmployeeRoleAssignmentUncheckedCreateInputObjectSchema, EmployeeRoleAssignmentUncheckedCreateInputObjectZodSchema, EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUncheckedCreateWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUncheckedCreateWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUncheckedCreateWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUncheckedCreateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateManyInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateManyInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeNestedInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeNestedInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUpdateInputObjectSchema, EmployeeRoleAssignmentUpdateInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyAndReturnSchema, EmployeeRoleAssignmentUpdateManyAndReturnZodSchema, EmployeeRoleAssignmentUpdateManyMutationInputObjectSchema, EmployeeRoleAssignmentUpdateManyMutationInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyResultSchema, EmployeeRoleAssignmentUpdateManySchema, EmployeeRoleAssignmentUpdateManyWithWhereWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUpdateManyWithWhereWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyWithWhereWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUpdateManyWithWhereWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInputObjectSchema, EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInputObjectSchema, EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyZodSchema, EmployeeRoleAssignmentUpdateOneSchema, EmployeeRoleAssignmentUpdateOneZodSchema, EmployeeRoleAssignmentUpdateResultSchema, EmployeeRoleAssignmentUpdateWithWhereUniqueWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUpdateWithWhereUniqueWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUpdateWithWhereUniqueWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUpdateWithWhereUniqueWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUpdateWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUpdateWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUpdateWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUpdateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUpsertOneSchema, EmployeeRoleAssignmentUpsertOneZodSchema, EmployeeRoleAssignmentUpsertResultSchema, EmployeeRoleAssignmentUpsertWithWhereUniqueWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUpsertWithWhereUniqueWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUpsertWithWhereUniqueWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUpsertWithWhereUniqueWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentWhereInputObjectSchema, EmployeeRoleAssignmentWhereInputObjectZodSchema, EmployeeRoleAssignmentWhereUniqueInputObjectSchema, EmployeeRoleAssignmentWhereUniqueInputObjectZodSchema, EmployeeRoleAvgAggregateInputObjectSchema, EmployeeRoleAvgAggregateInputObjectZodSchema, EmployeeRoleAvgOrderByAggregateInputObjectSchema, EmployeeRoleAvgOrderByAggregateInputObjectZodSchema, EmployeeRoleCountAggregateInputObjectSchema, EmployeeRoleCountAggregateInputObjectZodSchema, EmployeeRoleCountOrderByAggregateInputObjectSchema, EmployeeRoleCountOrderByAggregateInputObjectZodSchema, EmployeeRoleCountOutputTypeArgsObjectSchema, EmployeeRoleCountOutputTypeArgsObjectZodSchema, EmployeeRoleCountOutputTypeCountAssignmentsArgsObjectSchema, EmployeeRoleCountOutputTypeCountAssignmentsArgsObjectZodSchema, EmployeeRoleCountOutputTypeCountPermissionsArgsObjectSchema, EmployeeRoleCountOutputTypeCountPermissionsArgsObjectZodSchema, EmployeeRoleCountOutputTypeSelectObjectSchema, EmployeeRoleCountOutputTypeSelectObjectZodSchema, EmployeeRoleCountResultSchema, EmployeeRoleCountSchema, EmployeeRoleCountZodSchema, EmployeeRoleCreateInputObjectSchema, EmployeeRoleCreateInputObjectZodSchema, EmployeeRoleCreateManyAndReturnSchema, EmployeeRoleCreateManyAndReturnZodSchema, EmployeeRoleCreateManyInputObjectSchema, EmployeeRoleCreateManyInputObjectZodSchema, EmployeeRoleCreateManyResultSchema, EmployeeRoleCreateManySchema, EmployeeRoleCreateManyZodSchema, EmployeeRoleCreateNestedOneWithoutAssignmentsInputObjectSchema, EmployeeRoleCreateNestedOneWithoutAssignmentsInputObjectZodSchema, EmployeeRoleCreateNestedOneWithoutPermissionsInputObjectSchema, EmployeeRoleCreateNestedOneWithoutPermissionsInputObjectZodSchema, EmployeeRoleCreateOneSchema, EmployeeRoleCreateOneZodSchema, EmployeeRoleCreateOrConnectWithoutAssignmentsInputObjectSchema, EmployeeRoleCreateOrConnectWithoutAssignmentsInputObjectZodSchema, EmployeeRoleCreateOrConnectWithoutPermissionsInputObjectSchema, EmployeeRoleCreateOrConnectWithoutPermissionsInputObjectZodSchema, EmployeeRoleCreateResultSchema, EmployeeRoleCreateWithoutAssignmentsInputObjectSchema, EmployeeRoleCreateWithoutAssignmentsInputObjectZodSchema, EmployeeRoleCreateWithoutPermissionsInputObjectSchema, EmployeeRoleCreateWithoutPermissionsInputObjectZodSchema, EmployeeRoleDeleteManyResultSchema, EmployeeRoleDeleteManySchema, EmployeeRoleDeleteManyZodSchema, EmployeeRoleDeleteOneSchema, EmployeeRoleDeleteOneZodSchema, EmployeeRoleDeleteResultSchema, EmployeeRoleFindFirstOrThrowSchema, EmployeeRoleFindFirstOrThrowSelectSchema, EmployeeRoleFindFirstOrThrowSelectZodSchema, EmployeeRoleFindFirstOrThrowZodSchema, EmployeeRoleFindFirstResultSchema, EmployeeRoleFindFirstSchema, EmployeeRoleFindFirstSelectSchema, EmployeeRoleFindFirstSelectZodSchema, EmployeeRoleFindFirstZodSchema, EmployeeRoleFindManyResultSchema, EmployeeRoleFindManySchema, EmployeeRoleFindManySelectSchema, EmployeeRoleFindManySelectZodSchema, EmployeeRoleFindManyZodSchema, EmployeeRoleFindUniqueOrThrowSchema, EmployeeRoleFindUniqueOrThrowZodSchema, EmployeeRoleFindUniqueResultSchema, EmployeeRoleFindUniqueSchema, EmployeeRoleFindUniqueZodSchema, EmployeeRoleGroupByResultSchema, EmployeeRoleGroupBySchema, EmployeeRoleGroupByZodSchema, EmployeeRoleIncludeObjectSchema, EmployeeRoleIncludeObjectZodSchema, EmployeeRoleInputSchema, type EmployeeRoleInputType, EmployeeRoleMaxAggregateInputObjectSchema, EmployeeRoleMaxAggregateInputObjectZodSchema, EmployeeRoleMaxOrderByAggregateInputObjectSchema, EmployeeRoleMaxOrderByAggregateInputObjectZodSchema, EmployeeRoleMinAggregateInputObjectSchema, EmployeeRoleMinAggregateInputObjectZodSchema, EmployeeRoleMinOrderByAggregateInputObjectSchema, EmployeeRoleMinOrderByAggregateInputObjectZodSchema, EmployeeRoleModelSchema, EmployeeRoleOrderByWithAggregationInputObjectSchema, EmployeeRoleOrderByWithAggregationInputObjectZodSchema, EmployeeRoleOrderByWithRelationInputObjectSchema, EmployeeRoleOrderByWithRelationInputObjectZodSchema, EmployeeRolePermissionAggregateResultSchema, EmployeeRolePermissionAggregateSchema, EmployeeRolePermissionAggregateZodSchema, EmployeeRolePermissionArgsObjectSchema, EmployeeRolePermissionArgsObjectZodSchema, EmployeeRolePermissionAvgAggregateInputObjectSchema, EmployeeRolePermissionAvgAggregateInputObjectZodSchema, EmployeeRolePermissionAvgOrderByAggregateInputObjectSchema, EmployeeRolePermissionAvgOrderByAggregateInputObjectZodSchema, EmployeeRolePermissionCountAggregateInputObjectSchema, EmployeeRolePermissionCountAggregateInputObjectZodSchema, EmployeeRolePermissionCountOrderByAggregateInputObjectSchema, EmployeeRolePermissionCountOrderByAggregateInputObjectZodSchema, EmployeeRolePermissionCountResultSchema, EmployeeRolePermissionCountSchema, EmployeeRolePermissionCountZodSchema, EmployeeRolePermissionCreateInputObjectSchema, EmployeeRolePermissionCreateInputObjectZodSchema, EmployeeRolePermissionCreateManyAndReturnSchema, EmployeeRolePermissionCreateManyAndReturnZodSchema, EmployeeRolePermissionCreateManyEmployeePermissionInputEnvelopeObjectSchema, EmployeeRolePermissionCreateManyEmployeePermissionInputEnvelopeObjectZodSchema, EmployeeRolePermissionCreateManyEmployeePermissionInputObjectSchema, EmployeeRolePermissionCreateManyEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionCreateManyEmployeeRoleInputEnvelopeObjectSchema, EmployeeRolePermissionCreateManyEmployeeRoleInputEnvelopeObjectZodSchema, EmployeeRolePermissionCreateManyEmployeeRoleInputObjectSchema, EmployeeRolePermissionCreateManyEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionCreateManyInputObjectSchema, EmployeeRolePermissionCreateManyInputObjectZodSchema, EmployeeRolePermissionCreateManyResultSchema, EmployeeRolePermissionCreateManySchema, EmployeeRolePermissionCreateManyZodSchema, EmployeeRolePermissionCreateNestedManyWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionCreateNestedManyWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionCreateOneSchema, EmployeeRolePermissionCreateOneZodSchema, EmployeeRolePermissionCreateOrConnectWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionCreateOrConnectWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionCreateOrConnectWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionCreateOrConnectWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionCreateResultSchema, EmployeeRolePermissionCreateWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionCreateWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionCreateWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionCreateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionDeleteManyResultSchema, EmployeeRolePermissionDeleteManySchema, EmployeeRolePermissionDeleteManyZodSchema, EmployeeRolePermissionDeleteOneSchema, EmployeeRolePermissionDeleteOneZodSchema, EmployeeRolePermissionDeleteResultSchema, EmployeeRolePermissionEmployeeRoleIdEmployeePermissionIdCompoundUniqueInputObjectSchema, EmployeeRolePermissionEmployeeRoleIdEmployeePermissionIdCompoundUniqueInputObjectZodSchema, EmployeeRolePermissionFindFirstOrThrowSchema, EmployeeRolePermissionFindFirstOrThrowSelectSchema, EmployeeRolePermissionFindFirstOrThrowSelectZodSchema, EmployeeRolePermissionFindFirstOrThrowZodSchema, EmployeeRolePermissionFindFirstResultSchema, EmployeeRolePermissionFindFirstSchema, EmployeeRolePermissionFindFirstSelectSchema, EmployeeRolePermissionFindFirstSelectZodSchema, EmployeeRolePermissionFindFirstZodSchema, EmployeeRolePermissionFindManyResultSchema, EmployeeRolePermissionFindManySchema, EmployeeRolePermissionFindManySelectSchema, EmployeeRolePermissionFindManySelectZodSchema, EmployeeRolePermissionFindManyZodSchema, EmployeeRolePermissionFindUniqueOrThrowSchema, EmployeeRolePermissionFindUniqueOrThrowZodSchema, EmployeeRolePermissionFindUniqueResultSchema, EmployeeRolePermissionFindUniqueSchema, EmployeeRolePermissionFindUniqueZodSchema, EmployeeRolePermissionGroupByResultSchema, EmployeeRolePermissionGroupBySchema, EmployeeRolePermissionGroupByZodSchema, EmployeeRolePermissionIncludeObjectSchema, EmployeeRolePermissionIncludeObjectZodSchema, EmployeeRolePermissionInputSchema, type EmployeeRolePermissionInputType, EmployeeRolePermissionListRelationFilterObjectSchema, EmployeeRolePermissionListRelationFilterObjectZodSchema, EmployeeRolePermissionMaxAggregateInputObjectSchema, EmployeeRolePermissionMaxAggregateInputObjectZodSchema, EmployeeRolePermissionMaxOrderByAggregateInputObjectSchema, EmployeeRolePermissionMaxOrderByAggregateInputObjectZodSchema, EmployeeRolePermissionMinAggregateInputObjectSchema, EmployeeRolePermissionMinAggregateInputObjectZodSchema, EmployeeRolePermissionMinOrderByAggregateInputObjectSchema, EmployeeRolePermissionMinOrderByAggregateInputObjectZodSchema, EmployeeRolePermissionModelSchema, EmployeeRolePermissionOrderByRelationAggregateInputObjectSchema, EmployeeRolePermissionOrderByRelationAggregateInputObjectZodSchema, EmployeeRolePermissionOrderByWithAggregationInputObjectSchema, EmployeeRolePermissionOrderByWithAggregationInputObjectZodSchema, EmployeeRolePermissionOrderByWithRelationInputObjectSchema, EmployeeRolePermissionOrderByWithRelationInputObjectZodSchema, type EmployeeRolePermissionPureType, EmployeeRolePermissionResultSchema, type EmployeeRolePermissionResultType, type EmployeeRolePermissionScalarFieldEnum, EmployeeRolePermissionScalarFieldEnumSchema, EmployeeRolePermissionScalarWhereInputObjectSchema, EmployeeRolePermissionScalarWhereInputObjectZodSchema, EmployeeRolePermissionScalarWhereWithAggregatesInputObjectSchema, EmployeeRolePermissionScalarWhereWithAggregatesInputObjectZodSchema, EmployeeRolePermissionSelectObjectSchema, EmployeeRolePermissionSelectObjectZodSchema, EmployeeRolePermissionSumAggregateInputObjectSchema, EmployeeRolePermissionSumAggregateInputObjectZodSchema, EmployeeRolePermissionSumOrderByAggregateInputObjectSchema, EmployeeRolePermissionSumOrderByAggregateInputObjectZodSchema, EmployeeRolePermissionUncheckedCreateInputObjectSchema, EmployeeRolePermissionUncheckedCreateInputObjectZodSchema, EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUncheckedCreateWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUncheckedCreateWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUncheckedCreateWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUncheckedCreateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateInputObjectSchema, EmployeeRolePermissionUncheckedUpdateInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateManyInputObjectSchema, EmployeeRolePermissionUncheckedUpdateManyInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeePermissionNestedInputObjectSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeePermissionNestedInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInputObjectSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUncheckedUpdateWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUncheckedUpdateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUpdateInputObjectSchema, EmployeeRolePermissionUpdateInputObjectZodSchema, EmployeeRolePermissionUpdateManyAndReturnSchema, EmployeeRolePermissionUpdateManyAndReturnZodSchema, EmployeeRolePermissionUpdateManyMutationInputObjectSchema, EmployeeRolePermissionUpdateManyMutationInputObjectZodSchema, EmployeeRolePermissionUpdateManyResultSchema, EmployeeRolePermissionUpdateManySchema, EmployeeRolePermissionUpdateManyWithWhereWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUpdateManyWithWhereWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUpdateManyWithWhereWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUpdateManyWithWhereWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUpdateManyWithoutEmployeePermissionNestedInputObjectSchema, EmployeeRolePermissionUpdateManyWithoutEmployeePermissionNestedInputObjectZodSchema, EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInputObjectSchema, EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInputObjectZodSchema, EmployeeRolePermissionUpdateManyZodSchema, EmployeeRolePermissionUpdateOneSchema, EmployeeRolePermissionUpdateOneZodSchema, EmployeeRolePermissionUpdateResultSchema, EmployeeRolePermissionUpdateWithWhereUniqueWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUpdateWithWhereUniqueWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUpdateWithWhereUniqueWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUpdateWithWhereUniqueWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUpdateWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUpdateWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUpdateWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUpdateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUpsertOneSchema, EmployeeRolePermissionUpsertOneZodSchema, EmployeeRolePermissionUpsertResultSchema, EmployeeRolePermissionUpsertWithWhereUniqueWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUpsertWithWhereUniqueWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUpsertWithWhereUniqueWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUpsertWithWhereUniqueWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionWhereInputObjectSchema, EmployeeRolePermissionWhereInputObjectZodSchema, EmployeeRolePermissionWhereUniqueInputObjectSchema, EmployeeRolePermissionWhereUniqueInputObjectZodSchema, type EmployeeRolePureType, EmployeeRoleResultSchema, type EmployeeRoleResultType, type EmployeeRoleScalarFieldEnum, EmployeeRoleScalarFieldEnumSchema, EmployeeRoleScalarRelationFilterObjectSchema, EmployeeRoleScalarRelationFilterObjectZodSchema, EmployeeRoleScalarWhereWithAggregatesInputObjectSchema, EmployeeRoleScalarWhereWithAggregatesInputObjectZodSchema, EmployeeRoleSelectObjectSchema, EmployeeRoleSelectObjectZodSchema, EmployeeRoleSumAggregateInputObjectSchema, EmployeeRoleSumAggregateInputObjectZodSchema, EmployeeRoleSumOrderByAggregateInputObjectSchema, EmployeeRoleSumOrderByAggregateInputObjectZodSchema, EmployeeRoleUncheckedCreateInputObjectSchema, EmployeeRoleUncheckedCreateInputObjectZodSchema, EmployeeRoleUncheckedCreateWithoutAssignmentsInputObjectSchema, EmployeeRoleUncheckedCreateWithoutAssignmentsInputObjectZodSchema, EmployeeRoleUncheckedCreateWithoutPermissionsInputObjectSchema, EmployeeRoleUncheckedCreateWithoutPermissionsInputObjectZodSchema, EmployeeRoleUncheckedUpdateInputObjectSchema, EmployeeRoleUncheckedUpdateInputObjectZodSchema, EmployeeRoleUncheckedUpdateManyInputObjectSchema, EmployeeRoleUncheckedUpdateManyInputObjectZodSchema, EmployeeRoleUncheckedUpdateWithoutAssignmentsInputObjectSchema, EmployeeRoleUncheckedUpdateWithoutAssignmentsInputObjectZodSchema, EmployeeRoleUncheckedUpdateWithoutPermissionsInputObjectSchema, EmployeeRoleUncheckedUpdateWithoutPermissionsInputObjectZodSchema, EmployeeRoleUpdateInputObjectSchema, EmployeeRoleUpdateInputObjectZodSchema, EmployeeRoleUpdateManyAndReturnSchema, EmployeeRoleUpdateManyAndReturnZodSchema, EmployeeRoleUpdateManyMutationInputObjectSchema, EmployeeRoleUpdateManyMutationInputObjectZodSchema, EmployeeRoleUpdateManyResultSchema, EmployeeRoleUpdateManySchema, EmployeeRoleUpdateManyZodSchema, EmployeeRoleUpdateOneRequiredWithoutAssignmentsNestedInputObjectSchema, EmployeeRoleUpdateOneRequiredWithoutAssignmentsNestedInputObjectZodSchema, EmployeeRoleUpdateOneRequiredWithoutPermissionsNestedInputObjectSchema, EmployeeRoleUpdateOneRequiredWithoutPermissionsNestedInputObjectZodSchema, EmployeeRoleUpdateOneSchema, EmployeeRoleUpdateOneZodSchema, EmployeeRoleUpdateResultSchema, EmployeeRoleUpdateToOneWithWhereWithoutAssignmentsInputObjectSchema, EmployeeRoleUpdateToOneWithWhereWithoutAssignmentsInputObjectZodSchema, EmployeeRoleUpdateToOneWithWhereWithoutPermissionsInputObjectSchema, EmployeeRoleUpdateToOneWithWhereWithoutPermissionsInputObjectZodSchema, EmployeeRoleUpdateWithoutAssignmentsInputObjectSchema, EmployeeRoleUpdateWithoutAssignmentsInputObjectZodSchema, EmployeeRoleUpdateWithoutPermissionsInputObjectSchema, EmployeeRoleUpdateWithoutPermissionsInputObjectZodSchema, EmployeeRoleUpsertOneSchema, EmployeeRoleUpsertOneZodSchema, EmployeeRoleUpsertResultSchema, EmployeeRoleUpsertWithoutAssignmentsInputObjectSchema, EmployeeRoleUpsertWithoutAssignmentsInputObjectZodSchema, EmployeeRoleUpsertWithoutPermissionsInputObjectSchema, EmployeeRoleUpsertWithoutPermissionsInputObjectZodSchema, EmployeeRoleWhereInputObjectSchema, EmployeeRoleWhereInputObjectZodSchema, EmployeeRoleWhereUniqueInputObjectSchema, EmployeeRoleWhereUniqueInputObjectZodSchema, type EmployeeScalarFieldEnum, EmployeeScalarFieldEnumSchema, EmployeeScalarRelationFilterObjectSchema, EmployeeScalarRelationFilterObjectZodSchema, EmployeeScalarWhereInputObjectSchema, EmployeeScalarWhereInputObjectZodSchema, EmployeeScalarWhereWithAggregatesInputObjectSchema, EmployeeScalarWhereWithAggregatesInputObjectZodSchema, EmployeeSelectObjectSchema, EmployeeSelectObjectZodSchema, EmployeeSumAggregateInputObjectSchema, EmployeeSumAggregateInputObjectZodSchema, EmployeeSumOrderByAggregateInputObjectSchema, EmployeeSumOrderByAggregateInputObjectZodSchema, EmployeeUncheckedCreateInputObjectSchema, EmployeeUncheckedCreateInputObjectZodSchema, EmployeeUncheckedCreateNestedManyWithoutWarehouseInputObjectSchema, EmployeeUncheckedCreateNestedManyWithoutWarehouseInputObjectZodSchema, EmployeeUncheckedCreateWithoutRoleAssignmentsInputObjectSchema, EmployeeUncheckedCreateWithoutRoleAssignmentsInputObjectZodSchema, EmployeeUncheckedCreateWithoutWarehouseInputObjectSchema, EmployeeUncheckedCreateWithoutWarehouseInputObjectZodSchema, EmployeeUncheckedUpdateInputObjectSchema, EmployeeUncheckedUpdateInputObjectZodSchema, EmployeeUncheckedUpdateManyInputObjectSchema, EmployeeUncheckedUpdateManyInputObjectZodSchema, EmployeeUncheckedUpdateManyWithoutWarehouseInputObjectSchema, EmployeeUncheckedUpdateManyWithoutWarehouseInputObjectZodSchema, EmployeeUncheckedUpdateManyWithoutWarehouseNestedInputObjectSchema, EmployeeUncheckedUpdateManyWithoutWarehouseNestedInputObjectZodSchema, EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectSchema, EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectZodSchema, EmployeeUncheckedUpdateWithoutWarehouseInputObjectSchema, EmployeeUncheckedUpdateWithoutWarehouseInputObjectZodSchema, EmployeeUpdateInputObjectSchema, EmployeeUpdateInputObjectZodSchema, EmployeeUpdateManyAndReturnSchema, EmployeeUpdateManyAndReturnZodSchema, EmployeeUpdateManyMutationInputObjectSchema, EmployeeUpdateManyMutationInputObjectZodSchema, EmployeeUpdateManyResultSchema, EmployeeUpdateManySchema, EmployeeUpdateManyWithWhereWithoutWarehouseInputObjectSchema, EmployeeUpdateManyWithWhereWithoutWarehouseInputObjectZodSchema, EmployeeUpdateManyWithoutWarehouseNestedInputObjectSchema, EmployeeUpdateManyWithoutWarehouseNestedInputObjectZodSchema, EmployeeUpdateManyZodSchema, EmployeeUpdateOneRequiredWithoutRoleAssignmentsNestedInputObjectSchema, EmployeeUpdateOneRequiredWithoutRoleAssignmentsNestedInputObjectZodSchema, EmployeeUpdateOneSchema, EmployeeUpdateOneZodSchema, EmployeeUpdateResultSchema, EmployeeUpdateToOneWithWhereWithoutRoleAssignmentsInputObjectSchema, EmployeeUpdateToOneWithWhereWithoutRoleAssignmentsInputObjectZodSchema, EmployeeUpdateWithWhereUniqueWithoutWarehouseInputObjectSchema, EmployeeUpdateWithWhereUniqueWithoutWarehouseInputObjectZodSchema, EmployeeUpdateWithoutRoleAssignmentsInputObjectSchema, EmployeeUpdateWithoutRoleAssignmentsInputObjectZodSchema, EmployeeUpdateWithoutWarehouseInputObjectSchema, EmployeeUpdateWithoutWarehouseInputObjectZodSchema, EmployeeUpsertOneSchema, EmployeeUpsertOneZodSchema, EmployeeUpsertResultSchema, EmployeeUpsertWithWhereUniqueWithoutWarehouseInputObjectSchema, EmployeeUpsertWithWhereUniqueWithoutWarehouseInputObjectZodSchema, EmployeeUpsertWithoutRoleAssignmentsInputObjectSchema, EmployeeUpsertWithoutRoleAssignmentsInputObjectZodSchema, EmployeeWhereInputObjectSchema, EmployeeWhereInputObjectZodSchema, EmployeeWhereUniqueInputObjectSchema, EmployeeWhereUniqueInputObjectZodSchema, IntFieldUpdateOperationsInputObjectSchema, IntFieldUpdateOperationsInputObjectZodSchema, IntFilterObjectSchema, IntFilterObjectZodSchema, IntNullableFilterObjectSchema, IntNullableFilterObjectZodSchema, IntNullableWithAggregatesFilterObjectSchema, IntNullableWithAggregatesFilterObjectZodSchema, IntWithAggregatesFilterObjectSchema, IntWithAggregatesFilterObjectZodSchema, type JwtPayload, type LoginDto, LoginSchema, NestedBigIntFilterObjectSchema, NestedBigIntFilterObjectZodSchema, NestedBigIntWithAggregatesFilterObjectSchema, NestedBigIntWithAggregatesFilterObjectZodSchema, NestedBoolFilterObjectSchema, NestedBoolFilterObjectZodSchema, NestedBoolWithAggregatesFilterObjectSchema, NestedBoolWithAggregatesFilterObjectZodSchema, NestedDateTimeFilterObjectSchema, NestedDateTimeFilterObjectZodSchema, NestedDateTimeNullableFilterObjectSchema, NestedDateTimeNullableFilterObjectZodSchema, NestedDateTimeNullableWithAggregatesFilterObjectSchema, NestedDateTimeNullableWithAggregatesFilterObjectZodSchema, NestedDateTimeWithAggregatesFilterObjectSchema, NestedDateTimeWithAggregatesFilterObjectZodSchema, NestedFloatFilterObjectSchema, NestedFloatFilterObjectZodSchema, NestedFloatNullableFilterObjectSchema, NestedFloatNullableFilterObjectZodSchema, NestedIntFilterObjectSchema, NestedIntFilterObjectZodSchema, NestedIntNullableFilterObjectSchema, NestedIntNullableFilterObjectZodSchema, NestedIntNullableWithAggregatesFilterObjectSchema, NestedIntNullableWithAggregatesFilterObjectZodSchema, NestedIntWithAggregatesFilterObjectSchema, NestedIntWithAggregatesFilterObjectZodSchema, NestedStringFilterObjectSchema, NestedStringFilterObjectZodSchema, NestedStringNullableFilterObjectSchema, NestedStringNullableFilterObjectZodSchema, NestedStringNullableWithAggregatesFilterObjectSchema, NestedStringNullableWithAggregatesFilterObjectZodSchema, NestedStringWithAggregatesFilterObjectSchema, NestedStringWithAggregatesFilterObjectZodSchema, NestedUuidFilterObjectSchema, NestedUuidFilterObjectZodSchema, NestedUuidWithAggregatesFilterObjectSchema, NestedUuidWithAggregatesFilterObjectZodSchema, NullableDateTimeFieldUpdateOperationsInputObjectSchema, NullableDateTimeFieldUpdateOperationsInputObjectZodSchema, NullableIntFieldUpdateOperationsInputObjectSchema, NullableIntFieldUpdateOperationsInputObjectZodSchema, NullableStringFieldUpdateOperationsInputObjectSchema, NullableStringFieldUpdateOperationsInputObjectZodSchema, type NullsOrder, NullsOrderSchema, type Organization, OrganizationAggregateResultSchema, OrganizationAggregateSchema, OrganizationAggregateZodSchema, OrganizationArgsObjectSchema, OrganizationArgsObjectZodSchema, OrganizationAvgAggregateInputObjectSchema, OrganizationAvgAggregateInputObjectZodSchema, OrganizationAvgOrderByAggregateInputObjectSchema, OrganizationAvgOrderByAggregateInputObjectZodSchema, OrganizationCountAggregateInputObjectSchema, OrganizationCountAggregateInputObjectZodSchema, OrganizationCountOrderByAggregateInputObjectSchema, OrganizationCountOrderByAggregateInputObjectZodSchema, OrganizationCountOutputTypeArgsObjectSchema, OrganizationCountOutputTypeArgsObjectZodSchema, OrganizationCountOutputTypeCountWarehousesArgsObjectSchema, OrganizationCountOutputTypeCountWarehousesArgsObjectZodSchema, OrganizationCountOutputTypeSelectObjectSchema, OrganizationCountOutputTypeSelectObjectZodSchema, OrganizationCountResultSchema, OrganizationCountSchema, OrganizationCountZodSchema, OrganizationCreateInputObjectSchema, OrganizationCreateInputObjectZodSchema, OrganizationCreateManyAndReturnSchema, OrganizationCreateManyAndReturnZodSchema, OrganizationCreateManyInputObjectSchema, OrganizationCreateManyInputObjectZodSchema, OrganizationCreateManyResultSchema, OrganizationCreateManySchema, OrganizationCreateManyZodSchema, OrganizationCreateNestedOneWithoutWarehousesInputObjectSchema, OrganizationCreateNestedOneWithoutWarehousesInputObjectZodSchema, OrganizationCreateOneSchema, OrganizationCreateOneZodSchema, OrganizationCreateOrConnectWithoutWarehousesInputObjectSchema, OrganizationCreateOrConnectWithoutWarehousesInputObjectZodSchema, OrganizationCreateResultSchema, OrganizationCreateWithoutWarehousesInputObjectSchema, OrganizationCreateWithoutWarehousesInputObjectZodSchema, OrganizationDeleteManyResultSchema, OrganizationDeleteManySchema, OrganizationDeleteManyZodSchema, OrganizationDeleteOneSchema, OrganizationDeleteOneZodSchema, OrganizationDeleteResultSchema, OrganizationFindFirstOrThrowSchema, OrganizationFindFirstOrThrowSelectSchema, OrganizationFindFirstOrThrowSelectZodSchema, OrganizationFindFirstOrThrowZodSchema, OrganizationFindFirstResultSchema, OrganizationFindFirstSchema, OrganizationFindFirstSelectSchema, OrganizationFindFirstSelectZodSchema, OrganizationFindFirstZodSchema, OrganizationFindManyResultSchema, OrganizationFindManySchema, OrganizationFindManySelectSchema, OrganizationFindManySelectZodSchema, OrganizationFindManyZodSchema, OrganizationFindUniqueOrThrowSchema, OrganizationFindUniqueOrThrowZodSchema, OrganizationFindUniqueResultSchema, OrganizationFindUniqueSchema, OrganizationFindUniqueZodSchema, OrganizationGroupByResultSchema, OrganizationGroupBySchema, OrganizationGroupByZodSchema, OrganizationIncludeObjectSchema, OrganizationIncludeObjectZodSchema, OrganizationInputSchema, type OrganizationInputType, OrganizationMaxAggregateInputObjectSchema, OrganizationMaxAggregateInputObjectZodSchema, OrganizationMaxOrderByAggregateInputObjectSchema, OrganizationMaxOrderByAggregateInputObjectZodSchema, OrganizationMinAggregateInputObjectSchema, OrganizationMinAggregateInputObjectZodSchema, OrganizationMinOrderByAggregateInputObjectSchema, OrganizationMinOrderByAggregateInputObjectZodSchema, OrganizationModelSchema, OrganizationOrderByWithAggregationInputObjectSchema, OrganizationOrderByWithAggregationInputObjectZodSchema, OrganizationOrderByWithRelationInputObjectSchema, OrganizationOrderByWithRelationInputObjectZodSchema, type OrganizationPureType, OrganizationResultSchema, type OrganizationResultType, type OrganizationScalarFieldEnum, OrganizationScalarFieldEnumSchema, OrganizationScalarRelationFilterObjectSchema, OrganizationScalarRelationFilterObjectZodSchema, OrganizationScalarWhereWithAggregatesInputObjectSchema, OrganizationScalarWhereWithAggregatesInputObjectZodSchema, OrganizationSchema, OrganizationSelectObjectSchema, OrganizationSelectObjectZodSchema, type OrganizationStats, OrganizationSumAggregateInputObjectSchema, OrganizationSumAggregateInputObjectZodSchema, OrganizationSumOrderByAggregateInputObjectSchema, OrganizationSumOrderByAggregateInputObjectZodSchema, OrganizationUncheckedCreateInputObjectSchema, OrganizationUncheckedCreateInputObjectZodSchema, OrganizationUncheckedCreateWithoutWarehousesInputObjectSchema, OrganizationUncheckedCreateWithoutWarehousesInputObjectZodSchema, OrganizationUncheckedUpdateInputObjectSchema, OrganizationUncheckedUpdateInputObjectZodSchema, OrganizationUncheckedUpdateManyInputObjectSchema, OrganizationUncheckedUpdateManyInputObjectZodSchema, OrganizationUncheckedUpdateWithoutWarehousesInputObjectSchema, OrganizationUncheckedUpdateWithoutWarehousesInputObjectZodSchema, OrganizationUpdateInputObjectSchema, OrganizationUpdateInputObjectZodSchema, OrganizationUpdateManyAndReturnSchema, OrganizationUpdateManyAndReturnZodSchema, OrganizationUpdateManyMutationInputObjectSchema, OrganizationUpdateManyMutationInputObjectZodSchema, OrganizationUpdateManyResultSchema, OrganizationUpdateManySchema, OrganizationUpdateManyZodSchema, OrganizationUpdateOneRequiredWithoutWarehousesNestedInputObjectSchema, OrganizationUpdateOneRequiredWithoutWarehousesNestedInputObjectZodSchema, OrganizationUpdateOneSchema, OrganizationUpdateOneZodSchema, OrganizationUpdateResultSchema, OrganizationUpdateToOneWithWhereWithoutWarehousesInputObjectSchema, OrganizationUpdateToOneWithWhereWithoutWarehousesInputObjectZodSchema, OrganizationUpdateWithoutWarehousesInputObjectSchema, OrganizationUpdateWithoutWarehousesInputObjectZodSchema, OrganizationUpsertOneSchema, OrganizationUpsertOneZodSchema, OrganizationUpsertResultSchema, OrganizationUpsertWithoutWarehousesInputObjectSchema, OrganizationUpsertWithoutWarehousesInputObjectZodSchema, OrganizationWhereInputObjectSchema, OrganizationWhereInputObjectZodSchema, OrganizationWhereUniqueInputObjectSchema, OrganizationWhereUniqueInputObjectZodSchema, type QueryMode, QueryModeSchema, ServerSettingsAggregateResultSchema, ServerSettingsAggregateSchema, ServerSettingsAggregateZodSchema, ServerSettingsArgsObjectSchema, ServerSettingsArgsObjectZodSchema, ServerSettingsAvgAggregateInputObjectSchema, ServerSettingsAvgAggregateInputObjectZodSchema, ServerSettingsAvgOrderByAggregateInputObjectSchema, ServerSettingsAvgOrderByAggregateInputObjectZodSchema, ServerSettingsCountAggregateInputObjectSchema, ServerSettingsCountAggregateInputObjectZodSchema, ServerSettingsCountOrderByAggregateInputObjectSchema, ServerSettingsCountOrderByAggregateInputObjectZodSchema, ServerSettingsCountResultSchema, ServerSettingsCountSchema, ServerSettingsCountZodSchema, ServerSettingsCreateInputObjectSchema, ServerSettingsCreateInputObjectZodSchema, ServerSettingsCreateManyAndReturnSchema, ServerSettingsCreateManyAndReturnZodSchema, ServerSettingsCreateManyInputObjectSchema, ServerSettingsCreateManyInputObjectZodSchema, ServerSettingsCreateManyResultSchema, ServerSettingsCreateManySchema, ServerSettingsCreateManyZodSchema, ServerSettingsCreateOneSchema, ServerSettingsCreateOneZodSchema, ServerSettingsCreateResultSchema, ServerSettingsDeleteManyResultSchema, ServerSettingsDeleteManySchema, ServerSettingsDeleteManyZodSchema, ServerSettingsDeleteOneSchema, ServerSettingsDeleteOneZodSchema, ServerSettingsDeleteResultSchema, ServerSettingsFindFirstOrThrowSchema, ServerSettingsFindFirstOrThrowSelectSchema, ServerSettingsFindFirstOrThrowSelectZodSchema, ServerSettingsFindFirstOrThrowZodSchema, ServerSettingsFindFirstResultSchema, ServerSettingsFindFirstSchema, ServerSettingsFindFirstSelectSchema, ServerSettingsFindFirstSelectZodSchema, ServerSettingsFindFirstZodSchema, ServerSettingsFindManyResultSchema, ServerSettingsFindManySchema, ServerSettingsFindManySelectSchema, ServerSettingsFindManySelectZodSchema, ServerSettingsFindManyZodSchema, ServerSettingsFindUniqueOrThrowSchema, ServerSettingsFindUniqueOrThrowZodSchema, ServerSettingsFindUniqueResultSchema, ServerSettingsFindUniqueSchema, ServerSettingsFindUniqueZodSchema, ServerSettingsGroupByResultSchema, ServerSettingsGroupBySchema, ServerSettingsGroupByZodSchema, ServerSettingsInputSchema, type ServerSettingsInputType, ServerSettingsMaxAggregateInputObjectSchema, ServerSettingsMaxAggregateInputObjectZodSchema, ServerSettingsMaxOrderByAggregateInputObjectSchema, ServerSettingsMaxOrderByAggregateInputObjectZodSchema, ServerSettingsMinAggregateInputObjectSchema, ServerSettingsMinAggregateInputObjectZodSchema, ServerSettingsMinOrderByAggregateInputObjectSchema, ServerSettingsMinOrderByAggregateInputObjectZodSchema, ServerSettingsModelSchema, ServerSettingsOrderByWithAggregationInputObjectSchema, ServerSettingsOrderByWithAggregationInputObjectZodSchema, ServerSettingsOrderByWithRelationInputObjectSchema, ServerSettingsOrderByWithRelationInputObjectZodSchema, type ServerSettingsPureType, ServerSettingsResultSchema, type ServerSettingsResultType, type ServerSettingsScalarFieldEnum, ServerSettingsScalarFieldEnumSchema, ServerSettingsScalarWhereWithAggregatesInputObjectSchema, ServerSettingsScalarWhereWithAggregatesInputObjectZodSchema, ServerSettingsSelectObjectSchema, ServerSettingsSelectObjectZodSchema, ServerSettingsSumAggregateInputObjectSchema, ServerSettingsSumAggregateInputObjectZodSchema, ServerSettingsSumOrderByAggregateInputObjectSchema, ServerSettingsSumOrderByAggregateInputObjectZodSchema, ServerSettingsUncheckedCreateInputObjectSchema, ServerSettingsUncheckedCreateInputObjectZodSchema, ServerSettingsUncheckedUpdateInputObjectSchema, ServerSettingsUncheckedUpdateInputObjectZodSchema, ServerSettingsUncheckedUpdateManyInputObjectSchema, ServerSettingsUncheckedUpdateManyInputObjectZodSchema, ServerSettingsUpdateInputObjectSchema, ServerSettingsUpdateInputObjectZodSchema, ServerSettingsUpdateManyAndReturnSchema, ServerSettingsUpdateManyAndReturnZodSchema, ServerSettingsUpdateManyMutationInputObjectSchema, ServerSettingsUpdateManyMutationInputObjectZodSchema, ServerSettingsUpdateManyResultSchema, ServerSettingsUpdateManySchema, ServerSettingsUpdateManyZodSchema, ServerSettingsUpdateOneSchema, ServerSettingsUpdateOneZodSchema, ServerSettingsUpdateResultSchema, ServerSettingsUpsertOneSchema, ServerSettingsUpsertOneZodSchema, ServerSettingsUpsertResultSchema, ServerSettingsWhereInputObjectSchema, ServerSettingsWhereInputObjectZodSchema, ServerSettingsWhereUniqueInputObjectSchema, ServerSettingsWhereUniqueInputObjectZodSchema, type SetupInitDto, SetupInitSchema, type SetupStatusResponse, type SortOrder, SortOrderInputObjectSchema, SortOrderInputObjectZodSchema, SortOrderSchema, StringFieldUpdateOperationsInputObjectSchema, StringFieldUpdateOperationsInputObjectZodSchema, StringFilterObjectSchema, StringFilterObjectZodSchema, StringNullableFilterObjectSchema, StringNullableFilterObjectZodSchema, StringNullableWithAggregatesFilterObjectSchema, StringNullableWithAggregatesFilterObjectZodSchema, StringWithAggregatesFilterObjectSchema, StringWithAggregatesFilterObjectZodSchema, type TransactionIsolationLevel, TransactionIsolationLevelSchema, type UpdateOrganizationDto, UpdateOrganizationSchema, type UpdateWarehouseDto, UpdateWarehouseSchema, UuidFilterObjectSchema, UuidFilterObjectZodSchema, UuidWithAggregatesFilterObjectSchema, UuidWithAggregatesFilterObjectZodSchema, type Warehouse, WarehouseAggregateResultSchema, WarehouseAggregateSchema, WarehouseAggregateZodSchema, WarehouseArgsObjectSchema, WarehouseArgsObjectZodSchema, WarehouseAvgAggregateInputObjectSchema, WarehouseAvgAggregateInputObjectZodSchema, WarehouseAvgOrderByAggregateInputObjectSchema, WarehouseAvgOrderByAggregateInputObjectZodSchema, WarehouseCountAggregateInputObjectSchema, WarehouseCountAggregateInputObjectZodSchema, WarehouseCountOrderByAggregateInputObjectSchema, WarehouseCountOrderByAggregateInputObjectZodSchema, WarehouseCountOutputTypeArgsObjectSchema, WarehouseCountOutputTypeArgsObjectZodSchema, WarehouseCountOutputTypeCountEmployeesArgsObjectSchema, WarehouseCountOutputTypeCountEmployeesArgsObjectZodSchema, WarehouseCountOutputTypeSelectObjectSchema, WarehouseCountOutputTypeSelectObjectZodSchema, WarehouseCountResultSchema, WarehouseCountSchema, WarehouseCountZodSchema, WarehouseCreateInputObjectSchema, WarehouseCreateInputObjectZodSchema, WarehouseCreateManyAndReturnSchema, WarehouseCreateManyAndReturnZodSchema, WarehouseCreateManyCityInputEnvelopeObjectSchema, WarehouseCreateManyCityInputEnvelopeObjectZodSchema, WarehouseCreateManyCityInputObjectSchema, WarehouseCreateManyCityInputObjectZodSchema, WarehouseCreateManyInputObjectSchema, WarehouseCreateManyInputObjectZodSchema, WarehouseCreateManyOrganizationInputEnvelopeObjectSchema, WarehouseCreateManyOrganizationInputEnvelopeObjectZodSchema, WarehouseCreateManyOrganizationInputObjectSchema, WarehouseCreateManyOrganizationInputObjectZodSchema, WarehouseCreateManyResultSchema, WarehouseCreateManySchema, WarehouseCreateManyZodSchema, WarehouseCreateNestedManyWithoutCityInputObjectSchema, WarehouseCreateNestedManyWithoutCityInputObjectZodSchema, WarehouseCreateNestedManyWithoutOrganizationInputObjectSchema, WarehouseCreateNestedManyWithoutOrganizationInputObjectZodSchema, WarehouseCreateNestedOneWithoutEmployeesInputObjectSchema, WarehouseCreateNestedOneWithoutEmployeesInputObjectZodSchema, WarehouseCreateOneSchema, WarehouseCreateOneZodSchema, WarehouseCreateOrConnectWithoutCityInputObjectSchema, WarehouseCreateOrConnectWithoutCityInputObjectZodSchema, WarehouseCreateOrConnectWithoutEmployeesInputObjectSchema, WarehouseCreateOrConnectWithoutEmployeesInputObjectZodSchema, WarehouseCreateOrConnectWithoutOrganizationInputObjectSchema, WarehouseCreateOrConnectWithoutOrganizationInputObjectZodSchema, WarehouseCreateResultSchema, WarehouseCreateWithoutCityInputObjectSchema, WarehouseCreateWithoutCityInputObjectZodSchema, WarehouseCreateWithoutEmployeesInputObjectSchema, WarehouseCreateWithoutEmployeesInputObjectZodSchema, WarehouseCreateWithoutOrganizationInputObjectSchema, WarehouseCreateWithoutOrganizationInputObjectZodSchema, WarehouseDeleteManyResultSchema, WarehouseDeleteManySchema, WarehouseDeleteManyZodSchema, WarehouseDeleteOneSchema, WarehouseDeleteOneZodSchema, WarehouseDeleteResultSchema, WarehouseFindFirstOrThrowSchema, WarehouseFindFirstOrThrowSelectSchema, WarehouseFindFirstOrThrowSelectZodSchema, WarehouseFindFirstOrThrowZodSchema, WarehouseFindFirstResultSchema, WarehouseFindFirstSchema, WarehouseFindFirstSelectSchema, WarehouseFindFirstSelectZodSchema, WarehouseFindFirstZodSchema, WarehouseFindManyResultSchema, WarehouseFindManySchema, WarehouseFindManySelectSchema, WarehouseFindManySelectZodSchema, WarehouseFindManyZodSchema, WarehouseFindUniqueOrThrowSchema, WarehouseFindUniqueOrThrowZodSchema, WarehouseFindUniqueResultSchema, WarehouseFindUniqueSchema, WarehouseFindUniqueZodSchema, WarehouseGroupByResultSchema, WarehouseGroupBySchema, WarehouseGroupByZodSchema, WarehouseIncludeObjectSchema, WarehouseIncludeObjectZodSchema, WarehouseInputSchema, type WarehouseInputType, WarehouseListRelationFilterObjectSchema, WarehouseListRelationFilterObjectZodSchema, WarehouseMaxAggregateInputObjectSchema, WarehouseMaxAggregateInputObjectZodSchema, WarehouseMaxOrderByAggregateInputObjectSchema, WarehouseMaxOrderByAggregateInputObjectZodSchema, WarehouseMinAggregateInputObjectSchema, WarehouseMinAggregateInputObjectZodSchema, WarehouseMinOrderByAggregateInputObjectSchema, WarehouseMinOrderByAggregateInputObjectZodSchema, WarehouseModelSchema, WarehouseNullableScalarRelationFilterObjectSchema, WarehouseNullableScalarRelationFilterObjectZodSchema, WarehouseOrderByRelationAggregateInputObjectSchema, WarehouseOrderByRelationAggregateInputObjectZodSchema, WarehouseOrderByWithAggregationInputObjectSchema, WarehouseOrderByWithAggregationInputObjectZodSchema, WarehouseOrderByWithRelationInputObjectSchema, WarehouseOrderByWithRelationInputObjectZodSchema, type WarehousePureType, WarehouseResultSchema, type WarehouseResultType, type WarehouseScalarFieldEnum, WarehouseScalarFieldEnumSchema, WarehouseScalarWhereInputObjectSchema, WarehouseScalarWhereInputObjectZodSchema, WarehouseScalarWhereWithAggregatesInputObjectSchema, WarehouseScalarWhereWithAggregatesInputObjectZodSchema, WarehouseSchema, WarehouseSelectObjectSchema, WarehouseSelectObjectZodSchema, WarehouseSumAggregateInputObjectSchema, WarehouseSumAggregateInputObjectZodSchema, WarehouseSumOrderByAggregateInputObjectSchema, WarehouseSumOrderByAggregateInputObjectZodSchema, WarehouseUncheckedCreateInputObjectSchema, WarehouseUncheckedCreateInputObjectZodSchema, WarehouseUncheckedCreateNestedManyWithoutCityInputObjectSchema, WarehouseUncheckedCreateNestedManyWithoutCityInputObjectZodSchema, WarehouseUncheckedCreateNestedManyWithoutOrganizationInputObjectSchema, WarehouseUncheckedCreateNestedManyWithoutOrganizationInputObjectZodSchema, WarehouseUncheckedCreateWithoutCityInputObjectSchema, WarehouseUncheckedCreateWithoutCityInputObjectZodSchema, WarehouseUncheckedCreateWithoutEmployeesInputObjectSchema, WarehouseUncheckedCreateWithoutEmployeesInputObjectZodSchema, WarehouseUncheckedCreateWithoutOrganizationInputObjectSchema, WarehouseUncheckedCreateWithoutOrganizationInputObjectZodSchema, WarehouseUncheckedUpdateInputObjectSchema, WarehouseUncheckedUpdateInputObjectZodSchema, WarehouseUncheckedUpdateManyInputObjectSchema, WarehouseUncheckedUpdateManyInputObjectZodSchema, WarehouseUncheckedUpdateManyWithoutCityInputObjectSchema, WarehouseUncheckedUpdateManyWithoutCityInputObjectZodSchema, WarehouseUncheckedUpdateManyWithoutCityNestedInputObjectSchema, WarehouseUncheckedUpdateManyWithoutCityNestedInputObjectZodSchema, WarehouseUncheckedUpdateManyWithoutOrganizationInputObjectSchema, WarehouseUncheckedUpdateManyWithoutOrganizationInputObjectZodSchema, WarehouseUncheckedUpdateManyWithoutOrganizationNestedInputObjectSchema, WarehouseUncheckedUpdateManyWithoutOrganizationNestedInputObjectZodSchema, WarehouseUncheckedUpdateWithoutCityInputObjectSchema, WarehouseUncheckedUpdateWithoutCityInputObjectZodSchema, WarehouseUncheckedUpdateWithoutEmployeesInputObjectSchema, WarehouseUncheckedUpdateWithoutEmployeesInputObjectZodSchema, WarehouseUncheckedUpdateWithoutOrganizationInputObjectSchema, WarehouseUncheckedUpdateWithoutOrganizationInputObjectZodSchema, WarehouseUpdateInputObjectSchema, WarehouseUpdateInputObjectZodSchema, WarehouseUpdateManyAndReturnSchema, WarehouseUpdateManyAndReturnZodSchema, WarehouseUpdateManyMutationInputObjectSchema, WarehouseUpdateManyMutationInputObjectZodSchema, WarehouseUpdateManyResultSchema, WarehouseUpdateManySchema, WarehouseUpdateManyWithWhereWithoutCityInputObjectSchema, WarehouseUpdateManyWithWhereWithoutCityInputObjectZodSchema, WarehouseUpdateManyWithWhereWithoutOrganizationInputObjectSchema, WarehouseUpdateManyWithWhereWithoutOrganizationInputObjectZodSchema, WarehouseUpdateManyWithoutCityNestedInputObjectSchema, WarehouseUpdateManyWithoutCityNestedInputObjectZodSchema, WarehouseUpdateManyWithoutOrganizationNestedInputObjectSchema, WarehouseUpdateManyWithoutOrganizationNestedInputObjectZodSchema, WarehouseUpdateManyZodSchema, WarehouseUpdateOneSchema, WarehouseUpdateOneWithoutEmployeesNestedInputObjectSchema, WarehouseUpdateOneWithoutEmployeesNestedInputObjectZodSchema, WarehouseUpdateOneZodSchema, WarehouseUpdateResultSchema, WarehouseUpdateToOneWithWhereWithoutEmployeesInputObjectSchema, WarehouseUpdateToOneWithWhereWithoutEmployeesInputObjectZodSchema, WarehouseUpdateWithWhereUniqueWithoutCityInputObjectSchema, WarehouseUpdateWithWhereUniqueWithoutCityInputObjectZodSchema, WarehouseUpdateWithWhereUniqueWithoutOrganizationInputObjectSchema, WarehouseUpdateWithWhereUniqueWithoutOrganizationInputObjectZodSchema, WarehouseUpdateWithoutCityInputObjectSchema, WarehouseUpdateWithoutCityInputObjectZodSchema, WarehouseUpdateWithoutEmployeesInputObjectSchema, WarehouseUpdateWithoutEmployeesInputObjectZodSchema, WarehouseUpdateWithoutOrganizationInputObjectSchema, WarehouseUpdateWithoutOrganizationInputObjectZodSchema, WarehouseUpsertOneSchema, WarehouseUpsertOneZodSchema, WarehouseUpsertResultSchema, WarehouseUpsertWithWhereUniqueWithoutCityInputObjectSchema, WarehouseUpsertWithWhereUniqueWithoutCityInputObjectZodSchema, WarehouseUpsertWithWhereUniqueWithoutOrganizationInputObjectSchema, WarehouseUpsertWithWhereUniqueWithoutOrganizationInputObjectZodSchema, WarehouseUpsertWithoutEmployeesInputObjectSchema, WarehouseUpsertWithoutEmployeesInputObjectZodSchema, WarehouseWhereInputObjectSchema, WarehouseWhereInputObjectZodSchema, WarehouseWhereUniqueInputObjectSchema, WarehouseWhereUniqueInputObjectZodSchema };