@meerkapp/wms-contracts 0.2.0-beta.8 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +832 -682
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +506 -128
- package/dist/index.d.ts +506 -128
- package/dist/index.js +829 -681
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
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", "avatarUrl", "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,8 @@ 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>;
|
|
86
|
+
avatarUrl: z.ZodOptional<z.ZodBoolean>;
|
|
85
87
|
warehouseId: z.ZodOptional<z.ZodBoolean>;
|
|
86
88
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
87
89
|
lastSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -95,6 +97,8 @@ declare const EmployeeFindFirstSelectZodSchema: z.ZodObject<{
|
|
|
95
97
|
password?: boolean | undefined;
|
|
96
98
|
firstName?: boolean | undefined;
|
|
97
99
|
lastName?: boolean | undefined;
|
|
100
|
+
phone?: boolean | undefined;
|
|
101
|
+
avatarUrl?: boolean | undefined;
|
|
98
102
|
warehouseId?: boolean | undefined;
|
|
99
103
|
isActive?: boolean | undefined;
|
|
100
104
|
lastSeen?: boolean | undefined;
|
|
@@ -108,6 +112,8 @@ declare const EmployeeFindFirstSelectZodSchema: z.ZodObject<{
|
|
|
108
112
|
password?: boolean | undefined;
|
|
109
113
|
firstName?: boolean | undefined;
|
|
110
114
|
lastName?: boolean | undefined;
|
|
115
|
+
phone?: boolean | undefined;
|
|
116
|
+
avatarUrl?: boolean | undefined;
|
|
111
117
|
warehouseId?: boolean | undefined;
|
|
112
118
|
isActive?: boolean | undefined;
|
|
113
119
|
lastSeen?: boolean | undefined;
|
|
@@ -125,7 +131,7 @@ declare const EmployeeFindFirstZodSchema: z.ZodObject<{
|
|
|
125
131
|
cursor: z.ZodOptional<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>;
|
|
126
132
|
take: z.ZodOptional<z.ZodNumber>;
|
|
127
133
|
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">]>>;
|
|
134
|
+
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "email", "password", "firstName", "lastName", "phone", "avatarUrl", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "email", "password", "firstName", "lastName", "phone", "avatarUrl", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, "many">]>>;
|
|
129
135
|
}, "strict", z.ZodTypeAny, {
|
|
130
136
|
where?: Prisma.EmployeeWhereInput | undefined;
|
|
131
137
|
select?: Prisma.EmployeeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -134,7 +140,7 @@ declare const EmployeeFindFirstZodSchema: z.ZodObject<{
|
|
|
134
140
|
cursor?: Prisma.EmployeeWhereUniqueInput | undefined;
|
|
135
141
|
take?: number | undefined;
|
|
136
142
|
skip?: number | undefined;
|
|
137
|
-
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
143
|
+
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "phone" | "avatarUrl" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "phone" | "avatarUrl" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
138
144
|
}, {
|
|
139
145
|
where?: Prisma.EmployeeWhereInput | undefined;
|
|
140
146
|
select?: Prisma.EmployeeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -143,7 +149,7 @@ declare const EmployeeFindFirstZodSchema: z.ZodObject<{
|
|
|
143
149
|
cursor?: Prisma.EmployeeWhereUniqueInput | undefined;
|
|
144
150
|
take?: number | undefined;
|
|
145
151
|
skip?: number | undefined;
|
|
146
|
-
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
152
|
+
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "phone" | "avatarUrl" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "phone" | "avatarUrl" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
147
153
|
}>;
|
|
148
154
|
|
|
149
155
|
declare const EmployeeFindFirstOrThrowSelectSchema: z.ZodType<Prisma.EmployeeSelect>;
|
|
@@ -153,6 +159,8 @@ declare const EmployeeFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
|
|
153
159
|
password: z.ZodOptional<z.ZodBoolean>;
|
|
154
160
|
firstName: z.ZodOptional<z.ZodBoolean>;
|
|
155
161
|
lastName: z.ZodOptional<z.ZodBoolean>;
|
|
162
|
+
phone: z.ZodOptional<z.ZodBoolean>;
|
|
163
|
+
avatarUrl: z.ZodOptional<z.ZodBoolean>;
|
|
156
164
|
warehouseId: z.ZodOptional<z.ZodBoolean>;
|
|
157
165
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
158
166
|
lastSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -166,6 +174,8 @@ declare const EmployeeFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
|
|
166
174
|
password?: boolean | undefined;
|
|
167
175
|
firstName?: boolean | undefined;
|
|
168
176
|
lastName?: boolean | undefined;
|
|
177
|
+
phone?: boolean | undefined;
|
|
178
|
+
avatarUrl?: boolean | undefined;
|
|
169
179
|
warehouseId?: boolean | undefined;
|
|
170
180
|
isActive?: boolean | undefined;
|
|
171
181
|
lastSeen?: boolean | undefined;
|
|
@@ -179,6 +189,8 @@ declare const EmployeeFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
|
|
179
189
|
password?: boolean | undefined;
|
|
180
190
|
firstName?: boolean | undefined;
|
|
181
191
|
lastName?: boolean | undefined;
|
|
192
|
+
phone?: boolean | undefined;
|
|
193
|
+
avatarUrl?: boolean | undefined;
|
|
182
194
|
warehouseId?: boolean | undefined;
|
|
183
195
|
isActive?: boolean | undefined;
|
|
184
196
|
lastSeen?: boolean | undefined;
|
|
@@ -196,7 +208,7 @@ declare const EmployeeFindFirstOrThrowZodSchema: z.ZodObject<{
|
|
|
196
208
|
cursor: z.ZodOptional<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>;
|
|
197
209
|
take: z.ZodOptional<z.ZodNumber>;
|
|
198
210
|
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">]>>;
|
|
211
|
+
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "email", "password", "firstName", "lastName", "phone", "avatarUrl", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "email", "password", "firstName", "lastName", "phone", "avatarUrl", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, "many">]>>;
|
|
200
212
|
}, "strict", z.ZodTypeAny, {
|
|
201
213
|
where?: Prisma.EmployeeWhereInput | undefined;
|
|
202
214
|
select?: Prisma.EmployeeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -205,7 +217,7 @@ declare const EmployeeFindFirstOrThrowZodSchema: z.ZodObject<{
|
|
|
205
217
|
cursor?: Prisma.EmployeeWhereUniqueInput | undefined;
|
|
206
218
|
take?: number | undefined;
|
|
207
219
|
skip?: number | undefined;
|
|
208
|
-
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
220
|
+
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "phone" | "avatarUrl" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "phone" | "avatarUrl" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
209
221
|
}, {
|
|
210
222
|
where?: Prisma.EmployeeWhereInput | undefined;
|
|
211
223
|
select?: Prisma.EmployeeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -214,7 +226,7 @@ declare const EmployeeFindFirstOrThrowZodSchema: z.ZodObject<{
|
|
|
214
226
|
cursor?: Prisma.EmployeeWhereUniqueInput | undefined;
|
|
215
227
|
take?: number | undefined;
|
|
216
228
|
skip?: number | undefined;
|
|
217
|
-
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
229
|
+
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "phone" | "avatarUrl" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "phone" | "avatarUrl" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
218
230
|
}>;
|
|
219
231
|
|
|
220
232
|
declare const EmployeeFindManySelectSchema: z.ZodType<Prisma.EmployeeSelect>;
|
|
@@ -224,6 +236,8 @@ declare const EmployeeFindManySelectZodSchema: z.ZodObject<{
|
|
|
224
236
|
password: z.ZodOptional<z.ZodBoolean>;
|
|
225
237
|
firstName: z.ZodOptional<z.ZodBoolean>;
|
|
226
238
|
lastName: z.ZodOptional<z.ZodBoolean>;
|
|
239
|
+
phone: z.ZodOptional<z.ZodBoolean>;
|
|
240
|
+
avatarUrl: z.ZodOptional<z.ZodBoolean>;
|
|
227
241
|
warehouseId: z.ZodOptional<z.ZodBoolean>;
|
|
228
242
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
229
243
|
lastSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -237,6 +251,8 @@ declare const EmployeeFindManySelectZodSchema: z.ZodObject<{
|
|
|
237
251
|
password?: boolean | undefined;
|
|
238
252
|
firstName?: boolean | undefined;
|
|
239
253
|
lastName?: boolean | undefined;
|
|
254
|
+
phone?: boolean | undefined;
|
|
255
|
+
avatarUrl?: boolean | undefined;
|
|
240
256
|
warehouseId?: boolean | undefined;
|
|
241
257
|
isActive?: boolean | undefined;
|
|
242
258
|
lastSeen?: boolean | undefined;
|
|
@@ -250,6 +266,8 @@ declare const EmployeeFindManySelectZodSchema: z.ZodObject<{
|
|
|
250
266
|
password?: boolean | undefined;
|
|
251
267
|
firstName?: boolean | undefined;
|
|
252
268
|
lastName?: boolean | undefined;
|
|
269
|
+
phone?: boolean | undefined;
|
|
270
|
+
avatarUrl?: boolean | undefined;
|
|
253
271
|
warehouseId?: boolean | undefined;
|
|
254
272
|
isActive?: boolean | undefined;
|
|
255
273
|
lastSeen?: boolean | undefined;
|
|
@@ -267,7 +285,7 @@ declare const EmployeeFindManyZodSchema: z.ZodObject<{
|
|
|
267
285
|
cursor: z.ZodOptional<z.ZodType<Prisma.EmployeeWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeWhereUniqueInput>>;
|
|
268
286
|
take: z.ZodOptional<z.ZodNumber>;
|
|
269
287
|
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">]>>;
|
|
288
|
+
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "email", "password", "firstName", "lastName", "phone", "avatarUrl", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "email", "password", "firstName", "lastName", "phone", "avatarUrl", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, "many">]>>;
|
|
271
289
|
}, "strict", z.ZodTypeAny, {
|
|
272
290
|
where?: Prisma.EmployeeWhereInput | undefined;
|
|
273
291
|
select?: Prisma.EmployeeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -276,7 +294,7 @@ declare const EmployeeFindManyZodSchema: z.ZodObject<{
|
|
|
276
294
|
cursor?: Prisma.EmployeeWhereUniqueInput | undefined;
|
|
277
295
|
take?: number | undefined;
|
|
278
296
|
skip?: number | undefined;
|
|
279
|
-
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" | "avatarUrl" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "phone" | "avatarUrl" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
280
298
|
}, {
|
|
281
299
|
where?: Prisma.EmployeeWhereInput | undefined;
|
|
282
300
|
select?: Prisma.EmployeeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -285,7 +303,7 @@ declare const EmployeeFindManyZodSchema: z.ZodObject<{
|
|
|
285
303
|
cursor?: Prisma.EmployeeWhereUniqueInput | undefined;
|
|
286
304
|
take?: number | undefined;
|
|
287
305
|
skip?: number | undefined;
|
|
288
|
-
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
306
|
+
distinct?: "id" | "email" | "password" | "firstName" | "lastName" | "phone" | "avatarUrl" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt" | ("id" | "email" | "password" | "firstName" | "lastName" | "phone" | "avatarUrl" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[] | undefined;
|
|
289
307
|
}>;
|
|
290
308
|
|
|
291
309
|
declare const EmployeeCountSchema: z.ZodType<Prisma.EmployeeCountArgs>;
|
|
@@ -487,14 +505,14 @@ declare const EmployeeGroupByZodSchema: z.ZodObject<{
|
|
|
487
505
|
having: z.ZodOptional<z.ZodType<Prisma.EmployeeScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.EmployeeScalarWhereWithAggregatesInput>>;
|
|
488
506
|
take: z.ZodOptional<z.ZodNumber>;
|
|
489
507
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
490
|
-
by: z.ZodArray<z.ZodEnum<["id", "email", "password", "firstName", "lastName", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, "many">;
|
|
508
|
+
by: z.ZodArray<z.ZodEnum<["id", "email", "password", "firstName", "lastName", "phone", "avatarUrl", "warehouseId", "isActive", "lastSeen", "updatedAt"]>, "many">;
|
|
491
509
|
_count: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodType<Prisma.EmployeeCountAggregateInputType, z.ZodTypeDef, Prisma.EmployeeCountAggregateInputType>]>>;
|
|
492
510
|
_min: z.ZodOptional<z.ZodType<Prisma.EmployeeMinAggregateInputType, z.ZodTypeDef, Prisma.EmployeeMinAggregateInputType>>;
|
|
493
511
|
_max: z.ZodOptional<z.ZodType<Prisma.EmployeeMaxAggregateInputType, z.ZodTypeDef, Prisma.EmployeeMaxAggregateInputType>>;
|
|
494
512
|
_avg: z.ZodOptional<z.ZodType<Prisma.EmployeeAvgAggregateInputType, z.ZodTypeDef, Prisma.EmployeeAvgAggregateInputType>>;
|
|
495
513
|
_sum: z.ZodOptional<z.ZodType<Prisma.EmployeeSumAggregateInputType, z.ZodTypeDef, Prisma.EmployeeSumAggregateInputType>>;
|
|
496
514
|
}, "strict", z.ZodTypeAny, {
|
|
497
|
-
by: ("id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[];
|
|
515
|
+
by: ("id" | "email" | "password" | "firstName" | "lastName" | "phone" | "avatarUrl" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[];
|
|
498
516
|
where?: Prisma.EmployeeWhereInput | undefined;
|
|
499
517
|
_count?: true | Prisma.EmployeeCountAggregateInputType | undefined;
|
|
500
518
|
orderBy?: Prisma.EmployeeOrderByWithAggregationInput | Prisma.EmployeeOrderByWithAggregationInput[] | undefined;
|
|
@@ -506,7 +524,7 @@ declare const EmployeeGroupByZodSchema: z.ZodObject<{
|
|
|
506
524
|
_sum?: Prisma.EmployeeSumAggregateInputType | undefined;
|
|
507
525
|
having?: Prisma.EmployeeScalarWhereWithAggregatesInput | undefined;
|
|
508
526
|
}, {
|
|
509
|
-
by: ("id" | "email" | "password" | "firstName" | "lastName" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[];
|
|
527
|
+
by: ("id" | "email" | "password" | "firstName" | "lastName" | "phone" | "avatarUrl" | "warehouseId" | "isActive" | "lastSeen" | "updatedAt")[];
|
|
510
528
|
where?: Prisma.EmployeeWhereInput | undefined;
|
|
511
529
|
_count?: true | Prisma.EmployeeCountAggregateInputType | undefined;
|
|
512
530
|
orderBy?: Prisma.EmployeeOrderByWithAggregationInput | Prisma.EmployeeOrderByWithAggregationInput[] | undefined;
|
|
@@ -4305,6 +4323,8 @@ declare const EmployeeFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4305
4323
|
password: z.ZodString;
|
|
4306
4324
|
firstName: z.ZodString;
|
|
4307
4325
|
lastName: z.ZodString;
|
|
4326
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4327
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
4308
4328
|
warehouseId: z.ZodOptional<z.ZodNumber>;
|
|
4309
4329
|
isActive: z.ZodBoolean;
|
|
4310
4330
|
lastSeen: z.ZodOptional<z.ZodDate>;
|
|
@@ -4320,6 +4340,8 @@ declare const EmployeeFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4320
4340
|
isActive: boolean;
|
|
4321
4341
|
updatedAt: Date;
|
|
4322
4342
|
roleAssignments: unknown[];
|
|
4343
|
+
phone?: string | undefined;
|
|
4344
|
+
avatarUrl?: string | undefined;
|
|
4323
4345
|
warehouseId?: number | undefined;
|
|
4324
4346
|
lastSeen?: Date | undefined;
|
|
4325
4347
|
warehouse?: unknown;
|
|
@@ -4332,6 +4354,8 @@ declare const EmployeeFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4332
4354
|
isActive: boolean;
|
|
4333
4355
|
updatedAt: Date;
|
|
4334
4356
|
roleAssignments: unknown[];
|
|
4357
|
+
phone?: string | undefined;
|
|
4358
|
+
avatarUrl?: string | undefined;
|
|
4335
4359
|
warehouseId?: number | undefined;
|
|
4336
4360
|
lastSeen?: Date | undefined;
|
|
4337
4361
|
warehouse?: unknown;
|
|
@@ -4343,6 +4367,8 @@ declare const EmployeeFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4343
4367
|
password: z.ZodString;
|
|
4344
4368
|
firstName: z.ZodString;
|
|
4345
4369
|
lastName: z.ZodString;
|
|
4370
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4371
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
4346
4372
|
warehouseId: z.ZodOptional<z.ZodNumber>;
|
|
4347
4373
|
isActive: z.ZodBoolean;
|
|
4348
4374
|
lastSeen: z.ZodOptional<z.ZodDate>;
|
|
@@ -4358,6 +4384,8 @@ declare const EmployeeFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4358
4384
|
isActive: boolean;
|
|
4359
4385
|
updatedAt: Date;
|
|
4360
4386
|
roleAssignments: unknown[];
|
|
4387
|
+
phone?: string | undefined;
|
|
4388
|
+
avatarUrl?: string | undefined;
|
|
4361
4389
|
warehouseId?: number | undefined;
|
|
4362
4390
|
lastSeen?: Date | undefined;
|
|
4363
4391
|
warehouse?: unknown;
|
|
@@ -4370,6 +4398,8 @@ declare const EmployeeFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4370
4398
|
isActive: boolean;
|
|
4371
4399
|
updatedAt: Date;
|
|
4372
4400
|
roleAssignments: unknown[];
|
|
4401
|
+
phone?: string | undefined;
|
|
4402
|
+
avatarUrl?: string | undefined;
|
|
4373
4403
|
warehouseId?: number | undefined;
|
|
4374
4404
|
lastSeen?: Date | undefined;
|
|
4375
4405
|
warehouse?: unknown;
|
|
@@ -4382,6 +4412,8 @@ declare const EmployeeFindManyResultSchema: z.ZodObject<{
|
|
|
4382
4412
|
password: z.ZodString;
|
|
4383
4413
|
firstName: z.ZodString;
|
|
4384
4414
|
lastName: z.ZodString;
|
|
4415
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4416
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
4385
4417
|
warehouseId: z.ZodOptional<z.ZodNumber>;
|
|
4386
4418
|
isActive: z.ZodBoolean;
|
|
4387
4419
|
lastSeen: z.ZodOptional<z.ZodDate>;
|
|
@@ -4397,6 +4429,8 @@ declare const EmployeeFindManyResultSchema: z.ZodObject<{
|
|
|
4397
4429
|
isActive: boolean;
|
|
4398
4430
|
updatedAt: Date;
|
|
4399
4431
|
roleAssignments: unknown[];
|
|
4432
|
+
phone?: string | undefined;
|
|
4433
|
+
avatarUrl?: string | undefined;
|
|
4400
4434
|
warehouseId?: number | undefined;
|
|
4401
4435
|
lastSeen?: Date | undefined;
|
|
4402
4436
|
warehouse?: unknown;
|
|
@@ -4409,6 +4443,8 @@ declare const EmployeeFindManyResultSchema: z.ZodObject<{
|
|
|
4409
4443
|
isActive: boolean;
|
|
4410
4444
|
updatedAt: Date;
|
|
4411
4445
|
roleAssignments: unknown[];
|
|
4446
|
+
phone?: string | undefined;
|
|
4447
|
+
avatarUrl?: string | undefined;
|
|
4412
4448
|
warehouseId?: number | undefined;
|
|
4413
4449
|
lastSeen?: Date | undefined;
|
|
4414
4450
|
warehouse?: unknown;
|
|
@@ -4445,6 +4481,8 @@ declare const EmployeeFindManyResultSchema: z.ZodObject<{
|
|
|
4445
4481
|
isActive: boolean;
|
|
4446
4482
|
updatedAt: Date;
|
|
4447
4483
|
roleAssignments: unknown[];
|
|
4484
|
+
phone?: string | undefined;
|
|
4485
|
+
avatarUrl?: string | undefined;
|
|
4448
4486
|
warehouseId?: number | undefined;
|
|
4449
4487
|
lastSeen?: Date | undefined;
|
|
4450
4488
|
warehouse?: unknown;
|
|
@@ -4467,6 +4505,8 @@ declare const EmployeeFindManyResultSchema: z.ZodObject<{
|
|
|
4467
4505
|
isActive: boolean;
|
|
4468
4506
|
updatedAt: Date;
|
|
4469
4507
|
roleAssignments: unknown[];
|
|
4508
|
+
phone?: string | undefined;
|
|
4509
|
+
avatarUrl?: string | undefined;
|
|
4470
4510
|
warehouseId?: number | undefined;
|
|
4471
4511
|
lastSeen?: Date | undefined;
|
|
4472
4512
|
warehouse?: unknown;
|
|
@@ -4487,6 +4527,8 @@ declare const EmployeeCreateResultSchema: z.ZodObject<{
|
|
|
4487
4527
|
password: z.ZodString;
|
|
4488
4528
|
firstName: z.ZodString;
|
|
4489
4529
|
lastName: z.ZodString;
|
|
4530
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4531
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
4490
4532
|
warehouseId: z.ZodOptional<z.ZodNumber>;
|
|
4491
4533
|
isActive: z.ZodBoolean;
|
|
4492
4534
|
lastSeen: z.ZodOptional<z.ZodDate>;
|
|
@@ -4502,6 +4544,8 @@ declare const EmployeeCreateResultSchema: z.ZodObject<{
|
|
|
4502
4544
|
isActive: boolean;
|
|
4503
4545
|
updatedAt: Date;
|
|
4504
4546
|
roleAssignments: unknown[];
|
|
4547
|
+
phone?: string | undefined;
|
|
4548
|
+
avatarUrl?: string | undefined;
|
|
4505
4549
|
warehouseId?: number | undefined;
|
|
4506
4550
|
lastSeen?: Date | undefined;
|
|
4507
4551
|
warehouse?: unknown;
|
|
@@ -4514,6 +4558,8 @@ declare const EmployeeCreateResultSchema: z.ZodObject<{
|
|
|
4514
4558
|
isActive: boolean;
|
|
4515
4559
|
updatedAt: Date;
|
|
4516
4560
|
roleAssignments: unknown[];
|
|
4561
|
+
phone?: string | undefined;
|
|
4562
|
+
avatarUrl?: string | undefined;
|
|
4517
4563
|
warehouseId?: number | undefined;
|
|
4518
4564
|
lastSeen?: Date | undefined;
|
|
4519
4565
|
warehouse?: unknown;
|
|
@@ -4533,6 +4579,8 @@ declare const EmployeeUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4533
4579
|
password: z.ZodString;
|
|
4534
4580
|
firstName: z.ZodString;
|
|
4535
4581
|
lastName: z.ZodString;
|
|
4582
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4583
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
4536
4584
|
warehouseId: z.ZodOptional<z.ZodNumber>;
|
|
4537
4585
|
isActive: z.ZodBoolean;
|
|
4538
4586
|
lastSeen: z.ZodOptional<z.ZodDate>;
|
|
@@ -4548,6 +4596,8 @@ declare const EmployeeUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4548
4596
|
isActive: boolean;
|
|
4549
4597
|
updatedAt: Date;
|
|
4550
4598
|
roleAssignments: unknown[];
|
|
4599
|
+
phone?: string | undefined;
|
|
4600
|
+
avatarUrl?: string | undefined;
|
|
4551
4601
|
warehouseId?: number | undefined;
|
|
4552
4602
|
lastSeen?: Date | undefined;
|
|
4553
4603
|
warehouse?: unknown;
|
|
@@ -4560,6 +4610,8 @@ declare const EmployeeUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4560
4610
|
isActive: boolean;
|
|
4561
4611
|
updatedAt: Date;
|
|
4562
4612
|
roleAssignments: unknown[];
|
|
4613
|
+
phone?: string | undefined;
|
|
4614
|
+
avatarUrl?: string | undefined;
|
|
4563
4615
|
warehouseId?: number | undefined;
|
|
4564
4616
|
lastSeen?: Date | undefined;
|
|
4565
4617
|
warehouse?: unknown;
|
|
@@ -4579,6 +4631,8 @@ declare const EmployeeUpsertResultSchema: z.ZodObject<{
|
|
|
4579
4631
|
password: z.ZodString;
|
|
4580
4632
|
firstName: z.ZodString;
|
|
4581
4633
|
lastName: z.ZodString;
|
|
4634
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4635
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
4582
4636
|
warehouseId: z.ZodOptional<z.ZodNumber>;
|
|
4583
4637
|
isActive: z.ZodBoolean;
|
|
4584
4638
|
lastSeen: z.ZodOptional<z.ZodDate>;
|
|
@@ -4594,6 +4648,8 @@ declare const EmployeeUpsertResultSchema: z.ZodObject<{
|
|
|
4594
4648
|
isActive: boolean;
|
|
4595
4649
|
updatedAt: Date;
|
|
4596
4650
|
roleAssignments: unknown[];
|
|
4651
|
+
phone?: string | undefined;
|
|
4652
|
+
avatarUrl?: string | undefined;
|
|
4597
4653
|
warehouseId?: number | undefined;
|
|
4598
4654
|
lastSeen?: Date | undefined;
|
|
4599
4655
|
warehouse?: unknown;
|
|
@@ -4606,6 +4662,8 @@ declare const EmployeeUpsertResultSchema: z.ZodObject<{
|
|
|
4606
4662
|
isActive: boolean;
|
|
4607
4663
|
updatedAt: Date;
|
|
4608
4664
|
roleAssignments: unknown[];
|
|
4665
|
+
phone?: string | undefined;
|
|
4666
|
+
avatarUrl?: string | undefined;
|
|
4609
4667
|
warehouseId?: number | undefined;
|
|
4610
4668
|
lastSeen?: Date | undefined;
|
|
4611
4669
|
warehouse?: unknown;
|
|
@@ -4617,6 +4675,8 @@ declare const EmployeeDeleteResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4617
4675
|
password: z.ZodString;
|
|
4618
4676
|
firstName: z.ZodString;
|
|
4619
4677
|
lastName: z.ZodString;
|
|
4678
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4679
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
4620
4680
|
warehouseId: z.ZodOptional<z.ZodNumber>;
|
|
4621
4681
|
isActive: z.ZodBoolean;
|
|
4622
4682
|
lastSeen: z.ZodOptional<z.ZodDate>;
|
|
@@ -4632,6 +4692,8 @@ declare const EmployeeDeleteResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4632
4692
|
isActive: boolean;
|
|
4633
4693
|
updatedAt: Date;
|
|
4634
4694
|
roleAssignments: unknown[];
|
|
4695
|
+
phone?: string | undefined;
|
|
4696
|
+
avatarUrl?: string | undefined;
|
|
4635
4697
|
warehouseId?: number | undefined;
|
|
4636
4698
|
lastSeen?: Date | undefined;
|
|
4637
4699
|
warehouse?: unknown;
|
|
@@ -4644,6 +4706,8 @@ declare const EmployeeDeleteResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
4644
4706
|
isActive: boolean;
|
|
4645
4707
|
updatedAt: Date;
|
|
4646
4708
|
roleAssignments: unknown[];
|
|
4709
|
+
phone?: string | undefined;
|
|
4710
|
+
avatarUrl?: string | undefined;
|
|
4647
4711
|
warehouseId?: number | undefined;
|
|
4648
4712
|
lastSeen?: Date | undefined;
|
|
4649
4713
|
warehouse?: unknown;
|
|
@@ -4664,6 +4728,8 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4664
4728
|
password: z.ZodNumber;
|
|
4665
4729
|
firstName: z.ZodNumber;
|
|
4666
4730
|
lastName: z.ZodNumber;
|
|
4731
|
+
phone: z.ZodNumber;
|
|
4732
|
+
avatarUrl: z.ZodNumber;
|
|
4667
4733
|
warehouseId: z.ZodNumber;
|
|
4668
4734
|
isActive: z.ZodNumber;
|
|
4669
4735
|
lastSeen: z.ZodNumber;
|
|
@@ -4676,6 +4742,8 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4676
4742
|
password: number;
|
|
4677
4743
|
firstName: number;
|
|
4678
4744
|
lastName: number;
|
|
4745
|
+
phone: number;
|
|
4746
|
+
avatarUrl: number;
|
|
4679
4747
|
warehouseId: number;
|
|
4680
4748
|
isActive: number;
|
|
4681
4749
|
lastSeen: number;
|
|
@@ -4688,6 +4756,8 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4688
4756
|
password: number;
|
|
4689
4757
|
firstName: number;
|
|
4690
4758
|
lastName: number;
|
|
4759
|
+
phone: number;
|
|
4760
|
+
avatarUrl: number;
|
|
4691
4761
|
warehouseId: number;
|
|
4692
4762
|
isActive: number;
|
|
4693
4763
|
lastSeen: number;
|
|
@@ -4715,6 +4785,8 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4715
4785
|
password: z.ZodNullable<z.ZodString>;
|
|
4716
4786
|
firstName: z.ZodNullable<z.ZodString>;
|
|
4717
4787
|
lastName: z.ZodNullable<z.ZodString>;
|
|
4788
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
4789
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
4718
4790
|
warehouseId: z.ZodNullable<z.ZodNumber>;
|
|
4719
4791
|
lastSeen: z.ZodNullable<z.ZodDate>;
|
|
4720
4792
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
@@ -4724,6 +4796,8 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4724
4796
|
password: string | null;
|
|
4725
4797
|
firstName: string | null;
|
|
4726
4798
|
lastName: string | null;
|
|
4799
|
+
phone: string | null;
|
|
4800
|
+
avatarUrl: string | null;
|
|
4727
4801
|
warehouseId: number | null;
|
|
4728
4802
|
lastSeen: Date | null;
|
|
4729
4803
|
updatedAt: Date | null;
|
|
@@ -4733,6 +4807,8 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4733
4807
|
password: string | null;
|
|
4734
4808
|
firstName: string | null;
|
|
4735
4809
|
lastName: string | null;
|
|
4810
|
+
phone: string | null;
|
|
4811
|
+
avatarUrl: string | null;
|
|
4736
4812
|
warehouseId: number | null;
|
|
4737
4813
|
lastSeen: Date | null;
|
|
4738
4814
|
updatedAt: Date | null;
|
|
@@ -4743,6 +4819,8 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4743
4819
|
password: z.ZodNullable<z.ZodString>;
|
|
4744
4820
|
firstName: z.ZodNullable<z.ZodString>;
|
|
4745
4821
|
lastName: z.ZodNullable<z.ZodString>;
|
|
4822
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
4823
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
4746
4824
|
warehouseId: z.ZodNullable<z.ZodNumber>;
|
|
4747
4825
|
lastSeen: z.ZodNullable<z.ZodDate>;
|
|
4748
4826
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
@@ -4752,6 +4830,8 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4752
4830
|
password: string | null;
|
|
4753
4831
|
firstName: string | null;
|
|
4754
4832
|
lastName: string | null;
|
|
4833
|
+
phone: string | null;
|
|
4834
|
+
avatarUrl: string | null;
|
|
4755
4835
|
warehouseId: number | null;
|
|
4756
4836
|
lastSeen: Date | null;
|
|
4757
4837
|
updatedAt: Date | null;
|
|
@@ -4761,6 +4841,8 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4761
4841
|
password: string | null;
|
|
4762
4842
|
firstName: string | null;
|
|
4763
4843
|
lastName: string | null;
|
|
4844
|
+
phone: string | null;
|
|
4845
|
+
avatarUrl: string | null;
|
|
4764
4846
|
warehouseId: number | null;
|
|
4765
4847
|
lastSeen: Date | null;
|
|
4766
4848
|
updatedAt: Date | null;
|
|
@@ -4772,6 +4854,8 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4772
4854
|
password: number;
|
|
4773
4855
|
firstName: number;
|
|
4774
4856
|
lastName: number;
|
|
4857
|
+
phone: number;
|
|
4858
|
+
avatarUrl: number;
|
|
4775
4859
|
warehouseId: number;
|
|
4776
4860
|
isActive: number;
|
|
4777
4861
|
lastSeen: number;
|
|
@@ -4785,6 +4869,8 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4785
4869
|
password: string | null;
|
|
4786
4870
|
firstName: string | null;
|
|
4787
4871
|
lastName: string | null;
|
|
4872
|
+
phone: string | null;
|
|
4873
|
+
avatarUrl: string | null;
|
|
4788
4874
|
warehouseId: number | null;
|
|
4789
4875
|
lastSeen: Date | null;
|
|
4790
4876
|
updatedAt: Date | null;
|
|
@@ -4795,6 +4881,8 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4795
4881
|
password: string | null;
|
|
4796
4882
|
firstName: string | null;
|
|
4797
4883
|
lastName: string | null;
|
|
4884
|
+
phone: string | null;
|
|
4885
|
+
avatarUrl: string | null;
|
|
4798
4886
|
warehouseId: number | null;
|
|
4799
4887
|
lastSeen: Date | null;
|
|
4800
4888
|
updatedAt: Date | null;
|
|
@@ -4812,6 +4900,8 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4812
4900
|
password: number;
|
|
4813
4901
|
firstName: number;
|
|
4814
4902
|
lastName: number;
|
|
4903
|
+
phone: number;
|
|
4904
|
+
avatarUrl: number;
|
|
4815
4905
|
warehouseId: number;
|
|
4816
4906
|
isActive: number;
|
|
4817
4907
|
lastSeen: number;
|
|
@@ -4825,6 +4915,8 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4825
4915
|
password: string | null;
|
|
4826
4916
|
firstName: string | null;
|
|
4827
4917
|
lastName: string | null;
|
|
4918
|
+
phone: string | null;
|
|
4919
|
+
avatarUrl: string | null;
|
|
4828
4920
|
warehouseId: number | null;
|
|
4829
4921
|
lastSeen: Date | null;
|
|
4830
4922
|
updatedAt: Date | null;
|
|
@@ -4835,6 +4927,8 @@ declare const EmployeeAggregateResultSchema: z.ZodObject<{
|
|
|
4835
4927
|
password: string | null;
|
|
4836
4928
|
firstName: string | null;
|
|
4837
4929
|
lastName: string | null;
|
|
4930
|
+
phone: string | null;
|
|
4931
|
+
avatarUrl: string | null;
|
|
4838
4932
|
warehouseId: number | null;
|
|
4839
4933
|
lastSeen: Date | null;
|
|
4840
4934
|
updatedAt: Date | null;
|
|
@@ -4853,6 +4947,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4853
4947
|
password: z.ZodString;
|
|
4854
4948
|
firstName: z.ZodString;
|
|
4855
4949
|
lastName: z.ZodString;
|
|
4950
|
+
phone: z.ZodString;
|
|
4951
|
+
avatarUrl: z.ZodString;
|
|
4856
4952
|
warehouseId: z.ZodNumber;
|
|
4857
4953
|
isActive: z.ZodBoolean;
|
|
4858
4954
|
lastSeen: z.ZodDate;
|
|
@@ -4863,6 +4959,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4863
4959
|
password: z.ZodNumber;
|
|
4864
4960
|
firstName: z.ZodNumber;
|
|
4865
4961
|
lastName: z.ZodNumber;
|
|
4962
|
+
phone: z.ZodNumber;
|
|
4963
|
+
avatarUrl: z.ZodNumber;
|
|
4866
4964
|
warehouseId: z.ZodNumber;
|
|
4867
4965
|
isActive: z.ZodNumber;
|
|
4868
4966
|
lastSeen: z.ZodNumber;
|
|
@@ -4875,6 +4973,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4875
4973
|
password: number;
|
|
4876
4974
|
firstName: number;
|
|
4877
4975
|
lastName: number;
|
|
4976
|
+
phone: number;
|
|
4977
|
+
avatarUrl: number;
|
|
4878
4978
|
warehouseId: number;
|
|
4879
4979
|
isActive: number;
|
|
4880
4980
|
lastSeen: number;
|
|
@@ -4887,6 +4987,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4887
4987
|
password: number;
|
|
4888
4988
|
firstName: number;
|
|
4889
4989
|
lastName: number;
|
|
4990
|
+
phone: number;
|
|
4991
|
+
avatarUrl: number;
|
|
4890
4992
|
warehouseId: number;
|
|
4891
4993
|
isActive: number;
|
|
4892
4994
|
lastSeen: number;
|
|
@@ -4914,6 +5016,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4914
5016
|
password: z.ZodNullable<z.ZodString>;
|
|
4915
5017
|
firstName: z.ZodNullable<z.ZodString>;
|
|
4916
5018
|
lastName: z.ZodNullable<z.ZodString>;
|
|
5019
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
5020
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
4917
5021
|
warehouseId: z.ZodNullable<z.ZodNumber>;
|
|
4918
5022
|
lastSeen: z.ZodNullable<z.ZodDate>;
|
|
4919
5023
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
@@ -4923,6 +5027,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4923
5027
|
password: string | null;
|
|
4924
5028
|
firstName: string | null;
|
|
4925
5029
|
lastName: string | null;
|
|
5030
|
+
phone: string | null;
|
|
5031
|
+
avatarUrl: string | null;
|
|
4926
5032
|
warehouseId: number | null;
|
|
4927
5033
|
lastSeen: Date | null;
|
|
4928
5034
|
updatedAt: Date | null;
|
|
@@ -4932,6 +5038,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4932
5038
|
password: string | null;
|
|
4933
5039
|
firstName: string | null;
|
|
4934
5040
|
lastName: string | null;
|
|
5041
|
+
phone: string | null;
|
|
5042
|
+
avatarUrl: string | null;
|
|
4935
5043
|
warehouseId: number | null;
|
|
4936
5044
|
lastSeen: Date | null;
|
|
4937
5045
|
updatedAt: Date | null;
|
|
@@ -4942,6 +5050,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4942
5050
|
password: z.ZodNullable<z.ZodString>;
|
|
4943
5051
|
firstName: z.ZodNullable<z.ZodString>;
|
|
4944
5052
|
lastName: z.ZodNullable<z.ZodString>;
|
|
5053
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
5054
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
4945
5055
|
warehouseId: z.ZodNullable<z.ZodNumber>;
|
|
4946
5056
|
lastSeen: z.ZodNullable<z.ZodDate>;
|
|
4947
5057
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
@@ -4951,6 +5061,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4951
5061
|
password: string | null;
|
|
4952
5062
|
firstName: string | null;
|
|
4953
5063
|
lastName: string | null;
|
|
5064
|
+
phone: string | null;
|
|
5065
|
+
avatarUrl: string | null;
|
|
4954
5066
|
warehouseId: number | null;
|
|
4955
5067
|
lastSeen: Date | null;
|
|
4956
5068
|
updatedAt: Date | null;
|
|
@@ -4960,6 +5072,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4960
5072
|
password: string | null;
|
|
4961
5073
|
firstName: string | null;
|
|
4962
5074
|
lastName: string | null;
|
|
5075
|
+
phone: string | null;
|
|
5076
|
+
avatarUrl: string | null;
|
|
4963
5077
|
warehouseId: number | null;
|
|
4964
5078
|
lastSeen: Date | null;
|
|
4965
5079
|
updatedAt: Date | null;
|
|
@@ -4970,6 +5084,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4970
5084
|
password: string;
|
|
4971
5085
|
firstName: string;
|
|
4972
5086
|
lastName: string;
|
|
5087
|
+
phone: string;
|
|
5088
|
+
avatarUrl: string;
|
|
4973
5089
|
warehouseId: number;
|
|
4974
5090
|
isActive: boolean;
|
|
4975
5091
|
lastSeen: Date;
|
|
@@ -4980,6 +5096,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4980
5096
|
password: number;
|
|
4981
5097
|
firstName: number;
|
|
4982
5098
|
lastName: number;
|
|
5099
|
+
phone: number;
|
|
5100
|
+
avatarUrl: number;
|
|
4983
5101
|
warehouseId: number;
|
|
4984
5102
|
isActive: number;
|
|
4985
5103
|
lastSeen: number;
|
|
@@ -4993,6 +5111,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
4993
5111
|
password: string | null;
|
|
4994
5112
|
firstName: string | null;
|
|
4995
5113
|
lastName: string | null;
|
|
5114
|
+
phone: string | null;
|
|
5115
|
+
avatarUrl: string | null;
|
|
4996
5116
|
warehouseId: number | null;
|
|
4997
5117
|
lastSeen: Date | null;
|
|
4998
5118
|
updatedAt: Date | null;
|
|
@@ -5003,6 +5123,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
5003
5123
|
password: string | null;
|
|
5004
5124
|
firstName: string | null;
|
|
5005
5125
|
lastName: string | null;
|
|
5126
|
+
phone: string | null;
|
|
5127
|
+
avatarUrl: string | null;
|
|
5006
5128
|
warehouseId: number | null;
|
|
5007
5129
|
lastSeen: Date | null;
|
|
5008
5130
|
updatedAt: Date | null;
|
|
@@ -5019,6 +5141,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
5019
5141
|
password: string;
|
|
5020
5142
|
firstName: string;
|
|
5021
5143
|
lastName: string;
|
|
5144
|
+
phone: string;
|
|
5145
|
+
avatarUrl: string;
|
|
5022
5146
|
warehouseId: number;
|
|
5023
5147
|
isActive: boolean;
|
|
5024
5148
|
lastSeen: Date;
|
|
@@ -5029,6 +5153,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
5029
5153
|
password: number;
|
|
5030
5154
|
firstName: number;
|
|
5031
5155
|
lastName: number;
|
|
5156
|
+
phone: number;
|
|
5157
|
+
avatarUrl: number;
|
|
5032
5158
|
warehouseId: number;
|
|
5033
5159
|
isActive: number;
|
|
5034
5160
|
lastSeen: number;
|
|
@@ -5042,6 +5168,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
5042
5168
|
password: string | null;
|
|
5043
5169
|
firstName: string | null;
|
|
5044
5170
|
lastName: string | null;
|
|
5171
|
+
phone: string | null;
|
|
5172
|
+
avatarUrl: string | null;
|
|
5045
5173
|
warehouseId: number | null;
|
|
5046
5174
|
lastSeen: Date | null;
|
|
5047
5175
|
updatedAt: Date | null;
|
|
@@ -5052,6 +5180,8 @@ declare const EmployeeGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
5052
5180
|
password: string | null;
|
|
5053
5181
|
firstName: string | null;
|
|
5054
5182
|
lastName: string | null;
|
|
5183
|
+
phone: string | null;
|
|
5184
|
+
avatarUrl: string | null;
|
|
5055
5185
|
warehouseId: number | null;
|
|
5056
5186
|
lastSeen: Date | null;
|
|
5057
5187
|
updatedAt: Date | null;
|
|
@@ -5069,7 +5199,7 @@ declare const EmployeeCountResultSchema: z.ZodNumber;
|
|
|
5069
5199
|
declare const EmployeeRoleFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
|
|
5070
5200
|
id: z.ZodNumber;
|
|
5071
5201
|
name: z.ZodString;
|
|
5072
|
-
color: z.
|
|
5202
|
+
color: z.ZodString;
|
|
5073
5203
|
updatedAt: z.ZodDate;
|
|
5074
5204
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
5075
5205
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -5077,22 +5207,22 @@ declare const EmployeeRoleFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
5077
5207
|
id: number;
|
|
5078
5208
|
updatedAt: Date;
|
|
5079
5209
|
name: string;
|
|
5210
|
+
color: string;
|
|
5080
5211
|
assignments: unknown[];
|
|
5081
5212
|
permissions: unknown[];
|
|
5082
|
-
color?: string | undefined;
|
|
5083
5213
|
}, {
|
|
5084
5214
|
id: number;
|
|
5085
5215
|
updatedAt: Date;
|
|
5086
5216
|
name: string;
|
|
5217
|
+
color: string;
|
|
5087
5218
|
assignments: unknown[];
|
|
5088
5219
|
permissions: unknown[];
|
|
5089
|
-
color?: string | undefined;
|
|
5090
5220
|
}>>;
|
|
5091
5221
|
|
|
5092
5222
|
declare const EmployeeRoleFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
|
|
5093
5223
|
id: z.ZodNumber;
|
|
5094
5224
|
name: z.ZodString;
|
|
5095
|
-
color: z.
|
|
5225
|
+
color: z.ZodString;
|
|
5096
5226
|
updatedAt: z.ZodDate;
|
|
5097
5227
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
5098
5228
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -5100,23 +5230,23 @@ declare const EmployeeRoleFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
5100
5230
|
id: number;
|
|
5101
5231
|
updatedAt: Date;
|
|
5102
5232
|
name: string;
|
|
5233
|
+
color: string;
|
|
5103
5234
|
assignments: unknown[];
|
|
5104
5235
|
permissions: unknown[];
|
|
5105
|
-
color?: string | undefined;
|
|
5106
5236
|
}, {
|
|
5107
5237
|
id: number;
|
|
5108
5238
|
updatedAt: Date;
|
|
5109
5239
|
name: string;
|
|
5240
|
+
color: string;
|
|
5110
5241
|
assignments: unknown[];
|
|
5111
5242
|
permissions: unknown[];
|
|
5112
|
-
color?: string | undefined;
|
|
5113
5243
|
}>>;
|
|
5114
5244
|
|
|
5115
5245
|
declare const EmployeeRoleFindManyResultSchema: z.ZodObject<{
|
|
5116
5246
|
data: z.ZodArray<z.ZodObject<{
|
|
5117
5247
|
id: z.ZodNumber;
|
|
5118
5248
|
name: z.ZodString;
|
|
5119
|
-
color: z.
|
|
5249
|
+
color: z.ZodString;
|
|
5120
5250
|
updatedAt: z.ZodDate;
|
|
5121
5251
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
5122
5252
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -5124,16 +5254,16 @@ declare const EmployeeRoleFindManyResultSchema: z.ZodObject<{
|
|
|
5124
5254
|
id: number;
|
|
5125
5255
|
updatedAt: Date;
|
|
5126
5256
|
name: string;
|
|
5257
|
+
color: string;
|
|
5127
5258
|
assignments: unknown[];
|
|
5128
5259
|
permissions: unknown[];
|
|
5129
|
-
color?: string | undefined;
|
|
5130
5260
|
}, {
|
|
5131
5261
|
id: number;
|
|
5132
5262
|
updatedAt: Date;
|
|
5133
5263
|
name: string;
|
|
5264
|
+
color: string;
|
|
5134
5265
|
assignments: unknown[];
|
|
5135
5266
|
permissions: unknown[];
|
|
5136
|
-
color?: string | undefined;
|
|
5137
5267
|
}>, "many">;
|
|
5138
5268
|
pagination: z.ZodObject<{
|
|
5139
5269
|
page: z.ZodNumber;
|
|
@@ -5162,9 +5292,9 @@ declare const EmployeeRoleFindManyResultSchema: z.ZodObject<{
|
|
|
5162
5292
|
id: number;
|
|
5163
5293
|
updatedAt: Date;
|
|
5164
5294
|
name: string;
|
|
5295
|
+
color: string;
|
|
5165
5296
|
assignments: unknown[];
|
|
5166
5297
|
permissions: unknown[];
|
|
5167
|
-
color?: string | undefined;
|
|
5168
5298
|
}[];
|
|
5169
5299
|
pagination: {
|
|
5170
5300
|
page: number;
|
|
@@ -5179,9 +5309,9 @@ declare const EmployeeRoleFindManyResultSchema: z.ZodObject<{
|
|
|
5179
5309
|
id: number;
|
|
5180
5310
|
updatedAt: Date;
|
|
5181
5311
|
name: string;
|
|
5312
|
+
color: string;
|
|
5182
5313
|
assignments: unknown[];
|
|
5183
5314
|
permissions: unknown[];
|
|
5184
|
-
color?: string | undefined;
|
|
5185
5315
|
}[];
|
|
5186
5316
|
pagination: {
|
|
5187
5317
|
page: number;
|
|
@@ -5196,7 +5326,7 @@ declare const EmployeeRoleFindManyResultSchema: z.ZodObject<{
|
|
|
5196
5326
|
declare const EmployeeRoleCreateResultSchema: z.ZodObject<{
|
|
5197
5327
|
id: z.ZodNumber;
|
|
5198
5328
|
name: z.ZodString;
|
|
5199
|
-
color: z.
|
|
5329
|
+
color: z.ZodString;
|
|
5200
5330
|
updatedAt: z.ZodDate;
|
|
5201
5331
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
5202
5332
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -5204,16 +5334,16 @@ declare const EmployeeRoleCreateResultSchema: z.ZodObject<{
|
|
|
5204
5334
|
id: number;
|
|
5205
5335
|
updatedAt: Date;
|
|
5206
5336
|
name: string;
|
|
5337
|
+
color: string;
|
|
5207
5338
|
assignments: unknown[];
|
|
5208
5339
|
permissions: unknown[];
|
|
5209
|
-
color?: string | undefined;
|
|
5210
5340
|
}, {
|
|
5211
5341
|
id: number;
|
|
5212
5342
|
updatedAt: Date;
|
|
5213
5343
|
name: string;
|
|
5344
|
+
color: string;
|
|
5214
5345
|
assignments: unknown[];
|
|
5215
5346
|
permissions: unknown[];
|
|
5216
|
-
color?: string | undefined;
|
|
5217
5347
|
}>;
|
|
5218
5348
|
|
|
5219
5349
|
declare const EmployeeRoleCreateManyResultSchema: z.ZodObject<{
|
|
@@ -5227,7 +5357,7 @@ declare const EmployeeRoleCreateManyResultSchema: z.ZodObject<{
|
|
|
5227
5357
|
declare const EmployeeRoleUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
5228
5358
|
id: z.ZodNumber;
|
|
5229
5359
|
name: z.ZodString;
|
|
5230
|
-
color: z.
|
|
5360
|
+
color: z.ZodString;
|
|
5231
5361
|
updatedAt: z.ZodDate;
|
|
5232
5362
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
5233
5363
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -5235,16 +5365,16 @@ declare const EmployeeRoleUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
5235
5365
|
id: number;
|
|
5236
5366
|
updatedAt: Date;
|
|
5237
5367
|
name: string;
|
|
5368
|
+
color: string;
|
|
5238
5369
|
assignments: unknown[];
|
|
5239
5370
|
permissions: unknown[];
|
|
5240
|
-
color?: string | undefined;
|
|
5241
5371
|
}, {
|
|
5242
5372
|
id: number;
|
|
5243
5373
|
updatedAt: Date;
|
|
5244
5374
|
name: string;
|
|
5375
|
+
color: string;
|
|
5245
5376
|
assignments: unknown[];
|
|
5246
5377
|
permissions: unknown[];
|
|
5247
|
-
color?: string | undefined;
|
|
5248
5378
|
}>>;
|
|
5249
5379
|
|
|
5250
5380
|
declare const EmployeeRoleUpdateManyResultSchema: z.ZodObject<{
|
|
@@ -5258,7 +5388,7 @@ declare const EmployeeRoleUpdateManyResultSchema: z.ZodObject<{
|
|
|
5258
5388
|
declare const EmployeeRoleUpsertResultSchema: z.ZodObject<{
|
|
5259
5389
|
id: z.ZodNumber;
|
|
5260
5390
|
name: z.ZodString;
|
|
5261
|
-
color: z.
|
|
5391
|
+
color: z.ZodString;
|
|
5262
5392
|
updatedAt: z.ZodDate;
|
|
5263
5393
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
5264
5394
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -5266,22 +5396,22 @@ declare const EmployeeRoleUpsertResultSchema: z.ZodObject<{
|
|
|
5266
5396
|
id: number;
|
|
5267
5397
|
updatedAt: Date;
|
|
5268
5398
|
name: string;
|
|
5399
|
+
color: string;
|
|
5269
5400
|
assignments: unknown[];
|
|
5270
5401
|
permissions: unknown[];
|
|
5271
|
-
color?: string | undefined;
|
|
5272
5402
|
}, {
|
|
5273
5403
|
id: number;
|
|
5274
5404
|
updatedAt: Date;
|
|
5275
5405
|
name: string;
|
|
5406
|
+
color: string;
|
|
5276
5407
|
assignments: unknown[];
|
|
5277
5408
|
permissions: unknown[];
|
|
5278
|
-
color?: string | undefined;
|
|
5279
5409
|
}>;
|
|
5280
5410
|
|
|
5281
5411
|
declare const EmployeeRoleDeleteResultSchema: z.ZodNullable<z.ZodObject<{
|
|
5282
5412
|
id: z.ZodNumber;
|
|
5283
5413
|
name: z.ZodString;
|
|
5284
|
-
color: z.
|
|
5414
|
+
color: z.ZodString;
|
|
5285
5415
|
updatedAt: z.ZodDate;
|
|
5286
5416
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
5287
5417
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -5289,16 +5419,16 @@ declare const EmployeeRoleDeleteResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
5289
5419
|
id: number;
|
|
5290
5420
|
updatedAt: Date;
|
|
5291
5421
|
name: string;
|
|
5422
|
+
color: string;
|
|
5292
5423
|
assignments: unknown[];
|
|
5293
5424
|
permissions: unknown[];
|
|
5294
|
-
color?: string | undefined;
|
|
5295
5425
|
}, {
|
|
5296
5426
|
id: number;
|
|
5297
5427
|
updatedAt: Date;
|
|
5298
5428
|
name: string;
|
|
5429
|
+
color: string;
|
|
5299
5430
|
assignments: unknown[];
|
|
5300
5431
|
permissions: unknown[];
|
|
5301
|
-
color?: string | undefined;
|
|
5302
5432
|
}>>;
|
|
5303
5433
|
|
|
5304
5434
|
declare const EmployeeRoleDeleteManyResultSchema: z.ZodObject<{
|
|
@@ -10560,6 +10690,8 @@ declare const EmployeeCountAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10560
10690
|
password: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10561
10691
|
firstName: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10562
10692
|
lastName: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10693
|
+
phone: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10694
|
+
avatarUrl: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10563
10695
|
warehouseId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10564
10696
|
isActive: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10565
10697
|
lastSeen: z.ZodOptional<z.ZodLiteral<true>>;
|
|
@@ -10571,6 +10703,8 @@ declare const EmployeeCountAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10571
10703
|
password?: true | undefined;
|
|
10572
10704
|
firstName?: true | undefined;
|
|
10573
10705
|
lastName?: true | undefined;
|
|
10706
|
+
phone?: true | undefined;
|
|
10707
|
+
avatarUrl?: true | undefined;
|
|
10574
10708
|
warehouseId?: true | undefined;
|
|
10575
10709
|
isActive?: true | undefined;
|
|
10576
10710
|
lastSeen?: true | undefined;
|
|
@@ -10582,6 +10716,8 @@ declare const EmployeeCountAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10582
10716
|
password?: true | undefined;
|
|
10583
10717
|
firstName?: true | undefined;
|
|
10584
10718
|
lastName?: true | undefined;
|
|
10719
|
+
phone?: true | undefined;
|
|
10720
|
+
avatarUrl?: true | undefined;
|
|
10585
10721
|
warehouseId?: true | undefined;
|
|
10586
10722
|
isActive?: true | undefined;
|
|
10587
10723
|
lastSeen?: true | undefined;
|
|
@@ -10596,6 +10732,8 @@ declare const EmployeeCountOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10596
10732
|
password: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10597
10733
|
firstName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10598
10734
|
lastName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10735
|
+
phone: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10736
|
+
avatarUrl: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10599
10737
|
warehouseId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10600
10738
|
isActive: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10601
10739
|
lastSeen: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
@@ -10606,6 +10744,8 @@ declare const EmployeeCountOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10606
10744
|
password?: "asc" | "desc" | undefined;
|
|
10607
10745
|
firstName?: "asc" | "desc" | undefined;
|
|
10608
10746
|
lastName?: "asc" | "desc" | undefined;
|
|
10747
|
+
phone?: "asc" | "desc" | undefined;
|
|
10748
|
+
avatarUrl?: "asc" | "desc" | undefined;
|
|
10609
10749
|
warehouseId?: "asc" | "desc" | undefined;
|
|
10610
10750
|
isActive?: "asc" | "desc" | undefined;
|
|
10611
10751
|
lastSeen?: "asc" | "desc" | undefined;
|
|
@@ -10616,6 +10756,8 @@ declare const EmployeeCountOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10616
10756
|
password?: "asc" | "desc" | undefined;
|
|
10617
10757
|
firstName?: "asc" | "desc" | undefined;
|
|
10618
10758
|
lastName?: "asc" | "desc" | undefined;
|
|
10759
|
+
phone?: "asc" | "desc" | undefined;
|
|
10760
|
+
avatarUrl?: "asc" | "desc" | undefined;
|
|
10619
10761
|
warehouseId?: "asc" | "desc" | undefined;
|
|
10620
10762
|
isActive?: "asc" | "desc" | undefined;
|
|
10621
10763
|
lastSeen?: "asc" | "desc" | undefined;
|
|
@@ -10678,6 +10820,8 @@ declare const EmployeeCreateInputObjectZodSchema: z.ZodObject<{
|
|
|
10678
10820
|
password: z.ZodString;
|
|
10679
10821
|
firstName: z.ZodString;
|
|
10680
10822
|
lastName: z.ZodString;
|
|
10823
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10824
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10681
10825
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10682
10826
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
10683
10827
|
warehouse: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.WarehouseCreateNestedOneWithoutEmployeesInput, z.ZodTypeDef, Prisma.WarehouseCreateNestedOneWithoutEmployeesInput>>>;
|
|
@@ -10688,6 +10832,8 @@ declare const EmployeeCreateInputObjectZodSchema: z.ZodObject<{
|
|
|
10688
10832
|
firstName: string;
|
|
10689
10833
|
lastName: string;
|
|
10690
10834
|
id?: string | undefined;
|
|
10835
|
+
phone?: string | null | undefined;
|
|
10836
|
+
avatarUrl?: string | null | undefined;
|
|
10691
10837
|
isActive?: boolean | undefined;
|
|
10692
10838
|
lastSeen?: Date | null | undefined;
|
|
10693
10839
|
warehouse?: Prisma.WarehouseCreateNestedOneWithoutEmployeesInput | undefined;
|
|
@@ -10698,6 +10844,8 @@ declare const EmployeeCreateInputObjectZodSchema: z.ZodObject<{
|
|
|
10698
10844
|
firstName: string;
|
|
10699
10845
|
lastName: string;
|
|
10700
10846
|
id?: string | undefined;
|
|
10847
|
+
phone?: string | null | undefined;
|
|
10848
|
+
avatarUrl?: string | null | undefined;
|
|
10701
10849
|
isActive?: boolean | undefined;
|
|
10702
10850
|
lastSeen?: Date | null | undefined;
|
|
10703
10851
|
warehouse?: Prisma.WarehouseCreateNestedOneWithoutEmployeesInput | undefined;
|
|
@@ -10711,6 +10859,8 @@ declare const EmployeeCreateManyInputObjectZodSchema: z.ZodObject<{
|
|
|
10711
10859
|
password: z.ZodString;
|
|
10712
10860
|
firstName: z.ZodString;
|
|
10713
10861
|
lastName: z.ZodString;
|
|
10862
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10863
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10714
10864
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
10715
10865
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10716
10866
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
@@ -10721,6 +10871,8 @@ declare const EmployeeCreateManyInputObjectZodSchema: z.ZodObject<{
|
|
|
10721
10871
|
firstName: string;
|
|
10722
10872
|
lastName: string;
|
|
10723
10873
|
id?: string | undefined;
|
|
10874
|
+
phone?: string | null | undefined;
|
|
10875
|
+
avatarUrl?: string | null | undefined;
|
|
10724
10876
|
warehouseId?: number | null | undefined;
|
|
10725
10877
|
isActive?: boolean | undefined;
|
|
10726
10878
|
lastSeen?: Date | null | undefined;
|
|
@@ -10731,6 +10883,8 @@ declare const EmployeeCreateManyInputObjectZodSchema: z.ZodObject<{
|
|
|
10731
10883
|
firstName: string;
|
|
10732
10884
|
lastName: string;
|
|
10733
10885
|
id?: string | undefined;
|
|
10886
|
+
phone?: string | null | undefined;
|
|
10887
|
+
avatarUrl?: string | null | undefined;
|
|
10734
10888
|
warehouseId?: number | null | undefined;
|
|
10735
10889
|
isActive?: boolean | undefined;
|
|
10736
10890
|
lastSeen?: Date | null | undefined;
|
|
@@ -10744,6 +10898,8 @@ declare const EmployeeCreateManyWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
10744
10898
|
password: z.ZodString;
|
|
10745
10899
|
firstName: z.ZodString;
|
|
10746
10900
|
lastName: z.ZodString;
|
|
10901
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10902
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10747
10903
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10748
10904
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
10749
10905
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -10753,6 +10909,8 @@ declare const EmployeeCreateManyWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
10753
10909
|
firstName: string;
|
|
10754
10910
|
lastName: string;
|
|
10755
10911
|
id?: string | undefined;
|
|
10912
|
+
phone?: string | null | undefined;
|
|
10913
|
+
avatarUrl?: string | null | undefined;
|
|
10756
10914
|
isActive?: boolean | undefined;
|
|
10757
10915
|
lastSeen?: Date | null | undefined;
|
|
10758
10916
|
updatedAt?: Date | undefined;
|
|
@@ -10762,6 +10920,8 @@ declare const EmployeeCreateManyWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
10762
10920
|
firstName: string;
|
|
10763
10921
|
lastName: string;
|
|
10764
10922
|
id?: string | undefined;
|
|
10923
|
+
phone?: string | null | undefined;
|
|
10924
|
+
avatarUrl?: string | null | undefined;
|
|
10765
10925
|
isActive?: boolean | undefined;
|
|
10766
10926
|
lastSeen?: Date | null | undefined;
|
|
10767
10927
|
updatedAt?: Date | undefined;
|
|
@@ -10843,6 +11003,8 @@ declare const EmployeeCreateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObj
|
|
|
10843
11003
|
password: z.ZodString;
|
|
10844
11004
|
firstName: z.ZodString;
|
|
10845
11005
|
lastName: z.ZodString;
|
|
11006
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11007
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10846
11008
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10847
11009
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
10848
11010
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -10853,6 +11015,8 @@ declare const EmployeeCreateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObj
|
|
|
10853
11015
|
firstName: string;
|
|
10854
11016
|
lastName: string;
|
|
10855
11017
|
id?: string | undefined;
|
|
11018
|
+
phone?: string | null | undefined;
|
|
11019
|
+
avatarUrl?: string | null | undefined;
|
|
10856
11020
|
isActive?: boolean | undefined;
|
|
10857
11021
|
lastSeen?: Date | null | undefined;
|
|
10858
11022
|
updatedAt?: Date | undefined;
|
|
@@ -10863,6 +11027,8 @@ declare const EmployeeCreateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObj
|
|
|
10863
11027
|
firstName: string;
|
|
10864
11028
|
lastName: string;
|
|
10865
11029
|
id?: string | undefined;
|
|
11030
|
+
phone?: string | null | undefined;
|
|
11031
|
+
avatarUrl?: string | null | undefined;
|
|
10866
11032
|
isActive?: boolean | undefined;
|
|
10867
11033
|
lastSeen?: Date | null | undefined;
|
|
10868
11034
|
updatedAt?: Date | undefined;
|
|
@@ -10876,6 +11042,8 @@ declare const EmployeeCreateWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
10876
11042
|
password: z.ZodString;
|
|
10877
11043
|
firstName: z.ZodString;
|
|
10878
11044
|
lastName: z.ZodString;
|
|
11045
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11046
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10879
11047
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10880
11048
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
10881
11049
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -10886,6 +11054,8 @@ declare const EmployeeCreateWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
10886
11054
|
firstName: string;
|
|
10887
11055
|
lastName: string;
|
|
10888
11056
|
id?: string | undefined;
|
|
11057
|
+
phone?: string | null | undefined;
|
|
11058
|
+
avatarUrl?: string | null | undefined;
|
|
10889
11059
|
isActive?: boolean | undefined;
|
|
10890
11060
|
lastSeen?: Date | null | undefined;
|
|
10891
11061
|
updatedAt?: Date | undefined;
|
|
@@ -10896,6 +11066,8 @@ declare const EmployeeCreateWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
10896
11066
|
firstName: string;
|
|
10897
11067
|
lastName: string;
|
|
10898
11068
|
id?: string | undefined;
|
|
11069
|
+
phone?: string | null | undefined;
|
|
11070
|
+
avatarUrl?: string | null | undefined;
|
|
10899
11071
|
isActive?: boolean | undefined;
|
|
10900
11072
|
lastSeen?: Date | null | undefined;
|
|
10901
11073
|
updatedAt?: Date | undefined;
|
|
@@ -10964,6 +11136,8 @@ declare const EmployeeMaxAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10964
11136
|
password: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10965
11137
|
firstName: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10966
11138
|
lastName: z.ZodOptional<z.ZodLiteral<true>>;
|
|
11139
|
+
phone: z.ZodOptional<z.ZodLiteral<true>>;
|
|
11140
|
+
avatarUrl: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10967
11141
|
warehouseId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10968
11142
|
isActive: z.ZodOptional<z.ZodLiteral<true>>;
|
|
10969
11143
|
lastSeen: z.ZodOptional<z.ZodLiteral<true>>;
|
|
@@ -10974,6 +11148,8 @@ declare const EmployeeMaxAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10974
11148
|
password?: true | undefined;
|
|
10975
11149
|
firstName?: true | undefined;
|
|
10976
11150
|
lastName?: true | undefined;
|
|
11151
|
+
phone?: true | undefined;
|
|
11152
|
+
avatarUrl?: true | undefined;
|
|
10977
11153
|
warehouseId?: true | undefined;
|
|
10978
11154
|
isActive?: true | undefined;
|
|
10979
11155
|
lastSeen?: true | undefined;
|
|
@@ -10984,6 +11160,8 @@ declare const EmployeeMaxAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10984
11160
|
password?: true | undefined;
|
|
10985
11161
|
firstName?: true | undefined;
|
|
10986
11162
|
lastName?: true | undefined;
|
|
11163
|
+
phone?: true | undefined;
|
|
11164
|
+
avatarUrl?: true | undefined;
|
|
10987
11165
|
warehouseId?: true | undefined;
|
|
10988
11166
|
isActive?: true | undefined;
|
|
10989
11167
|
lastSeen?: true | undefined;
|
|
@@ -10997,6 +11175,8 @@ declare const EmployeeMaxOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
10997
11175
|
password: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10998
11176
|
firstName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
10999
11177
|
lastName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11178
|
+
phone: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11179
|
+
avatarUrl: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11000
11180
|
warehouseId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11001
11181
|
isActive: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11002
11182
|
lastSeen: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
@@ -11007,6 +11187,8 @@ declare const EmployeeMaxOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
11007
11187
|
password?: "asc" | "desc" | undefined;
|
|
11008
11188
|
firstName?: "asc" | "desc" | undefined;
|
|
11009
11189
|
lastName?: "asc" | "desc" | undefined;
|
|
11190
|
+
phone?: "asc" | "desc" | undefined;
|
|
11191
|
+
avatarUrl?: "asc" | "desc" | undefined;
|
|
11010
11192
|
warehouseId?: "asc" | "desc" | undefined;
|
|
11011
11193
|
isActive?: "asc" | "desc" | undefined;
|
|
11012
11194
|
lastSeen?: "asc" | "desc" | undefined;
|
|
@@ -11017,6 +11199,8 @@ declare const EmployeeMaxOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
11017
11199
|
password?: "asc" | "desc" | undefined;
|
|
11018
11200
|
firstName?: "asc" | "desc" | undefined;
|
|
11019
11201
|
lastName?: "asc" | "desc" | undefined;
|
|
11202
|
+
phone?: "asc" | "desc" | undefined;
|
|
11203
|
+
avatarUrl?: "asc" | "desc" | undefined;
|
|
11020
11204
|
warehouseId?: "asc" | "desc" | undefined;
|
|
11021
11205
|
isActive?: "asc" | "desc" | undefined;
|
|
11022
11206
|
lastSeen?: "asc" | "desc" | undefined;
|
|
@@ -11030,6 +11214,8 @@ declare const EmployeeMinAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
11030
11214
|
password: z.ZodOptional<z.ZodLiteral<true>>;
|
|
11031
11215
|
firstName: z.ZodOptional<z.ZodLiteral<true>>;
|
|
11032
11216
|
lastName: z.ZodOptional<z.ZodLiteral<true>>;
|
|
11217
|
+
phone: z.ZodOptional<z.ZodLiteral<true>>;
|
|
11218
|
+
avatarUrl: z.ZodOptional<z.ZodLiteral<true>>;
|
|
11033
11219
|
warehouseId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
11034
11220
|
isActive: z.ZodOptional<z.ZodLiteral<true>>;
|
|
11035
11221
|
lastSeen: z.ZodOptional<z.ZodLiteral<true>>;
|
|
@@ -11040,6 +11226,8 @@ declare const EmployeeMinAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
11040
11226
|
password?: true | undefined;
|
|
11041
11227
|
firstName?: true | undefined;
|
|
11042
11228
|
lastName?: true | undefined;
|
|
11229
|
+
phone?: true | undefined;
|
|
11230
|
+
avatarUrl?: true | undefined;
|
|
11043
11231
|
warehouseId?: true | undefined;
|
|
11044
11232
|
isActive?: true | undefined;
|
|
11045
11233
|
lastSeen?: true | undefined;
|
|
@@ -11050,6 +11238,8 @@ declare const EmployeeMinAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
11050
11238
|
password?: true | undefined;
|
|
11051
11239
|
firstName?: true | undefined;
|
|
11052
11240
|
lastName?: true | undefined;
|
|
11241
|
+
phone?: true | undefined;
|
|
11242
|
+
avatarUrl?: true | undefined;
|
|
11053
11243
|
warehouseId?: true | undefined;
|
|
11054
11244
|
isActive?: true | undefined;
|
|
11055
11245
|
lastSeen?: true | undefined;
|
|
@@ -11063,6 +11253,8 @@ declare const EmployeeMinOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
11063
11253
|
password: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11064
11254
|
firstName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11065
11255
|
lastName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11256
|
+
phone: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11257
|
+
avatarUrl: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11066
11258
|
warehouseId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11067
11259
|
isActive: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11068
11260
|
lastSeen: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
@@ -11073,6 +11265,8 @@ declare const EmployeeMinOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
11073
11265
|
password?: "asc" | "desc" | undefined;
|
|
11074
11266
|
firstName?: "asc" | "desc" | undefined;
|
|
11075
11267
|
lastName?: "asc" | "desc" | undefined;
|
|
11268
|
+
phone?: "asc" | "desc" | undefined;
|
|
11269
|
+
avatarUrl?: "asc" | "desc" | undefined;
|
|
11076
11270
|
warehouseId?: "asc" | "desc" | undefined;
|
|
11077
11271
|
isActive?: "asc" | "desc" | undefined;
|
|
11078
11272
|
lastSeen?: "asc" | "desc" | undefined;
|
|
@@ -11083,6 +11277,8 @@ declare const EmployeeMinOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
11083
11277
|
password?: "asc" | "desc" | undefined;
|
|
11084
11278
|
firstName?: "asc" | "desc" | undefined;
|
|
11085
11279
|
lastName?: "asc" | "desc" | undefined;
|
|
11280
|
+
phone?: "asc" | "desc" | undefined;
|
|
11281
|
+
avatarUrl?: "asc" | "desc" | undefined;
|
|
11086
11282
|
warehouseId?: "asc" | "desc" | undefined;
|
|
11087
11283
|
isActive?: "asc" | "desc" | undefined;
|
|
11088
11284
|
lastSeen?: "asc" | "desc" | undefined;
|
|
@@ -11105,6 +11301,8 @@ declare const EmployeeOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
|
|
|
11105
11301
|
password: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11106
11302
|
firstName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11107
11303
|
lastName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11304
|
+
phone: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
11305
|
+
avatarUrl: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
11108
11306
|
warehouseId: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
11109
11307
|
isActive: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11110
11308
|
lastSeen: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
@@ -11120,6 +11318,8 @@ declare const EmployeeOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
|
|
|
11120
11318
|
password?: "asc" | "desc" | undefined;
|
|
11121
11319
|
firstName?: "asc" | "desc" | undefined;
|
|
11122
11320
|
lastName?: "asc" | "desc" | undefined;
|
|
11321
|
+
phone?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11322
|
+
avatarUrl?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11123
11323
|
warehouseId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11124
11324
|
isActive?: "asc" | "desc" | undefined;
|
|
11125
11325
|
lastSeen?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
@@ -11135,6 +11335,8 @@ declare const EmployeeOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
|
|
|
11135
11335
|
password?: "asc" | "desc" | undefined;
|
|
11136
11336
|
firstName?: "asc" | "desc" | undefined;
|
|
11137
11337
|
lastName?: "asc" | "desc" | undefined;
|
|
11338
|
+
phone?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11339
|
+
avatarUrl?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11138
11340
|
warehouseId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11139
11341
|
isActive?: "asc" | "desc" | undefined;
|
|
11140
11342
|
lastSeen?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
@@ -11153,6 +11355,8 @@ declare const EmployeeOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
|
|
11153
11355
|
password: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11154
11356
|
firstName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11155
11357
|
lastName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11358
|
+
phone: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
11359
|
+
avatarUrl: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
11156
11360
|
warehouseId: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
11157
11361
|
isActive: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
11158
11362
|
lastSeen: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
@@ -11165,6 +11369,8 @@ declare const EmployeeOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
|
|
11165
11369
|
password?: "asc" | "desc" | undefined;
|
|
11166
11370
|
firstName?: "asc" | "desc" | undefined;
|
|
11167
11371
|
lastName?: "asc" | "desc" | undefined;
|
|
11372
|
+
phone?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11373
|
+
avatarUrl?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11168
11374
|
warehouseId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11169
11375
|
isActive?: "asc" | "desc" | undefined;
|
|
11170
11376
|
lastSeen?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
@@ -11177,6 +11383,8 @@ declare const EmployeeOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
|
|
11177
11383
|
password?: "asc" | "desc" | undefined;
|
|
11178
11384
|
firstName?: "asc" | "desc" | undefined;
|
|
11179
11385
|
lastName?: "asc" | "desc" | undefined;
|
|
11386
|
+
phone?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11387
|
+
avatarUrl?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11180
11388
|
warehouseId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
11181
11389
|
isActive?: "asc" | "desc" | undefined;
|
|
11182
11390
|
lastSeen?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
@@ -13044,17 +13252,17 @@ declare const EmployeeRoleCountOutputTypeSelectObjectZodSchema: z.ZodObject<{
|
|
|
13044
13252
|
declare const EmployeeRoleCreateInputObjectSchema: z.ZodType<Prisma.EmployeeRoleCreateInput>;
|
|
13045
13253
|
declare const EmployeeRoleCreateInputObjectZodSchema: z.ZodObject<{
|
|
13046
13254
|
name: z.ZodString;
|
|
13047
|
-
color: z.
|
|
13255
|
+
color: z.ZodString;
|
|
13048
13256
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput>>>;
|
|
13049
13257
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput>>>;
|
|
13050
13258
|
}, "strict", z.ZodTypeAny, {
|
|
13051
13259
|
name: string;
|
|
13052
|
-
color
|
|
13260
|
+
color: string;
|
|
13053
13261
|
assignments?: Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
13054
13262
|
permissions?: Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
13055
13263
|
}, {
|
|
13056
13264
|
name: string;
|
|
13057
|
-
color
|
|
13265
|
+
color: string;
|
|
13058
13266
|
assignments?: Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
13059
13267
|
permissions?: Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
13060
13268
|
}>;
|
|
@@ -13063,18 +13271,18 @@ declare const EmployeeRoleCreateManyInputObjectSchema: z.ZodType<Prisma.Employee
|
|
|
13063
13271
|
declare const EmployeeRoleCreateManyInputObjectZodSchema: z.ZodObject<{
|
|
13064
13272
|
id: z.ZodOptional<z.ZodNumber>;
|
|
13065
13273
|
name: z.ZodString;
|
|
13066
|
-
color: z.
|
|
13274
|
+
color: z.ZodString;
|
|
13067
13275
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
13068
13276
|
}, "strict", z.ZodTypeAny, {
|
|
13069
13277
|
name: string;
|
|
13278
|
+
color: string;
|
|
13070
13279
|
id?: number | undefined;
|
|
13071
13280
|
updatedAt?: Date | undefined;
|
|
13072
|
-
color?: string | null | undefined;
|
|
13073
13281
|
}, {
|
|
13074
13282
|
name: string;
|
|
13283
|
+
color: string;
|
|
13075
13284
|
id?: number | undefined;
|
|
13076
13285
|
updatedAt?: Date | undefined;
|
|
13077
|
-
color?: string | null | undefined;
|
|
13078
13286
|
}>;
|
|
13079
13287
|
|
|
13080
13288
|
declare const EmployeeRoleCreateNestedOneWithoutAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeRoleCreateNestedOneWithoutAssignmentsInput>;
|
|
@@ -13134,36 +13342,36 @@ declare const EmployeeRoleCreateOrConnectWithoutPermissionsInputObjectZodSchema:
|
|
|
13134
13342
|
declare const EmployeeRoleCreateWithoutAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeRoleCreateWithoutAssignmentsInput>;
|
|
13135
13343
|
declare const EmployeeRoleCreateWithoutAssignmentsInputObjectZodSchema: z.ZodObject<{
|
|
13136
13344
|
name: z.ZodString;
|
|
13137
|
-
color: z.
|
|
13345
|
+
color: z.ZodString;
|
|
13138
13346
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
13139
13347
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput>>>;
|
|
13140
13348
|
}, "strict", z.ZodTypeAny, {
|
|
13141
13349
|
name: string;
|
|
13350
|
+
color: string;
|
|
13142
13351
|
updatedAt?: Date | undefined;
|
|
13143
|
-
color?: string | null | undefined;
|
|
13144
13352
|
permissions?: Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
13145
13353
|
}, {
|
|
13146
13354
|
name: string;
|
|
13355
|
+
color: string;
|
|
13147
13356
|
updatedAt?: Date | undefined;
|
|
13148
|
-
color?: string | null | undefined;
|
|
13149
13357
|
permissions?: Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
13150
13358
|
}>;
|
|
13151
13359
|
|
|
13152
13360
|
declare const EmployeeRoleCreateWithoutPermissionsInputObjectSchema: z.ZodType<Prisma.EmployeeRoleCreateWithoutPermissionsInput>;
|
|
13153
13361
|
declare const EmployeeRoleCreateWithoutPermissionsInputObjectZodSchema: z.ZodObject<{
|
|
13154
13362
|
name: z.ZodString;
|
|
13155
|
-
color: z.
|
|
13363
|
+
color: z.ZodString;
|
|
13156
13364
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
13157
13365
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput>>>;
|
|
13158
13366
|
}, "strict", z.ZodTypeAny, {
|
|
13159
13367
|
name: string;
|
|
13368
|
+
color: string;
|
|
13160
13369
|
updatedAt?: Date | undefined;
|
|
13161
|
-
color?: string | null | undefined;
|
|
13162
13370
|
assignments?: Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
13163
13371
|
}, {
|
|
13164
13372
|
name: string;
|
|
13373
|
+
color: string;
|
|
13165
13374
|
updatedAt?: Date | undefined;
|
|
13166
|
-
color?: string | null | undefined;
|
|
13167
13375
|
assignments?: Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
13168
13376
|
}>;
|
|
13169
13377
|
|
|
@@ -13268,7 +13476,7 @@ declare const EmployeeRoleOrderByWithAggregationInputObjectSchema: z.ZodType<Pri
|
|
|
13268
13476
|
declare const EmployeeRoleOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
|
|
13269
13477
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
13270
13478
|
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
13271
|
-
color: z.ZodOptional<z.
|
|
13479
|
+
color: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
13272
13480
|
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
13273
13481
|
_count: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleCountOrderByAggregateInput, z.ZodTypeDef, Prisma.EmployeeRoleCountOrderByAggregateInput>>>;
|
|
13274
13482
|
_avg: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAvgOrderByAggregateInput, z.ZodTypeDef, Prisma.EmployeeRoleAvgOrderByAggregateInput>>>;
|
|
@@ -13279,7 +13487,7 @@ declare const EmployeeRoleOrderByWithAggregationInputObjectZodSchema: z.ZodObjec
|
|
|
13279
13487
|
id?: "asc" | "desc" | undefined;
|
|
13280
13488
|
updatedAt?: "asc" | "desc" | undefined;
|
|
13281
13489
|
name?: "asc" | "desc" | undefined;
|
|
13282
|
-
color?: "asc" | "desc" |
|
|
13490
|
+
color?: "asc" | "desc" | undefined;
|
|
13283
13491
|
_count?: Prisma.EmployeeRoleCountOrderByAggregateInput | undefined;
|
|
13284
13492
|
_min?: Prisma.EmployeeRoleMinOrderByAggregateInput | undefined;
|
|
13285
13493
|
_max?: Prisma.EmployeeRoleMaxOrderByAggregateInput | undefined;
|
|
@@ -13289,7 +13497,7 @@ declare const EmployeeRoleOrderByWithAggregationInputObjectZodSchema: z.ZodObjec
|
|
|
13289
13497
|
id?: "asc" | "desc" | undefined;
|
|
13290
13498
|
updatedAt?: "asc" | "desc" | undefined;
|
|
13291
13499
|
name?: "asc" | "desc" | undefined;
|
|
13292
|
-
color?: "asc" | "desc" |
|
|
13500
|
+
color?: "asc" | "desc" | undefined;
|
|
13293
13501
|
_count?: Prisma.EmployeeRoleCountOrderByAggregateInput | undefined;
|
|
13294
13502
|
_min?: Prisma.EmployeeRoleMinOrderByAggregateInput | undefined;
|
|
13295
13503
|
_max?: Prisma.EmployeeRoleMaxOrderByAggregateInput | undefined;
|
|
@@ -13301,7 +13509,7 @@ declare const EmployeeRoleOrderByWithRelationInputObjectSchema: z.ZodType<Prisma
|
|
|
13301
13509
|
declare const EmployeeRoleOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
|
13302
13510
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
13303
13511
|
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
13304
|
-
color: z.ZodOptional<z.
|
|
13512
|
+
color: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
13305
13513
|
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
13306
13514
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentOrderByRelationAggregateInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentOrderByRelationAggregateInput>>>;
|
|
13307
13515
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionOrderByRelationAggregateInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionOrderByRelationAggregateInput>>>;
|
|
@@ -13309,14 +13517,14 @@ declare const EmployeeRoleOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
|
|
13309
13517
|
id?: "asc" | "desc" | undefined;
|
|
13310
13518
|
updatedAt?: "asc" | "desc" | undefined;
|
|
13311
13519
|
name?: "asc" | "desc" | undefined;
|
|
13312
|
-
color?: "asc" | "desc" |
|
|
13520
|
+
color?: "asc" | "desc" | undefined;
|
|
13313
13521
|
assignments?: Prisma.EmployeeRoleAssignmentOrderByRelationAggregateInput | undefined;
|
|
13314
13522
|
permissions?: Prisma.EmployeeRolePermissionOrderByRelationAggregateInput | undefined;
|
|
13315
13523
|
}, {
|
|
13316
13524
|
id?: "asc" | "desc" | undefined;
|
|
13317
13525
|
updatedAt?: "asc" | "desc" | undefined;
|
|
13318
13526
|
name?: "asc" | "desc" | undefined;
|
|
13319
|
-
color?: "asc" | "desc" |
|
|
13527
|
+
color?: "asc" | "desc" | undefined;
|
|
13320
13528
|
assignments?: Prisma.EmployeeRoleAssignmentOrderByRelationAggregateInput | undefined;
|
|
13321
13529
|
permissions?: Prisma.EmployeeRolePermissionOrderByRelationAggregateInput | undefined;
|
|
13322
13530
|
}>;
|
|
@@ -14447,13 +14655,13 @@ declare const EmployeeRoleScalarWhereWithAggregatesInputObjectZodSchema: z.ZodOb
|
|
|
14447
14655
|
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
14656
|
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntWithAggregatesFilter<never>>>, z.ZodNumber]>>;
|
|
14449
14657
|
name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
|
|
14450
|
-
color: z.
|
|
14658
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
|
|
14451
14659
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.DateTimeWithAggregatesFilter<never>>>, z.ZodDate]>>;
|
|
14452
14660
|
}, "strict", z.ZodTypeAny, {
|
|
14453
14661
|
id?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
|
|
14454
14662
|
updatedAt?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
|
|
14455
14663
|
name?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
14456
|
-
color?: string | Prisma.
|
|
14664
|
+
color?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
14457
14665
|
AND?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput | Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
|
|
14458
14666
|
OR?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
|
|
14459
14667
|
NOT?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput | Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
|
|
@@ -14461,7 +14669,7 @@ declare const EmployeeRoleScalarWhereWithAggregatesInputObjectZodSchema: z.ZodOb
|
|
|
14461
14669
|
id?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
|
|
14462
14670
|
updatedAt?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
|
|
14463
14671
|
name?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
14464
|
-
color?: string | Prisma.
|
|
14672
|
+
color?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
14465
14673
|
AND?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput | Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
|
|
14466
14674
|
OR?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
|
|
14467
14675
|
NOT?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput | Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
|
|
@@ -14526,19 +14734,19 @@ declare const EmployeeRoleUncheckedCreateInputObjectSchema: z.ZodType<Prisma.Emp
|
|
|
14526
14734
|
declare const EmployeeRoleUncheckedCreateInputObjectZodSchema: z.ZodObject<{
|
|
14527
14735
|
id: z.ZodOptional<z.ZodNumber>;
|
|
14528
14736
|
name: z.ZodString;
|
|
14529
|
-
color: z.
|
|
14737
|
+
color: z.ZodString;
|
|
14530
14738
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput>>>;
|
|
14531
14739
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput>>>;
|
|
14532
14740
|
}, "strict", z.ZodTypeAny, {
|
|
14533
14741
|
name: string;
|
|
14742
|
+
color: string;
|
|
14534
14743
|
id?: number | undefined;
|
|
14535
|
-
color?: string | null | undefined;
|
|
14536
14744
|
assignments?: Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
14537
14745
|
permissions?: Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
14538
14746
|
}, {
|
|
14539
14747
|
name: string;
|
|
14748
|
+
color: string;
|
|
14540
14749
|
id?: number | undefined;
|
|
14541
|
-
color?: string | null | undefined;
|
|
14542
14750
|
assignments?: Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
14543
14751
|
permissions?: Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
14544
14752
|
}>;
|
|
@@ -14547,20 +14755,20 @@ declare const EmployeeRoleUncheckedCreateWithoutAssignmentsInputObjectSchema: z.
|
|
|
14547
14755
|
declare const EmployeeRoleUncheckedCreateWithoutAssignmentsInputObjectZodSchema: z.ZodObject<{
|
|
14548
14756
|
id: z.ZodOptional<z.ZodNumber>;
|
|
14549
14757
|
name: z.ZodString;
|
|
14550
|
-
color: z.
|
|
14758
|
+
color: z.ZodString;
|
|
14551
14759
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
14552
14760
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput>>>;
|
|
14553
14761
|
}, "strict", z.ZodTypeAny, {
|
|
14554
14762
|
name: string;
|
|
14763
|
+
color: string;
|
|
14555
14764
|
id?: number | undefined;
|
|
14556
14765
|
updatedAt?: Date | undefined;
|
|
14557
|
-
color?: string | null | undefined;
|
|
14558
14766
|
permissions?: Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
14559
14767
|
}, {
|
|
14560
14768
|
name: string;
|
|
14769
|
+
color: string;
|
|
14561
14770
|
id?: number | undefined;
|
|
14562
14771
|
updatedAt?: Date | undefined;
|
|
14563
|
-
color?: string | null | undefined;
|
|
14564
14772
|
permissions?: Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
14565
14773
|
}>;
|
|
14566
14774
|
|
|
@@ -14568,20 +14776,20 @@ declare const EmployeeRoleUncheckedCreateWithoutPermissionsInputObjectSchema: z.
|
|
|
14568
14776
|
declare const EmployeeRoleUncheckedCreateWithoutPermissionsInputObjectZodSchema: z.ZodObject<{
|
|
14569
14777
|
id: z.ZodOptional<z.ZodNumber>;
|
|
14570
14778
|
name: z.ZodString;
|
|
14571
|
-
color: z.
|
|
14779
|
+
color: z.ZodString;
|
|
14572
14780
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
14573
14781
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput>>>;
|
|
14574
14782
|
}, "strict", z.ZodTypeAny, {
|
|
14575
14783
|
name: string;
|
|
14784
|
+
color: string;
|
|
14576
14785
|
id?: number | undefined;
|
|
14577
14786
|
updatedAt?: Date | undefined;
|
|
14578
|
-
color?: string | null | undefined;
|
|
14579
14787
|
assignments?: Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
14580
14788
|
}, {
|
|
14581
14789
|
name: string;
|
|
14790
|
+
color: string;
|
|
14582
14791
|
id?: number | undefined;
|
|
14583
14792
|
updatedAt?: Date | undefined;
|
|
14584
|
-
color?: string | null | undefined;
|
|
14585
14793
|
assignments?: Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
|
|
14586
14794
|
}>;
|
|
14587
14795
|
|
|
@@ -14589,7 +14797,7 @@ declare const EmployeeRoleUncheckedUpdateInputObjectSchema: z.ZodType<Prisma.Emp
|
|
|
14589
14797
|
declare const EmployeeRoleUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
|
|
14590
14798
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
14591
14799
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14592
|
-
color: z.
|
|
14800
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14593
14801
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
14594
14802
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput>>>;
|
|
14595
14803
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput>>>;
|
|
@@ -14597,14 +14805,14 @@ declare const EmployeeRoleUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
14597
14805
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
14598
14806
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14599
14807
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14600
|
-
color?: string | Prisma.
|
|
14808
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14601
14809
|
assignments?: Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14602
14810
|
permissions?: Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14603
14811
|
}, {
|
|
14604
14812
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
14605
14813
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14606
14814
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14607
|
-
color?: string | Prisma.
|
|
14815
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14608
14816
|
assignments?: Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14609
14817
|
permissions?: Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14610
14818
|
}>;
|
|
@@ -14613,38 +14821,38 @@ declare const EmployeeRoleUncheckedUpdateManyInputObjectSchema: z.ZodType<Prisma
|
|
|
14613
14821
|
declare const EmployeeRoleUncheckedUpdateManyInputObjectZodSchema: z.ZodObject<{
|
|
14614
14822
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
14615
14823
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14616
|
-
color: z.
|
|
14824
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14617
14825
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
14618
14826
|
}, "strict", z.ZodTypeAny, {
|
|
14619
14827
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
14620
14828
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14621
14829
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14622
|
-
color?: string | Prisma.
|
|
14830
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14623
14831
|
}, {
|
|
14624
14832
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
14625
14833
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14626
14834
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14627
|
-
color?: string | Prisma.
|
|
14835
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14628
14836
|
}>;
|
|
14629
14837
|
|
|
14630
14838
|
declare const EmployeeRoleUncheckedUpdateWithoutAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeRoleUncheckedUpdateWithoutAssignmentsInput>;
|
|
14631
14839
|
declare const EmployeeRoleUncheckedUpdateWithoutAssignmentsInputObjectZodSchema: z.ZodObject<{
|
|
14632
14840
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
14633
14841
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14634
|
-
color: z.
|
|
14842
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14635
14843
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
14636
14844
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput>>>;
|
|
14637
14845
|
}, "strict", z.ZodTypeAny, {
|
|
14638
14846
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
14639
14847
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14640
14848
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14641
|
-
color?: string | Prisma.
|
|
14849
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14642
14850
|
permissions?: Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14643
14851
|
}, {
|
|
14644
14852
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
14645
14853
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14646
14854
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14647
|
-
color?: string | Prisma.
|
|
14855
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14648
14856
|
permissions?: Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14649
14857
|
}>;
|
|
14650
14858
|
|
|
@@ -14652,40 +14860,40 @@ declare const EmployeeRoleUncheckedUpdateWithoutPermissionsInputObjectSchema: z.
|
|
|
14652
14860
|
declare const EmployeeRoleUncheckedUpdateWithoutPermissionsInputObjectZodSchema: z.ZodObject<{
|
|
14653
14861
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
14654
14862
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14655
|
-
color: z.
|
|
14863
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14656
14864
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
14657
14865
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput>>>;
|
|
14658
14866
|
}, "strict", z.ZodTypeAny, {
|
|
14659
14867
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
14660
14868
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14661
14869
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14662
|
-
color?: string | Prisma.
|
|
14870
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14663
14871
|
assignments?: Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14664
14872
|
}, {
|
|
14665
14873
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
14666
14874
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14667
14875
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14668
|
-
color?: string | Prisma.
|
|
14876
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14669
14877
|
assignments?: Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14670
14878
|
}>;
|
|
14671
14879
|
|
|
14672
14880
|
declare const EmployeeRoleUpdateInputObjectSchema: z.ZodType<Prisma.EmployeeRoleUpdateInput>;
|
|
14673
14881
|
declare const EmployeeRoleUpdateInputObjectZodSchema: z.ZodObject<{
|
|
14674
14882
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14675
|
-
color: z.
|
|
14883
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14676
14884
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
14677
14885
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput>>>;
|
|
14678
14886
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput>>>;
|
|
14679
14887
|
}, "strict", z.ZodTypeAny, {
|
|
14680
14888
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14681
14889
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14682
|
-
color?: string | Prisma.
|
|
14890
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14683
14891
|
assignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14684
14892
|
permissions?: Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14685
14893
|
}, {
|
|
14686
14894
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14687
14895
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14688
|
-
color?: string | Prisma.
|
|
14896
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14689
14897
|
assignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14690
14898
|
permissions?: Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14691
14899
|
}>;
|
|
@@ -14693,16 +14901,16 @@ declare const EmployeeRoleUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
14693
14901
|
declare const EmployeeRoleUpdateManyMutationInputObjectSchema: z.ZodType<Prisma.EmployeeRoleUpdateManyMutationInput>;
|
|
14694
14902
|
declare const EmployeeRoleUpdateManyMutationInputObjectZodSchema: z.ZodObject<{
|
|
14695
14903
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14696
|
-
color: z.
|
|
14904
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14697
14905
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
14698
14906
|
}, "strict", z.ZodTypeAny, {
|
|
14699
14907
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14700
14908
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14701
|
-
color?: string | Prisma.
|
|
14909
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14702
14910
|
}, {
|
|
14703
14911
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14704
14912
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14705
|
-
color?: string | Prisma.
|
|
14913
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14706
14914
|
}>;
|
|
14707
14915
|
|
|
14708
14916
|
declare const EmployeeRoleUpdateOneRequiredWithoutAssignmentsNestedInputObjectSchema: z.ZodType<Prisma.EmployeeRoleUpdateOneRequiredWithoutAssignmentsNestedInput>;
|
|
@@ -14774,36 +14982,36 @@ declare const EmployeeRoleUpdateToOneWithWhereWithoutPermissionsInputObjectZodSc
|
|
|
14774
14982
|
declare const EmployeeRoleUpdateWithoutAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeRoleUpdateWithoutAssignmentsInput>;
|
|
14775
14983
|
declare const EmployeeRoleUpdateWithoutAssignmentsInputObjectZodSchema: z.ZodObject<{
|
|
14776
14984
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14777
|
-
color: z.
|
|
14985
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14778
14986
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
14779
14987
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput>>>;
|
|
14780
14988
|
}, "strict", z.ZodTypeAny, {
|
|
14781
14989
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14782
14990
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14783
|
-
color?: string | Prisma.
|
|
14991
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14784
14992
|
permissions?: Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14785
14993
|
}, {
|
|
14786
14994
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14787
14995
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14788
|
-
color?: string | Prisma.
|
|
14996
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14789
14997
|
permissions?: Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14790
14998
|
}>;
|
|
14791
14999
|
|
|
14792
15000
|
declare const EmployeeRoleUpdateWithoutPermissionsInputObjectSchema: z.ZodType<Prisma.EmployeeRoleUpdateWithoutPermissionsInput>;
|
|
14793
15001
|
declare const EmployeeRoleUpdateWithoutPermissionsInputObjectZodSchema: z.ZodObject<{
|
|
14794
15002
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14795
|
-
color: z.
|
|
15003
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
14796
15004
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
14797
15005
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput>>>;
|
|
14798
15006
|
}, "strict", z.ZodTypeAny, {
|
|
14799
15007
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14800
15008
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14801
|
-
color?: string | Prisma.
|
|
15009
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14802
15010
|
assignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14803
15011
|
}, {
|
|
14804
15012
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
14805
15013
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14806
|
-
color?: string | Prisma.
|
|
15014
|
+
color?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
14807
15015
|
assignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput | undefined;
|
|
14808
15016
|
}>;
|
|
14809
15017
|
|
|
@@ -14844,7 +15052,7 @@ declare const EmployeeRoleWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
14844
15052
|
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
15053
|
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
|
14846
15054
|
name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
14847
|
-
color: z.
|
|
15055
|
+
color: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
14848
15056
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
14849
15057
|
assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentListRelationFilter, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentListRelationFilter>>>;
|
|
14850
15058
|
permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionListRelationFilter, z.ZodTypeDef, Prisma.EmployeeRolePermissionListRelationFilter>>>;
|
|
@@ -14852,7 +15060,7 @@ declare const EmployeeRoleWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
14852
15060
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
14853
15061
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
14854
15062
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
14855
|
-
color?: string | Prisma.
|
|
15063
|
+
color?: string | Prisma.StringFilter<never> | undefined;
|
|
14856
15064
|
AND?: Prisma.EmployeeRoleWhereInput | Prisma.EmployeeRoleWhereInput[] | undefined;
|
|
14857
15065
|
OR?: Prisma.EmployeeRoleWhereInput[] | undefined;
|
|
14858
15066
|
NOT?: Prisma.EmployeeRoleWhereInput | Prisma.EmployeeRoleWhereInput[] | undefined;
|
|
@@ -14862,7 +15070,7 @@ declare const EmployeeRoleWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
14862
15070
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
14863
15071
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
14864
15072
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
14865
|
-
color?: string | Prisma.
|
|
15073
|
+
color?: string | Prisma.StringFilter<never> | undefined;
|
|
14866
15074
|
AND?: Prisma.EmployeeRoleWhereInput | Prisma.EmployeeRoleWhereInput[] | undefined;
|
|
14867
15075
|
OR?: Prisma.EmployeeRoleWhereInput[] | undefined;
|
|
14868
15076
|
NOT?: Prisma.EmployeeRoleWhereInput | Prisma.EmployeeRoleWhereInput[] | undefined;
|
|
@@ -14904,6 +15112,8 @@ declare const EmployeeScalarWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
14904
15112
|
password: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
14905
15113
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
14906
15114
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
15115
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
|
|
15116
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
|
|
14907
15117
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
14908
15118
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BoolFilter<never>, z.ZodTypeDef, Prisma.BoolFilter<never>>>, z.ZodBoolean]>>;
|
|
14909
15119
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeNullableFilter<never>, z.ZodTypeDef, Prisma.DateTimeNullableFilter<never>>>, z.ZodDate]>>>;
|
|
@@ -14914,6 +15124,8 @@ declare const EmployeeScalarWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
14914
15124
|
password?: string | Prisma.StringFilter<never> | undefined;
|
|
14915
15125
|
firstName?: string | Prisma.StringFilter<never> | undefined;
|
|
14916
15126
|
lastName?: string | Prisma.StringFilter<never> | undefined;
|
|
15127
|
+
phone?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
15128
|
+
avatarUrl?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
14917
15129
|
warehouseId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
14918
15130
|
isActive?: boolean | Prisma.BoolFilter<never> | undefined;
|
|
14919
15131
|
lastSeen?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
@@ -14927,6 +15139,8 @@ declare const EmployeeScalarWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
14927
15139
|
password?: string | Prisma.StringFilter<never> | undefined;
|
|
14928
15140
|
firstName?: string | Prisma.StringFilter<never> | undefined;
|
|
14929
15141
|
lastName?: string | Prisma.StringFilter<never> | undefined;
|
|
15142
|
+
phone?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
15143
|
+
avatarUrl?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
14930
15144
|
warehouseId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
14931
15145
|
isActive?: boolean | Prisma.BoolFilter<never> | undefined;
|
|
14932
15146
|
lastSeen?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
@@ -14946,6 +15160,8 @@ declare const EmployeeScalarWhereWithAggregatesInputObjectZodSchema: z.ZodObject
|
|
|
14946
15160
|
password: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
|
|
14947
15161
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
|
|
14948
15162
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
|
|
15163
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringNullableWithAggregatesFilter<never>>>, z.ZodString]>>>;
|
|
15164
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringNullableWithAggregatesFilter<never>>>, z.ZodString]>>>;
|
|
14949
15165
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntNullableWithAggregatesFilter<never>>>, z.ZodNumber]>>>;
|
|
14950
15166
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BoolWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.BoolWithAggregatesFilter<never>>>, z.ZodBoolean]>>;
|
|
14951
15167
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.DateTimeNullableWithAggregatesFilter<never>>>, z.ZodDate]>>>;
|
|
@@ -14956,6 +15172,8 @@ declare const EmployeeScalarWhereWithAggregatesInputObjectZodSchema: z.ZodObject
|
|
|
14956
15172
|
password?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
14957
15173
|
firstName?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
14958
15174
|
lastName?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
15175
|
+
phone?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
|
|
15176
|
+
avatarUrl?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
|
|
14959
15177
|
warehouseId?: number | Prisma.IntNullableWithAggregatesFilter<never> | null | undefined;
|
|
14960
15178
|
isActive?: boolean | Prisma.BoolWithAggregatesFilter<never> | undefined;
|
|
14961
15179
|
lastSeen?: Date | Prisma.DateTimeNullableWithAggregatesFilter<never> | null | undefined;
|
|
@@ -14969,6 +15187,8 @@ declare const EmployeeScalarWhereWithAggregatesInputObjectZodSchema: z.ZodObject
|
|
|
14969
15187
|
password?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
14970
15188
|
firstName?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
14971
15189
|
lastName?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
15190
|
+
phone?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
|
|
15191
|
+
avatarUrl?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
|
|
14972
15192
|
warehouseId?: number | Prisma.IntNullableWithAggregatesFilter<never> | null | undefined;
|
|
14973
15193
|
isActive?: boolean | Prisma.BoolWithAggregatesFilter<never> | undefined;
|
|
14974
15194
|
lastSeen?: Date | Prisma.DateTimeNullableWithAggregatesFilter<never> | null | undefined;
|
|
@@ -14985,6 +15205,8 @@ declare const EmployeeSelectObjectZodSchema: z.ZodObject<{
|
|
|
14985
15205
|
password: z.ZodOptional<z.ZodBoolean>;
|
|
14986
15206
|
firstName: z.ZodOptional<z.ZodBoolean>;
|
|
14987
15207
|
lastName: z.ZodOptional<z.ZodBoolean>;
|
|
15208
|
+
phone: z.ZodOptional<z.ZodBoolean>;
|
|
15209
|
+
avatarUrl: z.ZodOptional<z.ZodBoolean>;
|
|
14988
15210
|
warehouseId: z.ZodOptional<z.ZodBoolean>;
|
|
14989
15211
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
14990
15212
|
lastSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -15013,6 +15235,8 @@ declare const EmployeeSelectObjectZodSchema: z.ZodObject<{
|
|
|
15013
15235
|
password?: boolean | undefined;
|
|
15014
15236
|
firstName?: boolean | undefined;
|
|
15015
15237
|
lastName?: boolean | undefined;
|
|
15238
|
+
phone?: boolean | undefined;
|
|
15239
|
+
avatarUrl?: boolean | undefined;
|
|
15016
15240
|
warehouseId?: boolean | undefined;
|
|
15017
15241
|
isActive?: boolean | undefined;
|
|
15018
15242
|
lastSeen?: boolean | undefined;
|
|
@@ -15031,6 +15255,8 @@ declare const EmployeeSelectObjectZodSchema: z.ZodObject<{
|
|
|
15031
15255
|
password?: boolean | undefined;
|
|
15032
15256
|
firstName?: boolean | undefined;
|
|
15033
15257
|
lastName?: boolean | undefined;
|
|
15258
|
+
phone?: boolean | undefined;
|
|
15259
|
+
avatarUrl?: boolean | undefined;
|
|
15034
15260
|
warehouseId?: boolean | undefined;
|
|
15035
15261
|
isActive?: boolean | undefined;
|
|
15036
15262
|
lastSeen?: boolean | undefined;
|
|
@@ -15070,6 +15296,8 @@ declare const EmployeeUncheckedCreateInputObjectZodSchema: z.ZodObject<{
|
|
|
15070
15296
|
password: z.ZodString;
|
|
15071
15297
|
firstName: z.ZodString;
|
|
15072
15298
|
lastName: z.ZodString;
|
|
15299
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15300
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15073
15301
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
15074
15302
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
15075
15303
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
@@ -15080,6 +15308,8 @@ declare const EmployeeUncheckedCreateInputObjectZodSchema: z.ZodObject<{
|
|
|
15080
15308
|
firstName: string;
|
|
15081
15309
|
lastName: string;
|
|
15082
15310
|
id?: string | undefined;
|
|
15311
|
+
phone?: string | null | undefined;
|
|
15312
|
+
avatarUrl?: string | null | undefined;
|
|
15083
15313
|
warehouseId?: number | null | undefined;
|
|
15084
15314
|
isActive?: boolean | undefined;
|
|
15085
15315
|
lastSeen?: Date | null | undefined;
|
|
@@ -15090,6 +15320,8 @@ declare const EmployeeUncheckedCreateInputObjectZodSchema: z.ZodObject<{
|
|
|
15090
15320
|
firstName: string;
|
|
15091
15321
|
lastName: string;
|
|
15092
15322
|
id?: string | undefined;
|
|
15323
|
+
phone?: string | null | undefined;
|
|
15324
|
+
avatarUrl?: string | null | undefined;
|
|
15093
15325
|
warehouseId?: number | null | undefined;
|
|
15094
15326
|
isActive?: boolean | undefined;
|
|
15095
15327
|
lastSeen?: Date | null | undefined;
|
|
@@ -15121,6 +15353,8 @@ declare const EmployeeUncheckedCreateWithoutRoleAssignmentsInputObjectZodSchema:
|
|
|
15121
15353
|
password: z.ZodString;
|
|
15122
15354
|
firstName: z.ZodString;
|
|
15123
15355
|
lastName: z.ZodString;
|
|
15356
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15357
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15124
15358
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
15125
15359
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
15126
15360
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
@@ -15131,6 +15365,8 @@ declare const EmployeeUncheckedCreateWithoutRoleAssignmentsInputObjectZodSchema:
|
|
|
15131
15365
|
firstName: string;
|
|
15132
15366
|
lastName: string;
|
|
15133
15367
|
id?: string | undefined;
|
|
15368
|
+
phone?: string | null | undefined;
|
|
15369
|
+
avatarUrl?: string | null | undefined;
|
|
15134
15370
|
warehouseId?: number | null | undefined;
|
|
15135
15371
|
isActive?: boolean | undefined;
|
|
15136
15372
|
lastSeen?: Date | null | undefined;
|
|
@@ -15141,6 +15377,8 @@ declare const EmployeeUncheckedCreateWithoutRoleAssignmentsInputObjectZodSchema:
|
|
|
15141
15377
|
firstName: string;
|
|
15142
15378
|
lastName: string;
|
|
15143
15379
|
id?: string | undefined;
|
|
15380
|
+
phone?: string | null | undefined;
|
|
15381
|
+
avatarUrl?: string | null | undefined;
|
|
15144
15382
|
warehouseId?: number | null | undefined;
|
|
15145
15383
|
isActive?: boolean | undefined;
|
|
15146
15384
|
lastSeen?: Date | null | undefined;
|
|
@@ -15154,6 +15392,8 @@ declare const EmployeeUncheckedCreateWithoutWarehouseInputObjectZodSchema: z.Zod
|
|
|
15154
15392
|
password: z.ZodString;
|
|
15155
15393
|
firstName: z.ZodString;
|
|
15156
15394
|
lastName: z.ZodString;
|
|
15395
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15396
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15157
15397
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
15158
15398
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
15159
15399
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -15164,6 +15404,8 @@ declare const EmployeeUncheckedCreateWithoutWarehouseInputObjectZodSchema: z.Zod
|
|
|
15164
15404
|
firstName: string;
|
|
15165
15405
|
lastName: string;
|
|
15166
15406
|
id?: string | undefined;
|
|
15407
|
+
phone?: string | null | undefined;
|
|
15408
|
+
avatarUrl?: string | null | undefined;
|
|
15167
15409
|
isActive?: boolean | undefined;
|
|
15168
15410
|
lastSeen?: Date | null | undefined;
|
|
15169
15411
|
updatedAt?: Date | undefined;
|
|
@@ -15174,6 +15416,8 @@ declare const EmployeeUncheckedCreateWithoutWarehouseInputObjectZodSchema: z.Zod
|
|
|
15174
15416
|
firstName: string;
|
|
15175
15417
|
lastName: string;
|
|
15176
15418
|
id?: string | undefined;
|
|
15419
|
+
phone?: string | null | undefined;
|
|
15420
|
+
avatarUrl?: string | null | undefined;
|
|
15177
15421
|
isActive?: boolean | undefined;
|
|
15178
15422
|
lastSeen?: Date | null | undefined;
|
|
15179
15423
|
updatedAt?: Date | undefined;
|
|
@@ -15187,6 +15431,8 @@ declare const EmployeeUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
15187
15431
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15188
15432
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15189
15433
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15434
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15435
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15190
15436
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
15191
15437
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15192
15438
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
@@ -15198,6 +15444,8 @@ declare const EmployeeUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
15198
15444
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15199
15445
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15200
15446
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15447
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15448
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15201
15449
|
warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
15202
15450
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15203
15451
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
@@ -15209,6 +15457,8 @@ declare const EmployeeUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
15209
15457
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15210
15458
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15211
15459
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15460
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15461
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15212
15462
|
warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
15213
15463
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15214
15464
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
@@ -15223,6 +15473,8 @@ declare const EmployeeUncheckedUpdateManyInputObjectZodSchema: z.ZodObject<{
|
|
|
15223
15473
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15224
15474
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15225
15475
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15476
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15477
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15226
15478
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
15227
15479
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15228
15480
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
@@ -15233,6 +15485,8 @@ declare const EmployeeUncheckedUpdateManyInputObjectZodSchema: z.ZodObject<{
|
|
|
15233
15485
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15234
15486
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15235
15487
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15488
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15489
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15236
15490
|
warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
15237
15491
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15238
15492
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
@@ -15243,6 +15497,8 @@ declare const EmployeeUncheckedUpdateManyInputObjectZodSchema: z.ZodObject<{
|
|
|
15243
15497
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15244
15498
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15245
15499
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15500
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15501
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15246
15502
|
warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
15247
15503
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15248
15504
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
@@ -15256,6 +15512,8 @@ declare const EmployeeUncheckedUpdateManyWithoutWarehouseInputObjectZodSchema: z
|
|
|
15256
15512
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15257
15513
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15258
15514
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15515
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15516
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15259
15517
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15260
15518
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
15261
15519
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
@@ -15265,6 +15523,8 @@ declare const EmployeeUncheckedUpdateManyWithoutWarehouseInputObjectZodSchema: z
|
|
|
15265
15523
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15266
15524
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15267
15525
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15526
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15527
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15268
15528
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15269
15529
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15270
15530
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15274,6 +15534,8 @@ declare const EmployeeUncheckedUpdateManyWithoutWarehouseInputObjectZodSchema: z
|
|
|
15274
15534
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15275
15535
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15276
15536
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15537
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15538
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15277
15539
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15278
15540
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15279
15541
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15325,6 +15587,8 @@ declare const EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectZodSchema:
|
|
|
15325
15587
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15326
15588
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15327
15589
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15590
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15591
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15328
15592
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
15329
15593
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15330
15594
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
@@ -15335,6 +15599,8 @@ declare const EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectZodSchema:
|
|
|
15335
15599
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15336
15600
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15337
15601
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15602
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15603
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15338
15604
|
warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
15339
15605
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15340
15606
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
@@ -15345,6 +15611,8 @@ declare const EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectZodSchema:
|
|
|
15345
15611
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15346
15612
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15347
15613
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15614
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15615
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15348
15616
|
warehouseId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
15349
15617
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15350
15618
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
@@ -15358,6 +15626,8 @@ declare const EmployeeUncheckedUpdateWithoutWarehouseInputObjectZodSchema: z.Zod
|
|
|
15358
15626
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15359
15627
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15360
15628
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15629
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15630
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15361
15631
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15362
15632
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
15363
15633
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
@@ -15368,6 +15638,8 @@ declare const EmployeeUncheckedUpdateWithoutWarehouseInputObjectZodSchema: z.Zod
|
|
|
15368
15638
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15369
15639
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15370
15640
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15641
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15642
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15371
15643
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15372
15644
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15373
15645
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15378,6 +15650,8 @@ declare const EmployeeUncheckedUpdateWithoutWarehouseInputObjectZodSchema: z.Zod
|
|
|
15378
15650
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15379
15651
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15380
15652
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15653
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15654
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15381
15655
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15382
15656
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15383
15657
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15391,6 +15665,8 @@ declare const EmployeeUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
15391
15665
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15392
15666
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15393
15667
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15668
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15669
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15394
15670
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15395
15671
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
15396
15672
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
@@ -15402,6 +15678,8 @@ declare const EmployeeUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
15402
15678
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15403
15679
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15404
15680
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15681
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15682
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15405
15683
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15406
15684
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15407
15685
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15413,6 +15691,8 @@ declare const EmployeeUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
15413
15691
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15414
15692
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15415
15693
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15694
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15695
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15416
15696
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15417
15697
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15418
15698
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15427,6 +15707,8 @@ declare const EmployeeUpdateManyMutationInputObjectZodSchema: z.ZodObject<{
|
|
|
15427
15707
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15428
15708
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15429
15709
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15710
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15711
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15430
15712
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15431
15713
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
15432
15714
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
@@ -15436,6 +15718,8 @@ declare const EmployeeUpdateManyMutationInputObjectZodSchema: z.ZodObject<{
|
|
|
15436
15718
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15437
15719
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15438
15720
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15721
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15722
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15439
15723
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15440
15724
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15441
15725
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15445,6 +15729,8 @@ declare const EmployeeUpdateManyMutationInputObjectZodSchema: z.ZodObject<{
|
|
|
15445
15729
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15446
15730
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15447
15731
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15732
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15733
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15448
15734
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15449
15735
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15450
15736
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15553,6 +15839,8 @@ declare const EmployeeUpdateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObj
|
|
|
15553
15839
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15554
15840
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15555
15841
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15842
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15843
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15556
15844
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15557
15845
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
15558
15846
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
@@ -15563,6 +15851,8 @@ declare const EmployeeUpdateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObj
|
|
|
15563
15851
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15564
15852
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15565
15853
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15854
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15855
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15566
15856
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15567
15857
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15568
15858
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15573,6 +15863,8 @@ declare const EmployeeUpdateWithoutRoleAssignmentsInputObjectZodSchema: z.ZodObj
|
|
|
15573
15863
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15574
15864
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15575
15865
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15866
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15867
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15576
15868
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15577
15869
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15578
15870
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15586,6 +15878,8 @@ declare const EmployeeUpdateWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
15586
15878
|
password: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15587
15879
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15588
15880
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
15881
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15882
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
15589
15883
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
|
|
15590
15884
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
15591
15885
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
@@ -15596,6 +15890,8 @@ declare const EmployeeUpdateWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
15596
15890
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15597
15891
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15598
15892
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15893
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15894
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15599
15895
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15600
15896
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15601
15897
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15606,6 +15902,8 @@ declare const EmployeeUpdateWithoutWarehouseInputObjectZodSchema: z.ZodObject<{
|
|
|
15606
15902
|
password?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15607
15903
|
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15608
15904
|
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
15905
|
+
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15906
|
+
avatarUrl?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
15609
15907
|
isActive?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
|
|
15610
15908
|
lastSeen?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
15611
15909
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
@@ -15652,6 +15950,8 @@ declare const EmployeeWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
15652
15950
|
password: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
15653
15951
|
firstName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
15654
15952
|
lastName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
15953
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
|
|
15954
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
|
|
15655
15955
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
15656
15956
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BoolFilter<never>, z.ZodTypeDef, Prisma.BoolFilter<never>>>, z.ZodBoolean]>>;
|
|
15657
15957
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeNullableFilter<never>, z.ZodTypeDef, Prisma.DateTimeNullableFilter<never>>>, z.ZodDate]>>>;
|
|
@@ -15664,6 +15964,8 @@ declare const EmployeeWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
15664
15964
|
password?: string | Prisma.StringFilter<never> | undefined;
|
|
15665
15965
|
firstName?: string | Prisma.StringFilter<never> | undefined;
|
|
15666
15966
|
lastName?: string | Prisma.StringFilter<never> | undefined;
|
|
15967
|
+
phone?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
15968
|
+
avatarUrl?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
15667
15969
|
warehouseId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
15668
15970
|
isActive?: boolean | Prisma.BoolFilter<never> | undefined;
|
|
15669
15971
|
lastSeen?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
@@ -15679,6 +15981,8 @@ declare const EmployeeWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
15679
15981
|
password?: string | Prisma.StringFilter<never> | undefined;
|
|
15680
15982
|
firstName?: string | Prisma.StringFilter<never> | undefined;
|
|
15681
15983
|
lastName?: string | Prisma.StringFilter<never> | undefined;
|
|
15984
|
+
phone?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
15985
|
+
avatarUrl?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
15682
15986
|
warehouseId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
15683
15987
|
isActive?: boolean | Prisma.BoolFilter<never> | undefined;
|
|
15684
15988
|
lastSeen?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
@@ -20589,6 +20893,8 @@ declare const EmployeeModelSchema: z.ZodObject<{
|
|
|
20589
20893
|
password: z.ZodString;
|
|
20590
20894
|
firstName: z.ZodString;
|
|
20591
20895
|
lastName: z.ZodString;
|
|
20896
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
20897
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
20592
20898
|
warehouseId: z.ZodNullable<z.ZodNumber>;
|
|
20593
20899
|
isActive: z.ZodBoolean;
|
|
20594
20900
|
lastSeen: z.ZodNullable<z.ZodDate>;
|
|
@@ -20601,6 +20907,8 @@ declare const EmployeeModelSchema: z.ZodObject<{
|
|
|
20601
20907
|
password: string;
|
|
20602
20908
|
firstName: string;
|
|
20603
20909
|
lastName: string;
|
|
20910
|
+
phone: string | null;
|
|
20911
|
+
avatarUrl: string | null;
|
|
20604
20912
|
warehouseId: number | null;
|
|
20605
20913
|
isActive: boolean;
|
|
20606
20914
|
lastSeen: Date | null;
|
|
@@ -20613,6 +20921,8 @@ declare const EmployeeModelSchema: z.ZodObject<{
|
|
|
20613
20921
|
password: string;
|
|
20614
20922
|
firstName: string;
|
|
20615
20923
|
lastName: string;
|
|
20924
|
+
phone: string | null;
|
|
20925
|
+
avatarUrl: string | null;
|
|
20616
20926
|
warehouseId: number | null;
|
|
20617
20927
|
isActive: boolean;
|
|
20618
20928
|
lastSeen: Date | null;
|
|
@@ -20625,7 +20935,7 @@ type EmployeePureType = z.infer<typeof EmployeeModelSchema>;
|
|
|
20625
20935
|
declare const EmployeeRoleModelSchema: z.ZodObject<{
|
|
20626
20936
|
id: z.ZodNumber;
|
|
20627
20937
|
name: z.ZodString;
|
|
20628
|
-
color: z.
|
|
20938
|
+
color: z.ZodString;
|
|
20629
20939
|
updatedAt: z.ZodDate;
|
|
20630
20940
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
20631
20941
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -20633,14 +20943,14 @@ declare const EmployeeRoleModelSchema: z.ZodObject<{
|
|
|
20633
20943
|
id: number;
|
|
20634
20944
|
updatedAt: Date;
|
|
20635
20945
|
name: string;
|
|
20636
|
-
color: string
|
|
20946
|
+
color: string;
|
|
20637
20947
|
assignments: unknown[];
|
|
20638
20948
|
permissions: unknown[];
|
|
20639
20949
|
}, {
|
|
20640
20950
|
id: number;
|
|
20641
20951
|
updatedAt: Date;
|
|
20642
20952
|
name: string;
|
|
20643
|
-
color: string
|
|
20953
|
+
color: string;
|
|
20644
20954
|
assignments: unknown[];
|
|
20645
20955
|
permissions: unknown[];
|
|
20646
20956
|
}>;
|
|
@@ -20835,6 +21145,8 @@ declare const EmployeeInputSchema: z.ZodObject<{
|
|
|
20835
21145
|
password: z.ZodString;
|
|
20836
21146
|
firstName: z.ZodString;
|
|
20837
21147
|
lastName: z.ZodString;
|
|
21148
|
+
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
21149
|
+
avatarUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20838
21150
|
warehouseId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
20839
21151
|
isActive: z.ZodBoolean;
|
|
20840
21152
|
lastSeen: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
@@ -20850,6 +21162,8 @@ declare const EmployeeInputSchema: z.ZodObject<{
|
|
|
20850
21162
|
isActive: boolean;
|
|
20851
21163
|
updatedAt: Date;
|
|
20852
21164
|
roleAssignments: unknown[];
|
|
21165
|
+
phone?: string | null | undefined;
|
|
21166
|
+
avatarUrl?: string | null | undefined;
|
|
20853
21167
|
warehouseId?: number | null | undefined;
|
|
20854
21168
|
lastSeen?: Date | null | undefined;
|
|
20855
21169
|
warehouse?: unknown;
|
|
@@ -20862,6 +21176,8 @@ declare const EmployeeInputSchema: z.ZodObject<{
|
|
|
20862
21176
|
isActive: boolean;
|
|
20863
21177
|
updatedAt: Date;
|
|
20864
21178
|
roleAssignments: unknown[];
|
|
21179
|
+
phone?: string | null | undefined;
|
|
21180
|
+
avatarUrl?: string | null | undefined;
|
|
20865
21181
|
warehouseId?: number | null | undefined;
|
|
20866
21182
|
lastSeen?: Date | null | undefined;
|
|
20867
21183
|
warehouse?: unknown;
|
|
@@ -20871,7 +21187,7 @@ type EmployeeInputType = z.infer<typeof EmployeeInputSchema>;
|
|
|
20871
21187
|
declare const EmployeeRoleInputSchema: z.ZodObject<{
|
|
20872
21188
|
id: z.ZodNumber;
|
|
20873
21189
|
name: z.ZodString;
|
|
20874
|
-
color: z.
|
|
21190
|
+
color: z.ZodString;
|
|
20875
21191
|
updatedAt: z.ZodDate;
|
|
20876
21192
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
20877
21193
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -20879,16 +21195,16 @@ declare const EmployeeRoleInputSchema: z.ZodObject<{
|
|
|
20879
21195
|
id: number;
|
|
20880
21196
|
updatedAt: Date;
|
|
20881
21197
|
name: string;
|
|
21198
|
+
color: string;
|
|
20882
21199
|
assignments: unknown[];
|
|
20883
21200
|
permissions: unknown[];
|
|
20884
|
-
color?: string | null | undefined;
|
|
20885
21201
|
}, {
|
|
20886
21202
|
id: number;
|
|
20887
21203
|
updatedAt: Date;
|
|
20888
21204
|
name: string;
|
|
21205
|
+
color: string;
|
|
20889
21206
|
assignments: unknown[];
|
|
20890
21207
|
permissions: unknown[];
|
|
20891
|
-
color?: string | null | undefined;
|
|
20892
21208
|
}>;
|
|
20893
21209
|
type EmployeeRoleInputType = z.infer<typeof EmployeeRoleInputSchema>;
|
|
20894
21210
|
|
|
@@ -21081,6 +21397,8 @@ declare const EmployeeResultSchema: z.ZodObject<{
|
|
|
21081
21397
|
password: z.ZodString;
|
|
21082
21398
|
firstName: z.ZodString;
|
|
21083
21399
|
lastName: z.ZodString;
|
|
21400
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
21401
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
21084
21402
|
warehouseId: z.ZodNullable<z.ZodNumber>;
|
|
21085
21403
|
isActive: z.ZodBoolean;
|
|
21086
21404
|
lastSeen: z.ZodNullable<z.ZodDate>;
|
|
@@ -21093,6 +21411,8 @@ declare const EmployeeResultSchema: z.ZodObject<{
|
|
|
21093
21411
|
password: string;
|
|
21094
21412
|
firstName: string;
|
|
21095
21413
|
lastName: string;
|
|
21414
|
+
phone: string | null;
|
|
21415
|
+
avatarUrl: string | null;
|
|
21096
21416
|
warehouseId: number | null;
|
|
21097
21417
|
isActive: boolean;
|
|
21098
21418
|
lastSeen: Date | null;
|
|
@@ -21105,6 +21425,8 @@ declare const EmployeeResultSchema: z.ZodObject<{
|
|
|
21105
21425
|
password: string;
|
|
21106
21426
|
firstName: string;
|
|
21107
21427
|
lastName: string;
|
|
21428
|
+
phone: string | null;
|
|
21429
|
+
avatarUrl: string | null;
|
|
21108
21430
|
warehouseId: number | null;
|
|
21109
21431
|
isActive: boolean;
|
|
21110
21432
|
lastSeen: Date | null;
|
|
@@ -21117,7 +21439,7 @@ type EmployeeResultType = z.infer<typeof EmployeeResultSchema>;
|
|
|
21117
21439
|
declare const EmployeeRoleResultSchema: z.ZodObject<{
|
|
21118
21440
|
id: z.ZodNumber;
|
|
21119
21441
|
name: z.ZodString;
|
|
21120
|
-
color: z.
|
|
21442
|
+
color: z.ZodString;
|
|
21121
21443
|
updatedAt: z.ZodDate;
|
|
21122
21444
|
assignments: z.ZodArray<z.ZodUnknown, "many">;
|
|
21123
21445
|
permissions: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -21125,14 +21447,14 @@ declare const EmployeeRoleResultSchema: z.ZodObject<{
|
|
|
21125
21447
|
id: number;
|
|
21126
21448
|
updatedAt: Date;
|
|
21127
21449
|
name: string;
|
|
21128
|
-
color: string
|
|
21450
|
+
color: string;
|
|
21129
21451
|
assignments: unknown[];
|
|
21130
21452
|
permissions: unknown[];
|
|
21131
21453
|
}, {
|
|
21132
21454
|
id: number;
|
|
21133
21455
|
updatedAt: Date;
|
|
21134
21456
|
name: string;
|
|
21135
|
-
color: string
|
|
21457
|
+
color: string;
|
|
21136
21458
|
assignments: unknown[];
|
|
21137
21459
|
permissions: unknown[];
|
|
21138
21460
|
}>;
|
|
@@ -21340,6 +21662,8 @@ interface Paginated<T> {
|
|
|
21340
21662
|
pages: number;
|
|
21341
21663
|
}
|
|
21342
21664
|
|
|
21665
|
+
declare const ALL_PERMISSIONS: readonly ["organization:create", "organization:update", "warehouse:create", "warehouse:update", "locality:create", "employee:create", "employee:update:info", "employee:update:warehouse", "employee:update:roles", "employee:update:email", "employee:update:password", "employee:toggle:active", "employee:update:avatar", "employee:update:own:info", "employee:update:own:email", "employee:update:own:password", "employee:update:own:avatar", "role:create", "role:update"];
|
|
21666
|
+
type Permission = (typeof ALL_PERMISSIONS)[number];
|
|
21343
21667
|
declare const LoginSchema: z$1.ZodObject<{
|
|
21344
21668
|
email: z$1.ZodString;
|
|
21345
21669
|
password: z$1.ZodString;
|
|
@@ -21377,9 +21701,10 @@ interface JwtPayload {
|
|
|
21377
21701
|
email: string;
|
|
21378
21702
|
firstName: string;
|
|
21379
21703
|
lastName: string;
|
|
21704
|
+
avatarUrl: string | null;
|
|
21380
21705
|
warehouseId: number | null;
|
|
21381
21706
|
isActive: boolean;
|
|
21382
|
-
permissions:
|
|
21707
|
+
permissions: Permission[];
|
|
21383
21708
|
lastSeen: string | null;
|
|
21384
21709
|
}
|
|
21385
21710
|
interface SetupStatusResponse {
|
|
@@ -21553,7 +21878,7 @@ type Country = z$1.infer<typeof CountrySchema>;
|
|
|
21553
21878
|
|
|
21554
21879
|
declare const EmployeeRoleSchema: z$1.ZodObject<{
|
|
21555
21880
|
name: z$1.ZodString;
|
|
21556
|
-
color: z$1.
|
|
21881
|
+
color: z$1.ZodString;
|
|
21557
21882
|
} & {
|
|
21558
21883
|
id: z$1.ZodNumber;
|
|
21559
21884
|
updatedAt: z$1.ZodString;
|
|
@@ -21561,12 +21886,12 @@ declare const EmployeeRoleSchema: z$1.ZodObject<{
|
|
|
21561
21886
|
id: number;
|
|
21562
21887
|
updatedAt: string;
|
|
21563
21888
|
name: string;
|
|
21564
|
-
color: string
|
|
21889
|
+
color: string;
|
|
21565
21890
|
}, {
|
|
21566
21891
|
id: number;
|
|
21567
21892
|
updatedAt: string;
|
|
21568
21893
|
name: string;
|
|
21569
|
-
color: string
|
|
21894
|
+
color: string;
|
|
21570
21895
|
}>;
|
|
21571
21896
|
declare const EmployeeSchema: z$1.ZodObject<{
|
|
21572
21897
|
id: z$1.ZodString;
|
|
@@ -21576,12 +21901,14 @@ declare const EmployeeSchema: z$1.ZodObject<{
|
|
|
21576
21901
|
warehouseId: z$1.ZodNullable<z$1.ZodNumber>;
|
|
21577
21902
|
isActive: z$1.ZodBoolean;
|
|
21578
21903
|
} & {
|
|
21904
|
+
avatarUrl: z$1.ZodNullable<z$1.ZodString>;
|
|
21905
|
+
phone: z$1.ZodNullable<z$1.ZodString>;
|
|
21579
21906
|
lastSeen: z$1.ZodNullable<z$1.ZodString>;
|
|
21580
21907
|
updatedAt: z$1.ZodString;
|
|
21581
21908
|
roleAssignments: z$1.ZodArray<z$1.ZodObject<{
|
|
21582
21909
|
employeeRole: z$1.ZodObject<{
|
|
21583
21910
|
name: z$1.ZodString;
|
|
21584
|
-
color: z$1.
|
|
21911
|
+
color: z$1.ZodString;
|
|
21585
21912
|
} & {
|
|
21586
21913
|
id: z$1.ZodNumber;
|
|
21587
21914
|
updatedAt: z$1.ZodString;
|
|
@@ -21589,26 +21916,26 @@ declare const EmployeeSchema: z$1.ZodObject<{
|
|
|
21589
21916
|
id: number;
|
|
21590
21917
|
updatedAt: string;
|
|
21591
21918
|
name: string;
|
|
21592
|
-
color: string
|
|
21919
|
+
color: string;
|
|
21593
21920
|
}, {
|
|
21594
21921
|
id: number;
|
|
21595
21922
|
updatedAt: string;
|
|
21596
21923
|
name: string;
|
|
21597
|
-
color: string
|
|
21924
|
+
color: string;
|
|
21598
21925
|
}>;
|
|
21599
21926
|
}, "strip", z$1.ZodTypeAny, {
|
|
21600
21927
|
employeeRole: {
|
|
21601
21928
|
id: number;
|
|
21602
21929
|
updatedAt: string;
|
|
21603
21930
|
name: string;
|
|
21604
|
-
color: string
|
|
21931
|
+
color: string;
|
|
21605
21932
|
};
|
|
21606
21933
|
}, {
|
|
21607
21934
|
employeeRole: {
|
|
21608
21935
|
id: number;
|
|
21609
21936
|
updatedAt: string;
|
|
21610
21937
|
name: string;
|
|
21611
|
-
color: string
|
|
21938
|
+
color: string;
|
|
21612
21939
|
};
|
|
21613
21940
|
}>, "many">;
|
|
21614
21941
|
}, "strict", z$1.ZodTypeAny, {
|
|
@@ -21616,6 +21943,8 @@ declare const EmployeeSchema: z$1.ZodObject<{
|
|
|
21616
21943
|
email: string;
|
|
21617
21944
|
firstName: string;
|
|
21618
21945
|
lastName: string;
|
|
21946
|
+
phone: string | null;
|
|
21947
|
+
avatarUrl: string | null;
|
|
21619
21948
|
warehouseId: number | null;
|
|
21620
21949
|
isActive: boolean;
|
|
21621
21950
|
lastSeen: string | null;
|
|
@@ -21625,7 +21954,7 @@ declare const EmployeeSchema: z$1.ZodObject<{
|
|
|
21625
21954
|
id: number;
|
|
21626
21955
|
updatedAt: string;
|
|
21627
21956
|
name: string;
|
|
21628
|
-
color: string
|
|
21957
|
+
color: string;
|
|
21629
21958
|
};
|
|
21630
21959
|
}[];
|
|
21631
21960
|
}, {
|
|
@@ -21633,6 +21962,8 @@ declare const EmployeeSchema: z$1.ZodObject<{
|
|
|
21633
21962
|
email: string;
|
|
21634
21963
|
firstName: string;
|
|
21635
21964
|
lastName: string;
|
|
21965
|
+
phone: string | null;
|
|
21966
|
+
avatarUrl: string | null;
|
|
21636
21967
|
warehouseId: number | null;
|
|
21637
21968
|
isActive: boolean;
|
|
21638
21969
|
lastSeen: string | null;
|
|
@@ -21642,47 +21973,94 @@ declare const EmployeeSchema: z$1.ZodObject<{
|
|
|
21642
21973
|
id: number;
|
|
21643
21974
|
updatedAt: string;
|
|
21644
21975
|
name: string;
|
|
21645
|
-
color: string
|
|
21976
|
+
color: string;
|
|
21646
21977
|
};
|
|
21647
21978
|
}[];
|
|
21648
21979
|
}>;
|
|
21649
21980
|
type EmployeeRole = z$1.infer<typeof EmployeeRoleSchema>;
|
|
21650
21981
|
type Employee = z$1.infer<typeof EmployeeSchema>;
|
|
21982
|
+
declare const CreateEmployeeSchema: z$1.ZodObject<{
|
|
21983
|
+
email: z$1.ZodString;
|
|
21984
|
+
password: z$1.ZodString;
|
|
21985
|
+
firstName: z$1.ZodString;
|
|
21986
|
+
lastName: z$1.ZodString;
|
|
21987
|
+
phone: z$1.ZodOptional<z$1.ZodString>;
|
|
21988
|
+
warehouseId: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21989
|
+
roleIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodNumber, "many">>;
|
|
21990
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
21991
|
+
email: string;
|
|
21992
|
+
password: string;
|
|
21993
|
+
firstName: string;
|
|
21994
|
+
lastName: string;
|
|
21995
|
+
phone?: string | undefined;
|
|
21996
|
+
warehouseId?: number | undefined;
|
|
21997
|
+
roleIds?: number[] | undefined;
|
|
21998
|
+
}, {
|
|
21999
|
+
email: string;
|
|
22000
|
+
password: string;
|
|
22001
|
+
firstName: string;
|
|
22002
|
+
lastName: string;
|
|
22003
|
+
phone?: string | undefined;
|
|
22004
|
+
warehouseId?: number | undefined;
|
|
22005
|
+
roleIds?: number[] | undefined;
|
|
22006
|
+
}>;
|
|
22007
|
+
type CreateEmployeeDto = z$1.infer<typeof CreateEmployeeSchema>;
|
|
21651
22008
|
declare const UpdateEmployeeSchema: z$1.ZodObject<{
|
|
21652
22009
|
firstName: z$1.ZodOptional<z$1.ZodString>;
|
|
21653
22010
|
lastName: z$1.ZodOptional<z$1.ZodString>;
|
|
21654
|
-
|
|
22011
|
+
phone: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
21655
22012
|
warehouseId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
|
|
22013
|
+
roleIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodNumber, "many">>;
|
|
22014
|
+
email: z$1.ZodOptional<z$1.ZodString>;
|
|
22015
|
+
newPassword: z$1.ZodOptional<z$1.ZodString>;
|
|
22016
|
+
isActive: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21656
22017
|
}, "strip", z$1.ZodTypeAny, {
|
|
22018
|
+
email?: string | undefined;
|
|
21657
22019
|
firstName?: string | undefined;
|
|
21658
22020
|
lastName?: string | undefined;
|
|
22021
|
+
phone?: string | null | undefined;
|
|
21659
22022
|
warehouseId?: number | null | undefined;
|
|
21660
22023
|
isActive?: boolean | undefined;
|
|
22024
|
+
roleIds?: number[] | undefined;
|
|
22025
|
+
newPassword?: string | undefined;
|
|
21661
22026
|
}, {
|
|
22027
|
+
email?: string | undefined;
|
|
21662
22028
|
firstName?: string | undefined;
|
|
21663
22029
|
lastName?: string | undefined;
|
|
22030
|
+
phone?: string | null | undefined;
|
|
21664
22031
|
warehouseId?: number | null | undefined;
|
|
21665
22032
|
isActive?: boolean | undefined;
|
|
22033
|
+
roleIds?: number[] | undefined;
|
|
22034
|
+
newPassword?: string | undefined;
|
|
21666
22035
|
}>;
|
|
21667
|
-
declare const
|
|
21668
|
-
|
|
22036
|
+
declare const UpdateOwnProfileSchema: z$1.ZodObject<{
|
|
22037
|
+
firstName: z$1.ZodOptional<z$1.ZodString>;
|
|
22038
|
+
lastName: z$1.ZodOptional<z$1.ZodString>;
|
|
22039
|
+
phone: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
22040
|
+
email: z$1.ZodOptional<z$1.ZodString>;
|
|
21669
22041
|
}, "strip", z$1.ZodTypeAny, {
|
|
21670
|
-
email
|
|
22042
|
+
email?: string | undefined;
|
|
22043
|
+
firstName?: string | undefined;
|
|
22044
|
+
lastName?: string | undefined;
|
|
22045
|
+
phone?: string | null | undefined;
|
|
21671
22046
|
}, {
|
|
21672
|
-
email
|
|
22047
|
+
email?: string | undefined;
|
|
22048
|
+
firstName?: string | undefined;
|
|
22049
|
+
lastName?: string | undefined;
|
|
22050
|
+
phone?: string | null | undefined;
|
|
21673
22051
|
}>;
|
|
21674
22052
|
declare const UpdateOwnPasswordSchema: z$1.ZodObject<{
|
|
21675
22053
|
currentPassword: z$1.ZodString;
|
|
21676
22054
|
newPassword: z$1.ZodString;
|
|
21677
22055
|
}, "strip", z$1.ZodTypeAny, {
|
|
21678
|
-
currentPassword: string;
|
|
21679
22056
|
newPassword: string;
|
|
21680
|
-
}, {
|
|
21681
22057
|
currentPassword: string;
|
|
22058
|
+
}, {
|
|
21682
22059
|
newPassword: string;
|
|
22060
|
+
currentPassword: string;
|
|
21683
22061
|
}>;
|
|
21684
22062
|
type UpdateEmployeeDto = z$1.infer<typeof UpdateEmployeeSchema>;
|
|
21685
|
-
type
|
|
22063
|
+
type UpdateOwnProfileDto = z$1.infer<typeof UpdateOwnProfileSchema>;
|
|
21686
22064
|
type UpdateOwnPasswordDto = z$1.infer<typeof UpdateOwnPasswordSchema>;
|
|
21687
22065
|
|
|
21688
22066
|
declare const RolePermissionItemSchema: z$1.ZodObject<{
|
|
@@ -21709,7 +22087,7 @@ declare const RolePermissionItemSchema: z$1.ZodObject<{
|
|
|
21709
22087
|
}>;
|
|
21710
22088
|
declare const RoleSchema: z$1.ZodObject<{
|
|
21711
22089
|
name: z$1.ZodString;
|
|
21712
|
-
color: z$1.
|
|
22090
|
+
color: z$1.ZodString;
|
|
21713
22091
|
} & {
|
|
21714
22092
|
id: z$1.ZodNumber;
|
|
21715
22093
|
updatedAt: z$1.ZodString;
|
|
@@ -21739,7 +22117,7 @@ declare const RoleSchema: z$1.ZodObject<{
|
|
|
21739
22117
|
id: number;
|
|
21740
22118
|
updatedAt: string;
|
|
21741
22119
|
name: string;
|
|
21742
|
-
color: string
|
|
22120
|
+
color: string;
|
|
21743
22121
|
permissions: {
|
|
21744
22122
|
employeePermission: {
|
|
21745
22123
|
id: number;
|
|
@@ -21750,7 +22128,7 @@ declare const RoleSchema: z$1.ZodObject<{
|
|
|
21750
22128
|
id: number;
|
|
21751
22129
|
updatedAt: string;
|
|
21752
22130
|
name: string;
|
|
21753
|
-
color: string
|
|
22131
|
+
color: string;
|
|
21754
22132
|
permissions: {
|
|
21755
22133
|
employeePermission: {
|
|
21756
22134
|
id: number;
|
|
@@ -21761,15 +22139,15 @@ declare const RoleSchema: z$1.ZodObject<{
|
|
|
21761
22139
|
type Role = z$1.infer<typeof RoleSchema>;
|
|
21762
22140
|
declare const CreateRoleSchema: z$1.ZodObject<{
|
|
21763
22141
|
name: z$1.ZodString;
|
|
21764
|
-
color: z$1.
|
|
22142
|
+
color: z$1.ZodString;
|
|
21765
22143
|
permissionIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodNumber, "many">>;
|
|
21766
22144
|
}, "strip", z$1.ZodTypeAny, {
|
|
21767
22145
|
name: string;
|
|
21768
|
-
color
|
|
22146
|
+
color: string;
|
|
21769
22147
|
permissionIds?: number[] | undefined;
|
|
21770
22148
|
}, {
|
|
21771
22149
|
name: string;
|
|
21772
|
-
color
|
|
22150
|
+
color: string;
|
|
21773
22151
|
permissionIds?: number[] | undefined;
|
|
21774
22152
|
}>;
|
|
21775
22153
|
declare const UpdateRoleSchema: z$1.ZodObject<{
|
|
@@ -21788,4 +22166,4 @@ declare const UpdateRoleSchema: z$1.ZodObject<{
|
|
|
21788
22166
|
type CreateRoleDto = z$1.infer<typeof CreateRoleSchema>;
|
|
21789
22167
|
type UpdateRoleDto = z$1.infer<typeof UpdateRoleSchema>;
|
|
21790
22168
|
|
|
21791
|
-
export { 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 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 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 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 };
|
|
22169
|
+
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 UpdateOwnPasswordDto, UpdateOwnPasswordSchema, 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 };
|