@meerkapp/wms-contracts 0.2.0-beta.13 → 0.2.0-beta.14
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.cjs +748 -698
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +326 -154
- package/dist/index.d.ts +326 -154
- package/dist/index.js +747 -694
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { Prisma } from '@prisma/client';
|
|
|
6
6
|
declare const TransactionIsolationLevelSchema: z.ZodEnum<["ReadUncommitted", "ReadCommitted", "RepeatableRead", "Serializable"]>;
|
|
7
7
|
type TransactionIsolationLevel = z.infer<typeof TransactionIsolationLevelSchema>;
|
|
8
8
|
|
|
9
|
-
declare const EmployeeScalarFieldEnumSchema: z.ZodEnum<["id", "email", "password", "firstName", "lastName", "warehouseId", "isActive", "lastSeen", "updatedAt"]>;
|
|
9
|
+
declare const EmployeeScalarFieldEnumSchema: z.ZodEnum<["id", "email", "password", "firstName", "lastName", "phone", "warehouseId", "isActive", "lastSeen", "updatedAt"]>;
|
|
10
10
|
type EmployeeScalarFieldEnum = z.infer<typeof EmployeeScalarFieldEnumSchema>;
|
|
11
11
|
|
|
12
12
|
declare const EmployeeRoleScalarFieldEnumSchema: z.ZodEnum<["id", "name", "color", "updatedAt"]>;
|
|
@@ -82,6 +82,7 @@ declare const EmployeeFindFirstSelectZodSchema: z.ZodObject<{
|
|
|
82
82
|
password: z.ZodOptional<z.ZodBoolean>;
|
|
83
83
|
firstName: z.ZodOptional<z.ZodBoolean>;
|
|
84
84
|
lastName: z.ZodOptional<z.ZodBoolean>;
|
|
85
|
+
phone: z.ZodOptional<z.ZodBoolean>;
|
|
85
86
|
warehouseId: z.ZodOptional<z.ZodBoolean>;
|
|
86
87
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
87
88
|
lastSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -95,6 +96,7 @@ declare const EmployeeFindFirstSelectZodSchema: z.ZodObject<{
|
|
|
95
96
|
password?: boolean | undefined;
|
|
96
97
|
firstName?: boolean | undefined;
|
|
97
98
|
lastName?: boolean | undefined;
|
|
99
|
+
phone?: boolean | undefined;
|
|
98
100
|
warehouseId?: boolean | undefined;
|
|
99
101
|
isActive?: boolean | undefined;
|
|
100
102
|
lastSeen?: boolean | undefined;
|
|
@@ -108,6 +110,7 @@ declare const EmployeeFindFirstSelectZodSchema: z.ZodObject<{
|
|
|
108
110
|
password?: boolean | undefined;
|
|
109
111
|
firstName?: boolean | undefined;
|
|
110
112
|
lastName?: boolean | undefined;
|
|
113
|
+
phone?: boolean | undefined;
|
|
111
114
|
warehouseId?: boolean | undefined;
|
|
112
115
|
isActive?: boolean | undefined;
|
|
113
116
|
lastSeen?: boolean | undefined;
|
|
@@ -125,7 +128,7 @@ declare const EmployeeFindFirstZodSchema: z.ZodObject<{
|
|
|
125
128
|
cursor: z.ZodOptional<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>;
|
|
126
129
|
take: z.ZodOptional<z.ZodNumber>;
|
|
127
130
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
128
|
-
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "email", "password", "firstName", "lastName", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "email", "password", "firstName", "lastName", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, "many">]>>;
|
|
131
|
+
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "email", "password", "firstName", "lastName", "phone", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "email", "password", "firstName", "lastName", "phone", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, "many">]>>;
|
|
129
132
|
}, "strict", z.ZodTypeAny, {
|
|
130
133
|
where?: Prisma.EmployeeWhereInput | undefined;
|
|
131
134
|
select?: Prisma.EmployeeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -134,7 +137,7 @@ declare const EmployeeFindFirstZodSchema: z.ZodObject<{
|
|
|
134
137
|
cursor?: Prisma.EmployeeWhereUniqueInput | undefined;
|
|
135
138
|
take?: number | undefined;
|
|
136
139
|
skip?: number | undefined;
|
|
137
|
-
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
140
|
+
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "phone" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "phone" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
138
141
|
}, {
|
|
139
142
|
where?: Prisma.EmployeeWhereInput | undefined;
|
|
140
143
|
select?: Prisma.EmployeeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -143,7 +146,7 @@ declare const EmployeeFindFirstZodSchema: z.ZodObject<{
|
|
|
143
146
|
cursor?: Prisma.EmployeeWhereUniqueInput | undefined;
|
|
144
147
|
take?: number | undefined;
|
|
145
148
|
skip?: number | undefined;
|
|
146
|
-
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
149
|
+
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "phone" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "phone" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
147
150
|
}>;
|
|
148
151
|
|
|
149
152
|
declare const EmployeeFindFirstOrThrowSelectSchema: z.ZodType<Prisma.EmployeeSelect>;
|
|
@@ -153,6 +156,7 @@ declare const EmployeeFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
|
|
153
156
|
password: z.ZodOptional<z.ZodBoolean>;
|
|
154
157
|
firstName: z.ZodOptional<z.ZodBoolean>;
|
|
155
158
|
lastName: z.ZodOptional<z.ZodBoolean>;
|
|
159
|
+
phone: z.ZodOptional<z.ZodBoolean>;
|
|
156
160
|
warehouseId: z.ZodOptional<z.ZodBoolean>;
|
|
157
161
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
158
162
|
lastSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -166,6 +170,7 @@ declare const EmployeeFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
|
|
166
170
|
password?: boolean | undefined;
|
|
167
171
|
firstName?: boolean | undefined;
|
|
168
172
|
lastName?: boolean | undefined;
|
|
173
|
+
phone?: boolean | undefined;
|
|
169
174
|
warehouseId?: boolean | undefined;
|
|
170
175
|
isActive?: boolean | undefined;
|
|
171
176
|
lastSeen?: boolean | undefined;
|
|
@@ -179,6 +184,7 @@ declare const EmployeeFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
|
|
179
184
|
password?: boolean | undefined;
|
|
180
185
|
firstName?: boolean | undefined;
|
|
181
186
|
lastName?: boolean | undefined;
|
|
187
|
+
phone?: boolean | undefined;
|
|
182
188
|
warehouseId?: boolean | undefined;
|
|
183
189
|
isActive?: boolean | undefined;
|
|
184
190
|
lastSeen?: boolean | undefined;
|
|
@@ -196,7 +202,7 @@ declare const EmployeeFindFirstOrThrowZodSchema: z.ZodObject<{
|
|
|
196
202
|
cursor: z.ZodOptional<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>;
|
|
197
203
|
take: z.ZodOptional<z.ZodNumber>;
|
|
198
204
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
199
|
-
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "email", "password", "firstName", "lastName", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "email", "password", "firstName", "lastName", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, "many">]>>;
|
|
205
|
+
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "email", "password", "firstName", "lastName", "phone", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "email", "password", "firstName", "lastName", "phone", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, "many">]>>;
|
|
200
206
|
}, "strict", z.ZodTypeAny, {
|
|
201
207
|
where?: Prisma.EmployeeWhereInput | undefined;
|
|
202
208
|
select?: Prisma.EmployeeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -205,7 +211,7 @@ declare const EmployeeFindFirstOrThrowZodSchema: z.ZodObject<{
|
|
|
205
211
|
cursor?: Prisma.EmployeeWhereUniqueInput | undefined;
|
|
206
212
|
take?: number | undefined;
|
|
207
213
|
skip?: number | undefined;
|
|
208
|
-
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
214
|
+
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "phone" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "phone" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
209
215
|
}, {
|
|
210
216
|
where?: Prisma.EmployeeWhereInput | undefined;
|
|
211
217
|
select?: Prisma.EmployeeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -214,7 +220,7 @@ declare const EmployeeFindFirstOrThrowZodSchema: z.ZodObject<{
|
|
|
214
220
|
cursor?: Prisma.EmployeeWhereUniqueInput | undefined;
|
|
215
221
|
take?: number | undefined;
|
|
216
222
|
skip?: number | undefined;
|
|
217
|
-
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
223
|
+
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "phone" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "phone" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
218
224
|
}>;
|
|
219
225
|
|
|
220
226
|
declare const EmployeeFindManySelectSchema: z.ZodType<Prisma.EmployeeSelect>;
|
|
@@ -224,6 +230,7 @@ declare const EmployeeFindManySelectZodSchema: z.ZodObject<{
|
|
|
224
230
|
password: z.ZodOptional<z.ZodBoolean>;
|
|
225
231
|
firstName: z.ZodOptional<z.ZodBoolean>;
|
|
226
232
|
lastName: z.ZodOptional<z.ZodBoolean>;
|
|
233
|
+
phone: z.ZodOptional<z.ZodBoolean>;
|
|
227
234
|
warehouseId: z.ZodOptional<z.ZodBoolean>;
|
|
228
235
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
229
236
|
lastSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -237,6 +244,7 @@ declare const EmployeeFindManySelectZodSchema: z.ZodObject<{
|
|
|
237
244
|
password?: boolean | undefined;
|
|
238
245
|
firstName?: boolean | undefined;
|
|
239
246
|
lastName?: boolean | undefined;
|
|
247
|
+
phone?: boolean | undefined;
|
|
240
248
|
warehouseId?: boolean | undefined;
|
|
241
249
|
isActive?: boolean | undefined;
|
|
242
250
|
lastSeen?: boolean | undefined;
|
|
@@ -250,6 +258,7 @@ declare const EmployeeFindManySelectZodSchema: z.ZodObject<{
|
|
|
250
258
|
password?: boolean | undefined;
|
|
251
259
|
firstName?: boolean | undefined;
|
|
252
260
|
lastName?: boolean | undefined;
|
|
261
|
+
phone?: boolean | undefined;
|
|
253
262
|
warehouseId?: boolean | undefined;
|
|
254
263
|
isActive?: boolean | undefined;
|
|
255
264
|
lastSeen?: boolean | undefined;
|
|
@@ -267,7 +276,7 @@ declare const EmployeeFindManyZodSchema: z.ZodObject<{
|
|
|
267
276
|
cursor: z.ZodOptional<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>;
|
|
268
277
|
take: z.ZodOptional<z.ZodNumber>;
|
|
269
278
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
270
|
-
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "email", "password", "firstName", "lastName", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "email", "password", "firstName", "lastName", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, "many">]>>;
|
|
279
|
+
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "email", "password", "firstName", "lastName", "phone", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "email", "password", "firstName", "lastName", "phone", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, "many">]>>;
|
|
271
280
|
}, "strict", z.ZodTypeAny, {
|
|
272
281
|
where?: Prisma.EmployeeWhereInput | undefined;
|
|
273
282
|
select?: Prisma.EmployeeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -276,7 +285,7 @@ declare const EmployeeFindManyZodSchema: z.ZodObject<{
|
|
|
276
285
|
cursor?: Prisma.EmployeeWhereUniqueInput | undefined;
|
|
277
286
|
take?: number | undefined;
|
|
278
287
|
skip?: number | undefined;
|
|
279
|
-
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
288
|
+
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "phone" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "phone" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
280
289
|
}, {
|
|
281
290
|
where?: Prisma.EmployeeWhereInput | undefined;
|
|
282
291
|
select?: Prisma.EmployeeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -285,7 +294,7 @@ declare const EmployeeFindManyZodSchema: z.ZodObject<{
|
|
|
285
294
|
cursor?: Prisma.EmployeeWhereUniqueInput | undefined;
|
|
286
295
|
take?: number | undefined;
|
|
287
296
|
skip?: number | undefined;
|
|
288
|
-
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
297
|
+
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "phone" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "phone" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
289
298
|
}>;
|
|
290
299
|
|
|
291
300
|
declare const EmployeeCountSchema: z.ZodType<Prisma.EmployeeCountArgs>;
|
|
@@ -487,14 +496,14 @@ declare const EmployeeGroupByZodSchema: z.ZodObject<{
|
|
|
487
496
|
having: z.ZodOptional<z.ZodType<Prisma.EmployeeScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.EmployeeScalarWhereWithAggregatesInput>>;
|
|
488
497
|
take: z.ZodOptional<z.ZodNumber>;
|
|
489
498
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
490
|
-
by: z.ZodArray<z.ZodEnum<["id", "email", "password", "firstName", "lastName", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, "many">;
|
|
499
|
+
by: z.ZodArray<z.ZodEnum<["id", "email", "password", "firstName", "lastName", "phone", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, "many">;
|
|
491
500
|
_count: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodType<Prisma.EmployeeCountAggregateInputType, z.ZodTypeDef, Prisma.EmployeeCountAggregateInputType>]>>;
|
|
492
501
|
_min: z.ZodOptional<z.ZodType<Prisma.EmployeeMinAggregateInputType, z.ZodTypeDef, Prisma.EmployeeMinAggregateInputType>>;
|
|
493
502
|
_max: z.ZodOptional<z.ZodType<Prisma.EmployeeMaxAggregateInputType, z.ZodTypeDef, Prisma.EmployeeMaxAggregateInputType>>;
|
|
494
503
|
_avg: z.ZodOptional<z.ZodType<Prisma.EmployeeAvgAggregateInputType, z.ZodTypeDef, Prisma.EmployeeAvgAggregateInputType>>;
|
|
495
504
|
_sum: z.ZodOptional<z.ZodType<Prisma.EmployeeSumAggregateInputType, z.ZodTypeDef, Prisma.EmployeeSumAggregateInputType>>;
|
|
496
505
|
}, "strict", z.ZodTypeAny, {
|
|
497
|
-
by: ("id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[];
|
|
506
|
+
by: ("id" | "email" | "password" | "firstName" | "lastName" | "phone" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[];
|
|
498
507
|
where?: Prisma.EmployeeWhereInput | undefined;
|
|
499
508
|
_count?: true | Prisma.EmployeeCountAggregateInputType | undefined;
|
|
500
509
|
orderBy?: Prisma.EmployeeOrderByWithAggregationInput | Prisma.EmployeeOrderByWithAggregationInput[] | undefined;
|
|
@@ -506,7 +515,7 @@ declare const EmployeeGroupByZodSchema: z.ZodObject<{
|
|
|
506
515
|
_sum?: Prisma.EmployeeSumAggregateInputType | undefined;
|
|
507
516
|
having?: Prisma.EmployeeScalarWhereWithAggregatesInput | undefined;
|
|
508
517
|
}, {
|
|
509
|
-
by: ("id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[];
|
|
518
|
+
by: ("id" | "email" | "password" | "firstName" | "lastName" | "phone" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[];
|
|
510
519
|
where?: Prisma.EmployeeWhereInput | undefined;
|
|
511
520
|
_count?: true | Prisma.EmployeeCountAggregateInputType | undefined;
|
|
512
521
|
orderBy?: Prisma.EmployeeOrderByWithAggregationInput | Prisma.EmployeeOrderByWithAggregationInput[] | undefined;
|
|
@@ -4305,6 +4314,7 @@ declare const EmployeeFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4305
4314
|
password: z.ZodString;
|
|
4306
4315
|
firstName: z.ZodString;
|
|
4307
4316
|
lastName: z.ZodString;
|
|
4317
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4308
4318
|
warehouseId: z.ZodOptional<z.ZodNumber>;
|
|
4309
4319
|
isActive: z.ZodBoolean;
|
|
4310
4320
|
lastSeen: z.ZodOptional<z.ZodDate>;
|
|
@@ -4320,6 +4330,7 @@ declare const EmployeeFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4320
4330
|
isActive: boolean;
|
|
4321
4331
|
updatedAt: Date;
|
|
4322
4332
|
roleAssignments: unknown[];
|
|
4333
|
+
phone?: string | undefined;
|
|
4323
4334
|
warehouseId?: number | undefined;
|
|
4324
4335
|
lastSeen?: Date | undefined;
|
|
4325
4336
|
warehouse?: unknown;
|
|
@@ -4332,6 +4343,7 @@ declare const EmployeeFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4332
4343
|
isActive: boolean;
|
|
4333
4344
|
updatedAt: Date;
|
|
4334
4345
|
roleAssignments: unknown[];
|
|
4346
|
+
phone?: string | undefined;
|
|
4335
4347
|
warehouseId?: number | undefined;
|
|
4336
4348
|
lastSeen?: Date | undefined;
|
|
4337
4349
|
warehouse?: unknown;
|
|
@@ -4343,6 +4355,7 @@ declare const EmployeeFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4343
4355
|
password: z.ZodString;
|
|
4344
4356
|
firstName: z.ZodString;
|
|
4345
4357
|
lastName: z.ZodString;
|
|
4358
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4346
4359
|
warehouseId: z.ZodOptional<z.ZodNumber>;
|
|
4347
4360
|
isActive: z.ZodBoolean;
|
|
4348
4361
|
lastSeen: z.ZodOptional<z.ZodDate>;
|
|
@@ -4358,6 +4371,7 @@ declare const EmployeeFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4358
4371
|
isActive: boolean;
|
|
4359
4372
|
updatedAt: Date;
|
|
4360
4373
|
roleAssignments: unknown[];
|
|
4374
|
+
phone?: string | undefined;
|
|
4361
4375
|
warehouseId?: number | undefined;
|
|
4362
4376
|
lastSeen?: Date | undefined;
|
|
4363
4377
|
warehouse?: unknown;
|
|
@@ -4370,6 +4384,7 @@ declare const EmployeeFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4370
4384
|
isActive: boolean;
|
|
4371
4385
|
updatedAt: Date;
|
|
4372
4386
|
roleAssignments: unknown[];
|
|
4387
|
+
phone?: string | undefined;
|
|
4373
4388
|
warehouseId?: number | undefined;
|
|
4374
4389
|
lastSeen?: Date | undefined;
|
|
4375
4390
|
warehouse?: unknown;
|
|
@@ -4382,6 +4397,7 @@ declare const EmployeeFindManyResultSchema: z.ZodObject<{
|
|
|
4382
4397
|
password: z.ZodString;
|
|
4383
4398
|
firstName: z.ZodString;
|
|
4384
4399
|
lastName: z.ZodString;
|
|
4400
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4385
4401
|
warehouseId: z.ZodOptional<z.ZodNumber>;
|
|
4386
4402
|
isActive: z.ZodBoolean;
|
|
4387
4403
|
lastSeen: z.ZodOptional<z.ZodDate>;
|
|
@@ -4397,6 +4413,7 @@ declare const EmployeeFindManyResultSchema: z.ZodObject<{
|
|
|
4397
4413
|
isActive: boolean;
|
|
4398
4414
|
updatedAt: Date;
|
|
4399
4415
|
roleAssignments: unknown[];
|
|
4416
|
+
phone?: string | undefined;
|
|
4400
4417
|
warehouseId?: number | undefined;
|
|
4401
4418
|
lastSeen?: Date | undefined;
|
|
4402
4419
|
warehouse?: unknown;
|
|
@@ -4409,6 +4426,7 @@ declare const EmployeeFindManyResultSchema: z.ZodObject<{
|
|
|
4409
4426
|
isActive: boolean;
|
|
4410
4427
|
updatedAt: Date;
|
|
4411
4428
|
roleAssignments: unknown[];
|
|
4429
|
+
phone?: string | undefined;
|
|
4412
4430
|
warehouseId?: number | undefined;
|
|
4413
4431
|
lastSeen?: Date | undefined;
|
|
4414
4432
|
warehouse?: unknown;
|
|
@@ -4445,6 +4463,7 @@ declare const EmployeeFindManyResultSchema: z.ZodObject<{
|
|
|
4445
4463
|
isActive: boolean;
|
|
4446
4464
|
updatedAt: Date;
|
|
4447
4465
|
roleAssignments: unknown[];
|
|
4466
|
+
phone?: string | undefined;
|
|
4448
4467
|
warehouseId?: number | undefined;
|
|
4449
4468
|
lastSeen?: Date | undefined;
|
|
4450
4469
|
warehouse?: unknown;
|
|
@@ -4467,6 +4486,7 @@ declare const EmployeeFindManyResultSchema: z.ZodObject<{
|
|
|
4467
4486
|
isActive: boolean;
|
|
4468
4487
|
updatedAt: Date;
|
|
4469
4488
|
roleAssignments: unknown[];
|
|
4489
|
+
phone?: string | undefined;
|
|
4470
4490
|
warehouseId?: number | undefined;
|
|
4471
4491
|
lastSeen?: Date | undefined;
|
|
4472
4492
|
warehouse?: unknown;
|
|
@@ -4487,6 +4507,7 @@ declare const EmployeeCreateResultSchema: z.ZodObject<{
|
|
|
4487
4507
|
password: z.ZodString;
|
|
4488
4508
|
firstName: z.ZodString;
|
|
4489
4509
|
lastName: z.ZodString;
|
|
4510
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4490
4511
|
warehouseId: z.ZodOptional<z.ZodNumber>;
|
|
4491
4512
|
isActive: z.ZodBoolean;
|
|
4492
4513
|
lastSeen: z.ZodOptional<z.ZodDate>;
|
|
@@ -4502,6 +4523,7 @@ declare const EmployeeCreateResultSchema: z.ZodObject<{
|
|
|
4502
4523
|
isActive: boolean;
|
|
4503
4524
|
updatedAt: Date;
|
|
4504
4525
|
roleAssignments: unknown[];
|
|
4526
|
+
phone?: string | undefined;
|
|
4505
4527
|
warehouseId?: number | undefined;
|
|
4506
4528
|
lastSeen?: Date | undefined;
|
|
4507
4529
|
warehouse?: unknown;
|
|
@@ -4514,6 +4536,7 @@ declare const EmployeeCreateResultSchema: z.ZodObject<{
|
|
|
4514
4536
|
isActive: boolean;
|
|
4515
4537
|
updatedAt: Date;
|
|
4516
4538
|
roleAssignments: unknown[];
|
|
4539
|
+
phone?: string | undefined;
|
|
4517
4540
|
warehouseId?: number | undefined;
|
|
4518
4541
|
lastSeen?: Date | undefined;
|
|
4519
4542
|
warehouse?: unknown;
|
|
@@ -4533,6 +4556,7 @@ declare const EmployeeUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4533
4556
|
password: z.ZodString;
|
|
4534
4557
|
firstName: z.ZodString;
|
|
4535
4558
|
lastName: z.ZodString;
|
|
4559
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4536
4560
|
warehouseId: z.ZodOptional<z.ZodNumber>;
|
|
4537
4561
|
isActive: z.ZodBoolean;
|
|
4538
4562
|
lastSeen: z.ZodOptional<z.ZodDate>;
|
|
@@ -4548,6 +4572,7 @@ declare const EmployeeUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4548
4572
|
isActive: boolean;
|
|
4549
4573
|
updatedAt: Date;
|
|
4550
4574
|
roleAssignments: unknown[];
|
|
4575
|
+
phone?: string | undefined;
|
|
4551
4576
|
warehouseId?: number | undefined;
|
|
4552
4577
|
lastSeen?: Date | undefined;
|
|
4553
4578
|
warehouse?: unknown;
|
|
@@ -4560,6 +4585,7 @@ declare const EmployeeUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4560
4585
|
isActive: boolean;
|
|
4561
4586
|
updatedAt: Date;
|
|
4562
4587
|
roleAssignments: unknown[];
|
|
4588
|
+
phone?: string | undefined;
|
|
4563
4589
|
warehouseId?: number | undefined;
|
|
4564
4590
|
lastSeen?: Date | undefined;
|
|
4565
4591
|
warehouse?: unknown;
|
|
@@ -4579,6 +4605,7 @@ declare const EmployeeUpsertResultSchema: z.ZodObject<{
|
|
|
4579
4605
|
password: z.ZodString;
|
|
4580
4606
|
firstName: z.ZodString;
|
|
4581
4607
|
lastName: z.ZodString;
|
|
4608
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4582
4609
|
warehouseId: z.ZodOptional<z.ZodNumber>;
|
|
4583
4610
|
isActive: z.ZodBoolean;
|
|
4584
4611
|
lastSeen: z.ZodOptional<z.ZodDate>;
|
|
@@ -4594,6 +4621,7 @@ declare const EmployeeUpsertResultSchema: z.ZodObject<{
|
|
|
4594
4621
|
isActive: boolean;
|
|
4595
4622
|
updatedAt: Date;
|
|
4596
4623
|
roleAssignments: unknown[];
|
|
4624
|
+
phone?: string | undefined;
|
|
4597
4625
|
warehouseId?: number | undefined;
|
|
4598
4626
|
lastSeen?: Date | undefined;
|
|
4599
4627
|
warehouse?: unknown;
|
|
@@ -4606,6 +4634,7 @@ declare const EmployeeUpsertResultSchema: z.ZodObject<{
|
|
|
4606
4634
|
isActive: boolean;
|
|
4607
4635
|
updatedAt: Date;
|
|
4608
4636
|
roleAssignments: unknown[];
|
|
4637
|
+
phone?: string | undefined;
|
|
4609
4638
|
warehouseId?: number | undefined;
|
|
4610
4639
|
lastSeen?: Date | undefined;
|
|
4611
4640
|
warehouse?: unknown;
|
|
@@ -4617,6 +4646,7 @@ declare const EmployeeDeleteResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4617
4646
|
password: z.ZodString;
|
|
4618
4647
|
firstName: z.ZodString;
|
|
4619
4648
|
lastName: z.ZodString;
|
|
4649
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4620
4650
|
warehouseId: z.ZodOptional<z.ZodNumber>;
|
|
4621
4651
|
isActive: z.ZodBoolean;
|
|
4622
4652
|
lastSeen: z.ZodOptional<z.ZodDate>;
|
|
@@ -4632,6 +4662,7 @@ declare const EmployeeDeleteResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4632
4662
|
isActive: boolean;
|
|
4633
4663
|
updatedAt: Date;
|
|
4634
4664
|
roleAssignments: unknown[];
|
|
4665
|
+
phone?: string | undefined;
|
|
4635
4666
|
warehouseId?: number | undefined;
|
|
4636
4667
|
lastSeen?: Date | undefined;
|
|
4637
4668
|
warehouse?: unknown;
|
|
@@ -4644,6 +4675,7 @@ declare const EmployeeDeleteResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4644
4675
|
isActive: boolean;
|
|
4645
4676
|
updatedAt: Date;
|
|
4646
4677
|
roleAssignments: unknown[];
|
|
4678
|
+
phone?: string | undefined;
|
|
4647
4679
|
warehouseId?: number | undefined;
|
|
4648
4680
|
lastSeen?: Date | undefined;
|
|
4649
4681
|
warehouse?: unknown;
|
|
@@ -4664,6 +4696,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4664
4696
|
password: z.ZodNumber;
|
|
4665
4697
|
firstName: z.ZodNumber;
|
|
4666
4698
|
lastName: z.ZodNumber;
|
|
4699
|
+
phone: z.ZodNumber;
|
|
4667
4700
|
warehouseId: z.ZodNumber;
|
|
4668
4701
|
isActive: z.ZodNumber;
|
|
4669
4702
|
lastSeen: z.ZodNumber;
|
|
@@ -4676,6 +4709,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4676
4709
|
password: number;
|
|
4677
4710
|
firstName: number;
|
|
4678
4711
|
lastName: number;
|
|
4712
|
+
phone: number;
|
|
4679
4713
|
warehouseId: number;
|
|
4680
4714
|
isActive: number;
|
|
4681
4715
|
lastSeen: number;
|
|
@@ -4688,6 +4722,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4688
4722
|
password: number;
|
|
4689
4723
|
firstName: number;
|
|
4690
4724
|
lastName: number;
|
|
4725
|
+
phone: number;
|
|
4691
4726
|
warehouseId: number;
|
|
4692
4727
|
isActive: number;
|
|
4693
4728
|
lastSeen: number;
|
|
@@ -4715,6 +4750,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4715
4750
|
password: z.ZodNullable<z.ZodString>;
|
|
4716
4751
|
firstName: z.ZodNullable<z.ZodString>;
|
|
4717
4752
|
lastName: z.ZodNullable<z.ZodString>;
|
|
4753
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
4718
4754
|
warehouseId: z.ZodNullable<z.ZodNumber>;
|
|
4719
4755
|
lastSeen: z.ZodNullable<z.ZodDate>;
|
|
4720
4756
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
@@ -4724,6 +4760,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4724
4760
|
password: string | null;
|
|
4725
4761
|
firstName: string | null;
|
|
4726
4762
|
lastName: string | null;
|
|
4763
|
+
phone: string | null;
|
|
4727
4764
|
warehouseId: number | null;
|
|
4728
4765
|
lastSeen: Date | null;
|
|
4729
4766
|
updatedAt: Date | null;
|
|
@@ -4733,6 +4770,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4733
4770
|
password: string | null;
|
|
4734
4771
|
firstName: string | null;
|
|
4735
4772
|
lastName: string | null;
|
|
4773
|
+
phone: string | null;
|
|
4736
4774
|
warehouseId: number | null;
|
|
4737
4775
|
lastSeen: Date | null;
|
|
4738
4776
|
updatedAt: Date | null;
|
|
@@ -4743,6 +4781,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4743
4781
|
password: z.ZodNullable<z.ZodString>;
|
|
4744
4782
|
firstName: z.ZodNullable<z.ZodString>;
|
|
4745
4783
|
lastName: z.ZodNullable<z.ZodString>;
|
|
4784
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
4746
4785
|
warehouseId: z.ZodNullable<z.ZodNumber>;
|
|
4747
4786
|
lastSeen: z.ZodNullable<z.ZodDate>;
|
|
4748
4787
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
@@ -4752,6 +4791,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4752
4791
|
password: string | null;
|
|
4753
4792
|
firstName: string | null;
|
|
4754
4793
|
lastName: string | null;
|
|
4794
|
+
phone: string | null;
|
|
4755
4795
|
warehouseId: number | null;
|
|
4756
4796
|
lastSeen: Date | null;
|
|
4757
4797
|
updatedAt: Date | null;
|
|
@@ -4761,6 +4801,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4761
4801
|
password: string | null;
|
|
4762
4802
|
firstName: string | null;
|
|
4763
4803
|
lastName: string | null;
|
|
4804
|
+
phone: string | null;
|
|
4764
4805
|
warehouseId: number | null;
|
|
4765
4806
|
lastSeen: Date | null;
|
|
4766
4807
|
updatedAt: Date | null;
|
|
@@ -4772,6 +4813,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4772
4813
|
password: number;
|
|
4773
4814
|
firstName: number;
|
|
4774
4815
|
lastName: number;
|
|
4816
|
+
phone: number;
|
|
4775
4817
|
warehouseId: number;
|
|
4776
4818
|
isActive: number;
|
|
4777
4819
|
lastSeen: number;
|
|
@@ -4785,6 +4827,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4785
4827
|
password: string | null;
|
|
4786
4828
|
firstName: string | null;
|
|
4787
4829
|
lastName: string | null;
|
|
4830
|
+
phone: string | null;
|
|
4788
4831
|
warehouseId: number | null;
|
|
4789
4832
|
lastSeen: Date | null;
|
|
4790
4833
|
updatedAt: Date | null;
|
|
@@ -4795,6 +4838,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4795
4838
|
password: string | null;
|
|
4796
4839
|
firstName: string | null;
|
|
4797
4840
|
lastName: string | null;
|
|
4841
|
+
phone: string | null;
|
|
4798
4842
|
warehouseId: number | null;
|
|
4799
4843
|
lastSeen: Date | null;
|
|
4800
4844
|
updatedAt: Date | null;
|
|
@@ -4812,6 +4856,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4812
4856
|
password: number;
|
|
4813
4857
|
firstName: number;
|
|
4814
4858
|
lastName: number;
|
|
4859
|
+
phone: number;
|
|
4815
4860
|
warehouseId: number;
|
|
4816
4861
|
isActive: number;
|
|
4817
4862
|
lastSeen: number;
|
|
@@ -4825,6 +4870,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4825
4870
|
password: string | null;
|
|
4826
4871
|
firstName: string | null;
|
|
4827
4872
|
lastName: string | null;
|
|
4873
|
+
phone: string | null;
|
|
4828
4874
|
warehouseId: number | null;
|
|
4829
4875
|
lastSeen: Date | null;
|
|
4830
4876
|
updatedAt: Date | null;
|
|
@@ -4835,6 +4881,7 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4835
4881
|
password: string | null;
|
|
4836
4882
|
firstName: string | null;
|
|
4837
4883
|
lastName: string | null;
|
|
4884
|
+
phone: string | null;
|
|
4838
4885
|
warehouseId: number | null;
|
|
4839
4886
|
lastSeen: Date | null;
|
|
4840
4887
|
updatedAt: Date | null;
|
|
@@ -4853,6 +4900,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4853
4900
|
password: z.ZodString;
|
|
4854
4901
|
firstName: z.ZodString;
|
|
4855
4902
|
lastName: z.ZodString;
|
|
4903
|
+
phone: z.ZodString;
|
|
4856
4904
|
warehouseId: z.ZodNumber;
|
|
4857
4905
|
isActive: z.ZodBoolean;
|
|
4858
4906
|
lastSeen: z.ZodDate;
|
|
@@ -4863,6 +4911,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4863
4911
|
password: z.ZodNumber;
|
|
4864
4912
|
firstName: z.ZodNumber;
|
|
4865
4913
|
lastName: z.ZodNumber;
|
|
4914
|
+
phone: z.ZodNumber;
|
|
4866
4915
|
warehouseId: z.ZodNumber;
|
|
4867
4916
|
isActive: z.ZodNumber;
|
|
4868
4917
|
lastSeen: z.ZodNumber;
|
|
@@ -4875,6 +4924,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4875
4924
|
password: number;
|
|
4876
4925
|
firstName: number;
|
|
4877
4926
|
lastName: number;
|
|
4927
|
+
phone: number;
|
|
4878
4928
|
warehouseId: number;
|
|
4879
4929
|
isActive: number;
|
|
4880
4930
|
lastSeen: number;
|
|
@@ -4887,6 +4937,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4887
4937
|
password: number;
|
|
4888
4938
|
firstName: number;
|
|
4889
4939
|
lastName: number;
|
|
4940
|
+
phone: number;
|
|
4890
4941
|
warehouseId: number;
|
|
4891
4942
|
isActive: number;
|
|
4892
4943
|
lastSeen: number;
|
|
@@ -4914,6 +4965,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4914
4965
|
password: z.ZodNullable<z.ZodString>;
|
|
4915
4966
|
firstName: z.ZodNullable<z.ZodString>;
|
|
4916
4967
|
lastName: z.ZodNullable<z.ZodString>;
|
|
4968
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
4917
4969
|
warehouseId: z.ZodNullable<z.ZodNumber>;
|
|
4918
4970
|
lastSeen: z.ZodNullable<z.ZodDate>;
|
|
4919
4971
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
@@ -4923,6 +4975,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4923
4975
|
password: string | null;
|
|
4924
4976
|
firstName: string | null;
|
|
4925
4977
|
lastName: string | null;
|
|
4978
|
+
phone: string | null;
|
|
4926
4979
|
warehouseId: number | null;
|
|
4927
4980
|
lastSeen: Date | null;
|
|
4928
4981
|
updatedAt: Date | null;
|
|
@@ -4932,6 +4985,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4932
4985
|
password: string | null;
|
|
4933
4986
|
firstName: string | null;
|
|
4934
4987
|
lastName: string | null;
|
|
4988
|
+
phone: string | null;
|
|
4935
4989
|
warehouseId: number | null;
|
|
4936
4990
|
lastSeen: Date | null;
|
|
4937
4991
|
updatedAt: Date | null;
|
|
@@ -4942,6 +4996,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4942
4996
|
password: z.ZodNullable<z.ZodString>;
|
|
4943
4997
|
firstName: z.ZodNullable<z.ZodString>;
|
|
4944
4998
|
lastName: z.ZodNullable<z.ZodString>;
|
|
4999
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
4945
5000
|
warehouseId: z.ZodNullable<z.ZodNumber>;
|
|
4946
5001
|
lastSeen: z.ZodNullable<z.ZodDate>;
|
|
4947
5002
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
@@ -4951,6 +5006,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4951
5006
|
password: string | null;
|
|
4952
5007
|
firstName: string | null;
|
|
4953
5008
|
lastName: string | null;
|
|
5009
|
+
phone: string | null;
|
|
4954
5010
|
warehouseId: number | null;
|
|
4955
5011
|
lastSeen: Date | null;
|
|
4956
5012
|
updatedAt: Date | null;
|
|
@@ -4960,6 +5016,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4960
5016
|
password: string | null;
|
|
4961
5017
|
firstName: string | null;
|
|
4962
5018
|
lastName: string | null;
|
|
5019
|
+
phone: string | null;
|
|
4963
5020
|
warehouseId: number | null;
|
|
4964
5021
|
lastSeen: Date | null;
|
|
4965
5022
|
updatedAt: Date | null;
|
|
@@ -4970,6 +5027,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4970
5027
|
password: string;
|
|
4971
5028
|
firstName: string;
|
|
4972
5029
|
lastName: string;
|
|
5030
|
+
phone: string;
|
|
4973
5031
|
warehouseId: number;
|
|
4974
5032
|
isActive: boolean;
|
|
4975
5033
|
lastSeen: Date;
|
|
@@ -4980,6 +5038,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4980
5038
|
password: number;
|
|
4981
5039
|
firstName: number;
|
|
4982
5040
|
lastName: number;
|
|
5041
|
+
phone: number;
|
|
4983
5042
|
warehouseId: number;
|
|
4984
5043
|
isActive: number;
|
|
4985
5044
|
lastSeen: number;
|
|
@@ -4993,6 +5052,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4993
5052
|
password: string | null;
|
|
4994
5053
|
firstName: string | null;
|
|
4995
5054
|
lastName: string | null;
|
|
5055
|
+
phone: string | null;
|
|
4996
5056
|
warehouseId: number | null;
|
|
4997
5057
|
lastSeen: Date | null;
|
|
4998
5058
|
updatedAt: Date | null;
|
|
@@ -5003,6 +5063,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
5003
5063
|
password: string | null;
|
|
5004
5064
|
firstName: string | null;
|
|
5005
5065
|
lastName: string | null;
|
|
5066
|
+
phone: string | null;
|
|
5006
5067
|
warehouseId: number | null;
|
|
5007
5068
|
lastSeen: Date | null;
|
|
5008
5069
|
updatedAt: Date | null;
|
|
@@ -5019,6 +5080,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
5019
5080
|
password: string;
|
|
5020
5081
|
firstName: string;
|
|
5021
5082
|
lastName: string;
|
|
5083
|
+
phone: string;
|
|
5022
5084
|
warehouseId: number;
|
|
5023
5085
|
isActive: boolean;
|
|
5024
5086
|
lastSeen: Date;
|
|
@@ -5029,6 +5091,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
5029
5091
|
password: number;
|
|
5030
5092
|
firstName: number;
|
|
5031
5093
|
lastName: number;
|
|
5094
|
+
phone: number;
|
|
5032
5095
|
warehouseId: number;
|
|
5033
5096
|
isActive: number;
|
|
5034
5097
|
lastSeen: number;
|
|
@@ -5042,6 +5105,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
5042
5105
|
password: string | null;
|
|
5043
5106
|
firstName: string | null;
|
|
5044
5107
|
lastName: string | null;
|
|
5108
|
+
phone: string | null;
|
|
5045
5109
|
warehouseId: number | null;
|
|
5046
5110
|
lastSeen: Date | null;
|
|
5047
5111
|
updatedAt: Date | null;
|
|
@@ -5052,6 +5116,7 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
5052
5116
|
password: string | null;
|
|
5053
5117
|
firstName: string | null;
|
|
5054
5118
|
lastName: string | null;
|
|
5119
|
+
phone: string | null;
|
|
5055
5120
|
warehouseId: number | null;
|
|
5056
5121
|
lastSeen: Date | null;
|
|
5057
5122
|
updatedAt: Date | null;
|
|
@@ -5069,7 +5134,7 @@ declare const EmployeeCountResultSchema: z.ZodNumber;
|
|
|
5069
5134
|
declare const EmployeeRoleFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
|
|
5070
5135
|
id: z.ZodNumber;
|
|
5071
5136
|
name: z.ZodString;
|
|
5072
|
-
color: z.
|
|
5137
|
+
color: z.ZodString;
|
|
5073
5138
|
updatedAt: z.ZodDate;
|
|
5074
5139
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
5075
5140
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -5077,22 +5142,22 @@ declare const EmployeeRoleFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
5077
5142
|
id: number;
|
|
5078
5143
|
updatedAt: Date;
|
|
5079
5144
|
name: string;
|
|
5145
|
+
color: string;
|
|
5080
5146
|
assignments: unknown[];
|
|
5081
5147
|
permissions: unknown[];
|
|
5082
|
-
color?: string | undefined;
|
|
5083
5148
|
}, {
|
|
5084
5149
|
id: number;
|
|
5085
5150
|
updatedAt: Date;
|
|
5086
5151
|
name: string;
|
|
5152
|
+
color: string;
|
|
5087
5153
|
assignments: unknown[];
|
|
5088
5154
|
permissions: unknown[];
|
|
5089
|
-
color?: string | undefined;
|
|
5090
5155
|
}>>;
|
|
5091
5156
|
|
|
5092
5157
|
declare const EmployeeRoleFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
|
|
5093
5158
|
id: z.ZodNumber;
|
|
5094
5159
|
name: z.ZodString;
|
|
5095
|
-
color: z.
|
|
5160
|
+
color: z.ZodString;
|
|
5096
5161
|
updatedAt: z.ZodDate;
|
|
5097
5162
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
5098
5163
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -5100,23 +5165,23 @@ declare const EmployeeRoleFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
5100
5165
|
id: number;
|
|
5101
5166
|
updatedAt: Date;
|
|
5102
5167
|
name: string;
|
|
5168
|
+
color: string;
|
|
5103
5169
|
assignments: unknown[];
|
|
5104
5170
|
permissions: unknown[];
|
|
5105
|
-
color?: string | undefined;
|
|
5106
5171
|
}, {
|
|
5107
5172
|
id: number;
|
|
5108
5173
|
updatedAt: Date;
|
|
5109
5174
|
name: string;
|
|
5175
|
+
color: string;
|
|
5110
5176
|
assignments: unknown[];
|
|
5111
5177
|
permissions: unknown[];
|
|
5112
|
-
color?: string | undefined;
|
|
5113
5178
|
}>>;
|
|
5114
5179
|
|
|
5115
5180
|
declare const EmployeeRoleFindManyResultSchema: z.ZodObject<{
|
|
5116
5181
|
data: z.ZodArray<z.ZodObject<{
|
|
5117
5182
|
id: z.ZodNumber;
|
|
5118
5183
|
name: z.ZodString;
|
|
5119
|
-
color: z.
|
|
5184
|
+
color: z.ZodString;
|
|
5120
5185
|
updatedAt: z.ZodDate;
|
|
5121
5186
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
5122
5187
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -5124,16 +5189,16 @@ declare const EmployeeRoleFindManyResultSchema: z.ZodObject<{
|
|
|
5124
5189
|
id: number;
|
|
5125
5190
|
updatedAt: Date;
|
|
5126
5191
|
name: string;
|
|
5192
|
+
color: string;
|
|
5127
5193
|
assignments: unknown[];
|
|
5128
5194
|
permissions: unknown[];
|
|
5129
|
-
color?: string | undefined;
|
|
5130
5195
|
}, {
|
|
5131
5196
|
id: number;
|
|
5132
5197
|
updatedAt: Date;
|
|
5133
5198
|
name: string;
|
|
5199
|
+
color: string;
|
|
5134
5200
|
assignments: unknown[];
|
|
5135
5201
|
permissions: unknown[];
|
|
5136
|
-
color?: string | undefined;
|
|
5137
5202
|
}>, "many">;
|
|
5138
5203
|
pagination: z.ZodObject<{
|
|
5139
5204
|
page: z.ZodNumber;
|
|
@@ -5162,9 +5227,9 @@ declare const EmployeeRoleFindManyResultSchema: z.ZodObject<{
|
|
|
5162
5227
|
id: number;
|
|
5163
5228
|
updatedAt: Date;
|
|
5164
5229
|
name: string;
|
|
5230
|
+
color: string;
|
|
5165
5231
|
assignments: unknown[];
|
|
5166
5232
|
permissions: unknown[];
|
|
5167
|
-
color?: string | undefined;
|
|
5168
5233
|
}[];
|
|
5169
5234
|
pagination: {
|
|
5170
5235
|
page: number;
|
|
@@ -5179,9 +5244,9 @@ declare const EmployeeRoleFindManyResultSchema: z.ZodObject<{
|
|
|
5179
5244
|
id: number;
|
|
5180
5245
|
updatedAt: Date;
|
|
5181
5246
|
name: string;
|
|
5247
|
+
color: string;
|
|
5182
5248
|
assignments: unknown[];
|
|
5183
5249
|
permissions: unknown[];
|
|
5184
|
-
color?: string | undefined;
|
|
5185
5250
|
}[];
|
|
5186
5251
|
pagination: {
|
|
5187
5252
|
page: number;
|
|
@@ -5196,7 +5261,7 @@ declare const EmployeeRoleFindManyResultSchema: z.ZodObject<{
|
|
|
5196
5261
|
declare const EmployeeRoleCreateResultSchema: z.ZodObject<{
|
|
5197
5262
|
id: z.ZodNumber;
|
|
5198
5263
|
name: z.ZodString;
|
|
5199
|
-
color: z.
|
|
5264
|
+
color: z.ZodString;
|
|
5200
5265
|
updatedAt: z.ZodDate;
|
|
5201
5266
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
5202
5267
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -5204,16 +5269,16 @@ declare const EmployeeRoleCreateResultSchema: z.ZodObject<{
|
|
|
5204
5269
|
id: number;
|
|
5205
5270
|
updatedAt: Date;
|
|
5206
5271
|
name: string;
|
|
5272
|
+
color: string;
|
|
5207
5273
|
assignments: unknown[];
|
|
5208
5274
|
permissions: unknown[];
|
|
5209
|
-
color?: string | undefined;
|
|
5210
5275
|
}, {
|
|
5211
5276
|
id: number;
|
|
5212
5277
|
updatedAt: Date;
|
|
5213
5278
|
name: string;
|
|
5279
|
+
color: string;
|
|
5214
5280
|
assignments: unknown[];
|
|
5215
5281
|
permissions: unknown[];
|
|
5216
|
-
color?: string | undefined;
|
|
5217
5282
|
}>;
|
|
5218
5283
|
|
|
5219
5284
|
declare const EmployeeRoleCreateManyResultSchema: z.ZodObject<{
|
|
@@ -5227,7 +5292,7 @@ declare const EmployeeRoleCreateManyResultSchema: z.ZodObject<{
|
|
|
5227
5292
|
declare const EmployeeRoleUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
5228
5293
|
id: z.ZodNumber;
|
|
5229
5294
|
name: z.ZodString;
|
|
5230
|
-
color: z.
|
|
5295
|
+
color: z.ZodString;
|
|
5231
5296
|
updatedAt: z.ZodDate;
|
|
5232
5297
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
5233
5298
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -5235,16 +5300,16 @@ declare const EmployeeRoleUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
5235
5300
|
id: number;
|
|
5236
5301
|
updatedAt: Date;
|
|
5237
5302
|
name: string;
|
|
5303
|
+
color: string;
|
|
5238
5304
|
assignments: unknown[];
|
|
5239
5305
|
permissions: unknown[];
|
|
5240
|
-
color?: string | undefined;
|
|
5241
5306
|
}, {
|
|
5242
5307
|
id: number;
|
|
5243
5308
|
updatedAt: Date;
|
|
5244
5309
|
name: string;
|
|
5310
|
+
color: string;
|
|
5245
5311
|
assignments: unknown[];
|
|
5246
5312
|
permissions: unknown[];
|
|
5247
|
-
color?: string | undefined;
|
|
5248
5313
|
}>>;
|
|
5249
5314
|
|
|
5250
5315
|
declare const EmployeeRoleUpdateManyResultSchema: z.ZodObject<{
|
|
@@ -5258,7 +5323,7 @@ declare const EmployeeRoleUpdateManyResultSchema: z.ZodObject<{
|
|
|
5258
5323
|
declare const EmployeeRoleUpsertResultSchema: z.ZodObject<{
|
|
5259
5324
|
id: z.ZodNumber;
|
|
5260
5325
|
name: z.ZodString;
|
|
5261
|
-
color: z.
|
|
5326
|
+
color: z.ZodString;
|
|
5262
5327
|
updatedAt: z.ZodDate;
|
|
5263
5328
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
5264
5329
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -5266,22 +5331,22 @@ declare const EmployeeRoleUpsertResultSchema: z.ZodObject<{
|
|
|
5266
5331
|
id: number;
|
|
5267
5332
|
updatedAt: Date;
|
|
5268
5333
|
name: string;
|
|
5334
|
+
color: string;
|
|
5269
5335
|
assignments: unknown[];
|
|
5270
5336
|
permissions: unknown[];
|
|
5271
|
-
color?: string | undefined;
|
|
5272
5337
|
}, {
|
|
5273
5338
|
id: number;
|
|
5274
5339
|
updatedAt: Date;
|
|
5275
5340
|
name: string;
|
|
5341
|
+
color: string;
|
|
5276
5342
|
assignments: unknown[];
|
|
5277
5343
|
permissions: unknown[];
|
|
5278
|
-
color?: string | undefined;
|
|
5279
5344
|
}>;
|
|
5280
5345
|
|
|
5281
5346
|
declare const EmployeeRoleDeleteResultSchema: z.ZodNullable<z.ZodObject<{
|
|
5282
5347
|
id: z.ZodNumber;
|
|
5283
5348
|
name: z.ZodString;
|
|
5284
|
-
color: z.
|
|
5349
|
+
color: z.ZodString;
|
|
5285
5350
|
updatedAt: z.ZodDate;
|
|
5286
5351
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
5287
5352
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -5289,16 +5354,16 @@ declare const EmployeeRoleDeleteResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
5289
5354
|
id: number;
|
|
5290
5355
|
updatedAt: Date;
|
|
5291
5356
|
name: string;
|
|
5357
|
+
color: string;
|
|
5292
5358
|
assignments: unknown[];
|
|
5293
5359
|
permissions: unknown[];
|
|
5294
|
-
color?: string | undefined;
|
|
5295
5360
|
}, {
|
|
5296
5361
|
id: number;
|
|
5297
5362
|
updatedAt: Date;
|
|
5298
5363
|
name: string;
|
|
5364
|
+
color: string;
|
|
5299
5365
|
assignments: unknown[];
|
|
5300
5366
|
permissions: unknown[];
|
|
5301
|
-
color?: string | undefined;
|
|
5302
5367
|
}>>;
|
|
5303
5368
|
|
|
5304
5369
|
declare const EmployeeRoleDeleteManyResultSchema: z.ZodObject<{
|
|
@@ -10560,6 +10625,7 @@ declare const EmployeeCountAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10560
10625
|
password: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10561
10626
|
firstName: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10562
10627
|
lastName: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10628
|
+
phone: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10563
10629
|
warehouseId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10564
10630
|
isActive: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10565
10631
|
lastSeen: z.ZodOptional<z.ZodLiteral<true>>;
|
|
@@ -10571,6 +10637,7 @@ declare const EmployeeCountAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10571
10637
|
password?: true | undefined;
|
|
10572
10638
|
firstName?: true | undefined;
|
|
10573
10639
|
lastName?: true | undefined;
|
|
10640
|
+
phone?: true | undefined;
|
|
10574
10641
|
warehouseId?: true | undefined;
|
|
10575
10642
|
isActive?: true | undefined;
|
|
10576
10643
|
lastSeen?: true | undefined;
|
|
@@ -10582,6 +10649,7 @@ declare const EmployeeCountAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10582
10649
|
password?: true | undefined;
|
|
10583
10650
|
firstName?: true | undefined;
|
|
10584
10651
|
lastName?: true | undefined;
|
|
10652
|
+
phone?: true | undefined;
|
|
10585
10653
|
warehouseId?: true | undefined;
|
|
10586
10654
|
isActive?: true | undefined;
|
|
10587
10655
|
lastSeen?: true | undefined;
|
|
@@ -10596,6 +10664,7 @@ declare const EmployeeCountOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10596
10664
|
password: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10597
10665
|
firstName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10598
10666
|
lastName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10667
|
+
phone: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10599
10668
|
warehouseId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10600
10669
|
isActive: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10601
10670
|
lastSeen: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
@@ -10606,6 +10675,7 @@ declare const EmployeeCountOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10606
10675
|
password?: "asc" | "desc" | undefined;
|
|
10607
10676
|
firstName?: "asc" | "desc" | undefined;
|
|
10608
10677
|
lastName?: "asc" | "desc" | undefined;
|
|
10678
|
+
phone?: "asc" | "desc" | undefined;
|
|
10609
10679
|
warehouseId?: "asc" | "desc" | undefined;
|
|
10610
10680
|
isActive?: "asc" | "desc" | undefined;
|
|
10611
10681
|
lastSeen?: "asc" | "desc" | undefined;
|
|
@@ -10616,6 +10686,7 @@ declare const EmployeeCountOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10616
10686
|
password?: "asc" | "desc" | undefined;
|
|
10617
10687
|
firstName?: "asc" | "desc" | undefined;
|
|
10618
10688
|
lastName?: "asc" | "desc" | undefined;
|
|
10689
|
+
phone?: "asc" | "desc" | undefined;
|
|
10619
10690
|
warehouseId?: "asc" | "desc" | undefined;
|
|
10620
10691
|
isActive?: "asc" | "desc" | undefined;
|
|
10621
10692
|
lastSeen?: "asc" | "desc" | undefined;
|
|
@@ -10678,6 +10749,7 @@ declare const EmployeeCreateInputObjectZodSchema: z.ZodObject<{
|
|
|
10678
10749
|
password: z.ZodString;
|
|
10679
10750
|
firstName: z.ZodString;
|
|
10680
10751
|
lastName: z.ZodString;
|
|
10752
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10681
10753
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10682
10754
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
10683
10755
|
warehouse: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseCreateNestedOneWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseCreateNestedOneWithoutEmployeesInput>>>;
|
|
@@ -10688,6 +10760,7 @@ declare const EmployeeCreateInputObjectZodSchema: z.ZodObject<{
|
|
|
10688
10760
|
firstName: string;
|
|
10689
10761
|
lastName: string;
|
|
10690
10762
|
id?: string | undefined;
|
|
10763
|
+
phone?: string | null | undefined;
|
|
10691
10764
|
isActive?: boolean | undefined;
|
|
10692
10765
|
lastSeen?: Date | null | undefined;
|
|
10693
10766
|
warehouse?: Prisma.WarehouseCreateNestedOneWithoutEmployeesInput | undefined;
|
|
@@ -10698,6 +10771,7 @@ declare const EmployeeCreateInputObjectZodSchema: z.ZodObject<{
|
|
|
10698
10771
|
firstName: string;
|
|
10699
10772
|
lastName: string;
|
|
10700
10773
|
id?: string | undefined;
|
|
10774
|
+
phone?: string | null | undefined;
|
|
10701
10775
|
isActive?: boolean | undefined;
|
|
10702
10776
|
lastSeen?: Date | null | undefined;
|
|
10703
10777
|
warehouse?: Prisma.WarehouseCreateNestedOneWithoutEmployeesInput | undefined;
|
|
@@ -10711,6 +10785,7 @@ declare const EmployeeCreateManyInputObjectZodSchema: z.ZodObject<{
|
|
|
10711
10785
|
password: z.ZodString;
|
|
10712
10786
|
firstName: z.ZodString;
|
|
10713
10787
|
lastName: z.ZodString;
|
|
10788
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10714
10789
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
10715
10790
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10716
10791
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
@@ -10721,6 +10796,7 @@ declare const EmployeeCreateManyInputObjectZodSchema: z.ZodObject<{
|
|
|
10721
10796
|
firstName: string;
|
|
10722
10797
|
lastName: string;
|
|
10723
10798
|
id?: string | undefined;
|
|
10799
|
+
phone?: string | null | undefined;
|
|
10724
10800
|
warehouseId?: number | null | undefined;
|
|
10725
10801
|
isActive?: boolean | undefined;
|
|
10726
10802
|
lastSeen?: Date | null | undefined;
|
|
@@ -10731,6 +10807,7 @@ declare const EmployeeCreateManyInputObjectZodSchema: z.ZodObject<{
|
|
|
10731
10807
|
firstName: string;
|
|
10732
10808
|
lastName: string;
|
|
10733
10809
|
id?: string | undefined;
|
|
10810
|
+
phone?: string | null | undefined;
|
|
10734
10811
|
warehouseId?: number | null | undefined;
|
|
10735
10812
|
isActive?: boolean | undefined;
|
|
10736
10813
|
lastSeen?: Date | null | undefined;
|
|
@@ -10744,6 +10821,7 @@ declare const EmployeeCreateManyWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
10744
10821
|
password: z.ZodString;
|
|
10745
10822
|
firstName: z.ZodString;
|
|
10746
10823
|
lastName: z.ZodString;
|
|
10824
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10747
10825
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10748
10826
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
10749
10827
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -10753,6 +10831,7 @@ declare const EmployeeCreateManyWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
10753
10831
|
firstName: string;
|
|
10754
10832
|
lastName: string;
|
|
10755
10833
|
id?: string | undefined;
|
|
10834
|
+
phone?: string | null | undefined;
|
|
10756
10835
|
isActive?: boolean | undefined;
|
|
10757
10836
|
lastSeen?: Date | null | undefined;
|
|
10758
10837
|
updatedAt?: Date | undefined;
|
|
@@ -10762,6 +10841,7 @@ declare const EmployeeCreateManyWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
10762
10841
|
firstName: string;
|
|
10763
10842
|
lastName: string;
|
|
10764
10843
|
id?: string | undefined;
|
|
10844
|
+
phone?: string | null | undefined;
|
|
10765
10845
|
isActive?: boolean | undefined;
|
|
10766
10846
|
lastSeen?: Date | null | undefined;
|
|
10767
10847
|
updatedAt?: Date | undefined;
|
|
@@ -10843,6 +10923,7 @@ declare const EmployeeCreateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObj
|
|
|
10843
10923
|
password: z.ZodString;
|
|
10844
10924
|
firstName: z.ZodString;
|
|
10845
10925
|
lastName: z.ZodString;
|
|
10926
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10846
10927
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10847
10928
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
10848
10929
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -10853,6 +10934,7 @@ declare const EmployeeCreateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObj
|
|
|
10853
10934
|
firstName: string;
|
|
10854
10935
|
lastName: string;
|
|
10855
10936
|
id?: string | undefined;
|
|
10937
|
+
phone?: string | null | undefined;
|
|
10856
10938
|
isActive?: boolean | undefined;
|
|
10857
10939
|
lastSeen?: Date | null | undefined;
|
|
10858
10940
|
updatedAt?: Date | undefined;
|
|
@@ -10863,6 +10945,7 @@ declare const EmployeeCreateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObj
|
|
|
10863
10945
|
firstName: string;
|
|
10864
10946
|
lastName: string;
|
|
10865
10947
|
id?: string | undefined;
|
|
10948
|
+
phone?: string | null | undefined;
|
|
10866
10949
|
isActive?: boolean | undefined;
|
|
10867
10950
|
lastSeen?: Date | null | undefined;
|
|
10868
10951
|
updatedAt?: Date | undefined;
|
|
@@ -10876,6 +10959,7 @@ declare const EmployeeCreateWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
10876
10959
|
password: z.ZodString;
|
|
10877
10960
|
firstName: z.ZodString;
|
|
10878
10961
|
lastName: z.ZodString;
|
|
10962
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10879
10963
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10880
10964
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
10881
10965
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -10886,6 +10970,7 @@ declare const EmployeeCreateWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
10886
10970
|
firstName: string;
|
|
10887
10971
|
lastName: string;
|
|
10888
10972
|
id?: string | undefined;
|
|
10973
|
+
phone?: string | null | undefined;
|
|
10889
10974
|
isActive?: boolean | undefined;
|
|
10890
10975
|
lastSeen?: Date | null | undefined;
|
|
10891
10976
|
updatedAt?: Date | undefined;
|
|
@@ -10896,6 +10981,7 @@ declare const EmployeeCreateWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
10896
10981
|
firstName: string;
|
|
10897
10982
|
lastName: string;
|
|
10898
10983
|
id?: string | undefined;
|
|
10984
|
+
phone?: string | null | undefined;
|
|
10899
10985
|
isActive?: boolean | undefined;
|
|
10900
10986
|
lastSeen?: Date | null | undefined;
|
|
10901
10987
|
updatedAt?: Date | undefined;
|
|
@@ -10964,6 +11050,7 @@ declare const EmployeeMaxAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10964
11050
|
password: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10965
11051
|
firstName: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10966
11052
|
lastName: z.ZodOptional<z.ZodLiteral<true>>;
|
|
11053
|
+
phone: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10967
11054
|
warehouseId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10968
11055
|
isActive: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10969
11056
|
lastSeen: z.ZodOptional<z.ZodLiteral<true>>;
|
|
@@ -10974,6 +11061,7 @@ declare const EmployeeMaxAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10974
11061
|
password?: true | undefined;
|
|
10975
11062
|
firstName?: true | undefined;
|
|
10976
11063
|
lastName?: true | undefined;
|
|
11064
|
+
phone?: true | undefined;
|
|
10977
11065
|
warehouseId?: true | undefined;
|
|
10978
11066
|
isActive?: true | undefined;
|
|
10979
11067
|
lastSeen?: true | undefined;
|
|
@@ -10984,6 +11072,7 @@ declare const EmployeeMaxAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10984
11072
|
password?: true | undefined;
|
|
10985
11073
|
firstName?: true | undefined;
|
|
10986
11074
|
lastName?: true | undefined;
|
|
11075
|
+
phone?: true | undefined;
|
|
10987
11076
|
warehouseId?: true | undefined;
|
|
10988
11077
|
isActive?: true | undefined;
|
|
10989
11078
|
lastSeen?: true | undefined;
|
|
@@ -10997,6 +11086,7 @@ declare const EmployeeMaxOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10997
11086
|
password: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10998
11087
|
firstName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10999
11088
|
lastName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11089
|
+
phone: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11000
11090
|
warehouseId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11001
11091
|
isActive: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11002
11092
|
lastSeen: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
@@ -11007,6 +11097,7 @@ declare const EmployeeMaxOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
11007
11097
|
password?: "asc" | "desc" | undefined;
|
|
11008
11098
|
firstName?: "asc" | "desc" | undefined;
|
|
11009
11099
|
lastName?: "asc" | "desc" | undefined;
|
|
11100
|
+
phone?: "asc" | "desc" | undefined;
|
|
11010
11101
|
warehouseId?: "asc" | "desc" | undefined;
|
|
11011
11102
|
isActive?: "asc" | "desc" | undefined;
|
|
11012
11103
|
lastSeen?: "asc" | "desc" | undefined;
|
|
@@ -11017,6 +11108,7 @@ declare const EmployeeMaxOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
11017
11108
|
password?: "asc" | "desc" | undefined;
|
|
11018
11109
|
firstName?: "asc" | "desc" | undefined;
|
|
11019
11110
|
lastName?: "asc" | "desc" | undefined;
|
|
11111
|
+
phone?: "asc" | "desc" | undefined;
|
|
11020
11112
|
warehouseId?: "asc" | "desc" | undefined;
|
|
11021
11113
|
isActive?: "asc" | "desc" | undefined;
|
|
11022
11114
|
lastSeen?: "asc" | "desc" | undefined;
|
|
@@ -11030,6 +11122,7 @@ declare const EmployeeMinAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
11030
11122
|
password: z.ZodOptional<z.ZodLiteral<true>>;
|
|
11031
11123
|
firstName: z.ZodOptional<z.ZodLiteral<true>>;
|
|
11032
11124
|
lastName: z.ZodOptional<z.ZodLiteral<true>>;
|
|
11125
|
+
phone: z.ZodOptional<z.ZodLiteral<true>>;
|
|
11033
11126
|
warehouseId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
11034
11127
|
isActive: z.ZodOptional<z.ZodLiteral<true>>;
|
|
11035
11128
|
lastSeen: z.ZodOptional<z.ZodLiteral<true>>;
|
|
@@ -11040,6 +11133,7 @@ declare const EmployeeMinAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
11040
11133
|
password?: true | undefined;
|
|
11041
11134
|
firstName?: true | undefined;
|
|
11042
11135
|
lastName?: true | undefined;
|
|
11136
|
+
phone?: true | undefined;
|
|
11043
11137
|
warehouseId?: true | undefined;
|
|
11044
11138
|
isActive?: true | undefined;
|
|
11045
11139
|
lastSeen?: true | undefined;
|
|
@@ -11050,6 +11144,7 @@ declare const EmployeeMinAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
11050
11144
|
password?: true | undefined;
|
|
11051
11145
|
firstName?: true | undefined;
|
|
11052
11146
|
lastName?: true | undefined;
|
|
11147
|
+
phone?: true | undefined;
|
|
11053
11148
|
warehouseId?: true | undefined;
|
|
11054
11149
|
isActive?: true | undefined;
|
|
11055
11150
|
lastSeen?: true | undefined;
|
|
@@ -11063,6 +11158,7 @@ declare const EmployeeMinOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
11063
11158
|
password: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11064
11159
|
firstName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11065
11160
|
lastName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11161
|
+
phone: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11066
11162
|
warehouseId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11067
11163
|
isActive: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11068
11164
|
lastSeen: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
@@ -11073,6 +11169,7 @@ declare const EmployeeMinOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
11073
11169
|
password?: "asc" | "desc" | undefined;
|
|
11074
11170
|
firstName?: "asc" | "desc" | undefined;
|
|
11075
11171
|
lastName?: "asc" | "desc" | undefined;
|
|
11172
|
+
phone?: "asc" | "desc" | undefined;
|
|
11076
11173
|
warehouseId?: "asc" | "desc" | undefined;
|
|
11077
11174
|
isActive?: "asc" | "desc" | undefined;
|
|
11078
11175
|
lastSeen?: "asc" | "desc" | undefined;
|
|
@@ -11083,6 +11180,7 @@ declare const EmployeeMinOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
11083
11180
|
password?: "asc" | "desc" | undefined;
|
|
11084
11181
|
firstName?: "asc" | "desc" | undefined;
|
|
11085
11182
|
lastName?: "asc" | "desc" | undefined;
|
|
11183
|
+
phone?: "asc" | "desc" | undefined;
|
|
11086
11184
|
warehouseId?: "asc" | "desc" | undefined;
|
|
11087
11185
|
isActive?: "asc" | "desc" | undefined;
|
|
11088
11186
|
lastSeen?: "asc" | "desc" | undefined;
|
|
@@ -11105,6 +11203,7 @@ declare const EmployeeOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
|
|
|
11105
11203
|
password: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11106
11204
|
firstName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11107
11205
|
lastName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11206
|
+
phone: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
11108
11207
|
warehouseId: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
11109
11208
|
isActive: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11110
11209
|
lastSeen: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
@@ -11120,6 +11219,7 @@ declare const EmployeeOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
|
|
|
11120
11219
|
password?: "asc" | "desc" | undefined;
|
|
11121
11220
|
firstName?: "asc" | "desc" | undefined;
|
|
11122
11221
|
lastName?: "asc" | "desc" | undefined;
|
|
11222
|
+
phone?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11123
11223
|
warehouseId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11124
11224
|
isActive?: "asc" | "desc" | undefined;
|
|
11125
11225
|
lastSeen?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
@@ -11135,6 +11235,7 @@ declare const EmployeeOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
|
|
|
11135
11235
|
password?: "asc" | "desc" | undefined;
|
|
11136
11236
|
firstName?: "asc" | "desc" | undefined;
|
|
11137
11237
|
lastName?: "asc" | "desc" | undefined;
|
|
11238
|
+
phone?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11138
11239
|
warehouseId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11139
11240
|
isActive?: "asc" | "desc" | undefined;
|
|
11140
11241
|
lastSeen?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
@@ -11153,6 +11254,7 @@ declare const EmployeeOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
|
|
11153
11254
|
password: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11154
11255
|
firstName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11155
11256
|
lastName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11257
|
+
phone: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
11156
11258
|
warehouseId: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
11157
11259
|
isActive: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11158
11260
|
lastSeen: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
@@ -11165,6 +11267,7 @@ declare const EmployeeOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
|
|
11165
11267
|
password?: "asc" | "desc" | undefined;
|
|
11166
11268
|
firstName?: "asc" | "desc" | undefined;
|
|
11167
11269
|
lastName?: "asc" | "desc" | undefined;
|
|
11270
|
+
phone?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11168
11271
|
warehouseId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11169
11272
|
isActive?: "asc" | "desc" | undefined;
|
|
11170
11273
|
lastSeen?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
@@ -11177,6 +11280,7 @@ declare const EmployeeOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
|
|
11177
11280
|
password?: "asc" | "desc" | undefined;
|
|
11178
11281
|
firstName?: "asc" | "desc" | undefined;
|
|
11179
11282
|
lastName?: "asc" | "desc" | undefined;
|
|
11283
|
+
phone?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11180
11284
|
warehouseId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11181
11285
|
isActive?: "asc" | "desc" | undefined;
|
|
11182
11286
|
lastSeen?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
@@ -13044,17 +13148,17 @@ declare const EmployeeRoleCountOutputTypeSelectObjectZodSchema: z.ZodObject<{
|
|
|
13044
13148
|
declare const EmployeeRoleCreateInputObjectSchema: z.ZodType<Prisma.EmployeeRoleCreateInput>;
|
|
13045
13149
|
declare const EmployeeRoleCreateInputObjectZodSchema: z.ZodObject<{
|
|
13046
13150
|
name: z.ZodString;
|
|
13047
|
-
color: z.
|
|
13151
|
+
color: z.ZodString;
|
|
13048
13152
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput>>>;
|
|
13049
13153
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput>>>;
|
|
13050
13154
|
}, "strict", z.ZodTypeAny, {
|
|
13051
13155
|
name: string;
|
|
13052
|
-
color
|
|
13156
|
+
color: string;
|
|
13053
13157
|
assignments?: Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
13054
13158
|
permissions?: Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
13055
13159
|
}, {
|
|
13056
13160
|
name: string;
|
|
13057
|
-
color
|
|
13161
|
+
color: string;
|
|
13058
13162
|
assignments?: Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
13059
13163
|
permissions?: Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
13060
13164
|
}>;
|
|
@@ -13063,18 +13167,18 @@ declare const EmployeeRoleCreateManyInputObjectSchema: z.ZodType<Prisma.Employee
|
|
|
13063
13167
|
declare const EmployeeRoleCreateManyInputObjectZodSchema: z.ZodObject<{
|
|
13064
13168
|
id: z.ZodOptional<z.ZodNumber>;
|
|
13065
13169
|
name: z.ZodString;
|
|
13066
|
-
color: z.
|
|
13170
|
+
color: z.ZodString;
|
|
13067
13171
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
13068
13172
|
}, "strict", z.ZodTypeAny, {
|
|
13069
13173
|
name: string;
|
|
13174
|
+
color: string;
|
|
13070
13175
|
id?: number | undefined;
|
|
13071
13176
|
updatedAt?: Date | undefined;
|
|
13072
|
-
color?: string | null | undefined;
|
|
13073
13177
|
}, {
|
|
13074
13178
|
name: string;
|
|
13179
|
+
color: string;
|
|
13075
13180
|
id?: number | undefined;
|
|
13076
13181
|
updatedAt?: Date | undefined;
|
|
13077
|
-
color?: string | null | undefined;
|
|
13078
13182
|
}>;
|
|
13079
13183
|
|
|
13080
13184
|
declare const EmployeeRoleCreateNestedOneWithoutAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeRoleCreateNestedOneWithoutAssignmentsInput>;
|
|
@@ -13134,36 +13238,36 @@ declare const EmployeeRoleCreateOrConnectWithoutPermissionsInputObjectZodSchema:
|
|
|
13134
13238
|
declare const EmployeeRoleCreateWithoutAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeRoleCreateWithoutAssignmentsInput>;
|
|
13135
13239
|
declare const EmployeeRoleCreateWithoutAssignmentsInputObjectZodSchema: z.ZodObject<{
|
|
13136
13240
|
name: z.ZodString;
|
|
13137
|
-
color: z.
|
|
13241
|
+
color: z.ZodString;
|
|
13138
13242
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
13139
13243
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput>>>;
|
|
13140
13244
|
}, "strict", z.ZodTypeAny, {
|
|
13141
13245
|
name: string;
|
|
13246
|
+
color: string;
|
|
13142
13247
|
updatedAt?: Date | undefined;
|
|
13143
|
-
color?: string | null | undefined;
|
|
13144
13248
|
permissions?: Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
13145
13249
|
}, {
|
|
13146
13250
|
name: string;
|
|
13251
|
+
color: string;
|
|
13147
13252
|
updatedAt?: Date | undefined;
|
|
13148
|
-
color?: string | null | undefined;
|
|
13149
13253
|
permissions?: Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
13150
13254
|
}>;
|
|
13151
13255
|
|
|
13152
13256
|
declare const EmployeeRoleCreateWithoutPermissionsInputObjectSchema: z.ZodType<Prisma.EmployeeRoleCreateWithoutPermissionsInput>;
|
|
13153
13257
|
declare const EmployeeRoleCreateWithoutPermissionsInputObjectZodSchema: z.ZodObject<{
|
|
13154
13258
|
name: z.ZodString;
|
|
13155
|
-
color: z.
|
|
13259
|
+
color: z.ZodString;
|
|
13156
13260
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
13157
13261
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput>>>;
|
|
13158
13262
|
}, "strict", z.ZodTypeAny, {
|
|
13159
13263
|
name: string;
|
|
13264
|
+
color: string;
|
|
13160
13265
|
updatedAt?: Date | undefined;
|
|
13161
|
-
color?: string | null | undefined;
|
|
13162
13266
|
assignments?: Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
13163
13267
|
}, {
|
|
13164
13268
|
name: string;
|
|
13269
|
+
color: string;
|
|
13165
13270
|
updatedAt?: Date | undefined;
|
|
13166
|
-
color?: string | null | undefined;
|
|
13167
13271
|
assignments?: Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
13168
13272
|
}>;
|
|
13169
13273
|
|
|
@@ -13268,7 +13372,7 @@ declare const EmployeeRoleOrderByWithAggregationInputObjectSchema: z.ZodType<Pri
|
|
|
13268
13372
|
declare const EmployeeRoleOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
|
|
13269
13373
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
13270
13374
|
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
13271
|
-
color: z.ZodOptional<z.
|
|
13375
|
+
color: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
13272
13376
|
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
13273
13377
|
_count: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleCountOrderByAggregateInput, z.ZodTypeDef, Prisma.EmployeeRoleCountOrderByAggregateInput>>>;
|
|
13274
13378
|
_avg: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAvgOrderByAggregateInput, z.ZodTypeDef, Prisma.EmployeeRoleAvgOrderByAggregateInput>>>;
|
|
@@ -13279,7 +13383,7 @@ declare const EmployeeRoleOrderByWithAggregationInputObjectZodSchema: z.ZodObjec
|
|
|
13279
13383
|
id?: "asc" | "desc" | undefined;
|
|
13280
13384
|
updatedAt?: "asc" | "desc" | undefined;
|
|
13281
13385
|
name?: "asc" | "desc" | undefined;
|
|
13282
|
-
color?: "asc" | "desc" |
|
|
13386
|
+
color?: "asc" | "desc" | undefined;
|
|
13283
13387
|
_count?: Prisma.EmployeeRoleCountOrderByAggregateInput | undefined;
|
|
13284
13388
|
_min?: Prisma.EmployeeRoleMinOrderByAggregateInput | undefined;
|
|
13285
13389
|
_max?: Prisma.EmployeeRoleMaxOrderByAggregateInput | undefined;
|
|
@@ -13289,7 +13393,7 @@ declare const EmployeeRoleOrderByWithAggregationInputObjectZodSchema: z.ZodObjec
|
|
|
13289
13393
|
id?: "asc" | "desc" | undefined;
|
|
13290
13394
|
updatedAt?: "asc" | "desc" | undefined;
|
|
13291
13395
|
name?: "asc" | "desc" | undefined;
|
|
13292
|
-
color?: "asc" | "desc" |
|
|
13396
|
+
color?: "asc" | "desc" | undefined;
|
|
13293
13397
|
_count?: Prisma.EmployeeRoleCountOrderByAggregateInput | undefined;
|
|
13294
13398
|
_min?: Prisma.EmployeeRoleMinOrderByAggregateInput | undefined;
|
|
13295
13399
|
_max?: Prisma.EmployeeRoleMaxOrderByAggregateInput | undefined;
|
|
@@ -13301,7 +13405,7 @@ declare const EmployeeRoleOrderByWithRelationInputObjectSchema: z.ZodType<Prisma
|
|
|
13301
13405
|
declare const EmployeeRoleOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
|
13302
13406
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
13303
13407
|
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
13304
|
-
color: z.ZodOptional<z.
|
|
13408
|
+
color: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
13305
13409
|
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
13306
13410
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentOrderByRelationAggregateInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentOrderByRelationAggregateInput>>>;
|
|
13307
13411
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionOrderByRelationAggregateInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionOrderByRelationAggregateInput>>>;
|
|
@@ -13309,14 +13413,14 @@ declare const EmployeeRoleOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
|
|
13309
13413
|
id?: "asc" | "desc" | undefined;
|
|
13310
13414
|
updatedAt?: "asc" | "desc" | undefined;
|
|
13311
13415
|
name?: "asc" | "desc" | undefined;
|
|
13312
|
-
color?: "asc" | "desc" |
|
|
13416
|
+
color?: "asc" | "desc" | undefined;
|
|
13313
13417
|
assignments?: Prisma.EmployeeRoleAssignmentOrderByRelationAggregateInput | undefined;
|
|
13314
13418
|
permissions?: Prisma.EmployeeRolePermissionOrderByRelationAggregateInput | undefined;
|
|
13315
13419
|
}, {
|
|
13316
13420
|
id?: "asc" | "desc" | undefined;
|
|
13317
13421
|
updatedAt?: "asc" | "desc" | undefined;
|
|
13318
13422
|
name?: "asc" | "desc" | undefined;
|
|
13319
|
-
color?: "asc" | "desc" |
|
|
13423
|
+
color?: "asc" | "desc" | undefined;
|
|
13320
13424
|
assignments?: Prisma.EmployeeRoleAssignmentOrderByRelationAggregateInput | undefined;
|
|
13321
13425
|
permissions?: Prisma.EmployeeRolePermissionOrderByRelationAggregateInput | undefined;
|
|
13322
13426
|
}>;
|
|
@@ -14447,13 +14551,13 @@ declare const EmployeeRoleScalarWhereWithAggregatesInputObjectZodSchema: z.ZodOb
|
|
|
14447
14551
|
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeRoleScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.EmployeeRoleScalarWhereWithAggregatesInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.EmployeeRoleScalarWhereWithAggregatesInput>>, "many">]>>;
|
|
14448
14552
|
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntWithAggregatesFilter<never>>>, z.ZodNumber]>>;
|
|
14449
14553
|
name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
|
|
14450
|
-
color: z.
|
|
14554
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
|
|
14451
14555
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.DateTimeWithAggregatesFilter<never>>>, z.ZodDate]>>;
|
|
14452
14556
|
}, "strict", z.ZodTypeAny, {
|
|
14453
14557
|
id?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
|
|
14454
14558
|
updatedAt?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
|
|
14455
14559
|
name?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
14456
|
-
color?: string | Prisma.
|
|
14560
|
+
color?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
14457
14561
|
AND?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput | Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
|
|
14458
14562
|
OR?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
|
|
14459
14563
|
NOT?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput | Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
|
|
@@ -14461,7 +14565,7 @@ declare const EmployeeRoleScalarWhereWithAggregatesInputObjectZodSchema: z.ZodOb
|
|
|
14461
14565
|
id?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
|
|
14462
14566
|
updatedAt?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
|
|
14463
14567
|
name?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
14464
|
-
color?: string | Prisma.
|
|
14568
|
+
color?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
14465
14569
|
AND?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput | Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
|
|
14466
14570
|
OR?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
|
|
14467
14571
|
NOT?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput | Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
|
|
@@ -14526,19 +14630,19 @@ declare const EmployeeRoleUncheckedCreateInputObjectSchema: z.ZodType<Prisma.Emp
|
|
|
14526
14630
|
declare const EmployeeRoleUncheckedCreateInputObjectZodSchema: z.ZodObject<{
|
|
14527
14631
|
id: z.ZodOptional<z.ZodNumber>;
|
|
14528
14632
|
name: z.ZodString;
|
|
14529
|
-
color: z.
|
|
14633
|
+
color: z.ZodString;
|
|
14530
14634
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput>>>;
|
|
14531
14635
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput>>>;
|
|
14532
14636
|
}, "strict", z.ZodTypeAny, {
|
|
14533
14637
|
name: string;
|
|
14638
|
+
color: string;
|
|
14534
14639
|
id?: number | undefined;
|
|
14535
|
-
color?: string | null | undefined;
|
|
14536
14640
|
assignments?: Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
14537
14641
|
permissions?: Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
14538
14642
|
}, {
|
|
14539
14643
|
name: string;
|
|
14644
|
+
color: string;
|
|
14540
14645
|
id?: number | undefined;
|
|
14541
|
-
color?: string | null | undefined;
|
|
14542
14646
|
assignments?: Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
14543
14647
|
permissions?: Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
14544
14648
|
}>;
|
|
@@ -14547,20 +14651,20 @@ declare const EmployeeRoleUncheckedCreateWithoutAssignmentsInputObjectSchema: z.
|
|
|
14547
14651
|
declare const EmployeeRoleUncheckedCreateWithoutAssignmentsInputObjectZodSchema: z.ZodObject<{
|
|
14548
14652
|
id: z.ZodOptional<z.ZodNumber>;
|
|
14549
14653
|
name: z.ZodString;
|
|
14550
|
-
color: z.
|
|
14654
|
+
color: z.ZodString;
|
|
14551
14655
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
14552
14656
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput>>>;
|
|
14553
14657
|
}, "strict", z.ZodTypeAny, {
|
|
14554
14658
|
name: string;
|
|
14659
|
+
color: string;
|
|
14555
14660
|
id?: number | undefined;
|
|
14556
14661
|
updatedAt?: Date | undefined;
|
|
14557
|
-
color?: string | null | undefined;
|
|
14558
14662
|
permissions?: Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
14559
14663
|
}, {
|
|
14560
14664
|
name: string;
|
|
14665
|
+
color: string;
|
|
14561
14666
|
id?: number | undefined;
|
|
14562
14667
|
updatedAt?: Date | undefined;
|
|
14563
|
-
color?: string | null | undefined;
|
|
14564
14668
|
permissions?: Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
14565
14669
|
}>;
|
|
14566
14670
|
|
|
@@ -14568,20 +14672,20 @@ declare const EmployeeRoleUncheckedCreateWithoutPermissionsInputObjectSchema: z.
|
|
|
14568
14672
|
declare const EmployeeRoleUncheckedCreateWithoutPermissionsInputObjectZodSchema: z.ZodObject<{
|
|
14569
14673
|
id: z.ZodOptional<z.ZodNumber>;
|
|
14570
14674
|
name: z.ZodString;
|
|
14571
|
-
color: z.
|
|
14675
|
+
color: z.ZodString;
|
|
14572
14676
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
14573
14677
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput>>>;
|
|
14574
14678
|
}, "strict", z.ZodTypeAny, {
|
|
14575
14679
|
name: string;
|
|
14680
|
+
color: string;
|
|
14576
14681
|
id?: number | undefined;
|
|
14577
14682
|
updatedAt?: Date | undefined;
|
|
14578
|
-
color?: string | null | undefined;
|
|
14579
14683
|
assignments?: Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
14580
14684
|
}, {
|
|
14581
14685
|
name: string;
|
|
14686
|
+
color: string;
|
|
14582
14687
|
id?: number | undefined;
|
|
14583
14688
|
updatedAt?: Date | undefined;
|
|
14584
|
-
color?: string | null | undefined;
|
|
14585
14689
|
assignments?: Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
14586
14690
|
}>;
|
|
14587
14691
|
|
|
@@ -14589,7 +14693,7 @@ declare const EmployeeRoleUncheckedUpdateInputObjectSchema: z.ZodType<Prisma.Emp
|
|
|
14589
14693
|
declare const EmployeeRoleUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
|
|
14590
14694
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
14591
14695
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14592
|
-
color: z.
|
|
14696
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14593
14697
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
14594
14698
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput>>>;
|
|
14595
14699
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput>>>;
|
|
@@ -14597,14 +14701,14 @@ declare const EmployeeRoleUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
14597
14701
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
14598
14702
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14599
14703
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14600
|
-
color?: string | Prisma.
|
|
14704
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14601
14705
|
assignments?: Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14602
14706
|
permissions?: Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14603
14707
|
}, {
|
|
14604
14708
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
14605
14709
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14606
14710
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14607
|
-
color?: string | Prisma.
|
|
14711
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14608
14712
|
assignments?: Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14609
14713
|
permissions?: Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14610
14714
|
}>;
|
|
@@ -14613,38 +14717,38 @@ declare const EmployeeRoleUncheckedUpdateManyInputObjectSchema: z.ZodType<Prisma
|
|
|
14613
14717
|
declare const EmployeeRoleUncheckedUpdateManyInputObjectZodSchema: z.ZodObject<{
|
|
14614
14718
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
14615
14719
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14616
|
-
color: z.
|
|
14720
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14617
14721
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
14618
14722
|
}, "strict", z.ZodTypeAny, {
|
|
14619
14723
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
14620
14724
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14621
14725
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14622
|
-
color?: string | Prisma.
|
|
14726
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14623
14727
|
}, {
|
|
14624
14728
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
14625
14729
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14626
14730
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14627
|
-
color?: string | Prisma.
|
|
14731
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14628
14732
|
}>;
|
|
14629
14733
|
|
|
14630
14734
|
declare const EmployeeRoleUncheckedUpdateWithoutAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeRoleUncheckedUpdateWithoutAssignmentsInput>;
|
|
14631
14735
|
declare const EmployeeRoleUncheckedUpdateWithoutAssignmentsInputObjectZodSchema: z.ZodObject<{
|
|
14632
14736
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
14633
14737
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14634
|
-
color: z.
|
|
14738
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14635
14739
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
14636
14740
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput>>>;
|
|
14637
14741
|
}, "strict", z.ZodTypeAny, {
|
|
14638
14742
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
14639
14743
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14640
14744
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14641
|
-
color?: string | Prisma.
|
|
14745
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14642
14746
|
permissions?: Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14643
14747
|
}, {
|
|
14644
14748
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
14645
14749
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14646
14750
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14647
|
-
color?: string | Prisma.
|
|
14751
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14648
14752
|
permissions?: Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14649
14753
|
}>;
|
|
14650
14754
|
|
|
@@ -14652,40 +14756,40 @@ declare const EmployeeRoleUncheckedUpdateWithoutPermissionsInputObjectSchema: z.
|
|
|
14652
14756
|
declare const EmployeeRoleUncheckedUpdateWithoutPermissionsInputObjectZodSchema: z.ZodObject<{
|
|
14653
14757
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
14654
14758
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14655
|
-
color: z.
|
|
14759
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14656
14760
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
14657
14761
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput>>>;
|
|
14658
14762
|
}, "strict", z.ZodTypeAny, {
|
|
14659
14763
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
14660
14764
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14661
14765
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14662
|
-
color?: string | Prisma.
|
|
14766
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14663
14767
|
assignments?: Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14664
14768
|
}, {
|
|
14665
14769
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
14666
14770
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14667
14771
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14668
|
-
color?: string | Prisma.
|
|
14772
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14669
14773
|
assignments?: Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14670
14774
|
}>;
|
|
14671
14775
|
|
|
14672
14776
|
declare const EmployeeRoleUpdateInputObjectSchema: z.ZodType<Prisma.EmployeeRoleUpdateInput>;
|
|
14673
14777
|
declare const EmployeeRoleUpdateInputObjectZodSchema: z.ZodObject<{
|
|
14674
14778
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14675
|
-
color: z.
|
|
14779
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14676
14780
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
14677
14781
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput>>>;
|
|
14678
14782
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput>>>;
|
|
14679
14783
|
}, "strict", z.ZodTypeAny, {
|
|
14680
14784
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14681
14785
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14682
|
-
color?: string | Prisma.
|
|
14786
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14683
14787
|
assignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14684
14788
|
permissions?: Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14685
14789
|
}, {
|
|
14686
14790
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14687
14791
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14688
|
-
color?: string | Prisma.
|
|
14792
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14689
14793
|
assignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14690
14794
|
permissions?: Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14691
14795
|
}>;
|
|
@@ -14693,16 +14797,16 @@ declare const EmployeeRoleUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
14693
14797
|
declare const EmployeeRoleUpdateManyMutationInputObjectSchema: z.ZodType<Prisma.EmployeeRoleUpdateManyMutationInput>;
|
|
14694
14798
|
declare const EmployeeRoleUpdateManyMutationInputObjectZodSchema: z.ZodObject<{
|
|
14695
14799
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14696
|
-
color: z.
|
|
14800
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14697
14801
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
14698
14802
|
}, "strict", z.ZodTypeAny, {
|
|
14699
14803
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14700
14804
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14701
|
-
color?: string | Prisma.
|
|
14805
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14702
14806
|
}, {
|
|
14703
14807
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14704
14808
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14705
|
-
color?: string | Prisma.
|
|
14809
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14706
14810
|
}>;
|
|
14707
14811
|
|
|
14708
14812
|
declare const EmployeeRoleUpdateOneRequiredWithoutAssignmentsNestedInputObjectSchema: z.ZodType<Prisma.EmployeeRoleUpdateOneRequiredWithoutAssignmentsNestedInput>;
|
|
@@ -14774,36 +14878,36 @@ declare const EmployeeRoleUpdateToOneWithWhereWithoutPermissionsInputObjectZodSc
|
|
|
14774
14878
|
declare const EmployeeRoleUpdateWithoutAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeRoleUpdateWithoutAssignmentsInput>;
|
|
14775
14879
|
declare const EmployeeRoleUpdateWithoutAssignmentsInputObjectZodSchema: z.ZodObject<{
|
|
14776
14880
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14777
|
-
color: z.
|
|
14881
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14778
14882
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
14779
14883
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput>>>;
|
|
14780
14884
|
}, "strict", z.ZodTypeAny, {
|
|
14781
14885
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14782
14886
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14783
|
-
color?: string | Prisma.
|
|
14887
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14784
14888
|
permissions?: Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14785
14889
|
}, {
|
|
14786
14890
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14787
14891
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14788
|
-
color?: string | Prisma.
|
|
14892
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14789
14893
|
permissions?: Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14790
14894
|
}>;
|
|
14791
14895
|
|
|
14792
14896
|
declare const EmployeeRoleUpdateWithoutPermissionsInputObjectSchema: z.ZodType<Prisma.EmployeeRoleUpdateWithoutPermissionsInput>;
|
|
14793
14897
|
declare const EmployeeRoleUpdateWithoutPermissionsInputObjectZodSchema: z.ZodObject<{
|
|
14794
14898
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14795
|
-
color: z.
|
|
14899
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14796
14900
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
14797
14901
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput>>>;
|
|
14798
14902
|
}, "strict", z.ZodTypeAny, {
|
|
14799
14903
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14800
14904
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14801
|
-
color?: string | Prisma.
|
|
14905
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14802
14906
|
assignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14803
14907
|
}, {
|
|
14804
14908
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14805
14909
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14806
|
-
color?: string | Prisma.
|
|
14910
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14807
14911
|
assignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14808
14912
|
}>;
|
|
14809
14913
|
|
|
@@ -14844,7 +14948,7 @@ declare const EmployeeRoleWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
14844
14948
|
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EmployeeRoleWhereInput, z.ZodTypeDef, Prisma.EmployeeRoleWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleWhereInput, z.ZodTypeDef, Prisma.EmployeeRoleWhereInput>>, "many">]>>;
|
|
14845
14949
|
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
|
14846
14950
|
name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
14847
|
-
color: z.
|
|
14951
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
14848
14952
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
14849
14953
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentListRelationFilter, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentListRelationFilter>>>;
|
|
14850
14954
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionListRelationFilter, z.ZodTypeDef, Prisma.EmployeeRolePermissionListRelationFilter>>>;
|
|
@@ -14852,7 +14956,7 @@ declare const EmployeeRoleWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
14852
14956
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
14853
14957
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
14854
14958
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
14855
|
-
color?: string | Prisma.
|
|
14959
|
+
color?: string | Prisma.StringFilter<never> | undefined;
|
|
14856
14960
|
AND?: Prisma.EmployeeRoleWhereInput | Prisma.EmployeeRoleWhereInput[] | undefined;
|
|
14857
14961
|
OR?: Prisma.EmployeeRoleWhereInput[] | undefined;
|
|
14858
14962
|
NOT?: Prisma.EmployeeRoleWhereInput | Prisma.EmployeeRoleWhereInput[] | undefined;
|
|
@@ -14862,7 +14966,7 @@ declare const EmployeeRoleWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
14862
14966
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
14863
14967
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
14864
14968
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
14865
|
-
color?: string | Prisma.
|
|
14969
|
+
color?: string | Prisma.StringFilter<never> | undefined;
|
|
14866
14970
|
AND?: Prisma.EmployeeRoleWhereInput | Prisma.EmployeeRoleWhereInput[] | undefined;
|
|
14867
14971
|
OR?: Prisma.EmployeeRoleWhereInput[] | undefined;
|
|
14868
14972
|
NOT?: Prisma.EmployeeRoleWhereInput | Prisma.EmployeeRoleWhereInput[] | undefined;
|
|
@@ -14904,6 +15008,7 @@ declare const EmployeeScalarWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
14904
15008
|
password: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
14905
15009
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
14906
15010
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
15011
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
|
|
14907
15012
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
14908
15013
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BoolFilter<never>, z.ZodTypeDef, Prisma.BoolFilter<never>>>, z.ZodBoolean]>>;
|
|
14909
15014
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeNullableFilter<never>, z.ZodTypeDef, Prisma.DateTimeNullableFilter<never>>>, z.ZodDate]>>>;
|
|
@@ -14914,6 +15019,7 @@ declare const EmployeeScalarWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
14914
15019
|
password?: string | Prisma.StringFilter<never> | undefined;
|
|
14915
15020
|
firstName?: string | Prisma.StringFilter<never> | undefined;
|
|
14916
15021
|
lastName?: string | Prisma.StringFilter<never> | undefined;
|
|
15022
|
+
phone?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
14917
15023
|
warehouseId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
14918
15024
|
isActive?: boolean | Prisma.BoolFilter<never> | undefined;
|
|
14919
15025
|
lastSeen?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
@@ -14927,6 +15033,7 @@ declare const EmployeeScalarWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
14927
15033
|
password?: string | Prisma.StringFilter<never> | undefined;
|
|
14928
15034
|
firstName?: string | Prisma.StringFilter<never> | undefined;
|
|
14929
15035
|
lastName?: string | Prisma.StringFilter<never> | undefined;
|
|
15036
|
+
phone?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
14930
15037
|
warehouseId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
14931
15038
|
isActive?: boolean | Prisma.BoolFilter<never> | undefined;
|
|
14932
15039
|
lastSeen?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
@@ -14946,6 +15053,7 @@ declare const EmployeeScalarWhereWithAggregatesInputObjectZodSchema: z.ZodObject
|
|
|
14946
15053
|
password: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
|
|
14947
15054
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
|
|
14948
15055
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
|
|
15056
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringNullableWithAggregatesFilter<never>>>, z.ZodString]>>>;
|
|
14949
15057
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntNullableWithAggregatesFilter<never>>>, z.ZodNumber]>>>;
|
|
14950
15058
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BoolWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.BoolWithAggregatesFilter<never>>>, z.ZodBoolean]>>;
|
|
14951
15059
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.DateTimeNullableWithAggregatesFilter<never>>>, z.ZodDate]>>>;
|
|
@@ -14956,6 +15064,7 @@ declare const EmployeeScalarWhereWithAggregatesInputObjectZodSchema: z.ZodObject
|
|
|
14956
15064
|
password?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
14957
15065
|
firstName?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
14958
15066
|
lastName?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
15067
|
+
phone?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
|
|
14959
15068
|
warehouseId?: number | Prisma.IntNullableWithAggregatesFilter<never> | null | undefined;
|
|
14960
15069
|
isActive?: boolean | Prisma.BoolWithAggregatesFilter<never> | undefined;
|
|
14961
15070
|
lastSeen?: Date | Prisma.DateTimeNullableWithAggregatesFilter<never> | null | undefined;
|
|
@@ -14969,6 +15078,7 @@ declare const EmployeeScalarWhereWithAggregatesInputObjectZodSchema: z.ZodObject
|
|
|
14969
15078
|
password?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
14970
15079
|
firstName?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
14971
15080
|
lastName?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
15081
|
+
phone?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
|
|
14972
15082
|
warehouseId?: number | Prisma.IntNullableWithAggregatesFilter<never> | null | undefined;
|
|
14973
15083
|
isActive?: boolean | Prisma.BoolWithAggregatesFilter<never> | undefined;
|
|
14974
15084
|
lastSeen?: Date | Prisma.DateTimeNullableWithAggregatesFilter<never> | null | undefined;
|
|
@@ -14985,6 +15095,7 @@ declare const EmployeeSelectObjectZodSchema: z.ZodObject<{
|
|
|
14985
15095
|
password: z.ZodOptional<z.ZodBoolean>;
|
|
14986
15096
|
firstName: z.ZodOptional<z.ZodBoolean>;
|
|
14987
15097
|
lastName: z.ZodOptional<z.ZodBoolean>;
|
|
15098
|
+
phone: z.ZodOptional<z.ZodBoolean>;
|
|
14988
15099
|
warehouseId: z.ZodOptional<z.ZodBoolean>;
|
|
14989
15100
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
14990
15101
|
lastSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -15013,6 +15124,7 @@ declare const EmployeeSelectObjectZodSchema: z.ZodObject<{
|
|
|
15013
15124
|
password?: boolean | undefined;
|
|
15014
15125
|
firstName?: boolean | undefined;
|
|
15015
15126
|
lastName?: boolean | undefined;
|
|
15127
|
+
phone?: boolean | undefined;
|
|
15016
15128
|
warehouseId?: boolean | undefined;
|
|
15017
15129
|
isActive?: boolean | undefined;
|
|
15018
15130
|
lastSeen?: boolean | undefined;
|
|
@@ -15031,6 +15143,7 @@ declare const EmployeeSelectObjectZodSchema: z.ZodObject<{
|
|
|
15031
15143
|
password?: boolean | undefined;
|
|
15032
15144
|
firstName?: boolean | undefined;
|
|
15033
15145
|
lastName?: boolean | undefined;
|
|
15146
|
+
phone?: boolean | undefined;
|
|
15034
15147
|
warehouseId?: boolean | undefined;
|
|
15035
15148
|
isActive?: boolean | undefined;
|
|
15036
15149
|
lastSeen?: boolean | undefined;
|
|
@@ -15070,6 +15183,7 @@ declare const EmployeeUncheckedCreateInputObjectZodSchema: z.ZodObject<{
|
|
|
15070
15183
|
password: z.ZodString;
|
|
15071
15184
|
firstName: z.ZodString;
|
|
15072
15185
|
lastName: z.ZodString;
|
|
15186
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15073
15187
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
15074
15188
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
15075
15189
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
@@ -15080,6 +15194,7 @@ declare const EmployeeUncheckedCreateInputObjectZodSchema: z.ZodObject<{
|
|
|
15080
15194
|
firstName: string;
|
|
15081
15195
|
lastName: string;
|
|
15082
15196
|
id?: string | undefined;
|
|
15197
|
+
phone?: string | null | undefined;
|
|
15083
15198
|
warehouseId?: number | null | undefined;
|
|
15084
15199
|
isActive?: boolean | undefined;
|
|
15085
15200
|
lastSeen?: Date | null | undefined;
|
|
@@ -15090,6 +15205,7 @@ declare const EmployeeUncheckedCreateInputObjectZodSchema: z.ZodObject<{
|
|
|
15090
15205
|
firstName: string;
|
|
15091
15206
|
lastName: string;
|
|
15092
15207
|
id?: string | undefined;
|
|
15208
|
+
phone?: string | null | undefined;
|
|
15093
15209
|
warehouseId?: number | null | undefined;
|
|
15094
15210
|
isActive?: boolean | undefined;
|
|
15095
15211
|
lastSeen?: Date | null | undefined;
|
|
@@ -15121,6 +15237,7 @@ declare const EmployeeUncheckedCreateWithoutRoleAssignmentsInputObjectZodSchema:
|
|
|
15121
15237
|
password: z.ZodString;
|
|
15122
15238
|
firstName: z.ZodString;
|
|
15123
15239
|
lastName: z.ZodString;
|
|
15240
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15124
15241
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
15125
15242
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
15126
15243
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
@@ -15131,6 +15248,7 @@ declare const EmployeeUncheckedCreateWithoutRoleAssignmentsInputObjectZodSchema:
|
|
|
15131
15248
|
firstName: string;
|
|
15132
15249
|
lastName: string;
|
|
15133
15250
|
id?: string | undefined;
|
|
15251
|
+
phone?: string | null | undefined;
|
|
15134
15252
|
warehouseId?: number | null | undefined;
|
|
15135
15253
|
isActive?: boolean | undefined;
|
|
15136
15254
|
lastSeen?: Date | null | undefined;
|
|
@@ -15141,6 +15259,7 @@ declare const EmployeeUncheckedCreateWithoutRoleAssignmentsInputObjectZodSchema:
|
|
|
15141
15259
|
firstName: string;
|
|
15142
15260
|
lastName: string;
|
|
15143
15261
|
id?: string | undefined;
|
|
15262
|
+
phone?: string | null | undefined;
|
|
15144
15263
|
warehouseId?: number | null | undefined;
|
|
15145
15264
|
isActive?: boolean | undefined;
|
|
15146
15265
|
lastSeen?: Date | null | undefined;
|
|
@@ -15154,6 +15273,7 @@ declare const EmployeeUncheckedCreateWithoutWarehouseInputObjectZodSchema: z.Zod
|
|
|
15154
15273
|
password: z.ZodString;
|
|
15155
15274
|
firstName: z.ZodString;
|
|
15156
15275
|
lastName: z.ZodString;
|
|
15276
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15157
15277
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
15158
15278
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
15159
15279
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -15164,6 +15284,7 @@ declare const EmployeeUncheckedCreateWithoutWarehouseInputObjectZodSchema: z.Zod
|
|
|
15164
15284
|
firstName: string;
|
|
15165
15285
|
lastName: string;
|
|
15166
15286
|
id?: string | undefined;
|
|
15287
|
+
phone?: string | null | undefined;
|
|
15167
15288
|
isActive?: boolean | undefined;
|
|
15168
15289
|
lastSeen?: Date | null | undefined;
|
|
15169
15290
|
updatedAt?: Date | undefined;
|
|
@@ -15174,6 +15295,7 @@ declare const EmployeeUncheckedCreateWithoutWarehouseInputObjectZodSchema: z.Zod
|
|
|
15174
15295
|
firstName: string;
|
|
15175
15296
|
lastName: string;
|
|
15176
15297
|
id?: string | undefined;
|
|
15298
|
+
phone?: string | null | undefined;
|
|
15177
15299
|
isActive?: boolean | undefined;
|
|
15178
15300
|
lastSeen?: Date | null | undefined;
|
|
15179
15301
|
updatedAt?: Date | undefined;
|
|
@@ -15187,6 +15309,7 @@ declare const EmployeeUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
15187
15309
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15188
15310
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15189
15311
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15312
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15190
15313
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
15191
15314
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15192
15315
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
@@ -15198,6 +15321,7 @@ declare const EmployeeUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
15198
15321
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15199
15322
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15200
15323
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15324
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15201
15325
|
warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
15202
15326
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15203
15327
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
@@ -15209,6 +15333,7 @@ declare const EmployeeUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
15209
15333
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15210
15334
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15211
15335
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15336
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15212
15337
|
warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
15213
15338
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15214
15339
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
@@ -15223,6 +15348,7 @@ declare const EmployeeUncheckedUpdateManyInputObjectZodSchema: z.ZodObject<{
|
|
|
15223
15348
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15224
15349
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15225
15350
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15351
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15226
15352
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
15227
15353
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15228
15354
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
@@ -15233,6 +15359,7 @@ declare const EmployeeUncheckedUpdateManyInputObjectZodSchema: z.ZodObject<{
|
|
|
15233
15359
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15234
15360
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15235
15361
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15362
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15236
15363
|
warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
15237
15364
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15238
15365
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
@@ -15243,6 +15370,7 @@ declare const EmployeeUncheckedUpdateManyInputObjectZodSchema: z.ZodObject<{
|
|
|
15243
15370
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15244
15371
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15245
15372
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15373
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15246
15374
|
warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
15247
15375
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15248
15376
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
@@ -15256,6 +15384,7 @@ declare const EmployeeUncheckedUpdateManyWithoutWarehouseInputObjectZodSchema: z
|
|
|
15256
15384
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15257
15385
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15258
15386
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15387
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15259
15388
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15260
15389
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
15261
15390
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
@@ -15265,6 +15394,7 @@ declare const EmployeeUncheckedUpdateManyWithoutWarehouseInputObjectZodSchema: z
|
|
|
15265
15394
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15266
15395
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15267
15396
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15397
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15268
15398
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15269
15399
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15270
15400
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15274,6 +15404,7 @@ declare const EmployeeUncheckedUpdateManyWithoutWarehouseInputObjectZodSchema: z
|
|
|
15274
15404
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15275
15405
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15276
15406
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15407
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15277
15408
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15278
15409
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15279
15410
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15325,6 +15456,7 @@ declare const EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectZodSchema:
|
|
|
15325
15456
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15326
15457
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15327
15458
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15459
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15328
15460
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
15329
15461
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15330
15462
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
@@ -15335,6 +15467,7 @@ declare const EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectZodSchema:
|
|
|
15335
15467
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15336
15468
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15337
15469
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15470
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15338
15471
|
warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
15339
15472
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15340
15473
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
@@ -15345,6 +15478,7 @@ declare const EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectZodSchema:
|
|
|
15345
15478
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15346
15479
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15347
15480
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15481
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15348
15482
|
warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
15349
15483
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15350
15484
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
@@ -15358,6 +15492,7 @@ declare const EmployeeUncheckedUpdateWithoutWarehouseInputObjectZodSchema: z.Zod
|
|
|
15358
15492
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15359
15493
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15360
15494
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15495
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15361
15496
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15362
15497
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
15363
15498
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
@@ -15368,6 +15503,7 @@ declare const EmployeeUncheckedUpdateWithoutWarehouseInputObjectZodSchema: z.Zod
|
|
|
15368
15503
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15369
15504
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15370
15505
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15506
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15371
15507
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15372
15508
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15373
15509
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15378,6 +15514,7 @@ declare const EmployeeUncheckedUpdateWithoutWarehouseInputObjectZodSchema: z.Zod
|
|
|
15378
15514
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15379
15515
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15380
15516
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15517
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15381
15518
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15382
15519
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15383
15520
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15391,6 +15528,7 @@ declare const EmployeeUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
15391
15528
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15392
15529
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15393
15530
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15531
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15394
15532
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15395
15533
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
15396
15534
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
@@ -15402,6 +15540,7 @@ declare const EmployeeUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
15402
15540
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15403
15541
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15404
15542
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15543
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15405
15544
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15406
15545
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15407
15546
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15413,6 +15552,7 @@ declare const EmployeeUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
15413
15552
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15414
15553
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15415
15554
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15555
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15416
15556
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15417
15557
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15418
15558
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15427,6 +15567,7 @@ declare const EmployeeUpdateManyMutationInputObjectZodSchema: z.ZodObject<{
|
|
|
15427
15567
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15428
15568
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15429
15569
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15570
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15430
15571
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15431
15572
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
15432
15573
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
@@ -15436,6 +15577,7 @@ declare const EmployeeUpdateManyMutationInputObjectZodSchema: z.ZodObject<{
|
|
|
15436
15577
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15437
15578
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15438
15579
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15580
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15439
15581
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15440
15582
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15441
15583
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15445,6 +15587,7 @@ declare const EmployeeUpdateManyMutationInputObjectZodSchema: z.ZodObject<{
|
|
|
15445
15587
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15446
15588
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15447
15589
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15590
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15448
15591
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15449
15592
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15450
15593
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15553,6 +15696,7 @@ declare const EmployeeUpdateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObj
|
|
|
15553
15696
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15554
15697
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15555
15698
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15699
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15556
15700
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15557
15701
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
15558
15702
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
@@ -15563,6 +15707,7 @@ declare const EmployeeUpdateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObj
|
|
|
15563
15707
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15564
15708
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15565
15709
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15710
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15566
15711
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15567
15712
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15568
15713
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15573,6 +15718,7 @@ declare const EmployeeUpdateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObj
|
|
|
15573
15718
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15574
15719
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15575
15720
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15721
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15576
15722
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15577
15723
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15578
15724
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15586,6 +15732,7 @@ declare const EmployeeUpdateWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
15586
15732
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15587
15733
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15588
15734
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15735
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15589
15736
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15590
15737
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
15591
15738
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
@@ -15596,6 +15743,7 @@ declare const EmployeeUpdateWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
15596
15743
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15597
15744
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15598
15745
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15746
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15599
15747
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15600
15748
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15601
15749
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15606,6 +15754,7 @@ declare const EmployeeUpdateWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
15606
15754
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15607
15755
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15608
15756
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15757
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15609
15758
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15610
15759
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15611
15760
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15652,6 +15801,7 @@ declare const EmployeeWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
15652
15801
|
password: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
15653
15802
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
15654
15803
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
15804
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
|
|
15655
15805
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
15656
15806
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BoolFilter<never>, z.ZodTypeDef, Prisma.BoolFilter<never>>>, z.ZodBoolean]>>;
|
|
15657
15807
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeNullableFilter<never>, z.ZodTypeDef, Prisma.DateTimeNullableFilter<never>>>, z.ZodDate]>>>;
|
|
@@ -15664,6 +15814,7 @@ declare const EmployeeWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
15664
15814
|
password?: string | Prisma.StringFilter<never> | undefined;
|
|
15665
15815
|
firstName?: string | Prisma.StringFilter<never> | undefined;
|
|
15666
15816
|
lastName?: string | Prisma.StringFilter<never> | undefined;
|
|
15817
|
+
phone?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
15667
15818
|
warehouseId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
15668
15819
|
isActive?: boolean | Prisma.BoolFilter<never> | undefined;
|
|
15669
15820
|
lastSeen?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
@@ -15679,6 +15830,7 @@ declare const EmployeeWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
15679
15830
|
password?: string | Prisma.StringFilter<never> | undefined;
|
|
15680
15831
|
firstName?: string | Prisma.StringFilter<never> | undefined;
|
|
15681
15832
|
lastName?: string | Prisma.StringFilter<never> | undefined;
|
|
15833
|
+
phone?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
15682
15834
|
warehouseId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
15683
15835
|
isActive?: boolean | Prisma.BoolFilter<never> | undefined;
|
|
15684
15836
|
lastSeen?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
@@ -20589,6 +20741,7 @@ declare const EmployeeModelSchema: z.ZodObject<{
|
|
|
20589
20741
|
password: z.ZodString;
|
|
20590
20742
|
firstName: z.ZodString;
|
|
20591
20743
|
lastName: z.ZodString;
|
|
20744
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
20592
20745
|
warehouseId: z.ZodNullable<z.ZodNumber>;
|
|
20593
20746
|
isActive: z.ZodBoolean;
|
|
20594
20747
|
lastSeen: z.ZodNullable<z.ZodDate>;
|
|
@@ -20601,6 +20754,7 @@ declare const EmployeeModelSchema: z.ZodObject<{
|
|
|
20601
20754
|
password: string;
|
|
20602
20755
|
firstName: string;
|
|
20603
20756
|
lastName: string;
|
|
20757
|
+
phone: string | null;
|
|
20604
20758
|
warehouseId: number | null;
|
|
20605
20759
|
isActive: boolean;
|
|
20606
20760
|
lastSeen: Date | null;
|
|
@@ -20613,6 +20767,7 @@ declare const EmployeeModelSchema: z.ZodObject<{
|
|
|
20613
20767
|
password: string;
|
|
20614
20768
|
firstName: string;
|
|
20615
20769
|
lastName: string;
|
|
20770
|
+
phone: string | null;
|
|
20616
20771
|
warehouseId: number | null;
|
|
20617
20772
|
isActive: boolean;
|
|
20618
20773
|
lastSeen: Date | null;
|
|
@@ -20625,7 +20780,7 @@ type EmployeePureType = z.infer<typeof EmployeeModelSchema>;
|
|
|
20625
20780
|
declare const EmployeeRoleModelSchema: z.ZodObject<{
|
|
20626
20781
|
id: z.ZodNumber;
|
|
20627
20782
|
name: z.ZodString;
|
|
20628
|
-
color: z.
|
|
20783
|
+
color: z.ZodString;
|
|
20629
20784
|
updatedAt: z.ZodDate;
|
|
20630
20785
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
20631
20786
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -20633,14 +20788,14 @@ declare const EmployeeRoleModelSchema: z.ZodObject<{
|
|
|
20633
20788
|
id: number;
|
|
20634
20789
|
updatedAt: Date;
|
|
20635
20790
|
name: string;
|
|
20636
|
-
color: string
|
|
20791
|
+
color: string;
|
|
20637
20792
|
assignments: unknown[];
|
|
20638
20793
|
permissions: unknown[];
|
|
20639
20794
|
}, {
|
|
20640
20795
|
id: number;
|
|
20641
20796
|
updatedAt: Date;
|
|
20642
20797
|
name: string;
|
|
20643
|
-
color: string
|
|
20798
|
+
color: string;
|
|
20644
20799
|
assignments: unknown[];
|
|
20645
20800
|
permissions: unknown[];
|
|
20646
20801
|
}>;
|
|
@@ -20835,6 +20990,7 @@ declare const EmployeeInputSchema: z.ZodObject<{
|
|
|
20835
20990
|
password: z.ZodString;
|
|
20836
20991
|
firstName: z.ZodString;
|
|
20837
20992
|
lastName: z.ZodString;
|
|
20993
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20838
20994
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
20839
20995
|
isActive: z.ZodBoolean;
|
|
20840
20996
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
@@ -20850,6 +21006,7 @@ declare const EmployeeInputSchema: z.ZodObject<{
|
|
|
20850
21006
|
isActive: boolean;
|
|
20851
21007
|
updatedAt: Date;
|
|
20852
21008
|
roleAssignments: unknown[];
|
|
21009
|
+
phone?: string | null | undefined;
|
|
20853
21010
|
warehouseId?: number | null | undefined;
|
|
20854
21011
|
lastSeen?: Date | null | undefined;
|
|
20855
21012
|
warehouse?: unknown;
|
|
@@ -20862,6 +21019,7 @@ declare const EmployeeInputSchema: z.ZodObject<{
|
|
|
20862
21019
|
isActive: boolean;
|
|
20863
21020
|
updatedAt: Date;
|
|
20864
21021
|
roleAssignments: unknown[];
|
|
21022
|
+
phone?: string | null | undefined;
|
|
20865
21023
|
warehouseId?: number | null | undefined;
|
|
20866
21024
|
lastSeen?: Date | null | undefined;
|
|
20867
21025
|
warehouse?: unknown;
|
|
@@ -20871,7 +21029,7 @@ type EmployeeInputType = z.infer<typeof EmployeeInputSchema>;
|
|
|
20871
21029
|
declare const EmployeeRoleInputSchema: z.ZodObject<{
|
|
20872
21030
|
id: z.ZodNumber;
|
|
20873
21031
|
name: z.ZodString;
|
|
20874
|
-
color: z.
|
|
21032
|
+
color: z.ZodString;
|
|
20875
21033
|
updatedAt: z.ZodDate;
|
|
20876
21034
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
20877
21035
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -20879,16 +21037,16 @@ declare const EmployeeRoleInputSchema: z.ZodObject<{
|
|
|
20879
21037
|
id: number;
|
|
20880
21038
|
updatedAt: Date;
|
|
20881
21039
|
name: string;
|
|
21040
|
+
color: string;
|
|
20882
21041
|
assignments: unknown[];
|
|
20883
21042
|
permissions: unknown[];
|
|
20884
|
-
color?: string | null | undefined;
|
|
20885
21043
|
}, {
|
|
20886
21044
|
id: number;
|
|
20887
21045
|
updatedAt: Date;
|
|
20888
21046
|
name: string;
|
|
21047
|
+
color: string;
|
|
20889
21048
|
assignments: unknown[];
|
|
20890
21049
|
permissions: unknown[];
|
|
20891
|
-
color?: string | null | undefined;
|
|
20892
21050
|
}>;
|
|
20893
21051
|
type EmployeeRoleInputType = z.infer<typeof EmployeeRoleInputSchema>;
|
|
20894
21052
|
|
|
@@ -21081,6 +21239,7 @@ declare const EmployeeResultSchema: z.ZodObject<{
|
|
|
21081
21239
|
password: z.ZodString;
|
|
21082
21240
|
firstName: z.ZodString;
|
|
21083
21241
|
lastName: z.ZodString;
|
|
21242
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
21084
21243
|
warehouseId: z.ZodNullable<z.ZodNumber>;
|
|
21085
21244
|
isActive: z.ZodBoolean;
|
|
21086
21245
|
lastSeen: z.ZodNullable<z.ZodDate>;
|
|
@@ -21093,6 +21252,7 @@ declare const EmployeeResultSchema: z.ZodObject<{
|
|
|
21093
21252
|
password: string;
|
|
21094
21253
|
firstName: string;
|
|
21095
21254
|
lastName: string;
|
|
21255
|
+
phone: string | null;
|
|
21096
21256
|
warehouseId: number | null;
|
|
21097
21257
|
isActive: boolean;
|
|
21098
21258
|
lastSeen: Date | null;
|
|
@@ -21105,6 +21265,7 @@ declare const EmployeeResultSchema: z.ZodObject<{
|
|
|
21105
21265
|
password: string;
|
|
21106
21266
|
firstName: string;
|
|
21107
21267
|
lastName: string;
|
|
21268
|
+
phone: string | null;
|
|
21108
21269
|
warehouseId: number | null;
|
|
21109
21270
|
isActive: boolean;
|
|
21110
21271
|
lastSeen: Date | null;
|
|
@@ -21117,7 +21278,7 @@ type EmployeeResultType = z.infer<typeof EmployeeResultSchema>;
|
|
|
21117
21278
|
declare const EmployeeRoleResultSchema: z.ZodObject<{
|
|
21118
21279
|
id: z.ZodNumber;
|
|
21119
21280
|
name: z.ZodString;
|
|
21120
|
-
color: z.
|
|
21281
|
+
color: z.ZodString;
|
|
21121
21282
|
updatedAt: z.ZodDate;
|
|
21122
21283
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
21123
21284
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -21125,14 +21286,14 @@ declare const EmployeeRoleResultSchema: z.ZodObject<{
|
|
|
21125
21286
|
id: number;
|
|
21126
21287
|
updatedAt: Date;
|
|
21127
21288
|
name: string;
|
|
21128
|
-
color: string
|
|
21289
|
+
color: string;
|
|
21129
21290
|
assignments: unknown[];
|
|
21130
21291
|
permissions: unknown[];
|
|
21131
21292
|
}, {
|
|
21132
21293
|
id: number;
|
|
21133
21294
|
updatedAt: Date;
|
|
21134
21295
|
name: string;
|
|
21135
|
-
color: string
|
|
21296
|
+
color: string;
|
|
21136
21297
|
assignments: unknown[];
|
|
21137
21298
|
permissions: unknown[];
|
|
21138
21299
|
}>;
|
|
@@ -21555,7 +21716,7 @@ type Country = z$1.infer<typeof CountrySchema>;
|
|
|
21555
21716
|
|
|
21556
21717
|
declare const EmployeeRoleSchema: z$1.ZodObject<{
|
|
21557
21718
|
name: z$1.ZodString;
|
|
21558
|
-
color: z$1.
|
|
21719
|
+
color: z$1.ZodString;
|
|
21559
21720
|
} & {
|
|
21560
21721
|
id: z$1.ZodNumber;
|
|
21561
21722
|
updatedAt: z$1.ZodString;
|
|
@@ -21563,12 +21724,12 @@ declare const EmployeeRoleSchema: z$1.ZodObject<{
|
|
|
21563
21724
|
id: number;
|
|
21564
21725
|
updatedAt: string;
|
|
21565
21726
|
name: string;
|
|
21566
|
-
color: string
|
|
21727
|
+
color: string;
|
|
21567
21728
|
}, {
|
|
21568
21729
|
id: number;
|
|
21569
21730
|
updatedAt: string;
|
|
21570
21731
|
name: string;
|
|
21571
|
-
color: string
|
|
21732
|
+
color: string;
|
|
21572
21733
|
}>;
|
|
21573
21734
|
declare const EmployeeSchema: z$1.ZodObject<{
|
|
21574
21735
|
id: z$1.ZodString;
|
|
@@ -21584,7 +21745,7 @@ declare const EmployeeSchema: z$1.ZodObject<{
|
|
|
21584
21745
|
roleAssignments: z$1.ZodArray<z$1.ZodObject<{
|
|
21585
21746
|
employeeRole: z$1.ZodObject<{
|
|
21586
21747
|
name: z$1.ZodString;
|
|
21587
|
-
color: z$1.
|
|
21748
|
+
color: z$1.ZodString;
|
|
21588
21749
|
} & {
|
|
21589
21750
|
id: z$1.ZodNumber;
|
|
21590
21751
|
updatedAt: z$1.ZodString;
|
|
@@ -21592,26 +21753,26 @@ declare const EmployeeSchema: z$1.ZodObject<{
|
|
|
21592
21753
|
id: number;
|
|
21593
21754
|
updatedAt: string;
|
|
21594
21755
|
name: string;
|
|
21595
|
-
color: string
|
|
21756
|
+
color: string;
|
|
21596
21757
|
}, {
|
|
21597
21758
|
id: number;
|
|
21598
21759
|
updatedAt: string;
|
|
21599
21760
|
name: string;
|
|
21600
|
-
color: string
|
|
21761
|
+
color: string;
|
|
21601
21762
|
}>;
|
|
21602
21763
|
}, "strip", z$1.ZodTypeAny, {
|
|
21603
21764
|
employeeRole: {
|
|
21604
21765
|
id: number;
|
|
21605
21766
|
updatedAt: string;
|
|
21606
21767
|
name: string;
|
|
21607
|
-
color: string
|
|
21768
|
+
color: string;
|
|
21608
21769
|
};
|
|
21609
21770
|
}, {
|
|
21610
21771
|
employeeRole: {
|
|
21611
21772
|
id: number;
|
|
21612
21773
|
updatedAt: string;
|
|
21613
21774
|
name: string;
|
|
21614
|
-
color: string
|
|
21775
|
+
color: string;
|
|
21615
21776
|
};
|
|
21616
21777
|
}>, "many">;
|
|
21617
21778
|
}, "strict", z$1.ZodTypeAny, {
|
|
@@ -21619,6 +21780,7 @@ declare const EmployeeSchema: z$1.ZodObject<{
|
|
|
21619
21780
|
email: string;
|
|
21620
21781
|
firstName: string;
|
|
21621
21782
|
lastName: string;
|
|
21783
|
+
phone: string | null;
|
|
21622
21784
|
warehouseId: number | null;
|
|
21623
21785
|
isActive: boolean;
|
|
21624
21786
|
lastSeen: string | null;
|
|
@@ -21628,15 +21790,15 @@ declare const EmployeeSchema: z$1.ZodObject<{
|
|
|
21628
21790
|
id: number;
|
|
21629
21791
|
updatedAt: string;
|
|
21630
21792
|
name: string;
|
|
21631
|
-
color: string
|
|
21793
|
+
color: string;
|
|
21632
21794
|
};
|
|
21633
21795
|
}[];
|
|
21634
|
-
phone: string | null;
|
|
21635
21796
|
}, {
|
|
21636
21797
|
id: string;
|
|
21637
21798
|
email: string;
|
|
21638
21799
|
firstName: string;
|
|
21639
21800
|
lastName: string;
|
|
21801
|
+
phone: string | null;
|
|
21640
21802
|
warehouseId: number | null;
|
|
21641
21803
|
isActive: boolean;
|
|
21642
21804
|
lastSeen: string | null;
|
|
@@ -21646,10 +21808,9 @@ declare const EmployeeSchema: z$1.ZodObject<{
|
|
|
21646
21808
|
id: number;
|
|
21647
21809
|
updatedAt: string;
|
|
21648
21810
|
name: string;
|
|
21649
|
-
color: string
|
|
21811
|
+
color: string;
|
|
21650
21812
|
};
|
|
21651
21813
|
}[];
|
|
21652
|
-
phone: string | null;
|
|
21653
21814
|
}>;
|
|
21654
21815
|
type EmployeeRole = z$1.infer<typeof EmployeeRoleSchema>;
|
|
21655
21816
|
type Employee = z$1.infer<typeof EmployeeSchema>;
|
|
@@ -21666,16 +21827,16 @@ declare const CreateEmployeeSchema: z$1.ZodObject<{
|
|
|
21666
21827
|
password: string;
|
|
21667
21828
|
firstName: string;
|
|
21668
21829
|
lastName: string;
|
|
21669
|
-
warehouseId?: number | undefined;
|
|
21670
21830
|
phone?: string | undefined;
|
|
21831
|
+
warehouseId?: number | undefined;
|
|
21671
21832
|
roleIds?: number[] | undefined;
|
|
21672
21833
|
}, {
|
|
21673
21834
|
email: string;
|
|
21674
21835
|
password: string;
|
|
21675
21836
|
firstName: string;
|
|
21676
21837
|
lastName: string;
|
|
21677
|
-
warehouseId?: number | undefined;
|
|
21678
21838
|
phone?: string | undefined;
|
|
21839
|
+
warehouseId?: number | undefined;
|
|
21679
21840
|
roleIds?: number[] | undefined;
|
|
21680
21841
|
}>;
|
|
21681
21842
|
type CreateEmployeeDto = z$1.infer<typeof CreateEmployeeSchema>;
|
|
@@ -21683,57 +21844,68 @@ declare const UpdateEmployeeSchema: z$1.ZodObject<{
|
|
|
21683
21844
|
firstName: z$1.ZodOptional<z$1.ZodString>;
|
|
21684
21845
|
lastName: z$1.ZodOptional<z$1.ZodString>;
|
|
21685
21846
|
phone: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
21686
|
-
isActive: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21687
21847
|
warehouseId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
|
|
21848
|
+
roleIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodNumber, "many">>;
|
|
21849
|
+
email: z$1.ZodOptional<z$1.ZodString>;
|
|
21850
|
+
newPassword: z$1.ZodOptional<z$1.ZodString>;
|
|
21851
|
+
isActive: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21688
21852
|
}, "strip", z$1.ZodTypeAny, {
|
|
21853
|
+
email?: string | undefined;
|
|
21689
21854
|
firstName?: string | undefined;
|
|
21690
21855
|
lastName?: string | undefined;
|
|
21856
|
+
phone?: string | null | undefined;
|
|
21691
21857
|
warehouseId?: number | null | undefined;
|
|
21692
21858
|
isActive?: boolean | undefined;
|
|
21693
|
-
|
|
21859
|
+
roleIds?: number[] | undefined;
|
|
21860
|
+
newPassword?: string | undefined;
|
|
21694
21861
|
}, {
|
|
21862
|
+
email?: string | undefined;
|
|
21695
21863
|
firstName?: string | undefined;
|
|
21696
21864
|
lastName?: string | undefined;
|
|
21865
|
+
phone?: string | null | undefined;
|
|
21697
21866
|
warehouseId?: number | null | undefined;
|
|
21698
21867
|
isActive?: boolean | undefined;
|
|
21699
|
-
|
|
21700
|
-
|
|
21701
|
-
declare const UpdateOwnEmailSchema: z$1.ZodObject<{
|
|
21702
|
-
email: z$1.ZodString;
|
|
21703
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
21704
|
-
email: string;
|
|
21705
|
-
}, {
|
|
21706
|
-
email: string;
|
|
21707
|
-
}>;
|
|
21708
|
-
declare const UpdateOwnPasswordSchema: z$1.ZodObject<{
|
|
21709
|
-
currentPassword: z$1.ZodString;
|
|
21710
|
-
newPassword: z$1.ZodString;
|
|
21711
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
21712
|
-
currentPassword: string;
|
|
21713
|
-
newPassword: string;
|
|
21714
|
-
}, {
|
|
21715
|
-
currentPassword: string;
|
|
21716
|
-
newPassword: string;
|
|
21868
|
+
roleIds?: number[] | undefined;
|
|
21869
|
+
newPassword?: string | undefined;
|
|
21717
21870
|
}>;
|
|
21718
|
-
declare const
|
|
21719
|
-
|
|
21871
|
+
declare const UpdateOwnProfileSchema: z$1.ZodEffects<z$1.ZodObject<{
|
|
21872
|
+
firstName: z$1.ZodOptional<z$1.ZodString>;
|
|
21873
|
+
lastName: z$1.ZodOptional<z$1.ZodString>;
|
|
21874
|
+
phone: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
21875
|
+
email: z$1.ZodOptional<z$1.ZodString>;
|
|
21876
|
+
currentPassword: z$1.ZodOptional<z$1.ZodString>;
|
|
21877
|
+
newPassword: z$1.ZodOptional<z$1.ZodString>;
|
|
21720
21878
|
}, "strip", z$1.ZodTypeAny, {
|
|
21721
|
-
email
|
|
21879
|
+
email?: string | undefined;
|
|
21880
|
+
firstName?: string | undefined;
|
|
21881
|
+
lastName?: string | undefined;
|
|
21882
|
+
phone?: string | null | undefined;
|
|
21883
|
+
newPassword?: string | undefined;
|
|
21884
|
+
currentPassword?: string | undefined;
|
|
21722
21885
|
}, {
|
|
21723
|
-
email
|
|
21724
|
-
|
|
21725
|
-
|
|
21726
|
-
|
|
21727
|
-
|
|
21728
|
-
|
|
21886
|
+
email?: string | undefined;
|
|
21887
|
+
firstName?: string | undefined;
|
|
21888
|
+
lastName?: string | undefined;
|
|
21889
|
+
phone?: string | null | undefined;
|
|
21890
|
+
newPassword?: string | undefined;
|
|
21891
|
+
currentPassword?: string | undefined;
|
|
21892
|
+
}>, {
|
|
21893
|
+
email?: string | undefined;
|
|
21894
|
+
firstName?: string | undefined;
|
|
21895
|
+
lastName?: string | undefined;
|
|
21896
|
+
phone?: string | null | undefined;
|
|
21897
|
+
newPassword?: string | undefined;
|
|
21898
|
+
currentPassword?: string | undefined;
|
|
21729
21899
|
}, {
|
|
21730
|
-
|
|
21900
|
+
email?: string | undefined;
|
|
21901
|
+
firstName?: string | undefined;
|
|
21902
|
+
lastName?: string | undefined;
|
|
21903
|
+
phone?: string | null | undefined;
|
|
21904
|
+
newPassword?: string | undefined;
|
|
21905
|
+
currentPassword?: string | undefined;
|
|
21731
21906
|
}>;
|
|
21732
21907
|
type UpdateEmployeeDto = z$1.infer<typeof UpdateEmployeeSchema>;
|
|
21733
|
-
type
|
|
21734
|
-
type UpdateOwnPasswordDto = z$1.infer<typeof UpdateOwnPasswordSchema>;
|
|
21735
|
-
type UpdateEmployeeEmailDto = z$1.infer<typeof UpdateEmployeeEmailSchema>;
|
|
21736
|
-
type UpdateEmployeePasswordDto = z$1.infer<typeof UpdateEmployeePasswordSchema>;
|
|
21908
|
+
type UpdateOwnProfileDto = z$1.infer<typeof UpdateOwnProfileSchema>;
|
|
21737
21909
|
|
|
21738
21910
|
declare const RolePermissionItemSchema: z$1.ZodObject<{
|
|
21739
21911
|
employeePermission: z$1.ZodObject<{
|
|
@@ -21759,7 +21931,7 @@ declare const RolePermissionItemSchema: z$1.ZodObject<{
|
|
|
21759
21931
|
}>;
|
|
21760
21932
|
declare const RoleSchema: z$1.ZodObject<{
|
|
21761
21933
|
name: z$1.ZodString;
|
|
21762
|
-
color: z$1.
|
|
21934
|
+
color: z$1.ZodString;
|
|
21763
21935
|
} & {
|
|
21764
21936
|
id: z$1.ZodNumber;
|
|
21765
21937
|
updatedAt: z$1.ZodString;
|
|
@@ -21789,7 +21961,7 @@ declare const RoleSchema: z$1.ZodObject<{
|
|
|
21789
21961
|
id: number;
|
|
21790
21962
|
updatedAt: string;
|
|
21791
21963
|
name: string;
|
|
21792
|
-
color: string
|
|
21964
|
+
color: string;
|
|
21793
21965
|
permissions: {
|
|
21794
21966
|
employeePermission: {
|
|
21795
21967
|
id: number;
|
|
@@ -21800,7 +21972,7 @@ declare const RoleSchema: z$1.ZodObject<{
|
|
|
21800
21972
|
id: number;
|
|
21801
21973
|
updatedAt: string;
|
|
21802
21974
|
name: string;
|
|
21803
|
-
color: string
|
|
21975
|
+
color: string;
|
|
21804
21976
|
permissions: {
|
|
21805
21977
|
employeePermission: {
|
|
21806
21978
|
id: number;
|
|
@@ -21838,4 +22010,4 @@ declare const UpdateRoleSchema: z$1.ZodObject<{
|
|
|
21838
22010
|
type CreateRoleDto = z$1.infer<typeof CreateRoleSchema>;
|
|
21839
22011
|
type UpdateRoleDto = z$1.infer<typeof UpdateRoleSchema>;
|
|
21840
22012
|
|
|
21841
|
-
export { ALL_PERMISSIONS, type AuthTokens, BoolFieldUpdateOperationsInputObjectSchema, BoolFieldUpdateOperationsInputObjectZodSchema, BoolFilterObjectSchema, BoolFilterObjectZodSchema, BoolWithAggregatesFilterObjectSchema, BoolWithAggregatesFilterObjectZodSchema, type Country, CountryAggregateResultSchema, CountryAggregateSchema, CountryAggregateZodSchema, CountryArgsObjectSchema, CountryArgsObjectZodSchema, CountryAvgAggregateInputObjectSchema, CountryAvgAggregateInputObjectZodSchema, CountryAvgOrderByAggregateInputObjectSchema, CountryAvgOrderByAggregateInputObjectZodSchema, CountryCountAggregateInputObjectSchema, CountryCountAggregateInputObjectZodSchema, CountryCountOrderByAggregateInputObjectSchema, CountryCountOrderByAggregateInputObjectZodSchema, CountryCountOutputTypeArgsObjectSchema, CountryCountOutputTypeArgsObjectZodSchema, CountryCountOutputTypeCountLocalitiesArgsObjectSchema, CountryCountOutputTypeCountLocalitiesArgsObjectZodSchema, CountryCountOutputTypeSelectObjectSchema, CountryCountOutputTypeSelectObjectZodSchema, CountryCountResultSchema, CountryCountSchema, CountryCountZodSchema, CountryCreateInputObjectSchema, CountryCreateInputObjectZodSchema, CountryCreateManyAndReturnSchema, CountryCreateManyAndReturnZodSchema, CountryCreateManyInputObjectSchema, CountryCreateManyInputObjectZodSchema, CountryCreateManyResultSchema, CountryCreateManySchema, CountryCreateManyZodSchema, CountryCreateNestedOneWithoutLocalitiesInputObjectSchema, CountryCreateNestedOneWithoutLocalitiesInputObjectZodSchema, CountryCreateOneSchema, CountryCreateOneZodSchema, CountryCreateOrConnectWithoutLocalitiesInputObjectSchema, CountryCreateOrConnectWithoutLocalitiesInputObjectZodSchema, CountryCreateResultSchema, CountryCreateWithoutLocalitiesInputObjectSchema, CountryCreateWithoutLocalitiesInputObjectZodSchema, 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, CountryUncheckedCreateWithoutLocalitiesInputObjectSchema, CountryUncheckedCreateWithoutLocalitiesInputObjectZodSchema, CountryUncheckedUpdateInputObjectSchema, CountryUncheckedUpdateInputObjectZodSchema, CountryUncheckedUpdateManyInputObjectSchema, CountryUncheckedUpdateManyInputObjectZodSchema, CountryUncheckedUpdateWithoutLocalitiesInputObjectSchema, CountryUncheckedUpdateWithoutLocalitiesInputObjectZodSchema, CountryUpdateInputObjectSchema, CountryUpdateInputObjectZodSchema, CountryUpdateManyAndReturnSchema, CountryUpdateManyAndReturnZodSchema, CountryUpdateManyMutationInputObjectSchema, CountryUpdateManyMutationInputObjectZodSchema, CountryUpdateManyResultSchema, CountryUpdateManySchema, CountryUpdateManyZodSchema, CountryUpdateOneRequiredWithoutLocalitiesNestedInputObjectSchema, CountryUpdateOneRequiredWithoutLocalitiesNestedInputObjectZodSchema, CountryUpdateOneSchema, CountryUpdateOneZodSchema, CountryUpdateResultSchema, CountryUpdateToOneWithWhereWithoutLocalitiesInputObjectSchema, CountryUpdateToOneWithWhereWithoutLocalitiesInputObjectZodSchema, CountryUpdateWithoutLocalitiesInputObjectSchema, CountryUpdateWithoutLocalitiesInputObjectZodSchema, CountryUpsertOneSchema, CountryUpsertOneZodSchema, CountryUpsertResultSchema, CountryUpsertWithoutLocalitiesInputObjectSchema, CountryUpsertWithoutLocalitiesInputObjectZodSchema, CountryWhereInputObjectSchema, CountryWhereInputObjectZodSchema, CountryWhereUniqueInputObjectSchema, CountryWhereUniqueInputObjectZodSchema, type CreateEmployeeDto, CreateEmployeeSchema, type CreateLocalityDto, CreateLocalitySchema, type CreateOrganizationDto, CreateOrganizationSchema, type CreateRoleDto, CreateRoleSchema, type CreateWarehouseDto, CreateWarehouseSchema, DateTimeFieldUpdateOperationsInputObjectSchema, DateTimeFieldUpdateOperationsInputObjectZodSchema, DateTimeFilterObjectSchema, DateTimeFilterObjectZodSchema, DateTimeNullableFilterObjectSchema, DateTimeNullableFilterObjectZodSchema, DateTimeNullableWithAggregatesFilterObjectSchema, DateTimeNullableWithAggregatesFilterObjectZodSchema, DateTimeWithAggregatesFilterObjectSchema, DateTimeWithAggregatesFilterObjectZodSchema, type Employee, 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, type EmployeeRole, 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, EmployeeRoleSchema, 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, EmployeeSchema, 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 Locality, LocalityAggregateResultSchema, LocalityAggregateSchema, LocalityAggregateZodSchema, LocalityArgsObjectSchema, LocalityArgsObjectZodSchema, LocalityAvgAggregateInputObjectSchema, LocalityAvgAggregateInputObjectZodSchema, LocalityAvgOrderByAggregateInputObjectSchema, LocalityAvgOrderByAggregateInputObjectZodSchema, LocalityCountAggregateInputObjectSchema, LocalityCountAggregateInputObjectZodSchema, LocalityCountOrderByAggregateInputObjectSchema, LocalityCountOrderByAggregateInputObjectZodSchema, LocalityCountOutputTypeArgsObjectSchema, LocalityCountOutputTypeArgsObjectZodSchema, LocalityCountOutputTypeCountWarehousesArgsObjectSchema, LocalityCountOutputTypeCountWarehousesArgsObjectZodSchema, LocalityCountOutputTypeSelectObjectSchema, LocalityCountOutputTypeSelectObjectZodSchema, LocalityCountResultSchema, LocalityCountSchema, LocalityCountZodSchema, LocalityCreateInputObjectSchema, LocalityCreateInputObjectZodSchema, LocalityCreateManyAndReturnSchema, LocalityCreateManyAndReturnZodSchema, LocalityCreateManyCountryInputEnvelopeObjectSchema, LocalityCreateManyCountryInputEnvelopeObjectZodSchema, LocalityCreateManyCountryInputObjectSchema, LocalityCreateManyCountryInputObjectZodSchema, LocalityCreateManyInputObjectSchema, LocalityCreateManyInputObjectZodSchema, LocalityCreateManyResultSchema, LocalityCreateManySchema, LocalityCreateManyZodSchema, LocalityCreateNestedManyWithoutCountryInputObjectSchema, LocalityCreateNestedManyWithoutCountryInputObjectZodSchema, LocalityCreateNestedOneWithoutWarehousesInputObjectSchema, LocalityCreateNestedOneWithoutWarehousesInputObjectZodSchema, LocalityCreateOneSchema, LocalityCreateOneZodSchema, LocalityCreateOrConnectWithoutCountryInputObjectSchema, LocalityCreateOrConnectWithoutCountryInputObjectZodSchema, LocalityCreateOrConnectWithoutWarehousesInputObjectSchema, LocalityCreateOrConnectWithoutWarehousesInputObjectZodSchema, LocalityCreateResultSchema, LocalityCreateWithoutCountryInputObjectSchema, LocalityCreateWithoutCountryInputObjectZodSchema, LocalityCreateWithoutWarehousesInputObjectSchema, LocalityCreateWithoutWarehousesInputObjectZodSchema, LocalityDeleteManyResultSchema, LocalityDeleteManySchema, LocalityDeleteManyZodSchema, LocalityDeleteOneSchema, LocalityDeleteOneZodSchema, LocalityDeleteResultSchema, LocalityFindFirstOrThrowSchema, LocalityFindFirstOrThrowSelectSchema, LocalityFindFirstOrThrowSelectZodSchema, LocalityFindFirstOrThrowZodSchema, LocalityFindFirstResultSchema, LocalityFindFirstSchema, LocalityFindFirstSelectSchema, LocalityFindFirstSelectZodSchema, LocalityFindFirstZodSchema, LocalityFindManyResultSchema, LocalityFindManySchema, LocalityFindManySelectSchema, LocalityFindManySelectZodSchema, LocalityFindManyZodSchema, LocalityFindUniqueOrThrowSchema, LocalityFindUniqueOrThrowZodSchema, LocalityFindUniqueResultSchema, LocalityFindUniqueSchema, LocalityFindUniqueZodSchema, LocalityGroupByResultSchema, LocalityGroupBySchema, LocalityGroupByZodSchema, LocalityIncludeObjectSchema, LocalityIncludeObjectZodSchema, LocalityInputSchema, type LocalityInputType, LocalityListRelationFilterObjectSchema, LocalityListRelationFilterObjectZodSchema, LocalityMaxAggregateInputObjectSchema, LocalityMaxAggregateInputObjectZodSchema, LocalityMaxOrderByAggregateInputObjectSchema, LocalityMaxOrderByAggregateInputObjectZodSchema, LocalityMinAggregateInputObjectSchema, LocalityMinAggregateInputObjectZodSchema, LocalityMinOrderByAggregateInputObjectSchema, LocalityMinOrderByAggregateInputObjectZodSchema, LocalityModelSchema, LocalityOrderByRelationAggregateInputObjectSchema, LocalityOrderByRelationAggregateInputObjectZodSchema, LocalityOrderByWithAggregationInputObjectSchema, LocalityOrderByWithAggregationInputObjectZodSchema, LocalityOrderByWithRelationInputObjectSchema, LocalityOrderByWithRelationInputObjectZodSchema, type LocalityPureType, LocalityResultSchema, type LocalityResultType, type LocalityScalarFieldEnum, LocalityScalarFieldEnumSchema, LocalityScalarRelationFilterObjectSchema, LocalityScalarRelationFilterObjectZodSchema, LocalityScalarWhereInputObjectSchema, LocalityScalarWhereInputObjectZodSchema, LocalityScalarWhereWithAggregatesInputObjectSchema, LocalityScalarWhereWithAggregatesInputObjectZodSchema, LocalitySchema, LocalitySelectObjectSchema, LocalitySelectObjectZodSchema, LocalitySumAggregateInputObjectSchema, LocalitySumAggregateInputObjectZodSchema, LocalitySumOrderByAggregateInputObjectSchema, LocalitySumOrderByAggregateInputObjectZodSchema, LocalityUncheckedCreateInputObjectSchema, LocalityUncheckedCreateInputObjectZodSchema, LocalityUncheckedCreateNestedManyWithoutCountryInputObjectSchema, LocalityUncheckedCreateNestedManyWithoutCountryInputObjectZodSchema, LocalityUncheckedCreateWithoutCountryInputObjectSchema, LocalityUncheckedCreateWithoutCountryInputObjectZodSchema, LocalityUncheckedCreateWithoutWarehousesInputObjectSchema, LocalityUncheckedCreateWithoutWarehousesInputObjectZodSchema, LocalityUncheckedUpdateInputObjectSchema, LocalityUncheckedUpdateInputObjectZodSchema, LocalityUncheckedUpdateManyInputObjectSchema, LocalityUncheckedUpdateManyInputObjectZodSchema, LocalityUncheckedUpdateManyWithoutCountryInputObjectSchema, LocalityUncheckedUpdateManyWithoutCountryInputObjectZodSchema, LocalityUncheckedUpdateManyWithoutCountryNestedInputObjectSchema, LocalityUncheckedUpdateManyWithoutCountryNestedInputObjectZodSchema, LocalityUncheckedUpdateWithoutCountryInputObjectSchema, LocalityUncheckedUpdateWithoutCountryInputObjectZodSchema, LocalityUncheckedUpdateWithoutWarehousesInputObjectSchema, LocalityUncheckedUpdateWithoutWarehousesInputObjectZodSchema, LocalityUpdateInputObjectSchema, LocalityUpdateInputObjectZodSchema, LocalityUpdateManyAndReturnSchema, LocalityUpdateManyAndReturnZodSchema, LocalityUpdateManyMutationInputObjectSchema, LocalityUpdateManyMutationInputObjectZodSchema, LocalityUpdateManyResultSchema, LocalityUpdateManySchema, LocalityUpdateManyWithWhereWithoutCountryInputObjectSchema, LocalityUpdateManyWithWhereWithoutCountryInputObjectZodSchema, LocalityUpdateManyWithoutCountryNestedInputObjectSchema, LocalityUpdateManyWithoutCountryNestedInputObjectZodSchema, LocalityUpdateManyZodSchema, LocalityUpdateOneRequiredWithoutWarehousesNestedInputObjectSchema, LocalityUpdateOneRequiredWithoutWarehousesNestedInputObjectZodSchema, LocalityUpdateOneSchema, LocalityUpdateOneZodSchema, LocalityUpdateResultSchema, LocalityUpdateToOneWithWhereWithoutWarehousesInputObjectSchema, LocalityUpdateToOneWithWhereWithoutWarehousesInputObjectZodSchema, LocalityUpdateWithWhereUniqueWithoutCountryInputObjectSchema, LocalityUpdateWithWhereUniqueWithoutCountryInputObjectZodSchema, LocalityUpdateWithoutCountryInputObjectSchema, LocalityUpdateWithoutCountryInputObjectZodSchema, LocalityUpdateWithoutWarehousesInputObjectSchema, LocalityUpdateWithoutWarehousesInputObjectZodSchema, LocalityUpsertOneSchema, LocalityUpsertOneZodSchema, LocalityUpsertResultSchema, LocalityUpsertWithWhereUniqueWithoutCountryInputObjectSchema, LocalityUpsertWithWhereUniqueWithoutCountryInputObjectZodSchema, LocalityUpsertWithoutWarehousesInputObjectSchema, LocalityUpsertWithoutWarehousesInputObjectZodSchema, LocalityWhereInputObjectSchema, LocalityWhereInputObjectZodSchema, LocalityWhereUniqueInputObjectSchema, LocalityWhereUniqueInputObjectZodSchema, type LoginDto, LoginSchema, 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 Paginated, type PaginationQuery, PaginationQuerySchema, type Permission, type QueryMode, QueryModeSchema, type Role, RolePermissionItemSchema, RoleSchema, 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 UpdateEmployeeDto, type UpdateEmployeeEmailDto, UpdateEmployeeEmailSchema, type UpdateEmployeePasswordDto, UpdateEmployeePasswordSchema, UpdateEmployeeSchema, type UpdateOrganizationDto, UpdateOrganizationSchema, type UpdateOwnEmailDto, UpdateOwnEmailSchema, type UpdateOwnPasswordDto, UpdateOwnPasswordSchema, type UpdateRoleDto, UpdateRoleSchema, 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, WarehouseCreateManyInputObjectSchema, WarehouseCreateManyInputObjectZodSchema, WarehouseCreateManyLocalityInputEnvelopeObjectSchema, WarehouseCreateManyLocalityInputEnvelopeObjectZodSchema, WarehouseCreateManyLocalityInputObjectSchema, WarehouseCreateManyLocalityInputObjectZodSchema, WarehouseCreateManyOrganizationInputEnvelopeObjectSchema, WarehouseCreateManyOrganizationInputEnvelopeObjectZodSchema, WarehouseCreateManyOrganizationInputObjectSchema, WarehouseCreateManyOrganizationInputObjectZodSchema, WarehouseCreateManyResultSchema, WarehouseCreateManySchema, WarehouseCreateManyZodSchema, WarehouseCreateNestedManyWithoutLocalityInputObjectSchema, WarehouseCreateNestedManyWithoutLocalityInputObjectZodSchema, WarehouseCreateNestedManyWithoutOrganizationInputObjectSchema, WarehouseCreateNestedManyWithoutOrganizationInputObjectZodSchema, WarehouseCreateNestedOneWithoutEmployeesInputObjectSchema, WarehouseCreateNestedOneWithoutEmployeesInputObjectZodSchema, WarehouseCreateOneSchema, WarehouseCreateOneZodSchema, WarehouseCreateOrConnectWithoutEmployeesInputObjectSchema, WarehouseCreateOrConnectWithoutEmployeesInputObjectZodSchema, WarehouseCreateOrConnectWithoutLocalityInputObjectSchema, WarehouseCreateOrConnectWithoutLocalityInputObjectZodSchema, WarehouseCreateOrConnectWithoutOrganizationInputObjectSchema, WarehouseCreateOrConnectWithoutOrganizationInputObjectZodSchema, WarehouseCreateResultSchema, WarehouseCreateWithoutEmployeesInputObjectSchema, WarehouseCreateWithoutEmployeesInputObjectZodSchema, WarehouseCreateWithoutLocalityInputObjectSchema, WarehouseCreateWithoutLocalityInputObjectZodSchema, 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, WarehouseUncheckedCreateNestedManyWithoutLocalityInputObjectSchema, WarehouseUncheckedCreateNestedManyWithoutLocalityInputObjectZodSchema, WarehouseUncheckedCreateNestedManyWithoutOrganizationInputObjectSchema, WarehouseUncheckedCreateNestedManyWithoutOrganizationInputObjectZodSchema, WarehouseUncheckedCreateWithoutEmployeesInputObjectSchema, WarehouseUncheckedCreateWithoutEmployeesInputObjectZodSchema, WarehouseUncheckedCreateWithoutLocalityInputObjectSchema, WarehouseUncheckedCreateWithoutLocalityInputObjectZodSchema, WarehouseUncheckedCreateWithoutOrganizationInputObjectSchema, WarehouseUncheckedCreateWithoutOrganizationInputObjectZodSchema, WarehouseUncheckedUpdateInputObjectSchema, WarehouseUncheckedUpdateInputObjectZodSchema, WarehouseUncheckedUpdateManyInputObjectSchema, WarehouseUncheckedUpdateManyInputObjectZodSchema, WarehouseUncheckedUpdateManyWithoutLocalityInputObjectSchema, WarehouseUncheckedUpdateManyWithoutLocalityInputObjectZodSchema, WarehouseUncheckedUpdateManyWithoutLocalityNestedInputObjectSchema, WarehouseUncheckedUpdateManyWithoutLocalityNestedInputObjectZodSchema, WarehouseUncheckedUpdateManyWithoutOrganizationInputObjectSchema, WarehouseUncheckedUpdateManyWithoutOrganizationInputObjectZodSchema, WarehouseUncheckedUpdateManyWithoutOrganizationNestedInputObjectSchema, WarehouseUncheckedUpdateManyWithoutOrganizationNestedInputObjectZodSchema, WarehouseUncheckedUpdateWithoutEmployeesInputObjectSchema, WarehouseUncheckedUpdateWithoutEmployeesInputObjectZodSchema, WarehouseUncheckedUpdateWithoutLocalityInputObjectSchema, WarehouseUncheckedUpdateWithoutLocalityInputObjectZodSchema, WarehouseUncheckedUpdateWithoutOrganizationInputObjectSchema, WarehouseUncheckedUpdateWithoutOrganizationInputObjectZodSchema, WarehouseUpdateInputObjectSchema, WarehouseUpdateInputObjectZodSchema, WarehouseUpdateManyAndReturnSchema, WarehouseUpdateManyAndReturnZodSchema, WarehouseUpdateManyMutationInputObjectSchema, WarehouseUpdateManyMutationInputObjectZodSchema, WarehouseUpdateManyResultSchema, WarehouseUpdateManySchema, WarehouseUpdateManyWithWhereWithoutLocalityInputObjectSchema, WarehouseUpdateManyWithWhereWithoutLocalityInputObjectZodSchema, WarehouseUpdateManyWithWhereWithoutOrganizationInputObjectSchema, WarehouseUpdateManyWithWhereWithoutOrganizationInputObjectZodSchema, WarehouseUpdateManyWithoutLocalityNestedInputObjectSchema, WarehouseUpdateManyWithoutLocalityNestedInputObjectZodSchema, WarehouseUpdateManyWithoutOrganizationNestedInputObjectSchema, WarehouseUpdateManyWithoutOrganizationNestedInputObjectZodSchema, WarehouseUpdateManyZodSchema, WarehouseUpdateOneSchema, WarehouseUpdateOneWithoutEmployeesNestedInputObjectSchema, WarehouseUpdateOneWithoutEmployeesNestedInputObjectZodSchema, WarehouseUpdateOneZodSchema, WarehouseUpdateResultSchema, WarehouseUpdateToOneWithWhereWithoutEmployeesInputObjectSchema, WarehouseUpdateToOneWithWhereWithoutEmployeesInputObjectZodSchema, WarehouseUpdateWithWhereUniqueWithoutLocalityInputObjectSchema, WarehouseUpdateWithWhereUniqueWithoutLocalityInputObjectZodSchema, WarehouseUpdateWithWhereUniqueWithoutOrganizationInputObjectSchema, WarehouseUpdateWithWhereUniqueWithoutOrganizationInputObjectZodSchema, WarehouseUpdateWithoutEmployeesInputObjectSchema, WarehouseUpdateWithoutEmployeesInputObjectZodSchema, WarehouseUpdateWithoutLocalityInputObjectSchema, WarehouseUpdateWithoutLocalityInputObjectZodSchema, WarehouseUpdateWithoutOrganizationInputObjectSchema, WarehouseUpdateWithoutOrganizationInputObjectZodSchema, WarehouseUpsertOneSchema, WarehouseUpsertOneZodSchema, WarehouseUpsertResultSchema, WarehouseUpsertWithWhereUniqueWithoutLocalityInputObjectSchema, WarehouseUpsertWithWhereUniqueWithoutLocalityInputObjectZodSchema, WarehouseUpsertWithWhereUniqueWithoutOrganizationInputObjectSchema, WarehouseUpsertWithWhereUniqueWithoutOrganizationInputObjectZodSchema, WarehouseUpsertWithoutEmployeesInputObjectSchema, WarehouseUpsertWithoutEmployeesInputObjectZodSchema, WarehouseWhereInputObjectSchema, WarehouseWhereInputObjectZodSchema, WarehouseWhereUniqueInputObjectSchema, WarehouseWhereUniqueInputObjectZodSchema };
|
|
22013
|
+
export { ALL_PERMISSIONS, type AuthTokens, BoolFieldUpdateOperationsInputObjectSchema, BoolFieldUpdateOperationsInputObjectZodSchema, BoolFilterObjectSchema, BoolFilterObjectZodSchema, BoolWithAggregatesFilterObjectSchema, BoolWithAggregatesFilterObjectZodSchema, type Country, CountryAggregateResultSchema, CountryAggregateSchema, CountryAggregateZodSchema, CountryArgsObjectSchema, CountryArgsObjectZodSchema, CountryAvgAggregateInputObjectSchema, CountryAvgAggregateInputObjectZodSchema, CountryAvgOrderByAggregateInputObjectSchema, CountryAvgOrderByAggregateInputObjectZodSchema, CountryCountAggregateInputObjectSchema, CountryCountAggregateInputObjectZodSchema, CountryCountOrderByAggregateInputObjectSchema, CountryCountOrderByAggregateInputObjectZodSchema, CountryCountOutputTypeArgsObjectSchema, CountryCountOutputTypeArgsObjectZodSchema, CountryCountOutputTypeCountLocalitiesArgsObjectSchema, CountryCountOutputTypeCountLocalitiesArgsObjectZodSchema, CountryCountOutputTypeSelectObjectSchema, CountryCountOutputTypeSelectObjectZodSchema, CountryCountResultSchema, CountryCountSchema, CountryCountZodSchema, CountryCreateInputObjectSchema, CountryCreateInputObjectZodSchema, CountryCreateManyAndReturnSchema, CountryCreateManyAndReturnZodSchema, CountryCreateManyInputObjectSchema, CountryCreateManyInputObjectZodSchema, CountryCreateManyResultSchema, CountryCreateManySchema, CountryCreateManyZodSchema, CountryCreateNestedOneWithoutLocalitiesInputObjectSchema, CountryCreateNestedOneWithoutLocalitiesInputObjectZodSchema, CountryCreateOneSchema, CountryCreateOneZodSchema, CountryCreateOrConnectWithoutLocalitiesInputObjectSchema, CountryCreateOrConnectWithoutLocalitiesInputObjectZodSchema, CountryCreateResultSchema, CountryCreateWithoutLocalitiesInputObjectSchema, CountryCreateWithoutLocalitiesInputObjectZodSchema, 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, CountryUncheckedCreateWithoutLocalitiesInputObjectSchema, CountryUncheckedCreateWithoutLocalitiesInputObjectZodSchema, CountryUncheckedUpdateInputObjectSchema, CountryUncheckedUpdateInputObjectZodSchema, CountryUncheckedUpdateManyInputObjectSchema, CountryUncheckedUpdateManyInputObjectZodSchema, CountryUncheckedUpdateWithoutLocalitiesInputObjectSchema, CountryUncheckedUpdateWithoutLocalitiesInputObjectZodSchema, CountryUpdateInputObjectSchema, CountryUpdateInputObjectZodSchema, CountryUpdateManyAndReturnSchema, CountryUpdateManyAndReturnZodSchema, CountryUpdateManyMutationInputObjectSchema, CountryUpdateManyMutationInputObjectZodSchema, CountryUpdateManyResultSchema, CountryUpdateManySchema, CountryUpdateManyZodSchema, CountryUpdateOneRequiredWithoutLocalitiesNestedInputObjectSchema, CountryUpdateOneRequiredWithoutLocalitiesNestedInputObjectZodSchema, CountryUpdateOneSchema, CountryUpdateOneZodSchema, CountryUpdateResultSchema, CountryUpdateToOneWithWhereWithoutLocalitiesInputObjectSchema, CountryUpdateToOneWithWhereWithoutLocalitiesInputObjectZodSchema, CountryUpdateWithoutLocalitiesInputObjectSchema, CountryUpdateWithoutLocalitiesInputObjectZodSchema, CountryUpsertOneSchema, CountryUpsertOneZodSchema, CountryUpsertResultSchema, CountryUpsertWithoutLocalitiesInputObjectSchema, CountryUpsertWithoutLocalitiesInputObjectZodSchema, CountryWhereInputObjectSchema, CountryWhereInputObjectZodSchema, CountryWhereUniqueInputObjectSchema, CountryWhereUniqueInputObjectZodSchema, type CreateEmployeeDto, CreateEmployeeSchema, type CreateLocalityDto, CreateLocalitySchema, type CreateOrganizationDto, CreateOrganizationSchema, type CreateRoleDto, CreateRoleSchema, type CreateWarehouseDto, CreateWarehouseSchema, DateTimeFieldUpdateOperationsInputObjectSchema, DateTimeFieldUpdateOperationsInputObjectZodSchema, DateTimeFilterObjectSchema, DateTimeFilterObjectZodSchema, DateTimeNullableFilterObjectSchema, DateTimeNullableFilterObjectZodSchema, DateTimeNullableWithAggregatesFilterObjectSchema, DateTimeNullableWithAggregatesFilterObjectZodSchema, DateTimeWithAggregatesFilterObjectSchema, DateTimeWithAggregatesFilterObjectZodSchema, type Employee, 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, type EmployeeRole, 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, EmployeeRoleSchema, 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, EmployeeSchema, 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 Locality, LocalityAggregateResultSchema, LocalityAggregateSchema, LocalityAggregateZodSchema, LocalityArgsObjectSchema, LocalityArgsObjectZodSchema, LocalityAvgAggregateInputObjectSchema, LocalityAvgAggregateInputObjectZodSchema, LocalityAvgOrderByAggregateInputObjectSchema, LocalityAvgOrderByAggregateInputObjectZodSchema, LocalityCountAggregateInputObjectSchema, LocalityCountAggregateInputObjectZodSchema, LocalityCountOrderByAggregateInputObjectSchema, LocalityCountOrderByAggregateInputObjectZodSchema, LocalityCountOutputTypeArgsObjectSchema, LocalityCountOutputTypeArgsObjectZodSchema, LocalityCountOutputTypeCountWarehousesArgsObjectSchema, LocalityCountOutputTypeCountWarehousesArgsObjectZodSchema, LocalityCountOutputTypeSelectObjectSchema, LocalityCountOutputTypeSelectObjectZodSchema, LocalityCountResultSchema, LocalityCountSchema, LocalityCountZodSchema, LocalityCreateInputObjectSchema, LocalityCreateInputObjectZodSchema, LocalityCreateManyAndReturnSchema, LocalityCreateManyAndReturnZodSchema, LocalityCreateManyCountryInputEnvelopeObjectSchema, LocalityCreateManyCountryInputEnvelopeObjectZodSchema, LocalityCreateManyCountryInputObjectSchema, LocalityCreateManyCountryInputObjectZodSchema, LocalityCreateManyInputObjectSchema, LocalityCreateManyInputObjectZodSchema, LocalityCreateManyResultSchema, LocalityCreateManySchema, LocalityCreateManyZodSchema, LocalityCreateNestedManyWithoutCountryInputObjectSchema, LocalityCreateNestedManyWithoutCountryInputObjectZodSchema, LocalityCreateNestedOneWithoutWarehousesInputObjectSchema, LocalityCreateNestedOneWithoutWarehousesInputObjectZodSchema, LocalityCreateOneSchema, LocalityCreateOneZodSchema, LocalityCreateOrConnectWithoutCountryInputObjectSchema, LocalityCreateOrConnectWithoutCountryInputObjectZodSchema, LocalityCreateOrConnectWithoutWarehousesInputObjectSchema, LocalityCreateOrConnectWithoutWarehousesInputObjectZodSchema, LocalityCreateResultSchema, LocalityCreateWithoutCountryInputObjectSchema, LocalityCreateWithoutCountryInputObjectZodSchema, LocalityCreateWithoutWarehousesInputObjectSchema, LocalityCreateWithoutWarehousesInputObjectZodSchema, LocalityDeleteManyResultSchema, LocalityDeleteManySchema, LocalityDeleteManyZodSchema, LocalityDeleteOneSchema, LocalityDeleteOneZodSchema, LocalityDeleteResultSchema, LocalityFindFirstOrThrowSchema, LocalityFindFirstOrThrowSelectSchema, LocalityFindFirstOrThrowSelectZodSchema, LocalityFindFirstOrThrowZodSchema, LocalityFindFirstResultSchema, LocalityFindFirstSchema, LocalityFindFirstSelectSchema, LocalityFindFirstSelectZodSchema, LocalityFindFirstZodSchema, LocalityFindManyResultSchema, LocalityFindManySchema, LocalityFindManySelectSchema, LocalityFindManySelectZodSchema, LocalityFindManyZodSchema, LocalityFindUniqueOrThrowSchema, LocalityFindUniqueOrThrowZodSchema, LocalityFindUniqueResultSchema, LocalityFindUniqueSchema, LocalityFindUniqueZodSchema, LocalityGroupByResultSchema, LocalityGroupBySchema, LocalityGroupByZodSchema, LocalityIncludeObjectSchema, LocalityIncludeObjectZodSchema, LocalityInputSchema, type LocalityInputType, LocalityListRelationFilterObjectSchema, LocalityListRelationFilterObjectZodSchema, LocalityMaxAggregateInputObjectSchema, LocalityMaxAggregateInputObjectZodSchema, LocalityMaxOrderByAggregateInputObjectSchema, LocalityMaxOrderByAggregateInputObjectZodSchema, LocalityMinAggregateInputObjectSchema, LocalityMinAggregateInputObjectZodSchema, LocalityMinOrderByAggregateInputObjectSchema, LocalityMinOrderByAggregateInputObjectZodSchema, LocalityModelSchema, LocalityOrderByRelationAggregateInputObjectSchema, LocalityOrderByRelationAggregateInputObjectZodSchema, LocalityOrderByWithAggregationInputObjectSchema, LocalityOrderByWithAggregationInputObjectZodSchema, LocalityOrderByWithRelationInputObjectSchema, LocalityOrderByWithRelationInputObjectZodSchema, type LocalityPureType, LocalityResultSchema, type LocalityResultType, type LocalityScalarFieldEnum, LocalityScalarFieldEnumSchema, LocalityScalarRelationFilterObjectSchema, LocalityScalarRelationFilterObjectZodSchema, LocalityScalarWhereInputObjectSchema, LocalityScalarWhereInputObjectZodSchema, LocalityScalarWhereWithAggregatesInputObjectSchema, LocalityScalarWhereWithAggregatesInputObjectZodSchema, LocalitySchema, LocalitySelectObjectSchema, LocalitySelectObjectZodSchema, LocalitySumAggregateInputObjectSchema, LocalitySumAggregateInputObjectZodSchema, LocalitySumOrderByAggregateInputObjectSchema, LocalitySumOrderByAggregateInputObjectZodSchema, LocalityUncheckedCreateInputObjectSchema, LocalityUncheckedCreateInputObjectZodSchema, LocalityUncheckedCreateNestedManyWithoutCountryInputObjectSchema, LocalityUncheckedCreateNestedManyWithoutCountryInputObjectZodSchema, LocalityUncheckedCreateWithoutCountryInputObjectSchema, LocalityUncheckedCreateWithoutCountryInputObjectZodSchema, LocalityUncheckedCreateWithoutWarehousesInputObjectSchema, LocalityUncheckedCreateWithoutWarehousesInputObjectZodSchema, LocalityUncheckedUpdateInputObjectSchema, LocalityUncheckedUpdateInputObjectZodSchema, LocalityUncheckedUpdateManyInputObjectSchema, LocalityUncheckedUpdateManyInputObjectZodSchema, LocalityUncheckedUpdateManyWithoutCountryInputObjectSchema, LocalityUncheckedUpdateManyWithoutCountryInputObjectZodSchema, LocalityUncheckedUpdateManyWithoutCountryNestedInputObjectSchema, LocalityUncheckedUpdateManyWithoutCountryNestedInputObjectZodSchema, LocalityUncheckedUpdateWithoutCountryInputObjectSchema, LocalityUncheckedUpdateWithoutCountryInputObjectZodSchema, LocalityUncheckedUpdateWithoutWarehousesInputObjectSchema, LocalityUncheckedUpdateWithoutWarehousesInputObjectZodSchema, LocalityUpdateInputObjectSchema, LocalityUpdateInputObjectZodSchema, LocalityUpdateManyAndReturnSchema, LocalityUpdateManyAndReturnZodSchema, LocalityUpdateManyMutationInputObjectSchema, LocalityUpdateManyMutationInputObjectZodSchema, LocalityUpdateManyResultSchema, LocalityUpdateManySchema, LocalityUpdateManyWithWhereWithoutCountryInputObjectSchema, LocalityUpdateManyWithWhereWithoutCountryInputObjectZodSchema, LocalityUpdateManyWithoutCountryNestedInputObjectSchema, LocalityUpdateManyWithoutCountryNestedInputObjectZodSchema, LocalityUpdateManyZodSchema, LocalityUpdateOneRequiredWithoutWarehousesNestedInputObjectSchema, LocalityUpdateOneRequiredWithoutWarehousesNestedInputObjectZodSchema, LocalityUpdateOneSchema, LocalityUpdateOneZodSchema, LocalityUpdateResultSchema, LocalityUpdateToOneWithWhereWithoutWarehousesInputObjectSchema, LocalityUpdateToOneWithWhereWithoutWarehousesInputObjectZodSchema, LocalityUpdateWithWhereUniqueWithoutCountryInputObjectSchema, LocalityUpdateWithWhereUniqueWithoutCountryInputObjectZodSchema, LocalityUpdateWithoutCountryInputObjectSchema, LocalityUpdateWithoutCountryInputObjectZodSchema, LocalityUpdateWithoutWarehousesInputObjectSchema, LocalityUpdateWithoutWarehousesInputObjectZodSchema, LocalityUpsertOneSchema, LocalityUpsertOneZodSchema, LocalityUpsertResultSchema, LocalityUpsertWithWhereUniqueWithoutCountryInputObjectSchema, LocalityUpsertWithWhereUniqueWithoutCountryInputObjectZodSchema, LocalityUpsertWithoutWarehousesInputObjectSchema, LocalityUpsertWithoutWarehousesInputObjectZodSchema, LocalityWhereInputObjectSchema, LocalityWhereInputObjectZodSchema, LocalityWhereUniqueInputObjectSchema, LocalityWhereUniqueInputObjectZodSchema, type LoginDto, LoginSchema, 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 Paginated, type PaginationQuery, PaginationQuerySchema, type Permission, type QueryMode, QueryModeSchema, type Role, RolePermissionItemSchema, RoleSchema, 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 UpdateEmployeeDto, UpdateEmployeeSchema, type UpdateOrganizationDto, UpdateOrganizationSchema, type UpdateOwnProfileDto, UpdateOwnProfileSchema, type UpdateRoleDto, UpdateRoleSchema, 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, WarehouseCreateManyInputObjectSchema, WarehouseCreateManyInputObjectZodSchema, WarehouseCreateManyLocalityInputEnvelopeObjectSchema, WarehouseCreateManyLocalityInputEnvelopeObjectZodSchema, WarehouseCreateManyLocalityInputObjectSchema, WarehouseCreateManyLocalityInputObjectZodSchema, WarehouseCreateManyOrganizationInputEnvelopeObjectSchema, WarehouseCreateManyOrganizationInputEnvelopeObjectZodSchema, WarehouseCreateManyOrganizationInputObjectSchema, WarehouseCreateManyOrganizationInputObjectZodSchema, WarehouseCreateManyResultSchema, WarehouseCreateManySchema, WarehouseCreateManyZodSchema, WarehouseCreateNestedManyWithoutLocalityInputObjectSchema, WarehouseCreateNestedManyWithoutLocalityInputObjectZodSchema, WarehouseCreateNestedManyWithoutOrganizationInputObjectSchema, WarehouseCreateNestedManyWithoutOrganizationInputObjectZodSchema, WarehouseCreateNestedOneWithoutEmployeesInputObjectSchema, WarehouseCreateNestedOneWithoutEmployeesInputObjectZodSchema, WarehouseCreateOneSchema, WarehouseCreateOneZodSchema, WarehouseCreateOrConnectWithoutEmployeesInputObjectSchema, WarehouseCreateOrConnectWithoutEmployeesInputObjectZodSchema, WarehouseCreateOrConnectWithoutLocalityInputObjectSchema, WarehouseCreateOrConnectWithoutLocalityInputObjectZodSchema, WarehouseCreateOrConnectWithoutOrganizationInputObjectSchema, WarehouseCreateOrConnectWithoutOrganizationInputObjectZodSchema, WarehouseCreateResultSchema, WarehouseCreateWithoutEmployeesInputObjectSchema, WarehouseCreateWithoutEmployeesInputObjectZodSchema, WarehouseCreateWithoutLocalityInputObjectSchema, WarehouseCreateWithoutLocalityInputObjectZodSchema, 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, WarehouseUncheckedCreateNestedManyWithoutLocalityInputObjectSchema, WarehouseUncheckedCreateNestedManyWithoutLocalityInputObjectZodSchema, WarehouseUncheckedCreateNestedManyWithoutOrganizationInputObjectSchema, WarehouseUncheckedCreateNestedManyWithoutOrganizationInputObjectZodSchema, WarehouseUncheckedCreateWithoutEmployeesInputObjectSchema, WarehouseUncheckedCreateWithoutEmployeesInputObjectZodSchema, WarehouseUncheckedCreateWithoutLocalityInputObjectSchema, WarehouseUncheckedCreateWithoutLocalityInputObjectZodSchema, WarehouseUncheckedCreateWithoutOrganizationInputObjectSchema, WarehouseUncheckedCreateWithoutOrganizationInputObjectZodSchema, WarehouseUncheckedUpdateInputObjectSchema, WarehouseUncheckedUpdateInputObjectZodSchema, WarehouseUncheckedUpdateManyInputObjectSchema, WarehouseUncheckedUpdateManyInputObjectZodSchema, WarehouseUncheckedUpdateManyWithoutLocalityInputObjectSchema, WarehouseUncheckedUpdateManyWithoutLocalityInputObjectZodSchema, WarehouseUncheckedUpdateManyWithoutLocalityNestedInputObjectSchema, WarehouseUncheckedUpdateManyWithoutLocalityNestedInputObjectZodSchema, WarehouseUncheckedUpdateManyWithoutOrganizationInputObjectSchema, WarehouseUncheckedUpdateManyWithoutOrganizationInputObjectZodSchema, WarehouseUncheckedUpdateManyWithoutOrganizationNestedInputObjectSchema, WarehouseUncheckedUpdateManyWithoutOrganizationNestedInputObjectZodSchema, WarehouseUncheckedUpdateWithoutEmployeesInputObjectSchema, WarehouseUncheckedUpdateWithoutEmployeesInputObjectZodSchema, WarehouseUncheckedUpdateWithoutLocalityInputObjectSchema, WarehouseUncheckedUpdateWithoutLocalityInputObjectZodSchema, WarehouseUncheckedUpdateWithoutOrganizationInputObjectSchema, WarehouseUncheckedUpdateWithoutOrganizationInputObjectZodSchema, WarehouseUpdateInputObjectSchema, WarehouseUpdateInputObjectZodSchema, WarehouseUpdateManyAndReturnSchema, WarehouseUpdateManyAndReturnZodSchema, WarehouseUpdateManyMutationInputObjectSchema, WarehouseUpdateManyMutationInputObjectZodSchema, WarehouseUpdateManyResultSchema, WarehouseUpdateManySchema, WarehouseUpdateManyWithWhereWithoutLocalityInputObjectSchema, WarehouseUpdateManyWithWhereWithoutLocalityInputObjectZodSchema, WarehouseUpdateManyWithWhereWithoutOrganizationInputObjectSchema, WarehouseUpdateManyWithWhereWithoutOrganizationInputObjectZodSchema, WarehouseUpdateManyWithoutLocalityNestedInputObjectSchema, WarehouseUpdateManyWithoutLocalityNestedInputObjectZodSchema, WarehouseUpdateManyWithoutOrganizationNestedInputObjectSchema, WarehouseUpdateManyWithoutOrganizationNestedInputObjectZodSchema, WarehouseUpdateManyZodSchema, WarehouseUpdateOneSchema, WarehouseUpdateOneWithoutEmployeesNestedInputObjectSchema, WarehouseUpdateOneWithoutEmployeesNestedInputObjectZodSchema, WarehouseUpdateOneZodSchema, WarehouseUpdateResultSchema, WarehouseUpdateToOneWithWhereWithoutEmployeesInputObjectSchema, WarehouseUpdateToOneWithWhereWithoutEmployeesInputObjectZodSchema, WarehouseUpdateWithWhereUniqueWithoutLocalityInputObjectSchema, WarehouseUpdateWithWhereUniqueWithoutLocalityInputObjectZodSchema, WarehouseUpdateWithWhereUniqueWithoutOrganizationInputObjectSchema, WarehouseUpdateWithWhereUniqueWithoutOrganizationInputObjectZodSchema, WarehouseUpdateWithoutEmployeesInputObjectSchema, WarehouseUpdateWithoutEmployeesInputObjectZodSchema, WarehouseUpdateWithoutLocalityInputObjectSchema, WarehouseUpdateWithoutLocalityInputObjectZodSchema, WarehouseUpdateWithoutOrganizationInputObjectSchema, WarehouseUpdateWithoutOrganizationInputObjectZodSchema, WarehouseUpsertOneSchema, WarehouseUpsertOneZodSchema, WarehouseUpsertResultSchema, WarehouseUpsertWithWhereUniqueWithoutLocalityInputObjectSchema, WarehouseUpsertWithWhereUniqueWithoutLocalityInputObjectZodSchema, WarehouseUpsertWithWhereUniqueWithoutOrganizationInputObjectSchema, WarehouseUpsertWithWhereUniqueWithoutOrganizationInputObjectZodSchema, WarehouseUpsertWithoutEmployeesInputObjectSchema, WarehouseUpsertWithoutEmployeesInputObjectZodSchema, WarehouseWhereInputObjectSchema, WarehouseWhereInputObjectZodSchema, WarehouseWhereUniqueInputObjectSchema, WarehouseWhereUniqueInputObjectZodSchema };
|