@meerkapp/wms-contracts 0.2.0-beta.4 → 0.2.0-beta.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -9,7 +9,7 @@ type TransactionIsolationLevel = z.infer<typeof TransactionIsolationLevelSchema>
9
9
  declare const EmployeeScalarFieldEnumSchema: z.ZodEnum<["id", "email", "password", "firstName", "lastName", "warehouseId", "isActive", "lastSeen", "updatedAt"]>;
10
10
  type EmployeeScalarFieldEnum = z.infer<typeof EmployeeScalarFieldEnumSchema>;
11
11
 
12
- declare const EmployeeRoleScalarFieldEnumSchema: z.ZodEnum<["id", "name", "updatedAt"]>;
12
+ declare const EmployeeRoleScalarFieldEnumSchema: z.ZodEnum<["id", "name", "color", "updatedAt"]>;
13
13
  type EmployeeRoleScalarFieldEnum = z.infer<typeof EmployeeRoleScalarFieldEnumSchema>;
14
14
 
15
15
  declare const EmployeePermissionScalarFieldEnumSchema: z.ZodEnum<["id", "name", "updatedAt"]>;
@@ -24,7 +24,7 @@ type EmployeeRoleAssignmentScalarFieldEnum = z.infer<typeof EmployeeRoleAssignme
24
24
  declare const EmployeeRolePermissionScalarFieldEnumSchema: z.ZodEnum<["id", "employeeRoleId", "employeePermissionId", "updatedAt"]>;
25
25
  type EmployeeRolePermissionScalarFieldEnum = z.infer<typeof EmployeeRolePermissionScalarFieldEnumSchema>;
26
26
 
27
- declare const CountryScalarFieldEnumSchema: z.ZodEnum<["id", "code", "name", "updatedAt"]>;
27
+ declare const CountryScalarFieldEnumSchema: z.ZodEnum<["id", "code", "currency", "updatedAt"]>;
28
28
  type CountryScalarFieldEnum = z.infer<typeof CountryScalarFieldEnumSchema>;
29
29
 
30
30
  declare const LocalityScalarFieldEnumSchema: z.ZodEnum<["id", "name", "countryId", "updatedAt"]>;
@@ -553,6 +553,7 @@ declare const EmployeeRoleFindFirstSelectSchema: z.ZodType<Prisma.EmployeeRoleSe
553
553
  declare const EmployeeRoleFindFirstSelectZodSchema: z.ZodObject<{
554
554
  id: z.ZodOptional<z.ZodBoolean>;
555
555
  name: z.ZodOptional<z.ZodBoolean>;
556
+ color: z.ZodOptional<z.ZodBoolean>;
556
557
  updatedAt: z.ZodOptional<z.ZodBoolean>;
557
558
  assignments: z.ZodOptional<z.ZodBoolean>;
558
559
  permissions: z.ZodOptional<z.ZodBoolean>;
@@ -561,6 +562,7 @@ declare const EmployeeRoleFindFirstSelectZodSchema: z.ZodObject<{
561
562
  id?: boolean | undefined;
562
563
  updatedAt?: boolean | undefined;
563
564
  name?: boolean | undefined;
565
+ color?: boolean | undefined;
564
566
  assignments?: boolean | undefined;
565
567
  permissions?: boolean | undefined;
566
568
  _count?: boolean | undefined;
@@ -568,6 +570,7 @@ declare const EmployeeRoleFindFirstSelectZodSchema: z.ZodObject<{
568
570
  id?: boolean | undefined;
569
571
  updatedAt?: boolean | undefined;
570
572
  name?: boolean | undefined;
573
+ color?: boolean | undefined;
571
574
  assignments?: boolean | undefined;
572
575
  permissions?: boolean | undefined;
573
576
  _count?: boolean | undefined;
@@ -581,7 +584,7 @@ declare const EmployeeRoleFindFirstZodSchema: z.ZodObject<{
581
584
  cursor: z.ZodOptional<z.ZodType<Prisma.EmployeeRoleWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeRoleWhereUniqueInput>>;
582
585
  take: z.ZodOptional<z.ZodNumber>;
583
586
  skip: z.ZodOptional<z.ZodNumber>;
584
- distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "name", "updatedAt"]>, "many">]>>;
587
+ distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "color", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "name", "color", "updatedAt"]>, "many">]>>;
585
588
  }, "strict", z.ZodTypeAny, {
586
589
  where?: Prisma.EmployeeRoleWhereInput | undefined;
587
590
  select?: Prisma.EmployeeRoleSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -590,7 +593,7 @@ declare const EmployeeRoleFindFirstZodSchema: z.ZodObject<{
590
593
  cursor?: Prisma.EmployeeRoleWhereUniqueInput | undefined;
591
594
  take?: number | undefined;
592
595
  skip?: number | undefined;
593
- distinct?: "id" | "updatedAt" | "name" | ("id" | "updatedAt" | "name")[] | undefined;
596
+ distinct?: "id" | "updatedAt" | "name" | "color" | ("id" | "updatedAt" | "name" | "color")[] | undefined;
594
597
  }, {
595
598
  where?: Prisma.EmployeeRoleWhereInput | undefined;
596
599
  select?: Prisma.EmployeeRoleSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -599,13 +602,14 @@ declare const EmployeeRoleFindFirstZodSchema: z.ZodObject<{
599
602
  cursor?: Prisma.EmployeeRoleWhereUniqueInput | undefined;
600
603
  take?: number | undefined;
601
604
  skip?: number | undefined;
602
- distinct?: "id" | "updatedAt" | "name" | ("id" | "updatedAt" | "name")[] | undefined;
605
+ distinct?: "id" | "updatedAt" | "name" | "color" | ("id" | "updatedAt" | "name" | "color")[] | undefined;
603
606
  }>;
604
607
 
605
608
  declare const EmployeeRoleFindFirstOrThrowSelectSchema: z.ZodType<Prisma.EmployeeRoleSelect>;
606
609
  declare const EmployeeRoleFindFirstOrThrowSelectZodSchema: z.ZodObject<{
607
610
  id: z.ZodOptional<z.ZodBoolean>;
608
611
  name: z.ZodOptional<z.ZodBoolean>;
612
+ color: z.ZodOptional<z.ZodBoolean>;
609
613
  updatedAt: z.ZodOptional<z.ZodBoolean>;
610
614
  assignments: z.ZodOptional<z.ZodBoolean>;
611
615
  permissions: z.ZodOptional<z.ZodBoolean>;
@@ -614,6 +618,7 @@ declare const EmployeeRoleFindFirstOrThrowSelectZodSchema: z.ZodObject<{
614
618
  id?: boolean | undefined;
615
619
  updatedAt?: boolean | undefined;
616
620
  name?: boolean | undefined;
621
+ color?: boolean | undefined;
617
622
  assignments?: boolean | undefined;
618
623
  permissions?: boolean | undefined;
619
624
  _count?: boolean | undefined;
@@ -621,6 +626,7 @@ declare const EmployeeRoleFindFirstOrThrowSelectZodSchema: z.ZodObject<{
621
626
  id?: boolean | undefined;
622
627
  updatedAt?: boolean | undefined;
623
628
  name?: boolean | undefined;
629
+ color?: boolean | undefined;
624
630
  assignments?: boolean | undefined;
625
631
  permissions?: boolean | undefined;
626
632
  _count?: boolean | undefined;
@@ -634,7 +640,7 @@ declare const EmployeeRoleFindFirstOrThrowZodSchema: z.ZodObject<{
634
640
  cursor: z.ZodOptional<z.ZodType<Prisma.EmployeeRoleWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeRoleWhereUniqueInput>>;
635
641
  take: z.ZodOptional<z.ZodNumber>;
636
642
  skip: z.ZodOptional<z.ZodNumber>;
637
- distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "name", "updatedAt"]>, "many">]>>;
643
+ distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "color", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "name", "color", "updatedAt"]>, "many">]>>;
638
644
  }, "strict", z.ZodTypeAny, {
639
645
  where?: Prisma.EmployeeRoleWhereInput | undefined;
640
646
  select?: Prisma.EmployeeRoleSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -643,7 +649,7 @@ declare const EmployeeRoleFindFirstOrThrowZodSchema: z.ZodObject<{
643
649
  cursor?: Prisma.EmployeeRoleWhereUniqueInput | undefined;
644
650
  take?: number | undefined;
645
651
  skip?: number | undefined;
646
- distinct?: "id" | "updatedAt" | "name" | ("id" | "updatedAt" | "name")[] | undefined;
652
+ distinct?: "id" | "updatedAt" | "name" | "color" | ("id" | "updatedAt" | "name" | "color")[] | undefined;
647
653
  }, {
648
654
  where?: Prisma.EmployeeRoleWhereInput | undefined;
649
655
  select?: Prisma.EmployeeRoleSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -652,13 +658,14 @@ declare const EmployeeRoleFindFirstOrThrowZodSchema: z.ZodObject<{
652
658
  cursor?: Prisma.EmployeeRoleWhereUniqueInput | undefined;
653
659
  take?: number | undefined;
654
660
  skip?: number | undefined;
655
- distinct?: "id" | "updatedAt" | "name" | ("id" | "updatedAt" | "name")[] | undefined;
661
+ distinct?: "id" | "updatedAt" | "name" | "color" | ("id" | "updatedAt" | "name" | "color")[] | undefined;
656
662
  }>;
657
663
 
658
664
  declare const EmployeeRoleFindManySelectSchema: z.ZodType<Prisma.EmployeeRoleSelect>;
659
665
  declare const EmployeeRoleFindManySelectZodSchema: z.ZodObject<{
660
666
  id: z.ZodOptional<z.ZodBoolean>;
661
667
  name: z.ZodOptional<z.ZodBoolean>;
668
+ color: z.ZodOptional<z.ZodBoolean>;
662
669
  updatedAt: z.ZodOptional<z.ZodBoolean>;
663
670
  assignments: z.ZodOptional<z.ZodBoolean>;
664
671
  permissions: z.ZodOptional<z.ZodBoolean>;
@@ -667,6 +674,7 @@ declare const EmployeeRoleFindManySelectZodSchema: z.ZodObject<{
667
674
  id?: boolean | undefined;
668
675
  updatedAt?: boolean | undefined;
669
676
  name?: boolean | undefined;
677
+ color?: boolean | undefined;
670
678
  assignments?: boolean | undefined;
671
679
  permissions?: boolean | undefined;
672
680
  _count?: boolean | undefined;
@@ -674,6 +682,7 @@ declare const EmployeeRoleFindManySelectZodSchema: z.ZodObject<{
674
682
  id?: boolean | undefined;
675
683
  updatedAt?: boolean | undefined;
676
684
  name?: boolean | undefined;
685
+ color?: boolean | undefined;
677
686
  assignments?: boolean | undefined;
678
687
  permissions?: boolean | undefined;
679
688
  _count?: boolean | undefined;
@@ -687,7 +696,7 @@ declare const EmployeeRoleFindManyZodSchema: z.ZodObject<{
687
696
  cursor: z.ZodOptional<z.ZodType<Prisma.EmployeeRoleWhereUniqueInput, z.ZodTypeDef, Prisma.EmployeeRoleWhereUniqueInput>>;
688
697
  take: z.ZodOptional<z.ZodNumber>;
689
698
  skip: z.ZodOptional<z.ZodNumber>;
690
- distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "name", "updatedAt"]>, "many">]>>;
699
+ distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "color", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "name", "color", "updatedAt"]>, "many">]>>;
691
700
  }, "strict", z.ZodTypeAny, {
692
701
  where?: Prisma.EmployeeRoleWhereInput | undefined;
693
702
  select?: Prisma.EmployeeRoleSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -696,7 +705,7 @@ declare const EmployeeRoleFindManyZodSchema: z.ZodObject<{
696
705
  cursor?: Prisma.EmployeeRoleWhereUniqueInput | undefined;
697
706
  take?: number | undefined;
698
707
  skip?: number | undefined;
699
- distinct?: "id" | "updatedAt" | "name" | ("id" | "updatedAt" | "name")[] | undefined;
708
+ distinct?: "id" | "updatedAt" | "name" | "color" | ("id" | "updatedAt" | "name" | "color")[] | undefined;
700
709
  }, {
701
710
  where?: Prisma.EmployeeRoleWhereInput | undefined;
702
711
  select?: Prisma.EmployeeRoleSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -705,7 +714,7 @@ declare const EmployeeRoleFindManyZodSchema: z.ZodObject<{
705
714
  cursor?: Prisma.EmployeeRoleWhereUniqueInput | undefined;
706
715
  take?: number | undefined;
707
716
  skip?: number | undefined;
708
- distinct?: "id" | "updatedAt" | "name" | ("id" | "updatedAt" | "name")[] | undefined;
717
+ distinct?: "id" | "updatedAt" | "name" | "color" | ("id" | "updatedAt" | "name" | "color")[] | undefined;
709
718
  }>;
710
719
 
711
720
  declare const EmployeeRoleCountSchema: z.ZodType<Prisma.EmployeeRoleCountArgs>;
@@ -907,14 +916,14 @@ declare const EmployeeRoleGroupByZodSchema: z.ZodObject<{
907
916
  having: z.ZodOptional<z.ZodType<Prisma.EmployeeRoleScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.EmployeeRoleScalarWhereWithAggregatesInput>>;
908
917
  take: z.ZodOptional<z.ZodNumber>;
909
918
  skip: z.ZodOptional<z.ZodNumber>;
910
- by: z.ZodArray<z.ZodEnum<["id", "name", "updatedAt"]>, "many">;
919
+ by: z.ZodArray<z.ZodEnum<["id", "name", "color", "updatedAt"]>, "many">;
911
920
  _count: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodType<Prisma.EmployeeRoleCountAggregateInputType, z.ZodTypeDef, Prisma.EmployeeRoleCountAggregateInputType>]>>;
912
921
  _min: z.ZodOptional<z.ZodType<Prisma.EmployeeRoleMinAggregateInputType, z.ZodTypeDef, Prisma.EmployeeRoleMinAggregateInputType>>;
913
922
  _max: z.ZodOptional<z.ZodType<Prisma.EmployeeRoleMaxAggregateInputType, z.ZodTypeDef, Prisma.EmployeeRoleMaxAggregateInputType>>;
914
923
  _avg: z.ZodOptional<z.ZodType<Prisma.EmployeeRoleAvgAggregateInputType, z.ZodTypeDef, Prisma.EmployeeRoleAvgAggregateInputType>>;
915
924
  _sum: z.ZodOptional<z.ZodType<Prisma.EmployeeRoleSumAggregateInputType, z.ZodTypeDef, Prisma.EmployeeRoleSumAggregateInputType>>;
916
925
  }, "strict", z.ZodTypeAny, {
917
- by: ("id" | "updatedAt" | "name")[];
926
+ by: ("id" | "updatedAt" | "name" | "color")[];
918
927
  where?: Prisma.EmployeeRoleWhereInput | undefined;
919
928
  _count?: true | Prisma.EmployeeRoleCountAggregateInputType | undefined;
920
929
  orderBy?: Prisma.EmployeeRoleOrderByWithAggregationInput | Prisma.EmployeeRoleOrderByWithAggregationInput[] | undefined;
@@ -926,7 +935,7 @@ declare const EmployeeRoleGroupByZodSchema: z.ZodObject<{
926
935
  _sum?: Prisma.EmployeeRoleSumAggregateInputType | undefined;
927
936
  having?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput | undefined;
928
937
  }, {
929
- by: ("id" | "updatedAt" | "name")[];
938
+ by: ("id" | "updatedAt" | "name" | "color")[];
930
939
  where?: Prisma.EmployeeRoleWhereInput | undefined;
931
940
  _count?: true | Prisma.EmployeeRoleCountAggregateInputType | undefined;
932
941
  orderBy?: Prisma.EmployeeRoleOrderByWithAggregationInput | Prisma.EmployeeRoleOrderByWithAggregationInput[] | undefined;
@@ -2590,7 +2599,7 @@ declare const CountryFindFirstSelectSchema: z.ZodType<Prisma.CountrySelect>;
2590
2599
  declare const CountryFindFirstSelectZodSchema: z.ZodObject<{
2591
2600
  id: z.ZodOptional<z.ZodBoolean>;
2592
2601
  code: z.ZodOptional<z.ZodBoolean>;
2593
- name: z.ZodOptional<z.ZodBoolean>;
2602
+ currency: z.ZodOptional<z.ZodBoolean>;
2594
2603
  updatedAt: z.ZodOptional<z.ZodBoolean>;
2595
2604
  localities: z.ZodOptional<z.ZodBoolean>;
2596
2605
  _count: z.ZodOptional<z.ZodBoolean>;
@@ -2598,14 +2607,14 @@ declare const CountryFindFirstSelectZodSchema: z.ZodObject<{
2598
2607
  code?: boolean | undefined;
2599
2608
  id?: boolean | undefined;
2600
2609
  updatedAt?: boolean | undefined;
2601
- name?: boolean | undefined;
2610
+ currency?: boolean | undefined;
2602
2611
  localities?: boolean | undefined;
2603
2612
  _count?: boolean | undefined;
2604
2613
  }, {
2605
2614
  code?: boolean | undefined;
2606
2615
  id?: boolean | undefined;
2607
2616
  updatedAt?: boolean | undefined;
2608
- name?: boolean | undefined;
2617
+ currency?: boolean | undefined;
2609
2618
  localities?: boolean | undefined;
2610
2619
  _count?: boolean | undefined;
2611
2620
  }>;
@@ -2618,7 +2627,7 @@ declare const CountryFindFirstZodSchema: z.ZodObject<{
2618
2627
  cursor: z.ZodOptional<z.ZodType<Prisma.CountryWhereUniqueInput, z.ZodTypeDef, Prisma.CountryWhereUniqueInput>>;
2619
2628
  take: z.ZodOptional<z.ZodNumber>;
2620
2629
  skip: z.ZodOptional<z.ZodNumber>;
2621
- distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "code", "name", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "code", "name", "updatedAt"]>, "many">]>>;
2630
+ distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "code", "currency", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "code", "currency", "updatedAt"]>, "many">]>>;
2622
2631
  }, "strict", z.ZodTypeAny, {
2623
2632
  where?: Prisma.CountryWhereInput | undefined;
2624
2633
  select?: Prisma.CountrySelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -2627,7 +2636,7 @@ declare const CountryFindFirstZodSchema: z.ZodObject<{
2627
2636
  cursor?: Prisma.CountryWhereUniqueInput | undefined;
2628
2637
  take?: number | undefined;
2629
2638
  skip?: number | undefined;
2630
- distinct?: "code" | "id" | "updatedAt" | "name" | ("code" | "id" | "updatedAt" | "name")[] | undefined;
2639
+ distinct?: "code" | "id" | "updatedAt" | "currency" | ("code" | "id" | "updatedAt" | "currency")[] | undefined;
2631
2640
  }, {
2632
2641
  where?: Prisma.CountryWhereInput | undefined;
2633
2642
  select?: Prisma.CountrySelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -2636,14 +2645,14 @@ declare const CountryFindFirstZodSchema: z.ZodObject<{
2636
2645
  cursor?: Prisma.CountryWhereUniqueInput | undefined;
2637
2646
  take?: number | undefined;
2638
2647
  skip?: number | undefined;
2639
- distinct?: "code" | "id" | "updatedAt" | "name" | ("code" | "id" | "updatedAt" | "name")[] | undefined;
2648
+ distinct?: "code" | "id" | "updatedAt" | "currency" | ("code" | "id" | "updatedAt" | "currency")[] | undefined;
2640
2649
  }>;
2641
2650
 
2642
2651
  declare const CountryFindFirstOrThrowSelectSchema: z.ZodType<Prisma.CountrySelect>;
2643
2652
  declare const CountryFindFirstOrThrowSelectZodSchema: z.ZodObject<{
2644
2653
  id: z.ZodOptional<z.ZodBoolean>;
2645
2654
  code: z.ZodOptional<z.ZodBoolean>;
2646
- name: z.ZodOptional<z.ZodBoolean>;
2655
+ currency: z.ZodOptional<z.ZodBoolean>;
2647
2656
  updatedAt: z.ZodOptional<z.ZodBoolean>;
2648
2657
  localities: z.ZodOptional<z.ZodBoolean>;
2649
2658
  _count: z.ZodOptional<z.ZodBoolean>;
@@ -2651,14 +2660,14 @@ declare const CountryFindFirstOrThrowSelectZodSchema: z.ZodObject<{
2651
2660
  code?: boolean | undefined;
2652
2661
  id?: boolean | undefined;
2653
2662
  updatedAt?: boolean | undefined;
2654
- name?: boolean | undefined;
2663
+ currency?: boolean | undefined;
2655
2664
  localities?: boolean | undefined;
2656
2665
  _count?: boolean | undefined;
2657
2666
  }, {
2658
2667
  code?: boolean | undefined;
2659
2668
  id?: boolean | undefined;
2660
2669
  updatedAt?: boolean | undefined;
2661
- name?: boolean | undefined;
2670
+ currency?: boolean | undefined;
2662
2671
  localities?: boolean | undefined;
2663
2672
  _count?: boolean | undefined;
2664
2673
  }>;
@@ -2671,7 +2680,7 @@ declare const CountryFindFirstOrThrowZodSchema: z.ZodObject<{
2671
2680
  cursor: z.ZodOptional<z.ZodType<Prisma.CountryWhereUniqueInput, z.ZodTypeDef, Prisma.CountryWhereUniqueInput>>;
2672
2681
  take: z.ZodOptional<z.ZodNumber>;
2673
2682
  skip: z.ZodOptional<z.ZodNumber>;
2674
- distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "code", "name", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "code", "name", "updatedAt"]>, "many">]>>;
2683
+ distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "code", "currency", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "code", "currency", "updatedAt"]>, "many">]>>;
2675
2684
  }, "strict", z.ZodTypeAny, {
2676
2685
  where?: Prisma.CountryWhereInput | undefined;
2677
2686
  select?: Prisma.CountrySelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -2680,7 +2689,7 @@ declare const CountryFindFirstOrThrowZodSchema: z.ZodObject<{
2680
2689
  cursor?: Prisma.CountryWhereUniqueInput | undefined;
2681
2690
  take?: number | undefined;
2682
2691
  skip?: number | undefined;
2683
- distinct?: "code" | "id" | "updatedAt" | "name" | ("code" | "id" | "updatedAt" | "name")[] | undefined;
2692
+ distinct?: "code" | "id" | "updatedAt" | "currency" | ("code" | "id" | "updatedAt" | "currency")[] | undefined;
2684
2693
  }, {
2685
2694
  where?: Prisma.CountryWhereInput | undefined;
2686
2695
  select?: Prisma.CountrySelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -2689,14 +2698,14 @@ declare const CountryFindFirstOrThrowZodSchema: z.ZodObject<{
2689
2698
  cursor?: Prisma.CountryWhereUniqueInput | undefined;
2690
2699
  take?: number | undefined;
2691
2700
  skip?: number | undefined;
2692
- distinct?: "code" | "id" | "updatedAt" | "name" | ("code" | "id" | "updatedAt" | "name")[] | undefined;
2701
+ distinct?: "code" | "id" | "updatedAt" | "currency" | ("code" | "id" | "updatedAt" | "currency")[] | undefined;
2693
2702
  }>;
2694
2703
 
2695
2704
  declare const CountryFindManySelectSchema: z.ZodType<Prisma.CountrySelect>;
2696
2705
  declare const CountryFindManySelectZodSchema: z.ZodObject<{
2697
2706
  id: z.ZodOptional<z.ZodBoolean>;
2698
2707
  code: z.ZodOptional<z.ZodBoolean>;
2699
- name: z.ZodOptional<z.ZodBoolean>;
2708
+ currency: z.ZodOptional<z.ZodBoolean>;
2700
2709
  updatedAt: z.ZodOptional<z.ZodBoolean>;
2701
2710
  localities: z.ZodOptional<z.ZodBoolean>;
2702
2711
  _count: z.ZodOptional<z.ZodBoolean>;
@@ -2704,14 +2713,14 @@ declare const CountryFindManySelectZodSchema: z.ZodObject<{
2704
2713
  code?: boolean | undefined;
2705
2714
  id?: boolean | undefined;
2706
2715
  updatedAt?: boolean | undefined;
2707
- name?: boolean | undefined;
2716
+ currency?: boolean | undefined;
2708
2717
  localities?: boolean | undefined;
2709
2718
  _count?: boolean | undefined;
2710
2719
  }, {
2711
2720
  code?: boolean | undefined;
2712
2721
  id?: boolean | undefined;
2713
2722
  updatedAt?: boolean | undefined;
2714
- name?: boolean | undefined;
2723
+ currency?: boolean | undefined;
2715
2724
  localities?: boolean | undefined;
2716
2725
  _count?: boolean | undefined;
2717
2726
  }>;
@@ -2724,7 +2733,7 @@ declare const CountryFindManyZodSchema: z.ZodObject<{
2724
2733
  cursor: z.ZodOptional<z.ZodType<Prisma.CountryWhereUniqueInput, z.ZodTypeDef, Prisma.CountryWhereUniqueInput>>;
2725
2734
  take: z.ZodOptional<z.ZodNumber>;
2726
2735
  skip: z.ZodOptional<z.ZodNumber>;
2727
- distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "code", "name", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "code", "name", "updatedAt"]>, "many">]>>;
2736
+ distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "code", "currency", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "code", "currency", "updatedAt"]>, "many">]>>;
2728
2737
  }, "strict", z.ZodTypeAny, {
2729
2738
  where?: Prisma.CountryWhereInput | undefined;
2730
2739
  select?: Prisma.CountrySelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -2733,7 +2742,7 @@ declare const CountryFindManyZodSchema: z.ZodObject<{
2733
2742
  cursor?: Prisma.CountryWhereUniqueInput | undefined;
2734
2743
  take?: number | undefined;
2735
2744
  skip?: number | undefined;
2736
- distinct?: "code" | "id" | "updatedAt" | "name" | ("code" | "id" | "updatedAt" | "name")[] | undefined;
2745
+ distinct?: "code" | "id" | "updatedAt" | "currency" | ("code" | "id" | "updatedAt" | "currency")[] | undefined;
2737
2746
  }, {
2738
2747
  where?: Prisma.CountryWhereInput | undefined;
2739
2748
  select?: Prisma.CountrySelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -2742,7 +2751,7 @@ declare const CountryFindManyZodSchema: z.ZodObject<{
2742
2751
  cursor?: Prisma.CountryWhereUniqueInput | undefined;
2743
2752
  take?: number | undefined;
2744
2753
  skip?: number | undefined;
2745
- distinct?: "code" | "id" | "updatedAt" | "name" | ("code" | "id" | "updatedAt" | "name")[] | undefined;
2754
+ distinct?: "code" | "id" | "updatedAt" | "currency" | ("code" | "id" | "updatedAt" | "currency")[] | undefined;
2746
2755
  }>;
2747
2756
 
2748
2757
  declare const CountryCountSchema: z.ZodType<Prisma.CountryCountArgs>;
@@ -2944,14 +2953,14 @@ declare const CountryGroupByZodSchema: z.ZodObject<{
2944
2953
  having: z.ZodOptional<z.ZodType<Prisma.CountryScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.CountryScalarWhereWithAggregatesInput>>;
2945
2954
  take: z.ZodOptional<z.ZodNumber>;
2946
2955
  skip: z.ZodOptional<z.ZodNumber>;
2947
- by: z.ZodArray<z.ZodEnum<["id", "code", "name", "updatedAt"]>, "many">;
2956
+ by: z.ZodArray<z.ZodEnum<["id", "code", "currency", "updatedAt"]>, "many">;
2948
2957
  _count: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodType<Prisma.CountryCountAggregateInputType, z.ZodTypeDef, Prisma.CountryCountAggregateInputType>]>>;
2949
2958
  _min: z.ZodOptional<z.ZodType<Prisma.CountryMinAggregateInputType, z.ZodTypeDef, Prisma.CountryMinAggregateInputType>>;
2950
2959
  _max: z.ZodOptional<z.ZodType<Prisma.CountryMaxAggregateInputType, z.ZodTypeDef, Prisma.CountryMaxAggregateInputType>>;
2951
2960
  _avg: z.ZodOptional<z.ZodType<Prisma.CountryAvgAggregateInputType, z.ZodTypeDef, Prisma.CountryAvgAggregateInputType>>;
2952
2961
  _sum: z.ZodOptional<z.ZodType<Prisma.CountrySumAggregateInputType, z.ZodTypeDef, Prisma.CountrySumAggregateInputType>>;
2953
2962
  }, "strict", z.ZodTypeAny, {
2954
- by: ("code" | "id" | "updatedAt" | "name")[];
2963
+ by: ("code" | "id" | "updatedAt" | "currency")[];
2955
2964
  where?: Prisma.CountryWhereInput | undefined;
2956
2965
  _count?: true | Prisma.CountryCountAggregateInputType | undefined;
2957
2966
  orderBy?: Prisma.CountryOrderByWithAggregationInput | Prisma.CountryOrderByWithAggregationInput[] | undefined;
@@ -2963,7 +2972,7 @@ declare const CountryGroupByZodSchema: z.ZodObject<{
2963
2972
  _sum?: Prisma.CountrySumAggregateInputType | undefined;
2964
2973
  having?: Prisma.CountryScalarWhereWithAggregatesInput | undefined;
2965
2974
  }, {
2966
- by: ("code" | "id" | "updatedAt" | "name")[];
2975
+ by: ("code" | "id" | "updatedAt" | "currency")[];
2967
2976
  where?: Prisma.CountryWhereInput | undefined;
2968
2977
  _count?: true | Prisma.CountryCountAggregateInputType | undefined;
2969
2978
  orderBy?: Prisma.CountryOrderByWithAggregationInput | Prisma.CountryOrderByWithAggregationInput[] | undefined;
@@ -5060,6 +5069,7 @@ declare const EmployeeCountResultSchema: z.ZodNumber;
5060
5069
  declare const EmployeeRoleFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
5061
5070
  id: z.ZodBigInt;
5062
5071
  name: z.ZodString;
5072
+ color: z.ZodOptional<z.ZodString>;
5063
5073
  updatedAt: z.ZodDate;
5064
5074
  assignments: z.ZodArray<z.ZodUnknown, "many">;
5065
5075
  permissions: z.ZodArray<z.ZodUnknown, "many">;
@@ -5069,17 +5079,20 @@ declare const EmployeeRoleFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
5069
5079
  name: string;
5070
5080
  assignments: unknown[];
5071
5081
  permissions: unknown[];
5082
+ color?: string | undefined;
5072
5083
  }, {
5073
5084
  id: bigint;
5074
5085
  updatedAt: Date;
5075
5086
  name: string;
5076
5087
  assignments: unknown[];
5077
5088
  permissions: unknown[];
5089
+ color?: string | undefined;
5078
5090
  }>>;
5079
5091
 
5080
5092
  declare const EmployeeRoleFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
5081
5093
  id: z.ZodBigInt;
5082
5094
  name: z.ZodString;
5095
+ color: z.ZodOptional<z.ZodString>;
5083
5096
  updatedAt: z.ZodDate;
5084
5097
  assignments: z.ZodArray<z.ZodUnknown, "many">;
5085
5098
  permissions: z.ZodArray<z.ZodUnknown, "many">;
@@ -5089,18 +5102,21 @@ declare const EmployeeRoleFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
5089
5102
  name: string;
5090
5103
  assignments: unknown[];
5091
5104
  permissions: unknown[];
5105
+ color?: string | undefined;
5092
5106
  }, {
5093
5107
  id: bigint;
5094
5108
  updatedAt: Date;
5095
5109
  name: string;
5096
5110
  assignments: unknown[];
5097
5111
  permissions: unknown[];
5112
+ color?: string | undefined;
5098
5113
  }>>;
5099
5114
 
5100
5115
  declare const EmployeeRoleFindManyResultSchema: z.ZodObject<{
5101
5116
  data: z.ZodArray<z.ZodObject<{
5102
5117
  id: z.ZodBigInt;
5103
5118
  name: z.ZodString;
5119
+ color: z.ZodOptional<z.ZodString>;
5104
5120
  updatedAt: z.ZodDate;
5105
5121
  assignments: z.ZodArray<z.ZodUnknown, "many">;
5106
5122
  permissions: z.ZodArray<z.ZodUnknown, "many">;
@@ -5110,12 +5126,14 @@ declare const EmployeeRoleFindManyResultSchema: z.ZodObject<{
5110
5126
  name: string;
5111
5127
  assignments: unknown[];
5112
5128
  permissions: unknown[];
5129
+ color?: string | undefined;
5113
5130
  }, {
5114
5131
  id: bigint;
5115
5132
  updatedAt: Date;
5116
5133
  name: string;
5117
5134
  assignments: unknown[];
5118
5135
  permissions: unknown[];
5136
+ color?: string | undefined;
5119
5137
  }>, "many">;
5120
5138
  pagination: z.ZodObject<{
5121
5139
  page: z.ZodNumber;
@@ -5146,6 +5164,7 @@ declare const EmployeeRoleFindManyResultSchema: z.ZodObject<{
5146
5164
  name: string;
5147
5165
  assignments: unknown[];
5148
5166
  permissions: unknown[];
5167
+ color?: string | undefined;
5149
5168
  }[];
5150
5169
  pagination: {
5151
5170
  page: number;
@@ -5162,6 +5181,7 @@ declare const EmployeeRoleFindManyResultSchema: z.ZodObject<{
5162
5181
  name: string;
5163
5182
  assignments: unknown[];
5164
5183
  permissions: unknown[];
5184
+ color?: string | undefined;
5165
5185
  }[];
5166
5186
  pagination: {
5167
5187
  page: number;
@@ -5176,6 +5196,7 @@ declare const EmployeeRoleFindManyResultSchema: z.ZodObject<{
5176
5196
  declare const EmployeeRoleCreateResultSchema: z.ZodObject<{
5177
5197
  id: z.ZodBigInt;
5178
5198
  name: z.ZodString;
5199
+ color: z.ZodOptional<z.ZodString>;
5179
5200
  updatedAt: z.ZodDate;
5180
5201
  assignments: z.ZodArray<z.ZodUnknown, "many">;
5181
5202
  permissions: z.ZodArray<z.ZodUnknown, "many">;
@@ -5185,12 +5206,14 @@ declare const EmployeeRoleCreateResultSchema: z.ZodObject<{
5185
5206
  name: string;
5186
5207
  assignments: unknown[];
5187
5208
  permissions: unknown[];
5209
+ color?: string | undefined;
5188
5210
  }, {
5189
5211
  id: bigint;
5190
5212
  updatedAt: Date;
5191
5213
  name: string;
5192
5214
  assignments: unknown[];
5193
5215
  permissions: unknown[];
5216
+ color?: string | undefined;
5194
5217
  }>;
5195
5218
 
5196
5219
  declare const EmployeeRoleCreateManyResultSchema: z.ZodObject<{
@@ -5204,6 +5227,7 @@ declare const EmployeeRoleCreateManyResultSchema: z.ZodObject<{
5204
5227
  declare const EmployeeRoleUpdateResultSchema: z.ZodNullable<z.ZodObject<{
5205
5228
  id: z.ZodBigInt;
5206
5229
  name: z.ZodString;
5230
+ color: z.ZodOptional<z.ZodString>;
5207
5231
  updatedAt: z.ZodDate;
5208
5232
  assignments: z.ZodArray<z.ZodUnknown, "many">;
5209
5233
  permissions: z.ZodArray<z.ZodUnknown, "many">;
@@ -5213,12 +5237,14 @@ declare const EmployeeRoleUpdateResultSchema: z.ZodNullable<z.ZodObject<{
5213
5237
  name: string;
5214
5238
  assignments: unknown[];
5215
5239
  permissions: unknown[];
5240
+ color?: string | undefined;
5216
5241
  }, {
5217
5242
  id: bigint;
5218
5243
  updatedAt: Date;
5219
5244
  name: string;
5220
5245
  assignments: unknown[];
5221
5246
  permissions: unknown[];
5247
+ color?: string | undefined;
5222
5248
  }>>;
5223
5249
 
5224
5250
  declare const EmployeeRoleUpdateManyResultSchema: z.ZodObject<{
@@ -5232,6 +5258,7 @@ declare const EmployeeRoleUpdateManyResultSchema: z.ZodObject<{
5232
5258
  declare const EmployeeRoleUpsertResultSchema: z.ZodObject<{
5233
5259
  id: z.ZodBigInt;
5234
5260
  name: z.ZodString;
5261
+ color: z.ZodOptional<z.ZodString>;
5235
5262
  updatedAt: z.ZodDate;
5236
5263
  assignments: z.ZodArray<z.ZodUnknown, "many">;
5237
5264
  permissions: z.ZodArray<z.ZodUnknown, "many">;
@@ -5241,17 +5268,20 @@ declare const EmployeeRoleUpsertResultSchema: z.ZodObject<{
5241
5268
  name: string;
5242
5269
  assignments: unknown[];
5243
5270
  permissions: unknown[];
5271
+ color?: string | undefined;
5244
5272
  }, {
5245
5273
  id: bigint;
5246
5274
  updatedAt: Date;
5247
5275
  name: string;
5248
5276
  assignments: unknown[];
5249
5277
  permissions: unknown[];
5278
+ color?: string | undefined;
5250
5279
  }>;
5251
5280
 
5252
5281
  declare const EmployeeRoleDeleteResultSchema: z.ZodNullable<z.ZodObject<{
5253
5282
  id: z.ZodBigInt;
5254
5283
  name: z.ZodString;
5284
+ color: z.ZodOptional<z.ZodString>;
5255
5285
  updatedAt: z.ZodDate;
5256
5286
  assignments: z.ZodArray<z.ZodUnknown, "many">;
5257
5287
  permissions: z.ZodArray<z.ZodUnknown, "many">;
@@ -5261,12 +5291,14 @@ declare const EmployeeRoleDeleteResultSchema: z.ZodNullable<z.ZodObject<{
5261
5291
  name: string;
5262
5292
  assignments: unknown[];
5263
5293
  permissions: unknown[];
5294
+ color?: string | undefined;
5264
5295
  }, {
5265
5296
  id: bigint;
5266
5297
  updatedAt: Date;
5267
5298
  name: string;
5268
5299
  assignments: unknown[];
5269
5300
  permissions: unknown[];
5301
+ color?: string | undefined;
5270
5302
  }>>;
5271
5303
 
5272
5304
  declare const EmployeeRoleDeleteManyResultSchema: z.ZodObject<{
@@ -5281,6 +5313,7 @@ declare const EmployeeRoleAggregateResultSchema: z.ZodObject<{
5281
5313
  _count: z.ZodOptional<z.ZodObject<{
5282
5314
  id: z.ZodNumber;
5283
5315
  name: z.ZodNumber;
5316
+ color: z.ZodNumber;
5284
5317
  updatedAt: z.ZodNumber;
5285
5318
  assignments: z.ZodNumber;
5286
5319
  permissions: z.ZodNumber;
@@ -5288,12 +5321,14 @@ declare const EmployeeRoleAggregateResultSchema: z.ZodObject<{
5288
5321
  id: number;
5289
5322
  updatedAt: number;
5290
5323
  name: number;
5324
+ color: number;
5291
5325
  assignments: number;
5292
5326
  permissions: number;
5293
5327
  }, {
5294
5328
  id: number;
5295
5329
  updatedAt: number;
5296
5330
  name: number;
5331
+ color: number;
5297
5332
  assignments: number;
5298
5333
  permissions: number;
5299
5334
  }>>;
@@ -5314,34 +5349,41 @@ declare const EmployeeRoleAggregateResultSchema: z.ZodObject<{
5314
5349
  _min: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5315
5350
  id: z.ZodNullable<z.ZodBigInt>;
5316
5351
  name: z.ZodNullable<z.ZodString>;
5352
+ color: z.ZodNullable<z.ZodString>;
5317
5353
  updatedAt: z.ZodNullable<z.ZodDate>;
5318
5354
  }, "strip", z.ZodTypeAny, {
5319
5355
  id: bigint | null;
5320
5356
  updatedAt: Date | null;
5321
5357
  name: string | null;
5358
+ color: string | null;
5322
5359
  }, {
5323
5360
  id: bigint | null;
5324
5361
  updatedAt: Date | null;
5325
5362
  name: string | null;
5363
+ color: string | null;
5326
5364
  }>>>;
5327
5365
  _max: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5328
5366
  id: z.ZodNullable<z.ZodBigInt>;
5329
5367
  name: z.ZodNullable<z.ZodString>;
5368
+ color: z.ZodNullable<z.ZodString>;
5330
5369
  updatedAt: z.ZodNullable<z.ZodDate>;
5331
5370
  }, "strip", z.ZodTypeAny, {
5332
5371
  id: bigint | null;
5333
5372
  updatedAt: Date | null;
5334
5373
  name: string | null;
5374
+ color: string | null;
5335
5375
  }, {
5336
5376
  id: bigint | null;
5337
5377
  updatedAt: Date | null;
5338
5378
  name: string | null;
5379
+ color: string | null;
5339
5380
  }>>>;
5340
5381
  }, "strip", z.ZodTypeAny, {
5341
5382
  _count?: {
5342
5383
  id: number;
5343
5384
  updatedAt: number;
5344
5385
  name: number;
5386
+ color: number;
5345
5387
  assignments: number;
5346
5388
  permissions: number;
5347
5389
  } | undefined;
@@ -5349,11 +5391,13 @@ declare const EmployeeRoleAggregateResultSchema: z.ZodObject<{
5349
5391
  id: bigint | null;
5350
5392
  updatedAt: Date | null;
5351
5393
  name: string | null;
5394
+ color: string | null;
5352
5395
  } | null | undefined;
5353
5396
  _max?: {
5354
5397
  id: bigint | null;
5355
5398
  updatedAt: Date | null;
5356
5399
  name: string | null;
5400
+ color: string | null;
5357
5401
  } | null | undefined;
5358
5402
  _avg?: {
5359
5403
  id: number | null;
@@ -5366,6 +5410,7 @@ declare const EmployeeRoleAggregateResultSchema: z.ZodObject<{
5366
5410
  id: number;
5367
5411
  updatedAt: number;
5368
5412
  name: number;
5413
+ color: number;
5369
5414
  assignments: number;
5370
5415
  permissions: number;
5371
5416
  } | undefined;
@@ -5373,11 +5418,13 @@ declare const EmployeeRoleAggregateResultSchema: z.ZodObject<{
5373
5418
  id: bigint | null;
5374
5419
  updatedAt: Date | null;
5375
5420
  name: string | null;
5421
+ color: string | null;
5376
5422
  } | null | undefined;
5377
5423
  _max?: {
5378
5424
  id: bigint | null;
5379
5425
  updatedAt: Date | null;
5380
5426
  name: string | null;
5427
+ color: string | null;
5381
5428
  } | null | undefined;
5382
5429
  _avg?: {
5383
5430
  id: number | null;
@@ -5390,10 +5437,12 @@ declare const EmployeeRoleAggregateResultSchema: z.ZodObject<{
5390
5437
  declare const EmployeeRoleGroupByResultSchema: z.ZodArray<z.ZodObject<{
5391
5438
  id: z.ZodBigInt;
5392
5439
  name: z.ZodString;
5440
+ color: z.ZodString;
5393
5441
  updatedAt: z.ZodDate;
5394
5442
  _count: z.ZodOptional<z.ZodObject<{
5395
5443
  id: z.ZodNumber;
5396
5444
  name: z.ZodNumber;
5445
+ color: z.ZodNumber;
5397
5446
  updatedAt: z.ZodNumber;
5398
5447
  assignments: z.ZodNumber;
5399
5448
  permissions: z.ZodNumber;
@@ -5401,12 +5450,14 @@ declare const EmployeeRoleGroupByResultSchema: z.ZodArray<z.ZodObject<{
5401
5450
  id: number;
5402
5451
  updatedAt: number;
5403
5452
  name: number;
5453
+ color: number;
5404
5454
  assignments: number;
5405
5455
  permissions: number;
5406
5456
  }, {
5407
5457
  id: number;
5408
5458
  updatedAt: number;
5409
5459
  name: number;
5460
+ color: number;
5410
5461
  assignments: number;
5411
5462
  permissions: number;
5412
5463
  }>>;
@@ -5427,37 +5478,45 @@ declare const EmployeeRoleGroupByResultSchema: z.ZodArray<z.ZodObject<{
5427
5478
  _min: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5428
5479
  id: z.ZodNullable<z.ZodBigInt>;
5429
5480
  name: z.ZodNullable<z.ZodString>;
5481
+ color: z.ZodNullable<z.ZodString>;
5430
5482
  updatedAt: z.ZodNullable<z.ZodDate>;
5431
5483
  }, "strip", z.ZodTypeAny, {
5432
5484
  id: bigint | null;
5433
5485
  updatedAt: Date | null;
5434
5486
  name: string | null;
5487
+ color: string | null;
5435
5488
  }, {
5436
5489
  id: bigint | null;
5437
5490
  updatedAt: Date | null;
5438
5491
  name: string | null;
5492
+ color: string | null;
5439
5493
  }>>>;
5440
5494
  _max: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5441
5495
  id: z.ZodNullable<z.ZodBigInt>;
5442
5496
  name: z.ZodNullable<z.ZodString>;
5497
+ color: z.ZodNullable<z.ZodString>;
5443
5498
  updatedAt: z.ZodNullable<z.ZodDate>;
5444
5499
  }, "strip", z.ZodTypeAny, {
5445
5500
  id: bigint | null;
5446
5501
  updatedAt: Date | null;
5447
5502
  name: string | null;
5503
+ color: string | null;
5448
5504
  }, {
5449
5505
  id: bigint | null;
5450
5506
  updatedAt: Date | null;
5451
5507
  name: string | null;
5508
+ color: string | null;
5452
5509
  }>>>;
5453
5510
  }, "strip", z.ZodTypeAny, {
5454
5511
  id: bigint;
5455
5512
  updatedAt: Date;
5456
5513
  name: string;
5514
+ color: string;
5457
5515
  _count?: {
5458
5516
  id: number;
5459
5517
  updatedAt: number;
5460
5518
  name: number;
5519
+ color: number;
5461
5520
  assignments: number;
5462
5521
  permissions: number;
5463
5522
  } | undefined;
@@ -5465,11 +5524,13 @@ declare const EmployeeRoleGroupByResultSchema: z.ZodArray<z.ZodObject<{
5465
5524
  id: bigint | null;
5466
5525
  updatedAt: Date | null;
5467
5526
  name: string | null;
5527
+ color: string | null;
5468
5528
  } | null | undefined;
5469
5529
  _max?: {
5470
5530
  id: bigint | null;
5471
5531
  updatedAt: Date | null;
5472
5532
  name: string | null;
5533
+ color: string | null;
5473
5534
  } | null | undefined;
5474
5535
  _avg?: {
5475
5536
  id: number | null;
@@ -5481,10 +5542,12 @@ declare const EmployeeRoleGroupByResultSchema: z.ZodArray<z.ZodObject<{
5481
5542
  id: bigint;
5482
5543
  updatedAt: Date;
5483
5544
  name: string;
5545
+ color: string;
5484
5546
  _count?: {
5485
5547
  id: number;
5486
5548
  updatedAt: number;
5487
5549
  name: number;
5550
+ color: number;
5488
5551
  assignments: number;
5489
5552
  permissions: number;
5490
5553
  } | undefined;
@@ -5492,11 +5555,13 @@ declare const EmployeeRoleGroupByResultSchema: z.ZodArray<z.ZodObject<{
5492
5555
  id: bigint | null;
5493
5556
  updatedAt: Date | null;
5494
5557
  name: string | null;
5558
+ color: string | null;
5495
5559
  } | null | undefined;
5496
5560
  _max?: {
5497
5561
  id: bigint | null;
5498
5562
  updatedAt: Date | null;
5499
5563
  name: string | null;
5564
+ color: string | null;
5500
5565
  } | null | undefined;
5501
5566
  _avg?: {
5502
5567
  id: number | null;
@@ -7368,62 +7433,62 @@ declare const EmployeeRolePermissionCountResultSchema: z.ZodNumber;
7368
7433
  declare const CountryFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
7369
7434
  id: z.ZodNumber;
7370
7435
  code: z.ZodString;
7371
- name: z.ZodString;
7436
+ currency: z.ZodOptional<z.ZodString>;
7372
7437
  updatedAt: z.ZodDate;
7373
7438
  localities: z.ZodArray<z.ZodUnknown, "many">;
7374
7439
  }, "strip", z.ZodTypeAny, {
7375
7440
  code: string;
7376
7441
  id: number;
7377
7442
  updatedAt: Date;
7378
- name: string;
7379
7443
  localities: unknown[];
7444
+ currency?: string | undefined;
7380
7445
  }, {
7381
7446
  code: string;
7382
7447
  id: number;
7383
7448
  updatedAt: Date;
7384
- name: string;
7385
7449
  localities: unknown[];
7450
+ currency?: string | undefined;
7386
7451
  }>>;
7387
7452
 
7388
7453
  declare const CountryFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
7389
7454
  id: z.ZodNumber;
7390
7455
  code: z.ZodString;
7391
- name: z.ZodString;
7456
+ currency: z.ZodOptional<z.ZodString>;
7392
7457
  updatedAt: z.ZodDate;
7393
7458
  localities: z.ZodArray<z.ZodUnknown, "many">;
7394
7459
  }, "strip", z.ZodTypeAny, {
7395
7460
  code: string;
7396
7461
  id: number;
7397
7462
  updatedAt: Date;
7398
- name: string;
7399
7463
  localities: unknown[];
7464
+ currency?: string | undefined;
7400
7465
  }, {
7401
7466
  code: string;
7402
7467
  id: number;
7403
7468
  updatedAt: Date;
7404
- name: string;
7405
7469
  localities: unknown[];
7470
+ currency?: string | undefined;
7406
7471
  }>>;
7407
7472
 
7408
7473
  declare const CountryFindManyResultSchema: z.ZodObject<{
7409
7474
  data: z.ZodArray<z.ZodObject<{
7410
7475
  id: z.ZodNumber;
7411
7476
  code: z.ZodString;
7412
- name: z.ZodString;
7477
+ currency: z.ZodOptional<z.ZodString>;
7413
7478
  updatedAt: z.ZodDate;
7414
7479
  localities: z.ZodArray<z.ZodUnknown, "many">;
7415
7480
  }, "strip", z.ZodTypeAny, {
7416
7481
  code: string;
7417
7482
  id: number;
7418
7483
  updatedAt: Date;
7419
- name: string;
7420
7484
  localities: unknown[];
7485
+ currency?: string | undefined;
7421
7486
  }, {
7422
7487
  code: string;
7423
7488
  id: number;
7424
7489
  updatedAt: Date;
7425
- name: string;
7426
7490
  localities: unknown[];
7491
+ currency?: string | undefined;
7427
7492
  }>, "many">;
7428
7493
  pagination: z.ZodObject<{
7429
7494
  page: z.ZodNumber;
@@ -7452,8 +7517,8 @@ declare const CountryFindManyResultSchema: z.ZodObject<{
7452
7517
  code: string;
7453
7518
  id: number;
7454
7519
  updatedAt: Date;
7455
- name: string;
7456
7520
  localities: unknown[];
7521
+ currency?: string | undefined;
7457
7522
  }[];
7458
7523
  pagination: {
7459
7524
  page: number;
@@ -7468,8 +7533,8 @@ declare const CountryFindManyResultSchema: z.ZodObject<{
7468
7533
  code: string;
7469
7534
  id: number;
7470
7535
  updatedAt: Date;
7471
- name: string;
7472
7536
  localities: unknown[];
7537
+ currency?: string | undefined;
7473
7538
  }[];
7474
7539
  pagination: {
7475
7540
  page: number;
@@ -7484,21 +7549,21 @@ declare const CountryFindManyResultSchema: z.ZodObject<{
7484
7549
  declare const CountryCreateResultSchema: z.ZodObject<{
7485
7550
  id: z.ZodNumber;
7486
7551
  code: z.ZodString;
7487
- name: z.ZodString;
7552
+ currency: z.ZodOptional<z.ZodString>;
7488
7553
  updatedAt: z.ZodDate;
7489
7554
  localities: z.ZodArray<z.ZodUnknown, "many">;
7490
7555
  }, "strip", z.ZodTypeAny, {
7491
7556
  code: string;
7492
7557
  id: number;
7493
7558
  updatedAt: Date;
7494
- name: string;
7495
7559
  localities: unknown[];
7560
+ currency?: string | undefined;
7496
7561
  }, {
7497
7562
  code: string;
7498
7563
  id: number;
7499
7564
  updatedAt: Date;
7500
- name: string;
7501
7565
  localities: unknown[];
7566
+ currency?: string | undefined;
7502
7567
  }>;
7503
7568
 
7504
7569
  declare const CountryCreateManyResultSchema: z.ZodObject<{
@@ -7512,21 +7577,21 @@ declare const CountryCreateManyResultSchema: z.ZodObject<{
7512
7577
  declare const CountryUpdateResultSchema: z.ZodNullable<z.ZodObject<{
7513
7578
  id: z.ZodNumber;
7514
7579
  code: z.ZodString;
7515
- name: z.ZodString;
7580
+ currency: z.ZodOptional<z.ZodString>;
7516
7581
  updatedAt: z.ZodDate;
7517
7582
  localities: z.ZodArray<z.ZodUnknown, "many">;
7518
7583
  }, "strip", z.ZodTypeAny, {
7519
7584
  code: string;
7520
7585
  id: number;
7521
7586
  updatedAt: Date;
7522
- name: string;
7523
7587
  localities: unknown[];
7588
+ currency?: string | undefined;
7524
7589
  }, {
7525
7590
  code: string;
7526
7591
  id: number;
7527
7592
  updatedAt: Date;
7528
- name: string;
7529
7593
  localities: unknown[];
7594
+ currency?: string | undefined;
7530
7595
  }>>;
7531
7596
 
7532
7597
  declare const CountryUpdateManyResultSchema: z.ZodObject<{
@@ -7540,41 +7605,41 @@ declare const CountryUpdateManyResultSchema: z.ZodObject<{
7540
7605
  declare const CountryUpsertResultSchema: z.ZodObject<{
7541
7606
  id: z.ZodNumber;
7542
7607
  code: z.ZodString;
7543
- name: z.ZodString;
7608
+ currency: z.ZodOptional<z.ZodString>;
7544
7609
  updatedAt: z.ZodDate;
7545
7610
  localities: z.ZodArray<z.ZodUnknown, "many">;
7546
7611
  }, "strip", z.ZodTypeAny, {
7547
7612
  code: string;
7548
7613
  id: number;
7549
7614
  updatedAt: Date;
7550
- name: string;
7551
7615
  localities: unknown[];
7616
+ currency?: string | undefined;
7552
7617
  }, {
7553
7618
  code: string;
7554
7619
  id: number;
7555
7620
  updatedAt: Date;
7556
- name: string;
7557
7621
  localities: unknown[];
7622
+ currency?: string | undefined;
7558
7623
  }>;
7559
7624
 
7560
7625
  declare const CountryDeleteResultSchema: z.ZodNullable<z.ZodObject<{
7561
7626
  id: z.ZodNumber;
7562
7627
  code: z.ZodString;
7563
- name: z.ZodString;
7628
+ currency: z.ZodOptional<z.ZodString>;
7564
7629
  updatedAt: z.ZodDate;
7565
7630
  localities: z.ZodArray<z.ZodUnknown, "many">;
7566
7631
  }, "strip", z.ZodTypeAny, {
7567
7632
  code: string;
7568
7633
  id: number;
7569
7634
  updatedAt: Date;
7570
- name: string;
7571
7635
  localities: unknown[];
7636
+ currency?: string | undefined;
7572
7637
  }, {
7573
7638
  code: string;
7574
7639
  id: number;
7575
7640
  updatedAt: Date;
7576
- name: string;
7577
7641
  localities: unknown[];
7642
+ currency?: string | undefined;
7578
7643
  }>>;
7579
7644
 
7580
7645
  declare const CountryDeleteManyResultSchema: z.ZodObject<{
@@ -7589,20 +7654,20 @@ declare const CountryAggregateResultSchema: z.ZodObject<{
7589
7654
  _count: z.ZodOptional<z.ZodObject<{
7590
7655
  id: z.ZodNumber;
7591
7656
  code: z.ZodNumber;
7592
- name: z.ZodNumber;
7657
+ currency: z.ZodNumber;
7593
7658
  updatedAt: z.ZodNumber;
7594
7659
  localities: z.ZodNumber;
7595
7660
  }, "strip", z.ZodTypeAny, {
7596
7661
  code: number;
7597
7662
  id: number;
7598
7663
  updatedAt: number;
7599
- name: number;
7664
+ currency: number;
7600
7665
  localities: number;
7601
7666
  }, {
7602
7667
  code: number;
7603
7668
  id: number;
7604
7669
  updatedAt: number;
7605
- name: number;
7670
+ currency: number;
7606
7671
  localities: number;
7607
7672
  }>>;
7608
7673
  _sum: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -7622,54 +7687,54 @@ declare const CountryAggregateResultSchema: z.ZodObject<{
7622
7687
  _min: z.ZodOptional<z.ZodNullable<z.ZodObject<{
7623
7688
  id: z.ZodNullable<z.ZodNumber>;
7624
7689
  code: z.ZodNullable<z.ZodString>;
7625
- name: z.ZodNullable<z.ZodString>;
7690
+ currency: z.ZodNullable<z.ZodString>;
7626
7691
  updatedAt: z.ZodNullable<z.ZodDate>;
7627
7692
  }, "strip", z.ZodTypeAny, {
7628
7693
  code: string | null;
7629
7694
  id: number | null;
7630
7695
  updatedAt: Date | null;
7631
- name: string | null;
7696
+ currency: string | null;
7632
7697
  }, {
7633
7698
  code: string | null;
7634
7699
  id: number | null;
7635
7700
  updatedAt: Date | null;
7636
- name: string | null;
7701
+ currency: string | null;
7637
7702
  }>>>;
7638
7703
  _max: z.ZodOptional<z.ZodNullable<z.ZodObject<{
7639
7704
  id: z.ZodNullable<z.ZodNumber>;
7640
7705
  code: z.ZodNullable<z.ZodString>;
7641
- name: z.ZodNullable<z.ZodString>;
7706
+ currency: z.ZodNullable<z.ZodString>;
7642
7707
  updatedAt: z.ZodNullable<z.ZodDate>;
7643
7708
  }, "strip", z.ZodTypeAny, {
7644
7709
  code: string | null;
7645
7710
  id: number | null;
7646
7711
  updatedAt: Date | null;
7647
- name: string | null;
7712
+ currency: string | null;
7648
7713
  }, {
7649
7714
  code: string | null;
7650
7715
  id: number | null;
7651
7716
  updatedAt: Date | null;
7652
- name: string | null;
7717
+ currency: string | null;
7653
7718
  }>>>;
7654
7719
  }, "strip", z.ZodTypeAny, {
7655
7720
  _count?: {
7656
7721
  code: number;
7657
7722
  id: number;
7658
7723
  updatedAt: number;
7659
- name: number;
7724
+ currency: number;
7660
7725
  localities: number;
7661
7726
  } | undefined;
7662
7727
  _min?: {
7663
7728
  code: string | null;
7664
7729
  id: number | null;
7665
7730
  updatedAt: Date | null;
7666
- name: string | null;
7731
+ currency: string | null;
7667
7732
  } | null | undefined;
7668
7733
  _max?: {
7669
7734
  code: string | null;
7670
7735
  id: number | null;
7671
7736
  updatedAt: Date | null;
7672
- name: string | null;
7737
+ currency: string | null;
7673
7738
  } | null | undefined;
7674
7739
  _avg?: {
7675
7740
  id: number | null;
@@ -7682,20 +7747,20 @@ declare const CountryAggregateResultSchema: z.ZodObject<{
7682
7747
  code: number;
7683
7748
  id: number;
7684
7749
  updatedAt: number;
7685
- name: number;
7750
+ currency: number;
7686
7751
  localities: number;
7687
7752
  } | undefined;
7688
7753
  _min?: {
7689
7754
  code: string | null;
7690
7755
  id: number | null;
7691
7756
  updatedAt: Date | null;
7692
- name: string | null;
7757
+ currency: string | null;
7693
7758
  } | null | undefined;
7694
7759
  _max?: {
7695
7760
  code: string | null;
7696
7761
  id: number | null;
7697
7762
  updatedAt: Date | null;
7698
- name: string | null;
7763
+ currency: string | null;
7699
7764
  } | null | undefined;
7700
7765
  _avg?: {
7701
7766
  id: number | null;
@@ -7708,25 +7773,25 @@ declare const CountryAggregateResultSchema: z.ZodObject<{
7708
7773
  declare const CountryGroupByResultSchema: z.ZodArray<z.ZodObject<{
7709
7774
  id: z.ZodNumber;
7710
7775
  code: z.ZodString;
7711
- name: z.ZodString;
7776
+ currency: z.ZodString;
7712
7777
  updatedAt: z.ZodDate;
7713
7778
  _count: z.ZodOptional<z.ZodObject<{
7714
7779
  id: z.ZodNumber;
7715
7780
  code: z.ZodNumber;
7716
- name: z.ZodNumber;
7781
+ currency: z.ZodNumber;
7717
7782
  updatedAt: z.ZodNumber;
7718
7783
  localities: z.ZodNumber;
7719
7784
  }, "strip", z.ZodTypeAny, {
7720
7785
  code: number;
7721
7786
  id: number;
7722
7787
  updatedAt: number;
7723
- name: number;
7788
+ currency: number;
7724
7789
  localities: number;
7725
7790
  }, {
7726
7791
  code: number;
7727
7792
  id: number;
7728
7793
  updatedAt: number;
7729
- name: number;
7794
+ currency: number;
7730
7795
  localities: number;
7731
7796
  }>>;
7732
7797
  _sum: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -7746,58 +7811,58 @@ declare const CountryGroupByResultSchema: z.ZodArray<z.ZodObject<{
7746
7811
  _min: z.ZodOptional<z.ZodNullable<z.ZodObject<{
7747
7812
  id: z.ZodNullable<z.ZodNumber>;
7748
7813
  code: z.ZodNullable<z.ZodString>;
7749
- name: z.ZodNullable<z.ZodString>;
7814
+ currency: z.ZodNullable<z.ZodString>;
7750
7815
  updatedAt: z.ZodNullable<z.ZodDate>;
7751
7816
  }, "strip", z.ZodTypeAny, {
7752
7817
  code: string | null;
7753
7818
  id: number | null;
7754
7819
  updatedAt: Date | null;
7755
- name: string | null;
7820
+ currency: string | null;
7756
7821
  }, {
7757
7822
  code: string | null;
7758
7823
  id: number | null;
7759
7824
  updatedAt: Date | null;
7760
- name: string | null;
7825
+ currency: string | null;
7761
7826
  }>>>;
7762
7827
  _max: z.ZodOptional<z.ZodNullable<z.ZodObject<{
7763
7828
  id: z.ZodNullable<z.ZodNumber>;
7764
7829
  code: z.ZodNullable<z.ZodString>;
7765
- name: z.ZodNullable<z.ZodString>;
7830
+ currency: z.ZodNullable<z.ZodString>;
7766
7831
  updatedAt: z.ZodNullable<z.ZodDate>;
7767
7832
  }, "strip", z.ZodTypeAny, {
7768
7833
  code: string | null;
7769
7834
  id: number | null;
7770
7835
  updatedAt: Date | null;
7771
- name: string | null;
7836
+ currency: string | null;
7772
7837
  }, {
7773
7838
  code: string | null;
7774
7839
  id: number | null;
7775
7840
  updatedAt: Date | null;
7776
- name: string | null;
7841
+ currency: string | null;
7777
7842
  }>>>;
7778
7843
  }, "strip", z.ZodTypeAny, {
7779
7844
  code: string;
7780
7845
  id: number;
7781
7846
  updatedAt: Date;
7782
- name: string;
7847
+ currency: string;
7783
7848
  _count?: {
7784
7849
  code: number;
7785
7850
  id: number;
7786
7851
  updatedAt: number;
7787
- name: number;
7852
+ currency: number;
7788
7853
  localities: number;
7789
7854
  } | undefined;
7790
7855
  _min?: {
7791
7856
  code: string | null;
7792
7857
  id: number | null;
7793
7858
  updatedAt: Date | null;
7794
- name: string | null;
7859
+ currency: string | null;
7795
7860
  } | null | undefined;
7796
7861
  _max?: {
7797
7862
  code: string | null;
7798
7863
  id: number | null;
7799
7864
  updatedAt: Date | null;
7800
- name: string | null;
7865
+ currency: string | null;
7801
7866
  } | null | undefined;
7802
7867
  _avg?: {
7803
7868
  id: number | null;
@@ -7809,25 +7874,25 @@ declare const CountryGroupByResultSchema: z.ZodArray<z.ZodObject<{
7809
7874
  code: string;
7810
7875
  id: number;
7811
7876
  updatedAt: Date;
7812
- name: string;
7877
+ currency: string;
7813
7878
  _count?: {
7814
7879
  code: number;
7815
7880
  id: number;
7816
7881
  updatedAt: number;
7817
- name: number;
7882
+ currency: number;
7818
7883
  localities: number;
7819
7884
  } | undefined;
7820
7885
  _min?: {
7821
7886
  code: string | null;
7822
7887
  id: number | null;
7823
7888
  updatedAt: Date | null;
7824
- name: string | null;
7889
+ currency: string | null;
7825
7890
  } | null | undefined;
7826
7891
  _max?: {
7827
7892
  code: string | null;
7828
7893
  id: number | null;
7829
7894
  updatedAt: Date | null;
7830
- name: string | null;
7895
+ currency: string | null;
7831
7896
  } | null | undefined;
7832
7897
  _avg?: {
7833
7898
  id: number | null;
@@ -9769,20 +9834,20 @@ declare const CountryCountAggregateInputObjectSchema: z.ZodType<Prisma.CountryCo
9769
9834
  declare const CountryCountAggregateInputObjectZodSchema: z.ZodObject<{
9770
9835
  id: z.ZodOptional<z.ZodLiteral<true>>;
9771
9836
  code: z.ZodOptional<z.ZodLiteral<true>>;
9772
- name: z.ZodOptional<z.ZodLiteral<true>>;
9837
+ currency: z.ZodOptional<z.ZodLiteral<true>>;
9773
9838
  updatedAt: z.ZodOptional<z.ZodLiteral<true>>;
9774
9839
  _all: z.ZodOptional<z.ZodLiteral<true>>;
9775
9840
  }, "strict", z.ZodTypeAny, {
9776
9841
  code?: true | undefined;
9777
9842
  id?: true | undefined;
9778
9843
  updatedAt?: true | undefined;
9779
- name?: true | undefined;
9844
+ currency?: true | undefined;
9780
9845
  _all?: true | undefined;
9781
9846
  }, {
9782
9847
  code?: true | undefined;
9783
9848
  id?: true | undefined;
9784
9849
  updatedAt?: true | undefined;
9785
- name?: true | undefined;
9850
+ currency?: true | undefined;
9786
9851
  _all?: true | undefined;
9787
9852
  }>;
9788
9853
 
@@ -9790,18 +9855,18 @@ declare const CountryCountOrderByAggregateInputObjectSchema: z.ZodType<Prisma.Co
9790
9855
  declare const CountryCountOrderByAggregateInputObjectZodSchema: z.ZodObject<{
9791
9856
  id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
9792
9857
  code: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
9793
- name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
9858
+ currency: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
9794
9859
  updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
9795
9860
  }, "strict", z.ZodTypeAny, {
9796
9861
  code?: "asc" | "desc" | undefined;
9797
9862
  id?: "asc" | "desc" | undefined;
9798
9863
  updatedAt?: "asc" | "desc" | undefined;
9799
- name?: "asc" | "desc" | undefined;
9864
+ currency?: "asc" | "desc" | undefined;
9800
9865
  }, {
9801
9866
  code?: "asc" | "desc" | undefined;
9802
9867
  id?: "asc" | "desc" | undefined;
9803
9868
  updatedAt?: "asc" | "desc" | undefined;
9804
- name?: "asc" | "desc" | undefined;
9869
+ currency?: "asc" | "desc" | undefined;
9805
9870
  }>;
9806
9871
 
9807
9872
  declare const CountryCountOutputTypeArgsObjectSchema: z.ZodObject<{
@@ -9856,15 +9921,15 @@ declare const CountryCountOutputTypeSelectObjectZodSchema: z.ZodObject<{
9856
9921
  declare const CountryCreateInputObjectSchema: z.ZodType<Prisma.CountryCreateInput>;
9857
9922
  declare const CountryCreateInputObjectZodSchema: z.ZodObject<{
9858
9923
  code: z.ZodString;
9859
- name: z.ZodString;
9924
+ currency: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9860
9925
  localities: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.LocalityCreateNestedManyWithoutCountryInput, z.ZodTypeDef, Prisma.LocalityCreateNestedManyWithoutCountryInput>>>;
9861
9926
  }, "strict", z.ZodTypeAny, {
9862
9927
  code: string;
9863
- name: string;
9928
+ currency?: string | null | undefined;
9864
9929
  localities?: Prisma.LocalityCreateNestedManyWithoutCountryInput | undefined;
9865
9930
  }, {
9866
9931
  code: string;
9867
- name: string;
9932
+ currency?: string | null | undefined;
9868
9933
  localities?: Prisma.LocalityCreateNestedManyWithoutCountryInput | undefined;
9869
9934
  }>;
9870
9935
 
@@ -9872,18 +9937,18 @@ declare const CountryCreateManyInputObjectSchema: z.ZodType<Prisma.CountryCreate
9872
9937
  declare const CountryCreateManyInputObjectZodSchema: z.ZodObject<{
9873
9938
  id: z.ZodOptional<z.ZodNumber>;
9874
9939
  code: z.ZodString;
9875
- name: z.ZodString;
9940
+ currency: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9876
9941
  updatedAt: z.ZodOptional<z.ZodDate>;
9877
9942
  }, "strict", z.ZodTypeAny, {
9878
9943
  code: string;
9879
- name: string;
9880
9944
  id?: number | undefined;
9881
9945
  updatedAt?: Date | undefined;
9946
+ currency?: string | null | undefined;
9882
9947
  }, {
9883
9948
  code: string;
9884
- name: string;
9885
9949
  id?: number | undefined;
9886
9950
  updatedAt?: Date | undefined;
9951
+ currency?: string | null | undefined;
9887
9952
  }>;
9888
9953
 
9889
9954
  declare const CountryCreateNestedOneWithoutLocalitiesInputObjectSchema: z.ZodType<Prisma.CountryCreateNestedOneWithoutLocalitiesInput>;
@@ -9916,16 +9981,16 @@ declare const CountryCreateOrConnectWithoutLocalitiesInputObjectZodSchema: z.Zod
9916
9981
  declare const CountryCreateWithoutLocalitiesInputObjectSchema: z.ZodType<Prisma.CountryCreateWithoutLocalitiesInput>;
9917
9982
  declare const CountryCreateWithoutLocalitiesInputObjectZodSchema: z.ZodObject<{
9918
9983
  code: z.ZodString;
9919
- name: z.ZodString;
9984
+ currency: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9920
9985
  updatedAt: z.ZodOptional<z.ZodDate>;
9921
9986
  }, "strict", z.ZodTypeAny, {
9922
9987
  code: string;
9923
- name: string;
9924
9988
  updatedAt?: Date | undefined;
9989
+ currency?: string | null | undefined;
9925
9990
  }, {
9926
9991
  code: string;
9927
- name: string;
9928
9992
  updatedAt?: Date | undefined;
9993
+ currency?: string | null | undefined;
9929
9994
  }>;
9930
9995
 
9931
9996
  declare const CountryIncludeObjectSchema: z.ZodType<Prisma.CountryInclude>;
@@ -9954,79 +10019,79 @@ declare const CountryMaxAggregateInputObjectSchema: z.ZodType<Prisma.CountryMaxA
9954
10019
  declare const CountryMaxAggregateInputObjectZodSchema: z.ZodObject<{
9955
10020
  id: z.ZodOptional<z.ZodLiteral<true>>;
9956
10021
  code: z.ZodOptional<z.ZodLiteral<true>>;
9957
- name: z.ZodOptional<z.ZodLiteral<true>>;
10022
+ currency: z.ZodOptional<z.ZodLiteral<true>>;
9958
10023
  updatedAt: z.ZodOptional<z.ZodLiteral<true>>;
9959
10024
  }, "strict", z.ZodTypeAny, {
9960
10025
  code?: true | undefined;
9961
10026
  id?: true | undefined;
9962
10027
  updatedAt?: true | undefined;
9963
- name?: true | undefined;
10028
+ currency?: true | undefined;
9964
10029
  }, {
9965
10030
  code?: true | undefined;
9966
10031
  id?: true | undefined;
9967
10032
  updatedAt?: true | undefined;
9968
- name?: true | undefined;
10033
+ currency?: true | undefined;
9969
10034
  }>;
9970
10035
 
9971
10036
  declare const CountryMaxOrderByAggregateInputObjectSchema: z.ZodType<Prisma.CountryMaxOrderByAggregateInput>;
9972
10037
  declare const CountryMaxOrderByAggregateInputObjectZodSchema: z.ZodObject<{
9973
10038
  id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
9974
10039
  code: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
9975
- name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
10040
+ currency: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
9976
10041
  updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
9977
10042
  }, "strict", z.ZodTypeAny, {
9978
10043
  code?: "asc" | "desc" | undefined;
9979
10044
  id?: "asc" | "desc" | undefined;
9980
10045
  updatedAt?: "asc" | "desc" | undefined;
9981
- name?: "asc" | "desc" | undefined;
10046
+ currency?: "asc" | "desc" | undefined;
9982
10047
  }, {
9983
10048
  code?: "asc" | "desc" | undefined;
9984
10049
  id?: "asc" | "desc" | undefined;
9985
10050
  updatedAt?: "asc" | "desc" | undefined;
9986
- name?: "asc" | "desc" | undefined;
10051
+ currency?: "asc" | "desc" | undefined;
9987
10052
  }>;
9988
10053
 
9989
10054
  declare const CountryMinAggregateInputObjectSchema: z.ZodType<Prisma.CountryMinAggregateInputType>;
9990
10055
  declare const CountryMinAggregateInputObjectZodSchema: z.ZodObject<{
9991
10056
  id: z.ZodOptional<z.ZodLiteral<true>>;
9992
10057
  code: z.ZodOptional<z.ZodLiteral<true>>;
9993
- name: z.ZodOptional<z.ZodLiteral<true>>;
10058
+ currency: z.ZodOptional<z.ZodLiteral<true>>;
9994
10059
  updatedAt: z.ZodOptional<z.ZodLiteral<true>>;
9995
10060
  }, "strict", z.ZodTypeAny, {
9996
10061
  code?: true | undefined;
9997
10062
  id?: true | undefined;
9998
10063
  updatedAt?: true | undefined;
9999
- name?: true | undefined;
10064
+ currency?: true | undefined;
10000
10065
  }, {
10001
10066
  code?: true | undefined;
10002
10067
  id?: true | undefined;
10003
10068
  updatedAt?: true | undefined;
10004
- name?: true | undefined;
10069
+ currency?: true | undefined;
10005
10070
  }>;
10006
10071
 
10007
10072
  declare const CountryMinOrderByAggregateInputObjectSchema: z.ZodType<Prisma.CountryMinOrderByAggregateInput>;
10008
10073
  declare const CountryMinOrderByAggregateInputObjectZodSchema: z.ZodObject<{
10009
10074
  id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
10010
10075
  code: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
10011
- name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
10076
+ currency: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
10012
10077
  updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
10013
10078
  }, "strict", z.ZodTypeAny, {
10014
10079
  code?: "asc" | "desc" | undefined;
10015
10080
  id?: "asc" | "desc" | undefined;
10016
10081
  updatedAt?: "asc" | "desc" | undefined;
10017
- name?: "asc" | "desc" | undefined;
10082
+ currency?: "asc" | "desc" | undefined;
10018
10083
  }, {
10019
10084
  code?: "asc" | "desc" | undefined;
10020
10085
  id?: "asc" | "desc" | undefined;
10021
10086
  updatedAt?: "asc" | "desc" | undefined;
10022
- name?: "asc" | "desc" | undefined;
10087
+ currency?: "asc" | "desc" | undefined;
10023
10088
  }>;
10024
10089
 
10025
10090
  declare const CountryOrderByWithAggregationInputObjectSchema: z.ZodType<Prisma.CountryOrderByWithAggregationInput>;
10026
10091
  declare const CountryOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
10027
10092
  id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
10028
10093
  code: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
10029
- name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
10094
+ currency: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
10030
10095
  updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
10031
10096
  _count: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CountryCountOrderByAggregateInput, z.ZodTypeDef, Prisma.CountryCountOrderByAggregateInput>>>;
10032
10097
  _avg: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CountryAvgOrderByAggregateInput, z.ZodTypeDef, Prisma.CountryAvgOrderByAggregateInput>>>;
@@ -10037,7 +10102,7 @@ declare const CountryOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
10037
10102
  code?: "asc" | "desc" | undefined;
10038
10103
  id?: "asc" | "desc" | undefined;
10039
10104
  updatedAt?: "asc" | "desc" | undefined;
10040
- name?: "asc" | "desc" | undefined;
10105
+ currency?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
10041
10106
  _count?: Prisma.CountryCountOrderByAggregateInput | undefined;
10042
10107
  _min?: Prisma.CountryMinOrderByAggregateInput | undefined;
10043
10108
  _max?: Prisma.CountryMaxOrderByAggregateInput | undefined;
@@ -10047,7 +10112,7 @@ declare const CountryOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
10047
10112
  code?: "asc" | "desc" | undefined;
10048
10113
  id?: "asc" | "desc" | undefined;
10049
10114
  updatedAt?: "asc" | "desc" | undefined;
10050
- name?: "asc" | "desc" | undefined;
10115
+ currency?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
10051
10116
  _count?: Prisma.CountryCountOrderByAggregateInput | undefined;
10052
10117
  _min?: Prisma.CountryMinOrderByAggregateInput | undefined;
10053
10118
  _max?: Prisma.CountryMaxOrderByAggregateInput | undefined;
@@ -10059,20 +10124,20 @@ declare const CountryOrderByWithRelationInputObjectSchema: z.ZodType<Prisma.Coun
10059
10124
  declare const CountryOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
10060
10125
  id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
10061
10126
  code: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
10062
- name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
10127
+ currency: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
10063
10128
  updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
10064
10129
  localities: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.LocalityOrderByRelationAggregateInput, z.ZodTypeDef, Prisma.LocalityOrderByRelationAggregateInput>>>;
10065
10130
  }, "strict", z.ZodTypeAny, {
10066
10131
  code?: "asc" | "desc" | undefined;
10067
10132
  id?: "asc" | "desc" | undefined;
10068
10133
  updatedAt?: "asc" | "desc" | undefined;
10069
- name?: "asc" | "desc" | undefined;
10134
+ currency?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
10070
10135
  localities?: Prisma.LocalityOrderByRelationAggregateInput | undefined;
10071
10136
  }, {
10072
10137
  code?: "asc" | "desc" | undefined;
10073
10138
  id?: "asc" | "desc" | undefined;
10074
10139
  updatedAt?: "asc" | "desc" | undefined;
10075
- name?: "asc" | "desc" | undefined;
10140
+ currency?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
10076
10141
  localities?: Prisma.LocalityOrderByRelationAggregateInput | undefined;
10077
10142
  }>;
10078
10143
 
@@ -10095,13 +10160,13 @@ declare const CountryScalarWhereWithAggregatesInputObjectZodSchema: z.ZodObject<
10095
10160
  NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CountryScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.CountryScalarWhereWithAggregatesInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CountryScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.CountryScalarWhereWithAggregatesInput>>, "many">]>>;
10096
10161
  id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntWithAggregatesFilter<never>>>, z.ZodNumber]>>;
10097
10162
  code: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
10098
- name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
10163
+ currency: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringNullableWithAggregatesFilter<never>>>, z.ZodString]>>>;
10099
10164
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.DateTimeWithAggregatesFilter<never>>>, z.ZodDate]>>;
10100
10165
  }, "strict", z.ZodTypeAny, {
10101
10166
  code?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
10102
10167
  id?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
10103
10168
  updatedAt?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
10104
- name?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
10169
+ currency?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
10105
10170
  AND?: Prisma.CountryScalarWhereWithAggregatesInput | Prisma.CountryScalarWhereWithAggregatesInput[] | undefined;
10106
10171
  OR?: Prisma.CountryScalarWhereWithAggregatesInput[] | undefined;
10107
10172
  NOT?: Prisma.CountryScalarWhereWithAggregatesInput | Prisma.CountryScalarWhereWithAggregatesInput[] | undefined;
@@ -10109,7 +10174,7 @@ declare const CountryScalarWhereWithAggregatesInputObjectZodSchema: z.ZodObject<
10109
10174
  code?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
10110
10175
  id?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
10111
10176
  updatedAt?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
10112
- name?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
10177
+ currency?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
10113
10178
  AND?: Prisma.CountryScalarWhereWithAggregatesInput | Prisma.CountryScalarWhereWithAggregatesInput[] | undefined;
10114
10179
  OR?: Prisma.CountryScalarWhereWithAggregatesInput[] | undefined;
10115
10180
  NOT?: Prisma.CountryScalarWhereWithAggregatesInput | Prisma.CountryScalarWhereWithAggregatesInput[] | undefined;
@@ -10119,7 +10184,7 @@ declare const CountrySelectObjectSchema: z.ZodType<Prisma.CountrySelect>;
10119
10184
  declare const CountrySelectObjectZodSchema: z.ZodObject<{
10120
10185
  id: z.ZodOptional<z.ZodBoolean>;
10121
10186
  code: z.ZodOptional<z.ZodBoolean>;
10122
- name: z.ZodOptional<z.ZodBoolean>;
10187
+ currency: z.ZodOptional<z.ZodBoolean>;
10123
10188
  updatedAt: z.ZodOptional<z.ZodBoolean>;
10124
10189
  localities: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.LocalityFindManyArgs<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.LocalityFindManyArgs<_prisma_client_runtime_library.DefaultArgs>>>]>>;
10125
10190
  _count: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
@@ -10133,7 +10198,7 @@ declare const CountrySelectObjectZodSchema: z.ZodObject<{
10133
10198
  code?: boolean | undefined;
10134
10199
  id?: boolean | undefined;
10135
10200
  updatedAt?: boolean | undefined;
10136
- name?: boolean | undefined;
10201
+ currency?: boolean | undefined;
10137
10202
  localities?: boolean | Prisma.LocalityFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
10138
10203
  _count?: boolean | {
10139
10204
  select?: Prisma.CountryCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -10142,7 +10207,7 @@ declare const CountrySelectObjectZodSchema: z.ZodObject<{
10142
10207
  code?: boolean | undefined;
10143
10208
  id?: boolean | undefined;
10144
10209
  updatedAt?: boolean | undefined;
10145
- name?: boolean | undefined;
10210
+ currency?: boolean | undefined;
10146
10211
  localities?: boolean | Prisma.LocalityFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
10147
10212
  _count?: boolean | {
10148
10213
  select?: Prisma.CountryCountOutputTypeSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
@@ -10171,17 +10236,17 @@ declare const CountryUncheckedCreateInputObjectSchema: z.ZodType<Prisma.CountryU
10171
10236
  declare const CountryUncheckedCreateInputObjectZodSchema: z.ZodObject<{
10172
10237
  id: z.ZodOptional<z.ZodNumber>;
10173
10238
  code: z.ZodString;
10174
- name: z.ZodString;
10239
+ currency: z.ZodNullable<z.ZodOptional<z.ZodString>>;
10175
10240
  localities: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.LocalityUncheckedCreateNestedManyWithoutCountryInput, z.ZodTypeDef, Prisma.LocalityUncheckedCreateNestedManyWithoutCountryInput>>>;
10176
10241
  }, "strict", z.ZodTypeAny, {
10177
10242
  code: string;
10178
- name: string;
10179
10243
  id?: number | undefined;
10244
+ currency?: string | null | undefined;
10180
10245
  localities?: Prisma.LocalityUncheckedCreateNestedManyWithoutCountryInput | undefined;
10181
10246
  }, {
10182
10247
  code: string;
10183
- name: string;
10184
10248
  id?: number | undefined;
10249
+ currency?: string | null | undefined;
10185
10250
  localities?: Prisma.LocalityUncheckedCreateNestedManyWithoutCountryInput | undefined;
10186
10251
  }>;
10187
10252
 
@@ -10189,38 +10254,38 @@ declare const CountryUncheckedCreateWithoutLocalitiesInputObjectSchema: z.ZodTyp
10189
10254
  declare const CountryUncheckedCreateWithoutLocalitiesInputObjectZodSchema: z.ZodObject<{
10190
10255
  id: z.ZodOptional<z.ZodNumber>;
10191
10256
  code: z.ZodString;
10192
- name: z.ZodString;
10257
+ currency: z.ZodNullable<z.ZodOptional<z.ZodString>>;
10193
10258
  updatedAt: z.ZodOptional<z.ZodDate>;
10194
10259
  }, "strict", z.ZodTypeAny, {
10195
10260
  code: string;
10196
- name: string;
10197
10261
  id?: number | undefined;
10198
10262
  updatedAt?: Date | undefined;
10263
+ currency?: string | null | undefined;
10199
10264
  }, {
10200
10265
  code: string;
10201
- name: string;
10202
10266
  id?: number | undefined;
10203
10267
  updatedAt?: Date | undefined;
10268
+ currency?: string | null | undefined;
10204
10269
  }>;
10205
10270
 
10206
10271
  declare const CountryUncheckedUpdateInputObjectSchema: z.ZodType<Prisma.CountryUncheckedUpdateInput>;
10207
10272
  declare const CountryUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
10208
10273
  id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
10209
10274
  code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
10210
- name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
10275
+ currency: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
10211
10276
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
10212
10277
  localities: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.LocalityUncheckedUpdateManyWithoutCountryNestedInput, z.ZodTypeDef, Prisma.LocalityUncheckedUpdateManyWithoutCountryNestedInput>>>;
10213
10278
  }, "strict", z.ZodTypeAny, {
10214
10279
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10215
10280
  id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
10216
10281
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
10217
- name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10282
+ currency?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
10218
10283
  localities?: Prisma.LocalityUncheckedUpdateManyWithoutCountryNestedInput | undefined;
10219
10284
  }, {
10220
10285
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10221
10286
  id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
10222
10287
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
10223
- name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10288
+ currency?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
10224
10289
  localities?: Prisma.LocalityUncheckedUpdateManyWithoutCountryNestedInput | undefined;
10225
10290
  }>;
10226
10291
 
@@ -10228,69 +10293,69 @@ declare const CountryUncheckedUpdateManyInputObjectSchema: z.ZodType<Prisma.Coun
10228
10293
  declare const CountryUncheckedUpdateManyInputObjectZodSchema: z.ZodObject<{
10229
10294
  id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
10230
10295
  code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
10231
- name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
10296
+ currency: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
10232
10297
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
10233
10298
  }, "strict", z.ZodTypeAny, {
10234
10299
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10235
10300
  id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
10236
10301
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
10237
- name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10302
+ currency?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
10238
10303
  }, {
10239
10304
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10240
10305
  id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
10241
10306
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
10242
- name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10307
+ currency?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
10243
10308
  }>;
10244
10309
 
10245
10310
  declare const CountryUncheckedUpdateWithoutLocalitiesInputObjectSchema: z.ZodType<Prisma.CountryUncheckedUpdateWithoutLocalitiesInput>;
10246
10311
  declare const CountryUncheckedUpdateWithoutLocalitiesInputObjectZodSchema: z.ZodObject<{
10247
10312
  id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
10248
10313
  code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
10249
- name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
10314
+ currency: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
10250
10315
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
10251
10316
  }, "strict", z.ZodTypeAny, {
10252
10317
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10253
10318
  id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
10254
10319
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
10255
- name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10320
+ currency?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
10256
10321
  }, {
10257
10322
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10258
10323
  id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
10259
10324
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
10260
- name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10325
+ currency?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
10261
10326
  }>;
10262
10327
 
10263
10328
  declare const CountryUpdateInputObjectSchema: z.ZodType<Prisma.CountryUpdateInput>;
10264
10329
  declare const CountryUpdateInputObjectZodSchema: z.ZodObject<{
10265
10330
  code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
10266
- name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
10331
+ currency: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
10267
10332
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
10268
10333
  localities: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.LocalityUpdateManyWithoutCountryNestedInput, z.ZodTypeDef, Prisma.LocalityUpdateManyWithoutCountryNestedInput>>>;
10269
10334
  }, "strict", z.ZodTypeAny, {
10270
10335
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10271
10336
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
10272
- name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10337
+ currency?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
10273
10338
  localities?: Prisma.LocalityUpdateManyWithoutCountryNestedInput | undefined;
10274
10339
  }, {
10275
10340
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10276
10341
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
10277
- name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10342
+ currency?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
10278
10343
  localities?: Prisma.LocalityUpdateManyWithoutCountryNestedInput | undefined;
10279
10344
  }>;
10280
10345
 
10281
10346
  declare const CountryUpdateManyMutationInputObjectSchema: z.ZodType<Prisma.CountryUpdateManyMutationInput>;
10282
10347
  declare const CountryUpdateManyMutationInputObjectZodSchema: z.ZodObject<{
10283
10348
  code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
10284
- name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
10349
+ currency: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
10285
10350
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
10286
10351
  }, "strict", z.ZodTypeAny, {
10287
10352
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10288
10353
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
10289
- name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10354
+ currency?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
10290
10355
  }, {
10291
10356
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10292
10357
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
10293
- name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10358
+ currency?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
10294
10359
  }>;
10295
10360
 
10296
10361
  declare const CountryUpdateOneRequiredWithoutLocalitiesNestedInputObjectSchema: z.ZodType<Prisma.CountryUpdateOneRequiredWithoutLocalitiesNestedInput>;
@@ -10329,16 +10394,16 @@ declare const CountryUpdateToOneWithWhereWithoutLocalitiesInputObjectZodSchema:
10329
10394
  declare const CountryUpdateWithoutLocalitiesInputObjectSchema: z.ZodType<Prisma.CountryUpdateWithoutLocalitiesInput>;
10330
10395
  declare const CountryUpdateWithoutLocalitiesInputObjectZodSchema: z.ZodObject<{
10331
10396
  code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
10332
- name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
10397
+ currency: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
10333
10398
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
10334
10399
  }, "strict", z.ZodTypeAny, {
10335
10400
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10336
10401
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
10337
- name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10402
+ currency?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
10338
10403
  }, {
10339
10404
  code?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10340
10405
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
10341
- name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
10406
+ currency?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
10342
10407
  }>;
10343
10408
 
10344
10409
  declare const CountryUpsertWithoutLocalitiesInputObjectSchema: z.ZodType<Prisma.CountryUpsertWithoutLocalitiesInput>;
@@ -10363,14 +10428,14 @@ declare const CountryWhereInputObjectZodSchema: z.ZodObject<{
10363
10428
  NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CountryWhereInput, z.ZodTypeDef, Prisma.CountryWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CountryWhereInput, z.ZodTypeDef, Prisma.CountryWhereInput>>, "many">]>>;
10364
10429
  id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
10365
10430
  code: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
10366
- name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
10431
+ currency: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
10367
10432
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
10368
10433
  localities: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.LocalityListRelationFilter, z.ZodTypeDef, Prisma.LocalityListRelationFilter>>>;
10369
10434
  }, "strict", z.ZodTypeAny, {
10370
10435
  code?: string | Prisma.StringFilter<never> | undefined;
10371
10436
  id?: number | Prisma.IntFilter<never> | undefined;
10372
10437
  updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
10373
- name?: string | Prisma.StringFilter<never> | undefined;
10438
+ currency?: string | Prisma.StringNullableFilter<never> | null | undefined;
10374
10439
  AND?: Prisma.CountryWhereInput | Prisma.CountryWhereInput[] | undefined;
10375
10440
  OR?: Prisma.CountryWhereInput[] | undefined;
10376
10441
  NOT?: Prisma.CountryWhereInput | Prisma.CountryWhereInput[] | undefined;
@@ -10379,7 +10444,7 @@ declare const CountryWhereInputObjectZodSchema: z.ZodObject<{
10379
10444
  code?: string | Prisma.StringFilter<never> | undefined;
10380
10445
  id?: number | Prisma.IntFilter<never> | undefined;
10381
10446
  updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
10382
- name?: string | Prisma.StringFilter<never> | undefined;
10447
+ currency?: string | Prisma.StringNullableFilter<never> | null | undefined;
10383
10448
  AND?: Prisma.CountryWhereInput | Prisma.CountryWhereInput[] | undefined;
10384
10449
  OR?: Prisma.CountryWhereInput[] | undefined;
10385
10450
  NOT?: Prisma.CountryWhereInput | Prisma.CountryWhereInput[] | undefined;
@@ -12996,17 +13061,20 @@ declare const EmployeeRoleCountAggregateInputObjectSchema: z.ZodType<Prisma.Empl
12996
13061
  declare const EmployeeRoleCountAggregateInputObjectZodSchema: z.ZodObject<{
12997
13062
  id: z.ZodOptional<z.ZodLiteral<true>>;
12998
13063
  name: z.ZodOptional<z.ZodLiteral<true>>;
13064
+ color: z.ZodOptional<z.ZodLiteral<true>>;
12999
13065
  updatedAt: z.ZodOptional<z.ZodLiteral<true>>;
13000
13066
  _all: z.ZodOptional<z.ZodLiteral<true>>;
13001
13067
  }, "strict", z.ZodTypeAny, {
13002
13068
  id?: true | undefined;
13003
13069
  updatedAt?: true | undefined;
13004
13070
  name?: true | undefined;
13071
+ color?: true | undefined;
13005
13072
  _all?: true | undefined;
13006
13073
  }, {
13007
13074
  id?: true | undefined;
13008
13075
  updatedAt?: true | undefined;
13009
13076
  name?: true | undefined;
13077
+ color?: true | undefined;
13010
13078
  _all?: true | undefined;
13011
13079
  }>;
13012
13080
 
@@ -13014,15 +13082,18 @@ declare const EmployeeRoleCountOrderByAggregateInputObjectSchema: z.ZodType<Pris
13014
13082
  declare const EmployeeRoleCountOrderByAggregateInputObjectZodSchema: z.ZodObject<{
13015
13083
  id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13016
13084
  name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13085
+ color: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13017
13086
  updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13018
13087
  }, "strict", z.ZodTypeAny, {
13019
13088
  id?: "asc" | "desc" | undefined;
13020
13089
  updatedAt?: "asc" | "desc" | undefined;
13021
13090
  name?: "asc" | "desc" | undefined;
13091
+ color?: "asc" | "desc" | undefined;
13022
13092
  }, {
13023
13093
  id?: "asc" | "desc" | undefined;
13024
13094
  updatedAt?: "asc" | "desc" | undefined;
13025
13095
  name?: "asc" | "desc" | undefined;
13096
+ color?: "asc" | "desc" | undefined;
13026
13097
  }>;
13027
13098
 
13028
13099
  declare const EmployeeRoleCountOutputTypeArgsObjectSchema: z.ZodObject<{
@@ -13106,16 +13177,19 @@ declare const EmployeeRoleCreateInputObjectSchema: z.ZodType<Prisma.EmployeeRole
13106
13177
  declare const EmployeeRoleCreateInputObjectZodSchema: z.ZodObject<{
13107
13178
  id: z.ZodOptional<z.ZodBigInt>;
13108
13179
  name: z.ZodString;
13180
+ color: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13109
13181
  assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput>>>;
13110
13182
  permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput>>>;
13111
13183
  }, "strict", z.ZodTypeAny, {
13112
13184
  name: string;
13113
13185
  id?: bigint | undefined;
13186
+ color?: string | null | undefined;
13114
13187
  assignments?: Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput | undefined;
13115
13188
  permissions?: Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput | undefined;
13116
13189
  }, {
13117
13190
  name: string;
13118
13191
  id?: bigint | undefined;
13192
+ color?: string | null | undefined;
13119
13193
  assignments?: Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput | undefined;
13120
13194
  permissions?: Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput | undefined;
13121
13195
  }>;
@@ -13124,15 +13198,18 @@ declare const EmployeeRoleCreateManyInputObjectSchema: z.ZodType<Prisma.Employee
13124
13198
  declare const EmployeeRoleCreateManyInputObjectZodSchema: z.ZodObject<{
13125
13199
  id: z.ZodOptional<z.ZodBigInt>;
13126
13200
  name: z.ZodString;
13201
+ color: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13127
13202
  updatedAt: z.ZodOptional<z.ZodDate>;
13128
13203
  }, "strict", z.ZodTypeAny, {
13129
13204
  name: string;
13130
13205
  id?: bigint | undefined;
13131
13206
  updatedAt?: Date | undefined;
13207
+ color?: string | null | undefined;
13132
13208
  }, {
13133
13209
  name: string;
13134
13210
  id?: bigint | undefined;
13135
13211
  updatedAt?: Date | undefined;
13212
+ color?: string | null | undefined;
13136
13213
  }>;
13137
13214
 
13138
13215
  declare const EmployeeRoleCreateNestedOneWithoutAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeRoleCreateNestedOneWithoutAssignmentsInput>;
@@ -13193,17 +13270,20 @@ declare const EmployeeRoleCreateWithoutAssignmentsInputObjectSchema: z.ZodType<P
13193
13270
  declare const EmployeeRoleCreateWithoutAssignmentsInputObjectZodSchema: z.ZodObject<{
13194
13271
  id: z.ZodOptional<z.ZodBigInt>;
13195
13272
  name: z.ZodString;
13273
+ color: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13196
13274
  updatedAt: z.ZodOptional<z.ZodDate>;
13197
13275
  permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput>>>;
13198
13276
  }, "strict", z.ZodTypeAny, {
13199
13277
  name: string;
13200
13278
  id?: bigint | undefined;
13201
13279
  updatedAt?: Date | undefined;
13280
+ color?: string | null | undefined;
13202
13281
  permissions?: Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput | undefined;
13203
13282
  }, {
13204
13283
  name: string;
13205
13284
  id?: bigint | undefined;
13206
13285
  updatedAt?: Date | undefined;
13286
+ color?: string | null | undefined;
13207
13287
  permissions?: Prisma.EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInput | undefined;
13208
13288
  }>;
13209
13289
 
@@ -13211,17 +13291,20 @@ declare const EmployeeRoleCreateWithoutPermissionsInputObjectSchema: z.ZodType<P
13211
13291
  declare const EmployeeRoleCreateWithoutPermissionsInputObjectZodSchema: z.ZodObject<{
13212
13292
  id: z.ZodOptional<z.ZodBigInt>;
13213
13293
  name: z.ZodString;
13294
+ color: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13214
13295
  updatedAt: z.ZodOptional<z.ZodDate>;
13215
13296
  assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput>>>;
13216
13297
  }, "strict", z.ZodTypeAny, {
13217
13298
  name: string;
13218
13299
  id?: bigint | undefined;
13219
13300
  updatedAt?: Date | undefined;
13301
+ color?: string | null | undefined;
13220
13302
  assignments?: Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput | undefined;
13221
13303
  }, {
13222
13304
  name: string;
13223
13305
  id?: bigint | undefined;
13224
13306
  updatedAt?: Date | undefined;
13307
+ color?: string | null | undefined;
13225
13308
  assignments?: Prisma.EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInput | undefined;
13226
13309
  }>;
13227
13310
 
@@ -13254,66 +13337,79 @@ declare const EmployeeRoleMaxAggregateInputObjectSchema: z.ZodType<Prisma.Employ
13254
13337
  declare const EmployeeRoleMaxAggregateInputObjectZodSchema: z.ZodObject<{
13255
13338
  id: z.ZodOptional<z.ZodLiteral<true>>;
13256
13339
  name: z.ZodOptional<z.ZodLiteral<true>>;
13340
+ color: z.ZodOptional<z.ZodLiteral<true>>;
13257
13341
  updatedAt: z.ZodOptional<z.ZodLiteral<true>>;
13258
13342
  }, "strict", z.ZodTypeAny, {
13259
13343
  id?: true | undefined;
13260
13344
  updatedAt?: true | undefined;
13261
13345
  name?: true | undefined;
13346
+ color?: true | undefined;
13262
13347
  }, {
13263
13348
  id?: true | undefined;
13264
13349
  updatedAt?: true | undefined;
13265
13350
  name?: true | undefined;
13351
+ color?: true | undefined;
13266
13352
  }>;
13267
13353
 
13268
13354
  declare const EmployeeRoleMaxOrderByAggregateInputObjectSchema: z.ZodType<Prisma.EmployeeRoleMaxOrderByAggregateInput>;
13269
13355
  declare const EmployeeRoleMaxOrderByAggregateInputObjectZodSchema: z.ZodObject<{
13270
13356
  id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13271
13357
  name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13358
+ color: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13272
13359
  updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13273
13360
  }, "strict", z.ZodTypeAny, {
13274
13361
  id?: "asc" | "desc" | undefined;
13275
13362
  updatedAt?: "asc" | "desc" | undefined;
13276
13363
  name?: "asc" | "desc" | undefined;
13364
+ color?: "asc" | "desc" | undefined;
13277
13365
  }, {
13278
13366
  id?: "asc" | "desc" | undefined;
13279
13367
  updatedAt?: "asc" | "desc" | undefined;
13280
13368
  name?: "asc" | "desc" | undefined;
13369
+ color?: "asc" | "desc" | undefined;
13281
13370
  }>;
13282
13371
 
13283
13372
  declare const EmployeeRoleMinAggregateInputObjectSchema: z.ZodType<Prisma.EmployeeRoleMinAggregateInputType>;
13284
13373
  declare const EmployeeRoleMinAggregateInputObjectZodSchema: z.ZodObject<{
13285
13374
  id: z.ZodOptional<z.ZodLiteral<true>>;
13286
13375
  name: z.ZodOptional<z.ZodLiteral<true>>;
13376
+ color: z.ZodOptional<z.ZodLiteral<true>>;
13287
13377
  updatedAt: z.ZodOptional<z.ZodLiteral<true>>;
13288
13378
  }, "strict", z.ZodTypeAny, {
13289
13379
  id?: true | undefined;
13290
13380
  updatedAt?: true | undefined;
13291
13381
  name?: true | undefined;
13382
+ color?: true | undefined;
13292
13383
  }, {
13293
13384
  id?: true | undefined;
13294
13385
  updatedAt?: true | undefined;
13295
13386
  name?: true | undefined;
13387
+ color?: true | undefined;
13296
13388
  }>;
13297
13389
 
13298
13390
  declare const EmployeeRoleMinOrderByAggregateInputObjectSchema: z.ZodType<Prisma.EmployeeRoleMinOrderByAggregateInput>;
13299
13391
  declare const EmployeeRoleMinOrderByAggregateInputObjectZodSchema: z.ZodObject<{
13300
13392
  id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13301
13393
  name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13394
+ color: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13302
13395
  updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13303
13396
  }, "strict", z.ZodTypeAny, {
13304
13397
  id?: "asc" | "desc" | undefined;
13305
13398
  updatedAt?: "asc" | "desc" | undefined;
13306
13399
  name?: "asc" | "desc" | undefined;
13400
+ color?: "asc" | "desc" | undefined;
13307
13401
  }, {
13308
13402
  id?: "asc" | "desc" | undefined;
13309
13403
  updatedAt?: "asc" | "desc" | undefined;
13310
13404
  name?: "asc" | "desc" | undefined;
13405
+ color?: "asc" | "desc" | undefined;
13311
13406
  }>;
13312
13407
 
13313
13408
  declare const EmployeeRoleOrderByWithAggregationInputObjectSchema: z.ZodType<Prisma.EmployeeRoleOrderByWithAggregationInput>;
13314
13409
  declare const EmployeeRoleOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
13315
13410
  id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13316
13411
  name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13412
+ color: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
13317
13413
  updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13318
13414
  _count: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleCountOrderByAggregateInput, z.ZodTypeDef, Prisma.EmployeeRoleCountOrderByAggregateInput>>>;
13319
13415
  _avg: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAvgOrderByAggregateInput, z.ZodTypeDef, Prisma.EmployeeRoleAvgOrderByAggregateInput>>>;
@@ -13324,6 +13420,7 @@ declare const EmployeeRoleOrderByWithAggregationInputObjectZodSchema: z.ZodObjec
13324
13420
  id?: "asc" | "desc" | undefined;
13325
13421
  updatedAt?: "asc" | "desc" | undefined;
13326
13422
  name?: "asc" | "desc" | undefined;
13423
+ color?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
13327
13424
  _count?: Prisma.EmployeeRoleCountOrderByAggregateInput | undefined;
13328
13425
  _min?: Prisma.EmployeeRoleMinOrderByAggregateInput | undefined;
13329
13426
  _max?: Prisma.EmployeeRoleMaxOrderByAggregateInput | undefined;
@@ -13333,6 +13430,7 @@ declare const EmployeeRoleOrderByWithAggregationInputObjectZodSchema: z.ZodObjec
13333
13430
  id?: "asc" | "desc" | undefined;
13334
13431
  updatedAt?: "asc" | "desc" | undefined;
13335
13432
  name?: "asc" | "desc" | undefined;
13433
+ color?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
13336
13434
  _count?: Prisma.EmployeeRoleCountOrderByAggregateInput | undefined;
13337
13435
  _min?: Prisma.EmployeeRoleMinOrderByAggregateInput | undefined;
13338
13436
  _max?: Prisma.EmployeeRoleMaxOrderByAggregateInput | undefined;
@@ -13344,6 +13442,7 @@ declare const EmployeeRoleOrderByWithRelationInputObjectSchema: z.ZodType<Prisma
13344
13442
  declare const EmployeeRoleOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
13345
13443
  id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13346
13444
  name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13445
+ color: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
13347
13446
  updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
13348
13447
  assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentOrderByRelationAggregateInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentOrderByRelationAggregateInput>>>;
13349
13448
  permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionOrderByRelationAggregateInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionOrderByRelationAggregateInput>>>;
@@ -13351,12 +13450,14 @@ declare const EmployeeRoleOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
13351
13450
  id?: "asc" | "desc" | undefined;
13352
13451
  updatedAt?: "asc" | "desc" | undefined;
13353
13452
  name?: "asc" | "desc" | undefined;
13453
+ color?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
13354
13454
  assignments?: Prisma.EmployeeRoleAssignmentOrderByRelationAggregateInput | undefined;
13355
13455
  permissions?: Prisma.EmployeeRolePermissionOrderByRelationAggregateInput | undefined;
13356
13456
  }, {
13357
13457
  id?: "asc" | "desc" | undefined;
13358
13458
  updatedAt?: "asc" | "desc" | undefined;
13359
13459
  name?: "asc" | "desc" | undefined;
13460
+ color?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
13360
13461
  assignments?: Prisma.EmployeeRoleAssignmentOrderByRelationAggregateInput | undefined;
13361
13462
  permissions?: Prisma.EmployeeRolePermissionOrderByRelationAggregateInput | undefined;
13362
13463
  }>;
@@ -14508,11 +14609,13 @@ declare const EmployeeRoleScalarWhereWithAggregatesInputObjectZodSchema: z.ZodOb
14508
14609
  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">]>>;
14509
14610
  id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BigIntWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.BigIntWithAggregatesFilter<never>>>, z.ZodBigInt]>>;
14510
14611
  name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
14612
+ color: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringNullableWithAggregatesFilter<never>>>, z.ZodString]>>>;
14511
14613
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.DateTimeWithAggregatesFilter<never>>>, z.ZodDate]>>;
14512
14614
  }, "strict", z.ZodTypeAny, {
14513
14615
  id?: bigint | Prisma.BigIntWithAggregatesFilter<never> | undefined;
14514
14616
  updatedAt?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
14515
14617
  name?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
14618
+ color?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
14516
14619
  AND?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput | Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
14517
14620
  OR?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
14518
14621
  NOT?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput | Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
@@ -14520,6 +14623,7 @@ declare const EmployeeRoleScalarWhereWithAggregatesInputObjectZodSchema: z.ZodOb
14520
14623
  id?: bigint | Prisma.BigIntWithAggregatesFilter<never> | undefined;
14521
14624
  updatedAt?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
14522
14625
  name?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
14626
+ color?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
14523
14627
  AND?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput | Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
14524
14628
  OR?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
14525
14629
  NOT?: Prisma.EmployeeRoleScalarWhereWithAggregatesInput | Prisma.EmployeeRoleScalarWhereWithAggregatesInput[] | undefined;
@@ -14529,6 +14633,7 @@ declare const EmployeeRoleSelectObjectSchema: z.ZodType<Prisma.EmployeeRoleSelec
14529
14633
  declare const EmployeeRoleSelectObjectZodSchema: z.ZodObject<{
14530
14634
  id: z.ZodOptional<z.ZodBoolean>;
14531
14635
  name: z.ZodOptional<z.ZodBoolean>;
14636
+ color: z.ZodOptional<z.ZodBoolean>;
14532
14637
  updatedAt: z.ZodOptional<z.ZodBoolean>;
14533
14638
  assignments: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentFindManyArgs<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentFindManyArgs<_prisma_client_runtime_library.DefaultArgs>>>]>>;
14534
14639
  permissions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionFindManyArgs<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.EmployeeRolePermissionFindManyArgs<_prisma_client_runtime_library.DefaultArgs>>>]>>;
@@ -14543,6 +14648,7 @@ declare const EmployeeRoleSelectObjectZodSchema: z.ZodObject<{
14543
14648
  id?: boolean | undefined;
14544
14649
  updatedAt?: boolean | undefined;
14545
14650
  name?: boolean | undefined;
14651
+ color?: boolean | undefined;
14546
14652
  assignments?: boolean | Prisma.EmployeeRoleAssignmentFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
14547
14653
  permissions?: boolean | Prisma.EmployeeRolePermissionFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
14548
14654
  _count?: boolean | {
@@ -14552,6 +14658,7 @@ declare const EmployeeRoleSelectObjectZodSchema: z.ZodObject<{
14552
14658
  id?: boolean | undefined;
14553
14659
  updatedAt?: boolean | undefined;
14554
14660
  name?: boolean | undefined;
14661
+ color?: boolean | undefined;
14555
14662
  assignments?: boolean | Prisma.EmployeeRoleAssignmentFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
14556
14663
  permissions?: boolean | Prisma.EmployeeRolePermissionFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
14557
14664
  _count?: boolean | {
@@ -14581,16 +14688,19 @@ declare const EmployeeRoleUncheckedCreateInputObjectSchema: z.ZodType<Prisma.Emp
14581
14688
  declare const EmployeeRoleUncheckedCreateInputObjectZodSchema: z.ZodObject<{
14582
14689
  id: z.ZodOptional<z.ZodBigInt>;
14583
14690
  name: z.ZodString;
14691
+ color: z.ZodNullable<z.ZodOptional<z.ZodString>>;
14584
14692
  assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput>>>;
14585
14693
  permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput>>>;
14586
14694
  }, "strict", z.ZodTypeAny, {
14587
14695
  name: string;
14588
14696
  id?: bigint | undefined;
14697
+ color?: string | null | undefined;
14589
14698
  assignments?: Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
14590
14699
  permissions?: Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
14591
14700
  }, {
14592
14701
  name: string;
14593
14702
  id?: bigint | undefined;
14703
+ color?: string | null | undefined;
14594
14704
  assignments?: Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
14595
14705
  permissions?: Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
14596
14706
  }>;
@@ -14599,17 +14709,20 @@ declare const EmployeeRoleUncheckedCreateWithoutAssignmentsInputObjectSchema: z.
14599
14709
  declare const EmployeeRoleUncheckedCreateWithoutAssignmentsInputObjectZodSchema: z.ZodObject<{
14600
14710
  id: z.ZodOptional<z.ZodBigInt>;
14601
14711
  name: z.ZodString;
14712
+ color: z.ZodNullable<z.ZodOptional<z.ZodString>>;
14602
14713
  updatedAt: z.ZodOptional<z.ZodDate>;
14603
14714
  permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput>>>;
14604
14715
  }, "strict", z.ZodTypeAny, {
14605
14716
  name: string;
14606
14717
  id?: bigint | undefined;
14607
14718
  updatedAt?: Date | undefined;
14719
+ color?: string | null | undefined;
14608
14720
  permissions?: Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
14609
14721
  }, {
14610
14722
  name: string;
14611
14723
  id?: bigint | undefined;
14612
14724
  updatedAt?: Date | undefined;
14725
+ color?: string | null | undefined;
14613
14726
  permissions?: Prisma.EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
14614
14727
  }>;
14615
14728
 
@@ -14617,17 +14730,20 @@ declare const EmployeeRoleUncheckedCreateWithoutPermissionsInputObjectSchema: z.
14617
14730
  declare const EmployeeRoleUncheckedCreateWithoutPermissionsInputObjectZodSchema: z.ZodObject<{
14618
14731
  id: z.ZodOptional<z.ZodBigInt>;
14619
14732
  name: z.ZodString;
14733
+ color: z.ZodNullable<z.ZodOptional<z.ZodString>>;
14620
14734
  updatedAt: z.ZodOptional<z.ZodDate>;
14621
14735
  assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput>>>;
14622
14736
  }, "strict", z.ZodTypeAny, {
14623
14737
  name: string;
14624
14738
  id?: bigint | undefined;
14625
14739
  updatedAt?: Date | undefined;
14740
+ color?: string | null | undefined;
14626
14741
  assignments?: Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
14627
14742
  }, {
14628
14743
  name: string;
14629
14744
  id?: bigint | undefined;
14630
14745
  updatedAt?: Date | undefined;
14746
+ color?: string | null | undefined;
14631
14747
  assignments?: Prisma.EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInput | undefined;
14632
14748
  }>;
14633
14749
 
@@ -14635,6 +14751,7 @@ declare const EmployeeRoleUncheckedUpdateInputObjectSchema: z.ZodType<Prisma.Emp
14635
14751
  declare const EmployeeRoleUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
14636
14752
  id: z.ZodOptional<z.ZodUnion<[z.ZodBigInt, z.ZodLazy<z.ZodType<Prisma.BigIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BigIntFieldUpdateOperationsInput>>]>>;
14637
14753
  name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
14754
+ color: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
14638
14755
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
14639
14756
  assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput>>>;
14640
14757
  permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput>>>;
@@ -14642,12 +14759,14 @@ declare const EmployeeRoleUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
14642
14759
  id?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
14643
14760
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
14644
14761
  name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
14762
+ color?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
14645
14763
  assignments?: Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
14646
14764
  permissions?: Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
14647
14765
  }, {
14648
14766
  id?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
14649
14767
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
14650
14768
  name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
14769
+ color?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
14651
14770
  assignments?: Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
14652
14771
  permissions?: Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
14653
14772
  }>;
@@ -14656,32 +14775,38 @@ declare const EmployeeRoleUncheckedUpdateManyInputObjectSchema: z.ZodType<Prisma
14656
14775
  declare const EmployeeRoleUncheckedUpdateManyInputObjectZodSchema: z.ZodObject<{
14657
14776
  id: z.ZodOptional<z.ZodUnion<[z.ZodBigInt, z.ZodLazy<z.ZodType<Prisma.BigIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BigIntFieldUpdateOperationsInput>>]>>;
14658
14777
  name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
14778
+ color: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
14659
14779
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
14660
14780
  }, "strict", z.ZodTypeAny, {
14661
14781
  id?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
14662
14782
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
14663
14783
  name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
14784
+ color?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
14664
14785
  }, {
14665
14786
  id?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
14666
14787
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
14667
14788
  name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
14789
+ color?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
14668
14790
  }>;
14669
14791
 
14670
14792
  declare const EmployeeRoleUncheckedUpdateWithoutAssignmentsInputObjectSchema: z.ZodType<Prisma.EmployeeRoleUncheckedUpdateWithoutAssignmentsInput>;
14671
14793
  declare const EmployeeRoleUncheckedUpdateWithoutAssignmentsInputObjectZodSchema: z.ZodObject<{
14672
14794
  id: z.ZodOptional<z.ZodUnion<[z.ZodBigInt, z.ZodLazy<z.ZodType<Prisma.BigIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BigIntFieldUpdateOperationsInput>>]>>;
14673
14795
  name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
14796
+ color: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
14674
14797
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
14675
14798
  permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput>>>;
14676
14799
  }, "strict", z.ZodTypeAny, {
14677
14800
  id?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
14678
14801
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
14679
14802
  name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
14803
+ color?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
14680
14804
  permissions?: Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
14681
14805
  }, {
14682
14806
  id?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
14683
14807
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
14684
14808
  name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
14809
+ color?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
14685
14810
  permissions?: Prisma.EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
14686
14811
  }>;
14687
14812
 
@@ -14689,17 +14814,20 @@ declare const EmployeeRoleUncheckedUpdateWithoutPermissionsInputObjectSchema: z.
14689
14814
  declare const EmployeeRoleUncheckedUpdateWithoutPermissionsInputObjectZodSchema: z.ZodObject<{
14690
14815
  id: z.ZodOptional<z.ZodUnion<[z.ZodBigInt, z.ZodLazy<z.ZodType<Prisma.BigIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BigIntFieldUpdateOperationsInput>>]>>;
14691
14816
  name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
14817
+ color: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
14692
14818
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
14693
14819
  assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput>>>;
14694
14820
  }, "strict", z.ZodTypeAny, {
14695
14821
  id?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
14696
14822
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
14697
14823
  name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
14824
+ color?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
14698
14825
  assignments?: Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
14699
14826
  }, {
14700
14827
  id?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
14701
14828
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
14702
14829
  name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
14830
+ color?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
14703
14831
  assignments?: Prisma.EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInput | undefined;
14704
14832
  }>;
14705
14833
 
@@ -14707,6 +14835,7 @@ declare const EmployeeRoleUpdateInputObjectSchema: z.ZodType<Prisma.EmployeeRole
14707
14835
  declare const EmployeeRoleUpdateInputObjectZodSchema: z.ZodObject<{
14708
14836
  id: z.ZodOptional<z.ZodUnion<[z.ZodBigInt, z.ZodLazy<z.ZodType<Prisma.BigIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BigIntFieldUpdateOperationsInput>>]>>;
14709
14837
  name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
14838
+ color: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
14710
14839
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
14711
14840
  assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput>>>;
14712
14841
  permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput>>>;
@@ -14714,12 +14843,14 @@ declare const EmployeeRoleUpdateInputObjectZodSchema: z.ZodObject<{
14714
14843
  id?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
14715
14844
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
14716
14845
  name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
14846
+ color?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
14717
14847
  assignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput | undefined;
14718
14848
  permissions?: Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput | undefined;
14719
14849
  }, {
14720
14850
  id?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
14721
14851
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
14722
14852
  name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
14853
+ color?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
14723
14854
  assignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput | undefined;
14724
14855
  permissions?: Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput | undefined;
14725
14856
  }>;
@@ -14728,15 +14859,18 @@ declare const EmployeeRoleUpdateManyMutationInputObjectSchema: z.ZodType<Prisma.
14728
14859
  declare const EmployeeRoleUpdateManyMutationInputObjectZodSchema: z.ZodObject<{
14729
14860
  id: z.ZodOptional<z.ZodUnion<[z.ZodBigInt, z.ZodLazy<z.ZodType<Prisma.BigIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BigIntFieldUpdateOperationsInput>>]>>;
14730
14861
  name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
14862
+ color: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
14731
14863
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
14732
14864
  }, "strict", z.ZodTypeAny, {
14733
14865
  id?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
14734
14866
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
14735
14867
  name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
14868
+ color?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
14736
14869
  }, {
14737
14870
  id?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
14738
14871
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
14739
14872
  name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
14873
+ color?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
14740
14874
  }>;
14741
14875
 
14742
14876
  declare const EmployeeRoleUpdateOneRequiredWithoutAssignmentsNestedInputObjectSchema: z.ZodType<Prisma.EmployeeRoleUpdateOneRequiredWithoutAssignmentsNestedInput>;
@@ -14809,17 +14943,20 @@ declare const EmployeeRoleUpdateWithoutAssignmentsInputObjectSchema: z.ZodType<P
14809
14943
  declare const EmployeeRoleUpdateWithoutAssignmentsInputObjectZodSchema: z.ZodObject<{
14810
14944
  id: z.ZodOptional<z.ZodUnion<[z.ZodBigInt, z.ZodLazy<z.ZodType<Prisma.BigIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BigIntFieldUpdateOperationsInput>>]>>;
14811
14945
  name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
14946
+ color: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
14812
14947
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
14813
14948
  permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput>>>;
14814
14949
  }, "strict", z.ZodTypeAny, {
14815
14950
  id?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
14816
14951
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
14817
14952
  name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
14953
+ color?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
14818
14954
  permissions?: Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput | undefined;
14819
14955
  }, {
14820
14956
  id?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
14821
14957
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
14822
14958
  name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
14959
+ color?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
14823
14960
  permissions?: Prisma.EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInput | undefined;
14824
14961
  }>;
14825
14962
 
@@ -14827,17 +14964,20 @@ declare const EmployeeRoleUpdateWithoutPermissionsInputObjectSchema: z.ZodType<P
14827
14964
  declare const EmployeeRoleUpdateWithoutPermissionsInputObjectZodSchema: z.ZodObject<{
14828
14965
  id: z.ZodOptional<z.ZodUnion<[z.ZodBigInt, z.ZodLazy<z.ZodType<Prisma.BigIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BigIntFieldUpdateOperationsInput>>]>>;
14829
14966
  name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
14967
+ color: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
14830
14968
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
14831
14969
  assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput>>>;
14832
14970
  }, "strict", z.ZodTypeAny, {
14833
14971
  id?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
14834
14972
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
14835
14973
  name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
14974
+ color?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
14836
14975
  assignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput | undefined;
14837
14976
  }, {
14838
14977
  id?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
14839
14978
  updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
14840
14979
  name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
14980
+ color?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
14841
14981
  assignments?: Prisma.EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInput | undefined;
14842
14982
  }>;
14843
14983
 
@@ -14878,6 +15018,7 @@ declare const EmployeeRoleWhereInputObjectZodSchema: z.ZodObject<{
14878
15018
  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">]>>;
14879
15019
  id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BigIntFilter<never>, z.ZodTypeDef, Prisma.BigIntFilter<never>>>, z.ZodBigInt]>>;
14880
15020
  name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
15021
+ color: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
14881
15022
  updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
14882
15023
  assignments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRoleAssignmentListRelationFilter, z.ZodTypeDef, Prisma.EmployeeRoleAssignmentListRelationFilter>>>;
14883
15024
  permissions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.EmployeeRolePermissionListRelationFilter, z.ZodTypeDef, Prisma.EmployeeRolePermissionListRelationFilter>>>;
@@ -14885,6 +15026,7 @@ declare const EmployeeRoleWhereInputObjectZodSchema: z.ZodObject<{
14885
15026
  id?: bigint | Prisma.BigIntFilter<never> | undefined;
14886
15027
  updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
14887
15028
  name?: string | Prisma.StringFilter<never> | undefined;
15029
+ color?: string | Prisma.StringNullableFilter<never> | null | undefined;
14888
15030
  AND?: Prisma.EmployeeRoleWhereInput | Prisma.EmployeeRoleWhereInput[] | undefined;
14889
15031
  OR?: Prisma.EmployeeRoleWhereInput[] | undefined;
14890
15032
  NOT?: Prisma.EmployeeRoleWhereInput | Prisma.EmployeeRoleWhereInput[] | undefined;
@@ -14894,6 +15036,7 @@ declare const EmployeeRoleWhereInputObjectZodSchema: z.ZodObject<{
14894
15036
  id?: bigint | Prisma.BigIntFilter<never> | undefined;
14895
15037
  updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
14896
15038
  name?: string | Prisma.StringFilter<never> | undefined;
15039
+ color?: string | Prisma.StringNullableFilter<never> | null | undefined;
14897
15040
  AND?: Prisma.EmployeeRoleWhereInput | Prisma.EmployeeRoleWhereInput[] | undefined;
14898
15041
  OR?: Prisma.EmployeeRoleWhereInput[] | undefined;
14899
15042
  NOT?: Prisma.EmployeeRoleWhereInput | Prisma.EmployeeRoleWhereInput[] | undefined;
@@ -20731,6 +20874,7 @@ type EmployeePureType = z.infer<typeof EmployeeModelSchema>;
20731
20874
  declare const EmployeeRoleModelSchema: z.ZodObject<{
20732
20875
  id: z.ZodBigInt;
20733
20876
  name: z.ZodString;
20877
+ color: z.ZodNullable<z.ZodString>;
20734
20878
  updatedAt: z.ZodDate;
20735
20879
  assignments: z.ZodArray<z.ZodUnknown, "many">;
20736
20880
  permissions: z.ZodArray<z.ZodUnknown, "many">;
@@ -20738,12 +20882,14 @@ declare const EmployeeRoleModelSchema: z.ZodObject<{
20738
20882
  id: bigint;
20739
20883
  updatedAt: Date;
20740
20884
  name: string;
20885
+ color: string | null;
20741
20886
  assignments: unknown[];
20742
20887
  permissions: unknown[];
20743
20888
  }, {
20744
20889
  id: bigint;
20745
20890
  updatedAt: Date;
20746
20891
  name: string;
20892
+ color: string | null;
20747
20893
  assignments: unknown[];
20748
20894
  permissions: unknown[];
20749
20895
  }>;
@@ -20833,20 +20979,20 @@ type EmployeeRolePermissionPureType = z.infer<typeof EmployeeRolePermissionModel
20833
20979
  declare const CountryModelSchema: z.ZodObject<{
20834
20980
  id: z.ZodNumber;
20835
20981
  code: z.ZodString;
20836
- name: z.ZodString;
20982
+ currency: z.ZodNullable<z.ZodString>;
20837
20983
  updatedAt: z.ZodDate;
20838
20984
  localities: z.ZodArray<z.ZodUnknown, "many">;
20839
20985
  }, "strict", z.ZodTypeAny, {
20840
20986
  code: string;
20841
20987
  id: number;
20842
20988
  updatedAt: Date;
20843
- name: string;
20989
+ currency: string | null;
20844
20990
  localities: unknown[];
20845
20991
  }, {
20846
20992
  code: string;
20847
20993
  id: number;
20848
20994
  updatedAt: Date;
20849
- name: string;
20995
+ currency: string | null;
20850
20996
  localities: unknown[];
20851
20997
  }>;
20852
20998
  type CountryPureType = z.infer<typeof CountryModelSchema>;
@@ -20974,6 +21120,7 @@ type EmployeeInputType = z.infer<typeof EmployeeInputSchema>;
20974
21120
  declare const EmployeeRoleInputSchema: z.ZodObject<{
20975
21121
  id: z.ZodBigInt;
20976
21122
  name: z.ZodString;
21123
+ color: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20977
21124
  updatedAt: z.ZodDate;
20978
21125
  assignments: z.ZodArray<z.ZodUnknown, "many">;
20979
21126
  permissions: z.ZodArray<z.ZodUnknown, "many">;
@@ -20983,12 +21130,14 @@ declare const EmployeeRoleInputSchema: z.ZodObject<{
20983
21130
  name: string;
20984
21131
  assignments: unknown[];
20985
21132
  permissions: unknown[];
21133
+ color?: string | null | undefined;
20986
21134
  }, {
20987
21135
  id: bigint;
20988
21136
  updatedAt: Date;
20989
21137
  name: string;
20990
21138
  assignments: unknown[];
20991
21139
  permissions: unknown[];
21140
+ color?: string | null | undefined;
20992
21141
  }>;
20993
21142
  type EmployeeRoleInputType = z.infer<typeof EmployeeRoleInputSchema>;
20994
21143
 
@@ -21076,21 +21225,21 @@ type EmployeeRolePermissionInputType = z.infer<typeof EmployeeRolePermissionInpu
21076
21225
  declare const CountryInputSchema: z.ZodObject<{
21077
21226
  id: z.ZodNumber;
21078
21227
  code: z.ZodString;
21079
- name: z.ZodString;
21228
+ currency: z.ZodNullable<z.ZodOptional<z.ZodString>>;
21080
21229
  updatedAt: z.ZodDate;
21081
21230
  localities: z.ZodArray<z.ZodUnknown, "many">;
21082
21231
  }, "strict", z.ZodTypeAny, {
21083
21232
  code: string;
21084
21233
  id: number;
21085
21234
  updatedAt: Date;
21086
- name: string;
21087
21235
  localities: unknown[];
21236
+ currency?: string | null | undefined;
21088
21237
  }, {
21089
21238
  code: string;
21090
21239
  id: number;
21091
21240
  updatedAt: Date;
21092
- name: string;
21093
21241
  localities: unknown[];
21242
+ currency?: string | null | undefined;
21094
21243
  }>;
21095
21244
  type CountryInputType = z.infer<typeof CountryInputSchema>;
21096
21245
 
@@ -21217,6 +21366,7 @@ type EmployeeResultType = z.infer<typeof EmployeeResultSchema>;
21217
21366
  declare const EmployeeRoleResultSchema: z.ZodObject<{
21218
21367
  id: z.ZodBigInt;
21219
21368
  name: z.ZodString;
21369
+ color: z.ZodNullable<z.ZodString>;
21220
21370
  updatedAt: z.ZodDate;
21221
21371
  assignments: z.ZodArray<z.ZodUnknown, "many">;
21222
21372
  permissions: z.ZodArray<z.ZodUnknown, "many">;
@@ -21224,12 +21374,14 @@ declare const EmployeeRoleResultSchema: z.ZodObject<{
21224
21374
  id: bigint;
21225
21375
  updatedAt: Date;
21226
21376
  name: string;
21377
+ color: string | null;
21227
21378
  assignments: unknown[];
21228
21379
  permissions: unknown[];
21229
21380
  }, {
21230
21381
  id: bigint;
21231
21382
  updatedAt: Date;
21232
21383
  name: string;
21384
+ color: string | null;
21233
21385
  assignments: unknown[];
21234
21386
  permissions: unknown[];
21235
21387
  }>;
@@ -21319,20 +21471,20 @@ type EmployeeRolePermissionResultType = z.infer<typeof EmployeeRolePermissionRes
21319
21471
  declare const CountryResultSchema: z.ZodObject<{
21320
21472
  id: z.ZodNumber;
21321
21473
  code: z.ZodString;
21322
- name: z.ZodString;
21474
+ currency: z.ZodNullable<z.ZodString>;
21323
21475
  updatedAt: z.ZodDate;
21324
21476
  localities: z.ZodArray<z.ZodUnknown, "many">;
21325
21477
  }, "strict", z.ZodTypeAny, {
21326
21478
  code: string;
21327
21479
  id: number;
21328
21480
  updatedAt: Date;
21329
- name: string;
21481
+ currency: string | null;
21330
21482
  localities: unknown[];
21331
21483
  }, {
21332
21484
  code: string;
21333
21485
  id: number;
21334
21486
  updatedAt: Date;
21335
- name: string;
21487
+ currency: string | null;
21336
21488
  localities: unknown[];
21337
21489
  }>;
21338
21490
  type CountryResultType = z.infer<typeof CountryResultSchema>;
@@ -21610,34 +21762,157 @@ declare const LocalitySchema: z$1.ZodObject<{
21610
21762
  type CreateLocalityDto = z$1.infer<typeof CreateLocalitySchema>;
21611
21763
  type Locality = z$1.infer<typeof LocalitySchema>;
21612
21764
 
21613
- declare const CreateCountrySchema: z$1.ZodObject<{
21765
+ declare const CountrySchema: z$1.ZodObject<{
21614
21766
  code: z$1.ZodString;
21615
- name: z$1.ZodString;
21616
- }, "strip", z$1.ZodTypeAny, {
21767
+ id: z$1.ZodNumber;
21768
+ currency: z$1.ZodNullable<z$1.ZodString>;
21769
+ } & {
21770
+ updatedAt: z$1.ZodString;
21771
+ }, "strict", z$1.ZodTypeAny, {
21617
21772
  code: string;
21618
- name: string;
21773
+ id: number;
21774
+ updatedAt: string;
21775
+ currency: string | null;
21619
21776
  }, {
21620
21777
  code: string;
21621
- name: string;
21778
+ id: number;
21779
+ updatedAt: string;
21780
+ currency: string | null;
21622
21781
  }>;
21623
- declare const CountrySchema: z$1.ZodObject<{
21624
- code: z$1.ZodString;
21625
- id: z$1.ZodNumber;
21782
+ type Country = z$1.infer<typeof CountrySchema>;
21783
+
21784
+ declare const EmployeeRoleSchema: z$1.ZodObject<{
21626
21785
  name: z$1.ZodString;
21786
+ color: z$1.ZodNullable<z$1.ZodString>;
21627
21787
  } & {
21788
+ id: z$1.ZodNumber;
21628
21789
  updatedAt: z$1.ZodString;
21629
21790
  }, "strict", z$1.ZodTypeAny, {
21630
- code: string;
21631
21791
  id: number;
21632
21792
  updatedAt: string;
21633
21793
  name: string;
21794
+ color: string | null;
21634
21795
  }, {
21635
- code: string;
21636
21796
  id: number;
21637
21797
  updatedAt: string;
21638
21798
  name: string;
21799
+ color: string | null;
21639
21800
  }>;
21640
- type CreateCountryDto = z$1.infer<typeof CreateCountrySchema>;
21641
- type Country = z$1.infer<typeof CountrySchema>;
21801
+ declare const EmployeeSchema: z$1.ZodObject<{
21802
+ id: z$1.ZodString;
21803
+ email: z$1.ZodString;
21804
+ firstName: z$1.ZodString;
21805
+ lastName: z$1.ZodString;
21806
+ warehouseId: z$1.ZodNullable<z$1.ZodNumber>;
21807
+ isActive: z$1.ZodBoolean;
21808
+ } & {
21809
+ lastSeen: z$1.ZodNullable<z$1.ZodString>;
21810
+ updatedAt: z$1.ZodString;
21811
+ roleAssignments: z$1.ZodArray<z$1.ZodObject<{
21812
+ employeeRole: z$1.ZodObject<{
21813
+ name: z$1.ZodString;
21814
+ color: z$1.ZodNullable<z$1.ZodString>;
21815
+ } & {
21816
+ id: z$1.ZodNumber;
21817
+ updatedAt: z$1.ZodString;
21818
+ }, "strict", z$1.ZodTypeAny, {
21819
+ id: number;
21820
+ updatedAt: string;
21821
+ name: string;
21822
+ color: string | null;
21823
+ }, {
21824
+ id: number;
21825
+ updatedAt: string;
21826
+ name: string;
21827
+ color: string | null;
21828
+ }>;
21829
+ }, "strip", z$1.ZodTypeAny, {
21830
+ employeeRole: {
21831
+ id: number;
21832
+ updatedAt: string;
21833
+ name: string;
21834
+ color: string | null;
21835
+ };
21836
+ }, {
21837
+ employeeRole: {
21838
+ id: number;
21839
+ updatedAt: string;
21840
+ name: string;
21841
+ color: string | null;
21842
+ };
21843
+ }>, "many">;
21844
+ }, "strict", z$1.ZodTypeAny, {
21845
+ id: string;
21846
+ email: string;
21847
+ firstName: string;
21848
+ lastName: string;
21849
+ warehouseId: number | null;
21850
+ isActive: boolean;
21851
+ lastSeen: string | null;
21852
+ updatedAt: string;
21853
+ roleAssignments: {
21854
+ employeeRole: {
21855
+ id: number;
21856
+ updatedAt: string;
21857
+ name: string;
21858
+ color: string | null;
21859
+ };
21860
+ }[];
21861
+ }, {
21862
+ id: string;
21863
+ email: string;
21864
+ firstName: string;
21865
+ lastName: string;
21866
+ warehouseId: number | null;
21867
+ isActive: boolean;
21868
+ lastSeen: string | null;
21869
+ updatedAt: string;
21870
+ roleAssignments: {
21871
+ employeeRole: {
21872
+ id: number;
21873
+ updatedAt: string;
21874
+ name: string;
21875
+ color: string | null;
21876
+ };
21877
+ }[];
21878
+ }>;
21879
+ type EmployeeRole = z$1.infer<typeof EmployeeRoleSchema>;
21880
+ type Employee = z$1.infer<typeof EmployeeSchema>;
21881
+ declare const UpdateEmployeeSchema: z$1.ZodObject<{
21882
+ firstName: z$1.ZodOptional<z$1.ZodString>;
21883
+ lastName: z$1.ZodOptional<z$1.ZodString>;
21884
+ isActive: z$1.ZodOptional<z$1.ZodBoolean>;
21885
+ warehouseId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
21886
+ }, "strip", z$1.ZodTypeAny, {
21887
+ firstName?: string | undefined;
21888
+ lastName?: string | undefined;
21889
+ warehouseId?: number | null | undefined;
21890
+ isActive?: boolean | undefined;
21891
+ }, {
21892
+ firstName?: string | undefined;
21893
+ lastName?: string | undefined;
21894
+ warehouseId?: number | null | undefined;
21895
+ isActive?: boolean | undefined;
21896
+ }>;
21897
+ declare const UpdateOwnEmailSchema: z$1.ZodObject<{
21898
+ email: z$1.ZodString;
21899
+ }, "strip", z$1.ZodTypeAny, {
21900
+ email: string;
21901
+ }, {
21902
+ email: string;
21903
+ }>;
21904
+ declare const UpdateOwnPasswordSchema: z$1.ZodObject<{
21905
+ currentPassword: z$1.ZodString;
21906
+ newPassword: z$1.ZodString;
21907
+ }, "strip", z$1.ZodTypeAny, {
21908
+ currentPassword: string;
21909
+ newPassword: string;
21910
+ }, {
21911
+ currentPassword: string;
21912
+ newPassword: string;
21913
+ }>;
21914
+ type UpdateEmployeeDto = z$1.infer<typeof UpdateEmployeeSchema>;
21915
+ type UpdateOwnEmailDto = z$1.infer<typeof UpdateOwnEmailSchema>;
21916
+ type UpdateOwnPasswordDto = z$1.infer<typeof UpdateOwnPasswordSchema>;
21642
21917
 
21643
- export { type AuthTokens, BigIntFieldUpdateOperationsInputObjectSchema, BigIntFieldUpdateOperationsInputObjectZodSchema, BigIntFilterObjectSchema, BigIntFilterObjectZodSchema, BigIntWithAggregatesFilterObjectSchema, BigIntWithAggregatesFilterObjectZodSchema, 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 CreateCountryDto, CreateCountrySchema, type CreateLocalityDto, CreateLocalitySchema, type CreateOrganizationDto, CreateOrganizationSchema, type CreateWarehouseDto, CreateWarehouseSchema, DateTimeFieldUpdateOperationsInputObjectSchema, DateTimeFieldUpdateOperationsInputObjectZodSchema, DateTimeFilterObjectSchema, DateTimeFilterObjectZodSchema, DateTimeNullableFilterObjectSchema, DateTimeNullableFilterObjectZodSchema, DateTimeNullableWithAggregatesFilterObjectSchema, DateTimeNullableWithAggregatesFilterObjectZodSchema, DateTimeWithAggregatesFilterObjectSchema, DateTimeWithAggregatesFilterObjectZodSchema, EmployeeAggregateResultSchema, EmployeeAggregateSchema, EmployeeAggregateZodSchema, EmployeeArgsObjectSchema, EmployeeArgsObjectZodSchema, EmployeeAvgAggregateInputObjectSchema, EmployeeAvgAggregateInputObjectZodSchema, EmployeeAvgOrderByAggregateInputObjectSchema, EmployeeAvgOrderByAggregateInputObjectZodSchema, EmployeeCountAggregateInputObjectSchema, EmployeeCountAggregateInputObjectZodSchema, EmployeeCountOrderByAggregateInputObjectSchema, EmployeeCountOrderByAggregateInputObjectZodSchema, EmployeeCountOutputTypeArgsObjectSchema, EmployeeCountOutputTypeArgsObjectZodSchema, EmployeeCountOutputTypeCountRoleAssignmentsArgsObjectSchema, EmployeeCountOutputTypeCountRoleAssignmentsArgsObjectZodSchema, EmployeeCountOutputTypeSelectObjectSchema, EmployeeCountOutputTypeSelectObjectZodSchema, EmployeeCountResultSchema, EmployeeCountSchema, EmployeeCountZodSchema, EmployeeCreateInputObjectSchema, EmployeeCreateInputObjectZodSchema, EmployeeCreateManyAndReturnSchema, EmployeeCreateManyAndReturnZodSchema, EmployeeCreateManyInputObjectSchema, EmployeeCreateManyInputObjectZodSchema, EmployeeCreateManyResultSchema, EmployeeCreateManySchema, EmployeeCreateManyWarehouseInputEnvelopeObjectSchema, EmployeeCreateManyWarehouseInputEnvelopeObjectZodSchema, EmployeeCreateManyWarehouseInputObjectSchema, EmployeeCreateManyWarehouseInputObjectZodSchema, EmployeeCreateManyZodSchema, EmployeeCreateNestedManyWithoutWarehouseInputObjectSchema, EmployeeCreateNestedManyWithoutWarehouseInputObjectZodSchema, EmployeeCreateNestedOneWithoutRoleAssignmentsInputObjectSchema, EmployeeCreateNestedOneWithoutRoleAssignmentsInputObjectZodSchema, EmployeeCreateOneSchema, EmployeeCreateOneZodSchema, EmployeeCreateOrConnectWithoutRoleAssignmentsInputObjectSchema, EmployeeCreateOrConnectWithoutRoleAssignmentsInputObjectZodSchema, EmployeeCreateOrConnectWithoutWarehouseInputObjectSchema, EmployeeCreateOrConnectWithoutWarehouseInputObjectZodSchema, EmployeeCreateResultSchema, EmployeeCreateWithoutRoleAssignmentsInputObjectSchema, EmployeeCreateWithoutRoleAssignmentsInputObjectZodSchema, EmployeeCreateWithoutWarehouseInputObjectSchema, EmployeeCreateWithoutWarehouseInputObjectZodSchema, EmployeeDeleteManyResultSchema, EmployeeDeleteManySchema, EmployeeDeleteManyZodSchema, EmployeeDeleteOneSchema, EmployeeDeleteOneZodSchema, EmployeeDeleteResultSchema, EmployeeFindFirstOrThrowSchema, EmployeeFindFirstOrThrowSelectSchema, EmployeeFindFirstOrThrowSelectZodSchema, EmployeeFindFirstOrThrowZodSchema, EmployeeFindFirstResultSchema, EmployeeFindFirstSchema, EmployeeFindFirstSelectSchema, EmployeeFindFirstSelectZodSchema, EmployeeFindFirstZodSchema, EmployeeFindManyResultSchema, EmployeeFindManySchema, EmployeeFindManySelectSchema, EmployeeFindManySelectZodSchema, EmployeeFindManyZodSchema, EmployeeFindUniqueOrThrowSchema, EmployeeFindUniqueOrThrowZodSchema, EmployeeFindUniqueResultSchema, EmployeeFindUniqueSchema, EmployeeFindUniqueZodSchema, EmployeeGroupByResultSchema, EmployeeGroupBySchema, EmployeeGroupByZodSchema, EmployeeIncludeObjectSchema, EmployeeIncludeObjectZodSchema, EmployeeInputSchema, type EmployeeInputType, EmployeeListRelationFilterObjectSchema, EmployeeListRelationFilterObjectZodSchema, EmployeeMaxAggregateInputObjectSchema, EmployeeMaxAggregateInputObjectZodSchema, EmployeeMaxOrderByAggregateInputObjectSchema, EmployeeMaxOrderByAggregateInputObjectZodSchema, EmployeeMinAggregateInputObjectSchema, EmployeeMinAggregateInputObjectZodSchema, EmployeeMinOrderByAggregateInputObjectSchema, EmployeeMinOrderByAggregateInputObjectZodSchema, EmployeeModelSchema, EmployeeOrderByRelationAggregateInputObjectSchema, EmployeeOrderByRelationAggregateInputObjectZodSchema, EmployeeOrderByWithAggregationInputObjectSchema, EmployeeOrderByWithAggregationInputObjectZodSchema, EmployeeOrderByWithRelationInputObjectSchema, EmployeeOrderByWithRelationInputObjectZodSchema, EmployeePermissionAggregateResultSchema, EmployeePermissionAggregateSchema, EmployeePermissionAggregateZodSchema, EmployeePermissionArgsObjectSchema, EmployeePermissionArgsObjectZodSchema, EmployeePermissionAvgAggregateInputObjectSchema, EmployeePermissionAvgAggregateInputObjectZodSchema, EmployeePermissionAvgOrderByAggregateInputObjectSchema, EmployeePermissionAvgOrderByAggregateInputObjectZodSchema, EmployeePermissionCountAggregateInputObjectSchema, EmployeePermissionCountAggregateInputObjectZodSchema, EmployeePermissionCountOrderByAggregateInputObjectSchema, EmployeePermissionCountOrderByAggregateInputObjectZodSchema, EmployeePermissionCountOutputTypeArgsObjectSchema, EmployeePermissionCountOutputTypeArgsObjectZodSchema, EmployeePermissionCountOutputTypeCountRolePermissionsArgsObjectSchema, EmployeePermissionCountOutputTypeCountRolePermissionsArgsObjectZodSchema, EmployeePermissionCountOutputTypeSelectObjectSchema, EmployeePermissionCountOutputTypeSelectObjectZodSchema, EmployeePermissionCountResultSchema, EmployeePermissionCountSchema, EmployeePermissionCountZodSchema, EmployeePermissionCreateInputObjectSchema, EmployeePermissionCreateInputObjectZodSchema, EmployeePermissionCreateManyAndReturnSchema, EmployeePermissionCreateManyAndReturnZodSchema, EmployeePermissionCreateManyInputObjectSchema, EmployeePermissionCreateManyInputObjectZodSchema, EmployeePermissionCreateManyResultSchema, EmployeePermissionCreateManySchema, EmployeePermissionCreateManyZodSchema, EmployeePermissionCreateNestedOneWithoutRolePermissionsInputObjectSchema, EmployeePermissionCreateNestedOneWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionCreateOneSchema, EmployeePermissionCreateOneZodSchema, EmployeePermissionCreateOrConnectWithoutRolePermissionsInputObjectSchema, EmployeePermissionCreateOrConnectWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionCreateResultSchema, EmployeePermissionCreateWithoutRolePermissionsInputObjectSchema, EmployeePermissionCreateWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionDeleteManyResultSchema, EmployeePermissionDeleteManySchema, EmployeePermissionDeleteManyZodSchema, EmployeePermissionDeleteOneSchema, EmployeePermissionDeleteOneZodSchema, EmployeePermissionDeleteResultSchema, EmployeePermissionFindFirstOrThrowSchema, EmployeePermissionFindFirstOrThrowSelectSchema, EmployeePermissionFindFirstOrThrowSelectZodSchema, EmployeePermissionFindFirstOrThrowZodSchema, EmployeePermissionFindFirstResultSchema, EmployeePermissionFindFirstSchema, EmployeePermissionFindFirstSelectSchema, EmployeePermissionFindFirstSelectZodSchema, EmployeePermissionFindFirstZodSchema, EmployeePermissionFindManyResultSchema, EmployeePermissionFindManySchema, EmployeePermissionFindManySelectSchema, EmployeePermissionFindManySelectZodSchema, EmployeePermissionFindManyZodSchema, EmployeePermissionFindUniqueOrThrowSchema, EmployeePermissionFindUniqueOrThrowZodSchema, EmployeePermissionFindUniqueResultSchema, EmployeePermissionFindUniqueSchema, EmployeePermissionFindUniqueZodSchema, EmployeePermissionGroupByResultSchema, EmployeePermissionGroupBySchema, EmployeePermissionGroupByZodSchema, EmployeePermissionIncludeObjectSchema, EmployeePermissionIncludeObjectZodSchema, EmployeePermissionInputSchema, type EmployeePermissionInputType, EmployeePermissionMaxAggregateInputObjectSchema, EmployeePermissionMaxAggregateInputObjectZodSchema, EmployeePermissionMaxOrderByAggregateInputObjectSchema, EmployeePermissionMaxOrderByAggregateInputObjectZodSchema, EmployeePermissionMinAggregateInputObjectSchema, EmployeePermissionMinAggregateInputObjectZodSchema, EmployeePermissionMinOrderByAggregateInputObjectSchema, EmployeePermissionMinOrderByAggregateInputObjectZodSchema, EmployeePermissionModelSchema, EmployeePermissionOrderByWithAggregationInputObjectSchema, EmployeePermissionOrderByWithAggregationInputObjectZodSchema, EmployeePermissionOrderByWithRelationInputObjectSchema, EmployeePermissionOrderByWithRelationInputObjectZodSchema, type EmployeePermissionPureType, EmployeePermissionResultSchema, type EmployeePermissionResultType, type EmployeePermissionScalarFieldEnum, EmployeePermissionScalarFieldEnumSchema, EmployeePermissionScalarRelationFilterObjectSchema, EmployeePermissionScalarRelationFilterObjectZodSchema, EmployeePermissionScalarWhereWithAggregatesInputObjectSchema, EmployeePermissionScalarWhereWithAggregatesInputObjectZodSchema, EmployeePermissionSelectObjectSchema, EmployeePermissionSelectObjectZodSchema, EmployeePermissionSumAggregateInputObjectSchema, EmployeePermissionSumAggregateInputObjectZodSchema, EmployeePermissionSumOrderByAggregateInputObjectSchema, EmployeePermissionSumOrderByAggregateInputObjectZodSchema, EmployeePermissionUncheckedCreateInputObjectSchema, EmployeePermissionUncheckedCreateInputObjectZodSchema, EmployeePermissionUncheckedCreateWithoutRolePermissionsInputObjectSchema, EmployeePermissionUncheckedCreateWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionUncheckedUpdateInputObjectSchema, EmployeePermissionUncheckedUpdateInputObjectZodSchema, EmployeePermissionUncheckedUpdateManyInputObjectSchema, EmployeePermissionUncheckedUpdateManyInputObjectZodSchema, EmployeePermissionUncheckedUpdateWithoutRolePermissionsInputObjectSchema, EmployeePermissionUncheckedUpdateWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionUpdateInputObjectSchema, EmployeePermissionUpdateInputObjectZodSchema, EmployeePermissionUpdateManyAndReturnSchema, EmployeePermissionUpdateManyAndReturnZodSchema, EmployeePermissionUpdateManyMutationInputObjectSchema, EmployeePermissionUpdateManyMutationInputObjectZodSchema, EmployeePermissionUpdateManyResultSchema, EmployeePermissionUpdateManySchema, EmployeePermissionUpdateManyZodSchema, EmployeePermissionUpdateOneRequiredWithoutRolePermissionsNestedInputObjectSchema, EmployeePermissionUpdateOneRequiredWithoutRolePermissionsNestedInputObjectZodSchema, EmployeePermissionUpdateOneSchema, EmployeePermissionUpdateOneZodSchema, EmployeePermissionUpdateResultSchema, EmployeePermissionUpdateToOneWithWhereWithoutRolePermissionsInputObjectSchema, EmployeePermissionUpdateToOneWithWhereWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionUpdateWithoutRolePermissionsInputObjectSchema, EmployeePermissionUpdateWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionUpsertOneSchema, EmployeePermissionUpsertOneZodSchema, EmployeePermissionUpsertResultSchema, EmployeePermissionUpsertWithoutRolePermissionsInputObjectSchema, EmployeePermissionUpsertWithoutRolePermissionsInputObjectZodSchema, EmployeePermissionWhereInputObjectSchema, EmployeePermissionWhereInputObjectZodSchema, EmployeePermissionWhereUniqueInputObjectSchema, EmployeePermissionWhereUniqueInputObjectZodSchema, type EmployeePureType, EmployeeResultSchema, type EmployeeResultType, EmployeeRoleAggregateResultSchema, EmployeeRoleAggregateSchema, EmployeeRoleAggregateZodSchema, EmployeeRoleArgsObjectSchema, EmployeeRoleArgsObjectZodSchema, EmployeeRoleAssignmentAggregateResultSchema, EmployeeRoleAssignmentAggregateSchema, EmployeeRoleAssignmentAggregateZodSchema, EmployeeRoleAssignmentArgsObjectSchema, EmployeeRoleAssignmentArgsObjectZodSchema, EmployeeRoleAssignmentAvgAggregateInputObjectSchema, EmployeeRoleAssignmentAvgAggregateInputObjectZodSchema, EmployeeRoleAssignmentAvgOrderByAggregateInputObjectSchema, EmployeeRoleAssignmentAvgOrderByAggregateInputObjectZodSchema, EmployeeRoleAssignmentCountAggregateInputObjectSchema, EmployeeRoleAssignmentCountAggregateInputObjectZodSchema, EmployeeRoleAssignmentCountOrderByAggregateInputObjectSchema, EmployeeRoleAssignmentCountOrderByAggregateInputObjectZodSchema, EmployeeRoleAssignmentCountResultSchema, EmployeeRoleAssignmentCountSchema, EmployeeRoleAssignmentCountZodSchema, EmployeeRoleAssignmentCreateInputObjectSchema, EmployeeRoleAssignmentCreateInputObjectZodSchema, EmployeeRoleAssignmentCreateManyAndReturnSchema, EmployeeRoleAssignmentCreateManyAndReturnZodSchema, EmployeeRoleAssignmentCreateManyEmployeeInputEnvelopeObjectSchema, EmployeeRoleAssignmentCreateManyEmployeeInputEnvelopeObjectZodSchema, EmployeeRoleAssignmentCreateManyEmployeeInputObjectSchema, EmployeeRoleAssignmentCreateManyEmployeeInputObjectZodSchema, EmployeeRoleAssignmentCreateManyEmployeeRoleInputEnvelopeObjectSchema, EmployeeRoleAssignmentCreateManyEmployeeRoleInputEnvelopeObjectZodSchema, EmployeeRoleAssignmentCreateManyEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentCreateManyEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentCreateManyInputObjectSchema, EmployeeRoleAssignmentCreateManyInputObjectZodSchema, EmployeeRoleAssignmentCreateManyResultSchema, EmployeeRoleAssignmentCreateManySchema, EmployeeRoleAssignmentCreateManyZodSchema, EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentCreateNestedManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentCreateOneSchema, EmployeeRoleAssignmentCreateOneZodSchema, EmployeeRoleAssignmentCreateOrConnectWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentCreateOrConnectWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentCreateOrConnectWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentCreateOrConnectWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentCreateResultSchema, EmployeeRoleAssignmentCreateWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentCreateWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentCreateWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentCreateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentDeleteManyResultSchema, EmployeeRoleAssignmentDeleteManySchema, EmployeeRoleAssignmentDeleteManyZodSchema, EmployeeRoleAssignmentDeleteOneSchema, EmployeeRoleAssignmentDeleteOneZodSchema, EmployeeRoleAssignmentDeleteResultSchema, EmployeeRoleAssignmentEmployeeIdEmployeeRoleIdCompoundUniqueInputObjectSchema, EmployeeRoleAssignmentEmployeeIdEmployeeRoleIdCompoundUniqueInputObjectZodSchema, EmployeeRoleAssignmentFindFirstOrThrowSchema, EmployeeRoleAssignmentFindFirstOrThrowSelectSchema, EmployeeRoleAssignmentFindFirstOrThrowSelectZodSchema, EmployeeRoleAssignmentFindFirstOrThrowZodSchema, EmployeeRoleAssignmentFindFirstResultSchema, EmployeeRoleAssignmentFindFirstSchema, EmployeeRoleAssignmentFindFirstSelectSchema, EmployeeRoleAssignmentFindFirstSelectZodSchema, EmployeeRoleAssignmentFindFirstZodSchema, EmployeeRoleAssignmentFindManyResultSchema, EmployeeRoleAssignmentFindManySchema, EmployeeRoleAssignmentFindManySelectSchema, EmployeeRoleAssignmentFindManySelectZodSchema, EmployeeRoleAssignmentFindManyZodSchema, EmployeeRoleAssignmentFindUniqueOrThrowSchema, EmployeeRoleAssignmentFindUniqueOrThrowZodSchema, EmployeeRoleAssignmentFindUniqueResultSchema, EmployeeRoleAssignmentFindUniqueSchema, EmployeeRoleAssignmentFindUniqueZodSchema, EmployeeRoleAssignmentGroupByResultSchema, EmployeeRoleAssignmentGroupBySchema, EmployeeRoleAssignmentGroupByZodSchema, EmployeeRoleAssignmentIncludeObjectSchema, EmployeeRoleAssignmentIncludeObjectZodSchema, EmployeeRoleAssignmentInputSchema, type EmployeeRoleAssignmentInputType, EmployeeRoleAssignmentListRelationFilterObjectSchema, EmployeeRoleAssignmentListRelationFilterObjectZodSchema, EmployeeRoleAssignmentMaxAggregateInputObjectSchema, EmployeeRoleAssignmentMaxAggregateInputObjectZodSchema, EmployeeRoleAssignmentMaxOrderByAggregateInputObjectSchema, EmployeeRoleAssignmentMaxOrderByAggregateInputObjectZodSchema, EmployeeRoleAssignmentMinAggregateInputObjectSchema, EmployeeRoleAssignmentMinAggregateInputObjectZodSchema, EmployeeRoleAssignmentMinOrderByAggregateInputObjectSchema, EmployeeRoleAssignmentMinOrderByAggregateInputObjectZodSchema, EmployeeRoleAssignmentModelSchema, EmployeeRoleAssignmentOrderByRelationAggregateInputObjectSchema, EmployeeRoleAssignmentOrderByRelationAggregateInputObjectZodSchema, EmployeeRoleAssignmentOrderByWithAggregationInputObjectSchema, EmployeeRoleAssignmentOrderByWithAggregationInputObjectZodSchema, EmployeeRoleAssignmentOrderByWithRelationInputObjectSchema, EmployeeRoleAssignmentOrderByWithRelationInputObjectZodSchema, type EmployeeRoleAssignmentPureType, EmployeeRoleAssignmentResultSchema, type EmployeeRoleAssignmentResultType, type EmployeeRoleAssignmentScalarFieldEnum, EmployeeRoleAssignmentScalarFieldEnumSchema, EmployeeRoleAssignmentScalarWhereInputObjectSchema, EmployeeRoleAssignmentScalarWhereInputObjectZodSchema, EmployeeRoleAssignmentScalarWhereWithAggregatesInputObjectSchema, EmployeeRoleAssignmentScalarWhereWithAggregatesInputObjectZodSchema, EmployeeRoleAssignmentSelectObjectSchema, EmployeeRoleAssignmentSelectObjectZodSchema, EmployeeRoleAssignmentSumAggregateInputObjectSchema, EmployeeRoleAssignmentSumAggregateInputObjectZodSchema, EmployeeRoleAssignmentSumOrderByAggregateInputObjectSchema, EmployeeRoleAssignmentSumOrderByAggregateInputObjectZodSchema, EmployeeRoleAssignmentUncheckedCreateInputObjectSchema, EmployeeRoleAssignmentUncheckedCreateInputObjectZodSchema, EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUncheckedCreateNestedManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUncheckedCreateWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUncheckedCreateWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUncheckedCreateWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUncheckedCreateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateManyInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateManyInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeNestedInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeNestedInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateManyWithoutEmployeeRoleNestedInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUncheckedUpdateWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUncheckedUpdateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUpdateInputObjectSchema, EmployeeRoleAssignmentUpdateInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyAndReturnSchema, EmployeeRoleAssignmentUpdateManyAndReturnZodSchema, EmployeeRoleAssignmentUpdateManyMutationInputObjectSchema, EmployeeRoleAssignmentUpdateManyMutationInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyResultSchema, EmployeeRoleAssignmentUpdateManySchema, EmployeeRoleAssignmentUpdateManyWithWhereWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUpdateManyWithWhereWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyWithWhereWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUpdateManyWithWhereWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInputObjectSchema, EmployeeRoleAssignmentUpdateManyWithoutEmployeeNestedInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInputObjectSchema, EmployeeRoleAssignmentUpdateManyWithoutEmployeeRoleNestedInputObjectZodSchema, EmployeeRoleAssignmentUpdateManyZodSchema, EmployeeRoleAssignmentUpdateOneSchema, EmployeeRoleAssignmentUpdateOneZodSchema, EmployeeRoleAssignmentUpdateResultSchema, EmployeeRoleAssignmentUpdateWithWhereUniqueWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUpdateWithWhereUniqueWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUpdateWithWhereUniqueWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUpdateWithWhereUniqueWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUpdateWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUpdateWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUpdateWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUpdateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentUpsertOneSchema, EmployeeRoleAssignmentUpsertOneZodSchema, EmployeeRoleAssignmentUpsertResultSchema, EmployeeRoleAssignmentUpsertWithWhereUniqueWithoutEmployeeInputObjectSchema, EmployeeRoleAssignmentUpsertWithWhereUniqueWithoutEmployeeInputObjectZodSchema, EmployeeRoleAssignmentUpsertWithWhereUniqueWithoutEmployeeRoleInputObjectSchema, EmployeeRoleAssignmentUpsertWithWhereUniqueWithoutEmployeeRoleInputObjectZodSchema, EmployeeRoleAssignmentWhereInputObjectSchema, EmployeeRoleAssignmentWhereInputObjectZodSchema, EmployeeRoleAssignmentWhereUniqueInputObjectSchema, EmployeeRoleAssignmentWhereUniqueInputObjectZodSchema, EmployeeRoleAvgAggregateInputObjectSchema, EmployeeRoleAvgAggregateInputObjectZodSchema, EmployeeRoleAvgOrderByAggregateInputObjectSchema, EmployeeRoleAvgOrderByAggregateInputObjectZodSchema, EmployeeRoleCountAggregateInputObjectSchema, EmployeeRoleCountAggregateInputObjectZodSchema, EmployeeRoleCountOrderByAggregateInputObjectSchema, EmployeeRoleCountOrderByAggregateInputObjectZodSchema, EmployeeRoleCountOutputTypeArgsObjectSchema, EmployeeRoleCountOutputTypeArgsObjectZodSchema, EmployeeRoleCountOutputTypeCountAssignmentsArgsObjectSchema, EmployeeRoleCountOutputTypeCountAssignmentsArgsObjectZodSchema, EmployeeRoleCountOutputTypeCountPermissionsArgsObjectSchema, EmployeeRoleCountOutputTypeCountPermissionsArgsObjectZodSchema, EmployeeRoleCountOutputTypeSelectObjectSchema, EmployeeRoleCountOutputTypeSelectObjectZodSchema, EmployeeRoleCountResultSchema, EmployeeRoleCountSchema, EmployeeRoleCountZodSchema, EmployeeRoleCreateInputObjectSchema, EmployeeRoleCreateInputObjectZodSchema, EmployeeRoleCreateManyAndReturnSchema, EmployeeRoleCreateManyAndReturnZodSchema, EmployeeRoleCreateManyInputObjectSchema, EmployeeRoleCreateManyInputObjectZodSchema, EmployeeRoleCreateManyResultSchema, EmployeeRoleCreateManySchema, EmployeeRoleCreateManyZodSchema, EmployeeRoleCreateNestedOneWithoutAssignmentsInputObjectSchema, EmployeeRoleCreateNestedOneWithoutAssignmentsInputObjectZodSchema, EmployeeRoleCreateNestedOneWithoutPermissionsInputObjectSchema, EmployeeRoleCreateNestedOneWithoutPermissionsInputObjectZodSchema, EmployeeRoleCreateOneSchema, EmployeeRoleCreateOneZodSchema, EmployeeRoleCreateOrConnectWithoutAssignmentsInputObjectSchema, EmployeeRoleCreateOrConnectWithoutAssignmentsInputObjectZodSchema, EmployeeRoleCreateOrConnectWithoutPermissionsInputObjectSchema, EmployeeRoleCreateOrConnectWithoutPermissionsInputObjectZodSchema, EmployeeRoleCreateResultSchema, EmployeeRoleCreateWithoutAssignmentsInputObjectSchema, EmployeeRoleCreateWithoutAssignmentsInputObjectZodSchema, EmployeeRoleCreateWithoutPermissionsInputObjectSchema, EmployeeRoleCreateWithoutPermissionsInputObjectZodSchema, EmployeeRoleDeleteManyResultSchema, EmployeeRoleDeleteManySchema, EmployeeRoleDeleteManyZodSchema, EmployeeRoleDeleteOneSchema, EmployeeRoleDeleteOneZodSchema, EmployeeRoleDeleteResultSchema, EmployeeRoleFindFirstOrThrowSchema, EmployeeRoleFindFirstOrThrowSelectSchema, EmployeeRoleFindFirstOrThrowSelectZodSchema, EmployeeRoleFindFirstOrThrowZodSchema, EmployeeRoleFindFirstResultSchema, EmployeeRoleFindFirstSchema, EmployeeRoleFindFirstSelectSchema, EmployeeRoleFindFirstSelectZodSchema, EmployeeRoleFindFirstZodSchema, EmployeeRoleFindManyResultSchema, EmployeeRoleFindManySchema, EmployeeRoleFindManySelectSchema, EmployeeRoleFindManySelectZodSchema, EmployeeRoleFindManyZodSchema, EmployeeRoleFindUniqueOrThrowSchema, EmployeeRoleFindUniqueOrThrowZodSchema, EmployeeRoleFindUniqueResultSchema, EmployeeRoleFindUniqueSchema, EmployeeRoleFindUniqueZodSchema, EmployeeRoleGroupByResultSchema, EmployeeRoleGroupBySchema, EmployeeRoleGroupByZodSchema, EmployeeRoleIncludeObjectSchema, EmployeeRoleIncludeObjectZodSchema, EmployeeRoleInputSchema, type EmployeeRoleInputType, EmployeeRoleMaxAggregateInputObjectSchema, EmployeeRoleMaxAggregateInputObjectZodSchema, EmployeeRoleMaxOrderByAggregateInputObjectSchema, EmployeeRoleMaxOrderByAggregateInputObjectZodSchema, EmployeeRoleMinAggregateInputObjectSchema, EmployeeRoleMinAggregateInputObjectZodSchema, EmployeeRoleMinOrderByAggregateInputObjectSchema, EmployeeRoleMinOrderByAggregateInputObjectZodSchema, EmployeeRoleModelSchema, EmployeeRoleOrderByWithAggregationInputObjectSchema, EmployeeRoleOrderByWithAggregationInputObjectZodSchema, EmployeeRoleOrderByWithRelationInputObjectSchema, EmployeeRoleOrderByWithRelationInputObjectZodSchema, EmployeeRolePermissionAggregateResultSchema, EmployeeRolePermissionAggregateSchema, EmployeeRolePermissionAggregateZodSchema, EmployeeRolePermissionArgsObjectSchema, EmployeeRolePermissionArgsObjectZodSchema, EmployeeRolePermissionAvgAggregateInputObjectSchema, EmployeeRolePermissionAvgAggregateInputObjectZodSchema, EmployeeRolePermissionAvgOrderByAggregateInputObjectSchema, EmployeeRolePermissionAvgOrderByAggregateInputObjectZodSchema, EmployeeRolePermissionCountAggregateInputObjectSchema, EmployeeRolePermissionCountAggregateInputObjectZodSchema, EmployeeRolePermissionCountOrderByAggregateInputObjectSchema, EmployeeRolePermissionCountOrderByAggregateInputObjectZodSchema, EmployeeRolePermissionCountResultSchema, EmployeeRolePermissionCountSchema, EmployeeRolePermissionCountZodSchema, EmployeeRolePermissionCreateInputObjectSchema, EmployeeRolePermissionCreateInputObjectZodSchema, EmployeeRolePermissionCreateManyAndReturnSchema, EmployeeRolePermissionCreateManyAndReturnZodSchema, EmployeeRolePermissionCreateManyEmployeePermissionInputEnvelopeObjectSchema, EmployeeRolePermissionCreateManyEmployeePermissionInputEnvelopeObjectZodSchema, EmployeeRolePermissionCreateManyEmployeePermissionInputObjectSchema, EmployeeRolePermissionCreateManyEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionCreateManyEmployeeRoleInputEnvelopeObjectSchema, EmployeeRolePermissionCreateManyEmployeeRoleInputEnvelopeObjectZodSchema, EmployeeRolePermissionCreateManyEmployeeRoleInputObjectSchema, EmployeeRolePermissionCreateManyEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionCreateManyInputObjectSchema, EmployeeRolePermissionCreateManyInputObjectZodSchema, EmployeeRolePermissionCreateManyResultSchema, EmployeeRolePermissionCreateManySchema, EmployeeRolePermissionCreateManyZodSchema, EmployeeRolePermissionCreateNestedManyWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionCreateNestedManyWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionCreateNestedManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionCreateOneSchema, EmployeeRolePermissionCreateOneZodSchema, EmployeeRolePermissionCreateOrConnectWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionCreateOrConnectWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionCreateOrConnectWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionCreateOrConnectWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionCreateResultSchema, EmployeeRolePermissionCreateWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionCreateWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionCreateWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionCreateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionDeleteManyResultSchema, EmployeeRolePermissionDeleteManySchema, EmployeeRolePermissionDeleteManyZodSchema, EmployeeRolePermissionDeleteOneSchema, EmployeeRolePermissionDeleteOneZodSchema, EmployeeRolePermissionDeleteResultSchema, EmployeeRolePermissionEmployeeRoleIdEmployeePermissionIdCompoundUniqueInputObjectSchema, EmployeeRolePermissionEmployeeRoleIdEmployeePermissionIdCompoundUniqueInputObjectZodSchema, EmployeeRolePermissionFindFirstOrThrowSchema, EmployeeRolePermissionFindFirstOrThrowSelectSchema, EmployeeRolePermissionFindFirstOrThrowSelectZodSchema, EmployeeRolePermissionFindFirstOrThrowZodSchema, EmployeeRolePermissionFindFirstResultSchema, EmployeeRolePermissionFindFirstSchema, EmployeeRolePermissionFindFirstSelectSchema, EmployeeRolePermissionFindFirstSelectZodSchema, EmployeeRolePermissionFindFirstZodSchema, EmployeeRolePermissionFindManyResultSchema, EmployeeRolePermissionFindManySchema, EmployeeRolePermissionFindManySelectSchema, EmployeeRolePermissionFindManySelectZodSchema, EmployeeRolePermissionFindManyZodSchema, EmployeeRolePermissionFindUniqueOrThrowSchema, EmployeeRolePermissionFindUniqueOrThrowZodSchema, EmployeeRolePermissionFindUniqueResultSchema, EmployeeRolePermissionFindUniqueSchema, EmployeeRolePermissionFindUniqueZodSchema, EmployeeRolePermissionGroupByResultSchema, EmployeeRolePermissionGroupBySchema, EmployeeRolePermissionGroupByZodSchema, EmployeeRolePermissionIncludeObjectSchema, EmployeeRolePermissionIncludeObjectZodSchema, EmployeeRolePermissionInputSchema, type EmployeeRolePermissionInputType, EmployeeRolePermissionListRelationFilterObjectSchema, EmployeeRolePermissionListRelationFilterObjectZodSchema, EmployeeRolePermissionMaxAggregateInputObjectSchema, EmployeeRolePermissionMaxAggregateInputObjectZodSchema, EmployeeRolePermissionMaxOrderByAggregateInputObjectSchema, EmployeeRolePermissionMaxOrderByAggregateInputObjectZodSchema, EmployeeRolePermissionMinAggregateInputObjectSchema, EmployeeRolePermissionMinAggregateInputObjectZodSchema, EmployeeRolePermissionMinOrderByAggregateInputObjectSchema, EmployeeRolePermissionMinOrderByAggregateInputObjectZodSchema, EmployeeRolePermissionModelSchema, EmployeeRolePermissionOrderByRelationAggregateInputObjectSchema, EmployeeRolePermissionOrderByRelationAggregateInputObjectZodSchema, EmployeeRolePermissionOrderByWithAggregationInputObjectSchema, EmployeeRolePermissionOrderByWithAggregationInputObjectZodSchema, EmployeeRolePermissionOrderByWithRelationInputObjectSchema, EmployeeRolePermissionOrderByWithRelationInputObjectZodSchema, type EmployeeRolePermissionPureType, EmployeeRolePermissionResultSchema, type EmployeeRolePermissionResultType, type EmployeeRolePermissionScalarFieldEnum, EmployeeRolePermissionScalarFieldEnumSchema, EmployeeRolePermissionScalarWhereInputObjectSchema, EmployeeRolePermissionScalarWhereInputObjectZodSchema, EmployeeRolePermissionScalarWhereWithAggregatesInputObjectSchema, EmployeeRolePermissionScalarWhereWithAggregatesInputObjectZodSchema, EmployeeRolePermissionSelectObjectSchema, EmployeeRolePermissionSelectObjectZodSchema, EmployeeRolePermissionSumAggregateInputObjectSchema, EmployeeRolePermissionSumAggregateInputObjectZodSchema, EmployeeRolePermissionSumOrderByAggregateInputObjectSchema, EmployeeRolePermissionSumOrderByAggregateInputObjectZodSchema, EmployeeRolePermissionUncheckedCreateInputObjectSchema, EmployeeRolePermissionUncheckedCreateInputObjectZodSchema, EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUncheckedCreateNestedManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUncheckedCreateWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUncheckedCreateWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUncheckedCreateWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUncheckedCreateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateInputObjectSchema, EmployeeRolePermissionUncheckedUpdateInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateManyInputObjectSchema, EmployeeRolePermissionUncheckedUpdateManyInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeePermissionNestedInputObjectSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeePermissionNestedInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInputObjectSchema, EmployeeRolePermissionUncheckedUpdateManyWithoutEmployeeRoleNestedInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUncheckedUpdateWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUncheckedUpdateWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUncheckedUpdateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUpdateInputObjectSchema, EmployeeRolePermissionUpdateInputObjectZodSchema, EmployeeRolePermissionUpdateManyAndReturnSchema, EmployeeRolePermissionUpdateManyAndReturnZodSchema, EmployeeRolePermissionUpdateManyMutationInputObjectSchema, EmployeeRolePermissionUpdateManyMutationInputObjectZodSchema, EmployeeRolePermissionUpdateManyResultSchema, EmployeeRolePermissionUpdateManySchema, EmployeeRolePermissionUpdateManyWithWhereWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUpdateManyWithWhereWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUpdateManyWithWhereWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUpdateManyWithWhereWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUpdateManyWithoutEmployeePermissionNestedInputObjectSchema, EmployeeRolePermissionUpdateManyWithoutEmployeePermissionNestedInputObjectZodSchema, EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInputObjectSchema, EmployeeRolePermissionUpdateManyWithoutEmployeeRoleNestedInputObjectZodSchema, EmployeeRolePermissionUpdateManyZodSchema, EmployeeRolePermissionUpdateOneSchema, EmployeeRolePermissionUpdateOneZodSchema, EmployeeRolePermissionUpdateResultSchema, EmployeeRolePermissionUpdateWithWhereUniqueWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUpdateWithWhereUniqueWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUpdateWithWhereUniqueWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUpdateWithWhereUniqueWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUpdateWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUpdateWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUpdateWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUpdateWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionUpsertOneSchema, EmployeeRolePermissionUpsertOneZodSchema, EmployeeRolePermissionUpsertResultSchema, EmployeeRolePermissionUpsertWithWhereUniqueWithoutEmployeePermissionInputObjectSchema, EmployeeRolePermissionUpsertWithWhereUniqueWithoutEmployeePermissionInputObjectZodSchema, EmployeeRolePermissionUpsertWithWhereUniqueWithoutEmployeeRoleInputObjectSchema, EmployeeRolePermissionUpsertWithWhereUniqueWithoutEmployeeRoleInputObjectZodSchema, EmployeeRolePermissionWhereInputObjectSchema, EmployeeRolePermissionWhereInputObjectZodSchema, EmployeeRolePermissionWhereUniqueInputObjectSchema, EmployeeRolePermissionWhereUniqueInputObjectZodSchema, type EmployeeRolePureType, EmployeeRoleResultSchema, type EmployeeRoleResultType, type EmployeeRoleScalarFieldEnum, EmployeeRoleScalarFieldEnumSchema, EmployeeRoleScalarRelationFilterObjectSchema, EmployeeRoleScalarRelationFilterObjectZodSchema, EmployeeRoleScalarWhereWithAggregatesInputObjectSchema, EmployeeRoleScalarWhereWithAggregatesInputObjectZodSchema, EmployeeRoleSelectObjectSchema, EmployeeRoleSelectObjectZodSchema, EmployeeRoleSumAggregateInputObjectSchema, EmployeeRoleSumAggregateInputObjectZodSchema, EmployeeRoleSumOrderByAggregateInputObjectSchema, EmployeeRoleSumOrderByAggregateInputObjectZodSchema, EmployeeRoleUncheckedCreateInputObjectSchema, EmployeeRoleUncheckedCreateInputObjectZodSchema, EmployeeRoleUncheckedCreateWithoutAssignmentsInputObjectSchema, EmployeeRoleUncheckedCreateWithoutAssignmentsInputObjectZodSchema, EmployeeRoleUncheckedCreateWithoutPermissionsInputObjectSchema, EmployeeRoleUncheckedCreateWithoutPermissionsInputObjectZodSchema, EmployeeRoleUncheckedUpdateInputObjectSchema, EmployeeRoleUncheckedUpdateInputObjectZodSchema, EmployeeRoleUncheckedUpdateManyInputObjectSchema, EmployeeRoleUncheckedUpdateManyInputObjectZodSchema, EmployeeRoleUncheckedUpdateWithoutAssignmentsInputObjectSchema, EmployeeRoleUncheckedUpdateWithoutAssignmentsInputObjectZodSchema, EmployeeRoleUncheckedUpdateWithoutPermissionsInputObjectSchema, EmployeeRoleUncheckedUpdateWithoutPermissionsInputObjectZodSchema, EmployeeRoleUpdateInputObjectSchema, EmployeeRoleUpdateInputObjectZodSchema, EmployeeRoleUpdateManyAndReturnSchema, EmployeeRoleUpdateManyAndReturnZodSchema, EmployeeRoleUpdateManyMutationInputObjectSchema, EmployeeRoleUpdateManyMutationInputObjectZodSchema, EmployeeRoleUpdateManyResultSchema, EmployeeRoleUpdateManySchema, EmployeeRoleUpdateManyZodSchema, EmployeeRoleUpdateOneRequiredWithoutAssignmentsNestedInputObjectSchema, EmployeeRoleUpdateOneRequiredWithoutAssignmentsNestedInputObjectZodSchema, EmployeeRoleUpdateOneRequiredWithoutPermissionsNestedInputObjectSchema, EmployeeRoleUpdateOneRequiredWithoutPermissionsNestedInputObjectZodSchema, EmployeeRoleUpdateOneSchema, EmployeeRoleUpdateOneZodSchema, EmployeeRoleUpdateResultSchema, EmployeeRoleUpdateToOneWithWhereWithoutAssignmentsInputObjectSchema, EmployeeRoleUpdateToOneWithWhereWithoutAssignmentsInputObjectZodSchema, EmployeeRoleUpdateToOneWithWhereWithoutPermissionsInputObjectSchema, EmployeeRoleUpdateToOneWithWhereWithoutPermissionsInputObjectZodSchema, EmployeeRoleUpdateWithoutAssignmentsInputObjectSchema, EmployeeRoleUpdateWithoutAssignmentsInputObjectZodSchema, EmployeeRoleUpdateWithoutPermissionsInputObjectSchema, EmployeeRoleUpdateWithoutPermissionsInputObjectZodSchema, EmployeeRoleUpsertOneSchema, EmployeeRoleUpsertOneZodSchema, EmployeeRoleUpsertResultSchema, EmployeeRoleUpsertWithoutAssignmentsInputObjectSchema, EmployeeRoleUpsertWithoutAssignmentsInputObjectZodSchema, EmployeeRoleUpsertWithoutPermissionsInputObjectSchema, EmployeeRoleUpsertWithoutPermissionsInputObjectZodSchema, EmployeeRoleWhereInputObjectSchema, EmployeeRoleWhereInputObjectZodSchema, EmployeeRoleWhereUniqueInputObjectSchema, EmployeeRoleWhereUniqueInputObjectZodSchema, type EmployeeScalarFieldEnum, EmployeeScalarFieldEnumSchema, EmployeeScalarRelationFilterObjectSchema, EmployeeScalarRelationFilterObjectZodSchema, EmployeeScalarWhereInputObjectSchema, EmployeeScalarWhereInputObjectZodSchema, EmployeeScalarWhereWithAggregatesInputObjectSchema, EmployeeScalarWhereWithAggregatesInputObjectZodSchema, EmployeeSelectObjectSchema, EmployeeSelectObjectZodSchema, EmployeeSumAggregateInputObjectSchema, EmployeeSumAggregateInputObjectZodSchema, EmployeeSumOrderByAggregateInputObjectSchema, EmployeeSumOrderByAggregateInputObjectZodSchema, EmployeeUncheckedCreateInputObjectSchema, EmployeeUncheckedCreateInputObjectZodSchema, EmployeeUncheckedCreateNestedManyWithoutWarehouseInputObjectSchema, EmployeeUncheckedCreateNestedManyWithoutWarehouseInputObjectZodSchema, EmployeeUncheckedCreateWithoutRoleAssignmentsInputObjectSchema, EmployeeUncheckedCreateWithoutRoleAssignmentsInputObjectZodSchema, EmployeeUncheckedCreateWithoutWarehouseInputObjectSchema, EmployeeUncheckedCreateWithoutWarehouseInputObjectZodSchema, EmployeeUncheckedUpdateInputObjectSchema, EmployeeUncheckedUpdateInputObjectZodSchema, EmployeeUncheckedUpdateManyInputObjectSchema, EmployeeUncheckedUpdateManyInputObjectZodSchema, EmployeeUncheckedUpdateManyWithoutWarehouseInputObjectSchema, EmployeeUncheckedUpdateManyWithoutWarehouseInputObjectZodSchema, EmployeeUncheckedUpdateManyWithoutWarehouseNestedInputObjectSchema, EmployeeUncheckedUpdateManyWithoutWarehouseNestedInputObjectZodSchema, EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectSchema, EmployeeUncheckedUpdateWithoutRoleAssignmentsInputObjectZodSchema, EmployeeUncheckedUpdateWithoutWarehouseInputObjectSchema, EmployeeUncheckedUpdateWithoutWarehouseInputObjectZodSchema, EmployeeUpdateInputObjectSchema, EmployeeUpdateInputObjectZodSchema, EmployeeUpdateManyAndReturnSchema, EmployeeUpdateManyAndReturnZodSchema, EmployeeUpdateManyMutationInputObjectSchema, EmployeeUpdateManyMutationInputObjectZodSchema, EmployeeUpdateManyResultSchema, EmployeeUpdateManySchema, EmployeeUpdateManyWithWhereWithoutWarehouseInputObjectSchema, EmployeeUpdateManyWithWhereWithoutWarehouseInputObjectZodSchema, EmployeeUpdateManyWithoutWarehouseNestedInputObjectSchema, EmployeeUpdateManyWithoutWarehouseNestedInputObjectZodSchema, EmployeeUpdateManyZodSchema, EmployeeUpdateOneRequiredWithoutRoleAssignmentsNestedInputObjectSchema, EmployeeUpdateOneRequiredWithoutRoleAssignmentsNestedInputObjectZodSchema, EmployeeUpdateOneSchema, EmployeeUpdateOneZodSchema, EmployeeUpdateResultSchema, EmployeeUpdateToOneWithWhereWithoutRoleAssignmentsInputObjectSchema, EmployeeUpdateToOneWithWhereWithoutRoleAssignmentsInputObjectZodSchema, EmployeeUpdateWithWhereUniqueWithoutWarehouseInputObjectSchema, EmployeeUpdateWithWhereUniqueWithoutWarehouseInputObjectZodSchema, EmployeeUpdateWithoutRoleAssignmentsInputObjectSchema, EmployeeUpdateWithoutRoleAssignmentsInputObjectZodSchema, EmployeeUpdateWithoutWarehouseInputObjectSchema, EmployeeUpdateWithoutWarehouseInputObjectZodSchema, EmployeeUpsertOneSchema, EmployeeUpsertOneZodSchema, EmployeeUpsertResultSchema, EmployeeUpsertWithWhereUniqueWithoutWarehouseInputObjectSchema, EmployeeUpsertWithWhereUniqueWithoutWarehouseInputObjectZodSchema, EmployeeUpsertWithoutRoleAssignmentsInputObjectSchema, EmployeeUpsertWithoutRoleAssignmentsInputObjectZodSchema, EmployeeWhereInputObjectSchema, EmployeeWhereInputObjectZodSchema, EmployeeWhereUniqueInputObjectSchema, EmployeeWhereUniqueInputObjectZodSchema, IntFieldUpdateOperationsInputObjectSchema, IntFieldUpdateOperationsInputObjectZodSchema, IntFilterObjectSchema, IntFilterObjectZodSchema, IntNullableFilterObjectSchema, IntNullableFilterObjectZodSchema, IntNullableWithAggregatesFilterObjectSchema, IntNullableWithAggregatesFilterObjectZodSchema, IntWithAggregatesFilterObjectSchema, IntWithAggregatesFilterObjectZodSchema, type JwtPayload, type 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, NestedBigIntFilterObjectSchema, NestedBigIntFilterObjectZodSchema, NestedBigIntWithAggregatesFilterObjectSchema, NestedBigIntWithAggregatesFilterObjectZodSchema, NestedBoolFilterObjectSchema, NestedBoolFilterObjectZodSchema, NestedBoolWithAggregatesFilterObjectSchema, NestedBoolWithAggregatesFilterObjectZodSchema, NestedDateTimeFilterObjectSchema, NestedDateTimeFilterObjectZodSchema, NestedDateTimeNullableFilterObjectSchema, NestedDateTimeNullableFilterObjectZodSchema, NestedDateTimeNullableWithAggregatesFilterObjectSchema, NestedDateTimeNullableWithAggregatesFilterObjectZodSchema, NestedDateTimeWithAggregatesFilterObjectSchema, NestedDateTimeWithAggregatesFilterObjectZodSchema, NestedFloatFilterObjectSchema, NestedFloatFilterObjectZodSchema, NestedFloatNullableFilterObjectSchema, NestedFloatNullableFilterObjectZodSchema, NestedIntFilterObjectSchema, NestedIntFilterObjectZodSchema, NestedIntNullableFilterObjectSchema, NestedIntNullableFilterObjectZodSchema, NestedIntNullableWithAggregatesFilterObjectSchema, NestedIntNullableWithAggregatesFilterObjectZodSchema, NestedIntWithAggregatesFilterObjectSchema, NestedIntWithAggregatesFilterObjectZodSchema, NestedStringFilterObjectSchema, NestedStringFilterObjectZodSchema, NestedStringNullableFilterObjectSchema, NestedStringNullableFilterObjectZodSchema, NestedStringNullableWithAggregatesFilterObjectSchema, NestedStringNullableWithAggregatesFilterObjectZodSchema, NestedStringWithAggregatesFilterObjectSchema, NestedStringWithAggregatesFilterObjectZodSchema, NestedUuidFilterObjectSchema, NestedUuidFilterObjectZodSchema, NestedUuidWithAggregatesFilterObjectSchema, NestedUuidWithAggregatesFilterObjectZodSchema, NullableDateTimeFieldUpdateOperationsInputObjectSchema, NullableDateTimeFieldUpdateOperationsInputObjectZodSchema, NullableIntFieldUpdateOperationsInputObjectSchema, NullableIntFieldUpdateOperationsInputObjectZodSchema, NullableStringFieldUpdateOperationsInputObjectSchema, NullableStringFieldUpdateOperationsInputObjectZodSchema, type NullsOrder, NullsOrderSchema, type Organization, OrganizationAggregateResultSchema, OrganizationAggregateSchema, OrganizationAggregateZodSchema, OrganizationArgsObjectSchema, OrganizationArgsObjectZodSchema, OrganizationAvgAggregateInputObjectSchema, OrganizationAvgAggregateInputObjectZodSchema, OrganizationAvgOrderByAggregateInputObjectSchema, OrganizationAvgOrderByAggregateInputObjectZodSchema, OrganizationCountAggregateInputObjectSchema, OrganizationCountAggregateInputObjectZodSchema, OrganizationCountOrderByAggregateInputObjectSchema, OrganizationCountOrderByAggregateInputObjectZodSchema, OrganizationCountOutputTypeArgsObjectSchema, OrganizationCountOutputTypeArgsObjectZodSchema, OrganizationCountOutputTypeCountWarehousesArgsObjectSchema, OrganizationCountOutputTypeCountWarehousesArgsObjectZodSchema, OrganizationCountOutputTypeSelectObjectSchema, OrganizationCountOutputTypeSelectObjectZodSchema, OrganizationCountResultSchema, OrganizationCountSchema, OrganizationCountZodSchema, OrganizationCreateInputObjectSchema, OrganizationCreateInputObjectZodSchema, OrganizationCreateManyAndReturnSchema, OrganizationCreateManyAndReturnZodSchema, OrganizationCreateManyInputObjectSchema, OrganizationCreateManyInputObjectZodSchema, OrganizationCreateManyResultSchema, OrganizationCreateManySchema, OrganizationCreateManyZodSchema, OrganizationCreateNestedOneWithoutWarehousesInputObjectSchema, OrganizationCreateNestedOneWithoutWarehousesInputObjectZodSchema, OrganizationCreateOneSchema, OrganizationCreateOneZodSchema, OrganizationCreateOrConnectWithoutWarehousesInputObjectSchema, OrganizationCreateOrConnectWithoutWarehousesInputObjectZodSchema, OrganizationCreateResultSchema, OrganizationCreateWithoutWarehousesInputObjectSchema, OrganizationCreateWithoutWarehousesInputObjectZodSchema, OrganizationDeleteManyResultSchema, OrganizationDeleteManySchema, OrganizationDeleteManyZodSchema, OrganizationDeleteOneSchema, OrganizationDeleteOneZodSchema, OrganizationDeleteResultSchema, OrganizationFindFirstOrThrowSchema, OrganizationFindFirstOrThrowSelectSchema, OrganizationFindFirstOrThrowSelectZodSchema, OrganizationFindFirstOrThrowZodSchema, OrganizationFindFirstResultSchema, OrganizationFindFirstSchema, OrganizationFindFirstSelectSchema, OrganizationFindFirstSelectZodSchema, OrganizationFindFirstZodSchema, OrganizationFindManyResultSchema, OrganizationFindManySchema, OrganizationFindManySelectSchema, OrganizationFindManySelectZodSchema, OrganizationFindManyZodSchema, OrganizationFindUniqueOrThrowSchema, OrganizationFindUniqueOrThrowZodSchema, OrganizationFindUniqueResultSchema, OrganizationFindUniqueSchema, OrganizationFindUniqueZodSchema, OrganizationGroupByResultSchema, OrganizationGroupBySchema, OrganizationGroupByZodSchema, OrganizationIncludeObjectSchema, OrganizationIncludeObjectZodSchema, OrganizationInputSchema, type OrganizationInputType, OrganizationMaxAggregateInputObjectSchema, OrganizationMaxAggregateInputObjectZodSchema, OrganizationMaxOrderByAggregateInputObjectSchema, OrganizationMaxOrderByAggregateInputObjectZodSchema, OrganizationMinAggregateInputObjectSchema, OrganizationMinAggregateInputObjectZodSchema, OrganizationMinOrderByAggregateInputObjectSchema, OrganizationMinOrderByAggregateInputObjectZodSchema, OrganizationModelSchema, OrganizationOrderByWithAggregationInputObjectSchema, OrganizationOrderByWithAggregationInputObjectZodSchema, OrganizationOrderByWithRelationInputObjectSchema, OrganizationOrderByWithRelationInputObjectZodSchema, type OrganizationPureType, OrganizationResultSchema, type OrganizationResultType, type OrganizationScalarFieldEnum, OrganizationScalarFieldEnumSchema, OrganizationScalarRelationFilterObjectSchema, OrganizationScalarRelationFilterObjectZodSchema, OrganizationScalarWhereWithAggregatesInputObjectSchema, OrganizationScalarWhereWithAggregatesInputObjectZodSchema, OrganizationSchema, OrganizationSelectObjectSchema, OrganizationSelectObjectZodSchema, type OrganizationStats, OrganizationSumAggregateInputObjectSchema, OrganizationSumAggregateInputObjectZodSchema, OrganizationSumOrderByAggregateInputObjectSchema, OrganizationSumOrderByAggregateInputObjectZodSchema, OrganizationUncheckedCreateInputObjectSchema, OrganizationUncheckedCreateInputObjectZodSchema, OrganizationUncheckedCreateWithoutWarehousesInputObjectSchema, OrganizationUncheckedCreateWithoutWarehousesInputObjectZodSchema, OrganizationUncheckedUpdateInputObjectSchema, OrganizationUncheckedUpdateInputObjectZodSchema, OrganizationUncheckedUpdateManyInputObjectSchema, OrganizationUncheckedUpdateManyInputObjectZodSchema, OrganizationUncheckedUpdateWithoutWarehousesInputObjectSchema, OrganizationUncheckedUpdateWithoutWarehousesInputObjectZodSchema, OrganizationUpdateInputObjectSchema, OrganizationUpdateInputObjectZodSchema, OrganizationUpdateManyAndReturnSchema, OrganizationUpdateManyAndReturnZodSchema, OrganizationUpdateManyMutationInputObjectSchema, OrganizationUpdateManyMutationInputObjectZodSchema, OrganizationUpdateManyResultSchema, OrganizationUpdateManySchema, OrganizationUpdateManyZodSchema, OrganizationUpdateOneRequiredWithoutWarehousesNestedInputObjectSchema, OrganizationUpdateOneRequiredWithoutWarehousesNestedInputObjectZodSchema, OrganizationUpdateOneSchema, OrganizationUpdateOneZodSchema, OrganizationUpdateResultSchema, OrganizationUpdateToOneWithWhereWithoutWarehousesInputObjectSchema, OrganizationUpdateToOneWithWhereWithoutWarehousesInputObjectZodSchema, OrganizationUpdateWithoutWarehousesInputObjectSchema, OrganizationUpdateWithoutWarehousesInputObjectZodSchema, OrganizationUpsertOneSchema, OrganizationUpsertOneZodSchema, OrganizationUpsertResultSchema, OrganizationUpsertWithoutWarehousesInputObjectSchema, OrganizationUpsertWithoutWarehousesInputObjectZodSchema, OrganizationWhereInputObjectSchema, OrganizationWhereInputObjectZodSchema, OrganizationWhereUniqueInputObjectSchema, OrganizationWhereUniqueInputObjectZodSchema, type QueryMode, QueryModeSchema, ServerSettingsAggregateResultSchema, ServerSettingsAggregateSchema, ServerSettingsAggregateZodSchema, ServerSettingsArgsObjectSchema, ServerSettingsArgsObjectZodSchema, ServerSettingsAvgAggregateInputObjectSchema, ServerSettingsAvgAggregateInputObjectZodSchema, ServerSettingsAvgOrderByAggregateInputObjectSchema, ServerSettingsAvgOrderByAggregateInputObjectZodSchema, ServerSettingsCountAggregateInputObjectSchema, ServerSettingsCountAggregateInputObjectZodSchema, ServerSettingsCountOrderByAggregateInputObjectSchema, ServerSettingsCountOrderByAggregateInputObjectZodSchema, ServerSettingsCountResultSchema, ServerSettingsCountSchema, ServerSettingsCountZodSchema, ServerSettingsCreateInputObjectSchema, ServerSettingsCreateInputObjectZodSchema, ServerSettingsCreateManyAndReturnSchema, ServerSettingsCreateManyAndReturnZodSchema, ServerSettingsCreateManyInputObjectSchema, ServerSettingsCreateManyInputObjectZodSchema, ServerSettingsCreateManyResultSchema, ServerSettingsCreateManySchema, ServerSettingsCreateManyZodSchema, ServerSettingsCreateOneSchema, ServerSettingsCreateOneZodSchema, ServerSettingsCreateResultSchema, ServerSettingsDeleteManyResultSchema, ServerSettingsDeleteManySchema, ServerSettingsDeleteManyZodSchema, ServerSettingsDeleteOneSchema, ServerSettingsDeleteOneZodSchema, ServerSettingsDeleteResultSchema, ServerSettingsFindFirstOrThrowSchema, ServerSettingsFindFirstOrThrowSelectSchema, ServerSettingsFindFirstOrThrowSelectZodSchema, ServerSettingsFindFirstOrThrowZodSchema, ServerSettingsFindFirstResultSchema, ServerSettingsFindFirstSchema, ServerSettingsFindFirstSelectSchema, ServerSettingsFindFirstSelectZodSchema, ServerSettingsFindFirstZodSchema, ServerSettingsFindManyResultSchema, ServerSettingsFindManySchema, ServerSettingsFindManySelectSchema, ServerSettingsFindManySelectZodSchema, ServerSettingsFindManyZodSchema, ServerSettingsFindUniqueOrThrowSchema, ServerSettingsFindUniqueOrThrowZodSchema, ServerSettingsFindUniqueResultSchema, ServerSettingsFindUniqueSchema, ServerSettingsFindUniqueZodSchema, ServerSettingsGroupByResultSchema, ServerSettingsGroupBySchema, ServerSettingsGroupByZodSchema, ServerSettingsInputSchema, type ServerSettingsInputType, ServerSettingsMaxAggregateInputObjectSchema, ServerSettingsMaxAggregateInputObjectZodSchema, ServerSettingsMaxOrderByAggregateInputObjectSchema, ServerSettingsMaxOrderByAggregateInputObjectZodSchema, ServerSettingsMinAggregateInputObjectSchema, ServerSettingsMinAggregateInputObjectZodSchema, ServerSettingsMinOrderByAggregateInputObjectSchema, ServerSettingsMinOrderByAggregateInputObjectZodSchema, ServerSettingsModelSchema, ServerSettingsOrderByWithAggregationInputObjectSchema, ServerSettingsOrderByWithAggregationInputObjectZodSchema, ServerSettingsOrderByWithRelationInputObjectSchema, ServerSettingsOrderByWithRelationInputObjectZodSchema, type ServerSettingsPureType, ServerSettingsResultSchema, type ServerSettingsResultType, type ServerSettingsScalarFieldEnum, ServerSettingsScalarFieldEnumSchema, ServerSettingsScalarWhereWithAggregatesInputObjectSchema, ServerSettingsScalarWhereWithAggregatesInputObjectZodSchema, ServerSettingsSelectObjectSchema, ServerSettingsSelectObjectZodSchema, ServerSettingsSumAggregateInputObjectSchema, ServerSettingsSumAggregateInputObjectZodSchema, ServerSettingsSumOrderByAggregateInputObjectSchema, ServerSettingsSumOrderByAggregateInputObjectZodSchema, ServerSettingsUncheckedCreateInputObjectSchema, ServerSettingsUncheckedCreateInputObjectZodSchema, ServerSettingsUncheckedUpdateInputObjectSchema, ServerSettingsUncheckedUpdateInputObjectZodSchema, ServerSettingsUncheckedUpdateManyInputObjectSchema, ServerSettingsUncheckedUpdateManyInputObjectZodSchema, ServerSettingsUpdateInputObjectSchema, ServerSettingsUpdateInputObjectZodSchema, ServerSettingsUpdateManyAndReturnSchema, ServerSettingsUpdateManyAndReturnZodSchema, ServerSettingsUpdateManyMutationInputObjectSchema, ServerSettingsUpdateManyMutationInputObjectZodSchema, ServerSettingsUpdateManyResultSchema, ServerSettingsUpdateManySchema, ServerSettingsUpdateManyZodSchema, ServerSettingsUpdateOneSchema, ServerSettingsUpdateOneZodSchema, ServerSettingsUpdateResultSchema, ServerSettingsUpsertOneSchema, ServerSettingsUpsertOneZodSchema, ServerSettingsUpsertResultSchema, ServerSettingsWhereInputObjectSchema, ServerSettingsWhereInputObjectZodSchema, ServerSettingsWhereUniqueInputObjectSchema, ServerSettingsWhereUniqueInputObjectZodSchema, type SetupInitDto, SetupInitSchema, type SetupStatusResponse, type SortOrder, SortOrderInputObjectSchema, SortOrderInputObjectZodSchema, SortOrderSchema, StringFieldUpdateOperationsInputObjectSchema, StringFieldUpdateOperationsInputObjectZodSchema, StringFilterObjectSchema, StringFilterObjectZodSchema, StringNullableFilterObjectSchema, StringNullableFilterObjectZodSchema, StringNullableWithAggregatesFilterObjectSchema, StringNullableWithAggregatesFilterObjectZodSchema, StringWithAggregatesFilterObjectSchema, StringWithAggregatesFilterObjectZodSchema, type TransactionIsolationLevel, TransactionIsolationLevelSchema, type UpdateOrganizationDto, UpdateOrganizationSchema, type UpdateWarehouseDto, UpdateWarehouseSchema, UuidFilterObjectSchema, UuidFilterObjectZodSchema, UuidWithAggregatesFilterObjectSchema, UuidWithAggregatesFilterObjectZodSchema, type Warehouse, WarehouseAggregateResultSchema, WarehouseAggregateSchema, WarehouseAggregateZodSchema, WarehouseArgsObjectSchema, WarehouseArgsObjectZodSchema, WarehouseAvgAggregateInputObjectSchema, WarehouseAvgAggregateInputObjectZodSchema, WarehouseAvgOrderByAggregateInputObjectSchema, WarehouseAvgOrderByAggregateInputObjectZodSchema, WarehouseCountAggregateInputObjectSchema, WarehouseCountAggregateInputObjectZodSchema, WarehouseCountOrderByAggregateInputObjectSchema, WarehouseCountOrderByAggregateInputObjectZodSchema, WarehouseCountOutputTypeArgsObjectSchema, WarehouseCountOutputTypeArgsObjectZodSchema, WarehouseCountOutputTypeCountEmployeesArgsObjectSchema, WarehouseCountOutputTypeCountEmployeesArgsObjectZodSchema, WarehouseCountOutputTypeSelectObjectSchema, WarehouseCountOutputTypeSelectObjectZodSchema, WarehouseCountResultSchema, WarehouseCountSchema, WarehouseCountZodSchema, WarehouseCreateInputObjectSchema, WarehouseCreateInputObjectZodSchema, WarehouseCreateManyAndReturnSchema, WarehouseCreateManyAndReturnZodSchema, 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 };
21918
+ export { type AuthTokens, BigIntFieldUpdateOperationsInputObjectSchema, BigIntFieldUpdateOperationsInputObjectZodSchema, BigIntFilterObjectSchema, BigIntFilterObjectZodSchema, BigIntWithAggregatesFilterObjectSchema, BigIntWithAggregatesFilterObjectZodSchema, 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 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, NestedBigIntFilterObjectSchema, NestedBigIntFilterObjectZodSchema, NestedBigIntWithAggregatesFilterObjectSchema, NestedBigIntWithAggregatesFilterObjectZodSchema, NestedBoolFilterObjectSchema, NestedBoolFilterObjectZodSchema, NestedBoolWithAggregatesFilterObjectSchema, NestedBoolWithAggregatesFilterObjectZodSchema, NestedDateTimeFilterObjectSchema, NestedDateTimeFilterObjectZodSchema, NestedDateTimeNullableFilterObjectSchema, NestedDateTimeNullableFilterObjectZodSchema, NestedDateTimeNullableWithAggregatesFilterObjectSchema, NestedDateTimeNullableWithAggregatesFilterObjectZodSchema, NestedDateTimeWithAggregatesFilterObjectSchema, NestedDateTimeWithAggregatesFilterObjectZodSchema, NestedFloatFilterObjectSchema, NestedFloatFilterObjectZodSchema, NestedFloatNullableFilterObjectSchema, NestedFloatNullableFilterObjectZodSchema, NestedIntFilterObjectSchema, NestedIntFilterObjectZodSchema, NestedIntNullableFilterObjectSchema, NestedIntNullableFilterObjectZodSchema, NestedIntNullableWithAggregatesFilterObjectSchema, NestedIntNullableWithAggregatesFilterObjectZodSchema, NestedIntWithAggregatesFilterObjectSchema, NestedIntWithAggregatesFilterObjectZodSchema, NestedStringFilterObjectSchema, NestedStringFilterObjectZodSchema, NestedStringNullableFilterObjectSchema, NestedStringNullableFilterObjectZodSchema, NestedStringNullableWithAggregatesFilterObjectSchema, NestedStringNullableWithAggregatesFilterObjectZodSchema, NestedStringWithAggregatesFilterObjectSchema, NestedStringWithAggregatesFilterObjectZodSchema, NestedUuidFilterObjectSchema, NestedUuidFilterObjectZodSchema, NestedUuidWithAggregatesFilterObjectSchema, NestedUuidWithAggregatesFilterObjectZodSchema, NullableDateTimeFieldUpdateOperationsInputObjectSchema, NullableDateTimeFieldUpdateOperationsInputObjectZodSchema, NullableIntFieldUpdateOperationsInputObjectSchema, NullableIntFieldUpdateOperationsInputObjectZodSchema, NullableStringFieldUpdateOperationsInputObjectSchema, NullableStringFieldUpdateOperationsInputObjectZodSchema, type NullsOrder, NullsOrderSchema, type Organization, OrganizationAggregateResultSchema, OrganizationAggregateSchema, OrganizationAggregateZodSchema, OrganizationArgsObjectSchema, OrganizationArgsObjectZodSchema, OrganizationAvgAggregateInputObjectSchema, OrganizationAvgAggregateInputObjectZodSchema, OrganizationAvgOrderByAggregateInputObjectSchema, OrganizationAvgOrderByAggregateInputObjectZodSchema, OrganizationCountAggregateInputObjectSchema, OrganizationCountAggregateInputObjectZodSchema, OrganizationCountOrderByAggregateInputObjectSchema, OrganizationCountOrderByAggregateInputObjectZodSchema, OrganizationCountOutputTypeArgsObjectSchema, OrganizationCountOutputTypeArgsObjectZodSchema, OrganizationCountOutputTypeCountWarehousesArgsObjectSchema, OrganizationCountOutputTypeCountWarehousesArgsObjectZodSchema, OrganizationCountOutputTypeSelectObjectSchema, OrganizationCountOutputTypeSelectObjectZodSchema, OrganizationCountResultSchema, OrganizationCountSchema, OrganizationCountZodSchema, OrganizationCreateInputObjectSchema, OrganizationCreateInputObjectZodSchema, OrganizationCreateManyAndReturnSchema, OrganizationCreateManyAndReturnZodSchema, OrganizationCreateManyInputObjectSchema, OrganizationCreateManyInputObjectZodSchema, OrganizationCreateManyResultSchema, OrganizationCreateManySchema, OrganizationCreateManyZodSchema, OrganizationCreateNestedOneWithoutWarehousesInputObjectSchema, OrganizationCreateNestedOneWithoutWarehousesInputObjectZodSchema, OrganizationCreateOneSchema, OrganizationCreateOneZodSchema, OrganizationCreateOrConnectWithoutWarehousesInputObjectSchema, OrganizationCreateOrConnectWithoutWarehousesInputObjectZodSchema, OrganizationCreateResultSchema, OrganizationCreateWithoutWarehousesInputObjectSchema, OrganizationCreateWithoutWarehousesInputObjectZodSchema, OrganizationDeleteManyResultSchema, OrganizationDeleteManySchema, OrganizationDeleteManyZodSchema, OrganizationDeleteOneSchema, OrganizationDeleteOneZodSchema, OrganizationDeleteResultSchema, OrganizationFindFirstOrThrowSchema, OrganizationFindFirstOrThrowSelectSchema, OrganizationFindFirstOrThrowSelectZodSchema, OrganizationFindFirstOrThrowZodSchema, OrganizationFindFirstResultSchema, OrganizationFindFirstSchema, OrganizationFindFirstSelectSchema, OrganizationFindFirstSelectZodSchema, OrganizationFindFirstZodSchema, OrganizationFindManyResultSchema, OrganizationFindManySchema, OrganizationFindManySelectSchema, OrganizationFindManySelectZodSchema, OrganizationFindManyZodSchema, OrganizationFindUniqueOrThrowSchema, OrganizationFindUniqueOrThrowZodSchema, OrganizationFindUniqueResultSchema, OrganizationFindUniqueSchema, OrganizationFindUniqueZodSchema, OrganizationGroupByResultSchema, OrganizationGroupBySchema, OrganizationGroupByZodSchema, OrganizationIncludeObjectSchema, OrganizationIncludeObjectZodSchema, OrganizationInputSchema, type OrganizationInputType, OrganizationMaxAggregateInputObjectSchema, OrganizationMaxAggregateInputObjectZodSchema, OrganizationMaxOrderByAggregateInputObjectSchema, OrganizationMaxOrderByAggregateInputObjectZodSchema, OrganizationMinAggregateInputObjectSchema, OrganizationMinAggregateInputObjectZodSchema, OrganizationMinOrderByAggregateInputObjectSchema, OrganizationMinOrderByAggregateInputObjectZodSchema, OrganizationModelSchema, OrganizationOrderByWithAggregationInputObjectSchema, OrganizationOrderByWithAggregationInputObjectZodSchema, OrganizationOrderByWithRelationInputObjectSchema, OrganizationOrderByWithRelationInputObjectZodSchema, type OrganizationPureType, OrganizationResultSchema, type OrganizationResultType, type OrganizationScalarFieldEnum, OrganizationScalarFieldEnumSchema, OrganizationScalarRelationFilterObjectSchema, OrganizationScalarRelationFilterObjectZodSchema, OrganizationScalarWhereWithAggregatesInputObjectSchema, OrganizationScalarWhereWithAggregatesInputObjectZodSchema, OrganizationSchema, OrganizationSelectObjectSchema, OrganizationSelectObjectZodSchema, type OrganizationStats, OrganizationSumAggregateInputObjectSchema, OrganizationSumAggregateInputObjectZodSchema, OrganizationSumOrderByAggregateInputObjectSchema, OrganizationSumOrderByAggregateInputObjectZodSchema, OrganizationUncheckedCreateInputObjectSchema, OrganizationUncheckedCreateInputObjectZodSchema, OrganizationUncheckedCreateWithoutWarehousesInputObjectSchema, OrganizationUncheckedCreateWithoutWarehousesInputObjectZodSchema, OrganizationUncheckedUpdateInputObjectSchema, OrganizationUncheckedUpdateInputObjectZodSchema, OrganizationUncheckedUpdateManyInputObjectSchema, OrganizationUncheckedUpdateManyInputObjectZodSchema, OrganizationUncheckedUpdateWithoutWarehousesInputObjectSchema, OrganizationUncheckedUpdateWithoutWarehousesInputObjectZodSchema, OrganizationUpdateInputObjectSchema, OrganizationUpdateInputObjectZodSchema, OrganizationUpdateManyAndReturnSchema, OrganizationUpdateManyAndReturnZodSchema, OrganizationUpdateManyMutationInputObjectSchema, OrganizationUpdateManyMutationInputObjectZodSchema, OrganizationUpdateManyResultSchema, OrganizationUpdateManySchema, OrganizationUpdateManyZodSchema, OrganizationUpdateOneRequiredWithoutWarehousesNestedInputObjectSchema, OrganizationUpdateOneRequiredWithoutWarehousesNestedInputObjectZodSchema, OrganizationUpdateOneSchema, OrganizationUpdateOneZodSchema, OrganizationUpdateResultSchema, OrganizationUpdateToOneWithWhereWithoutWarehousesInputObjectSchema, OrganizationUpdateToOneWithWhereWithoutWarehousesInputObjectZodSchema, OrganizationUpdateWithoutWarehousesInputObjectSchema, OrganizationUpdateWithoutWarehousesInputObjectZodSchema, OrganizationUpsertOneSchema, OrganizationUpsertOneZodSchema, OrganizationUpsertResultSchema, OrganizationUpsertWithoutWarehousesInputObjectSchema, OrganizationUpsertWithoutWarehousesInputObjectZodSchema, OrganizationWhereInputObjectSchema, OrganizationWhereInputObjectZodSchema, OrganizationWhereUniqueInputObjectSchema, OrganizationWhereUniqueInputObjectZodSchema, type QueryMode, QueryModeSchema, ServerSettingsAggregateResultSchema, ServerSettingsAggregateSchema, ServerSettingsAggregateZodSchema, ServerSettingsArgsObjectSchema, ServerSettingsArgsObjectZodSchema, ServerSettingsAvgAggregateInputObjectSchema, ServerSettingsAvgAggregateInputObjectZodSchema, ServerSettingsAvgOrderByAggregateInputObjectSchema, ServerSettingsAvgOrderByAggregateInputObjectZodSchema, ServerSettingsCountAggregateInputObjectSchema, ServerSettingsCountAggregateInputObjectZodSchema, ServerSettingsCountOrderByAggregateInputObjectSchema, ServerSettingsCountOrderByAggregateInputObjectZodSchema, ServerSettingsCountResultSchema, ServerSettingsCountSchema, ServerSettingsCountZodSchema, ServerSettingsCreateInputObjectSchema, ServerSettingsCreateInputObjectZodSchema, ServerSettingsCreateManyAndReturnSchema, ServerSettingsCreateManyAndReturnZodSchema, ServerSettingsCreateManyInputObjectSchema, ServerSettingsCreateManyInputObjectZodSchema, ServerSettingsCreateManyResultSchema, ServerSettingsCreateManySchema, ServerSettingsCreateManyZodSchema, ServerSettingsCreateOneSchema, ServerSettingsCreateOneZodSchema, ServerSettingsCreateResultSchema, ServerSettingsDeleteManyResultSchema, ServerSettingsDeleteManySchema, ServerSettingsDeleteManyZodSchema, ServerSettingsDeleteOneSchema, ServerSettingsDeleteOneZodSchema, ServerSettingsDeleteResultSchema, ServerSettingsFindFirstOrThrowSchema, ServerSettingsFindFirstOrThrowSelectSchema, ServerSettingsFindFirstOrThrowSelectZodSchema, ServerSettingsFindFirstOrThrowZodSchema, ServerSettingsFindFirstResultSchema, ServerSettingsFindFirstSchema, ServerSettingsFindFirstSelectSchema, ServerSettingsFindFirstSelectZodSchema, ServerSettingsFindFirstZodSchema, ServerSettingsFindManyResultSchema, ServerSettingsFindManySchema, ServerSettingsFindManySelectSchema, ServerSettingsFindManySelectZodSchema, ServerSettingsFindManyZodSchema, ServerSettingsFindUniqueOrThrowSchema, ServerSettingsFindUniqueOrThrowZodSchema, ServerSettingsFindUniqueResultSchema, ServerSettingsFindUniqueSchema, ServerSettingsFindUniqueZodSchema, ServerSettingsGroupByResultSchema, ServerSettingsGroupBySchema, ServerSettingsGroupByZodSchema, ServerSettingsInputSchema, type ServerSettingsInputType, ServerSettingsMaxAggregateInputObjectSchema, ServerSettingsMaxAggregateInputObjectZodSchema, ServerSettingsMaxOrderByAggregateInputObjectSchema, ServerSettingsMaxOrderByAggregateInputObjectZodSchema, ServerSettingsMinAggregateInputObjectSchema, ServerSettingsMinAggregateInputObjectZodSchema, ServerSettingsMinOrderByAggregateInputObjectSchema, ServerSettingsMinOrderByAggregateInputObjectZodSchema, ServerSettingsModelSchema, ServerSettingsOrderByWithAggregationInputObjectSchema, ServerSettingsOrderByWithAggregationInputObjectZodSchema, ServerSettingsOrderByWithRelationInputObjectSchema, ServerSettingsOrderByWithRelationInputObjectZodSchema, type ServerSettingsPureType, ServerSettingsResultSchema, type ServerSettingsResultType, type ServerSettingsScalarFieldEnum, ServerSettingsScalarFieldEnumSchema, ServerSettingsScalarWhereWithAggregatesInputObjectSchema, ServerSettingsScalarWhereWithAggregatesInputObjectZodSchema, ServerSettingsSelectObjectSchema, ServerSettingsSelectObjectZodSchema, ServerSettingsSumAggregateInputObjectSchema, ServerSettingsSumAggregateInputObjectZodSchema, ServerSettingsSumOrderByAggregateInputObjectSchema, ServerSettingsSumOrderByAggregateInputObjectZodSchema, ServerSettingsUncheckedCreateInputObjectSchema, ServerSettingsUncheckedCreateInputObjectZodSchema, ServerSettingsUncheckedUpdateInputObjectSchema, ServerSettingsUncheckedUpdateInputObjectZodSchema, ServerSettingsUncheckedUpdateManyInputObjectSchema, ServerSettingsUncheckedUpdateManyInputObjectZodSchema, ServerSettingsUpdateInputObjectSchema, ServerSettingsUpdateInputObjectZodSchema, ServerSettingsUpdateManyAndReturnSchema, ServerSettingsUpdateManyAndReturnZodSchema, ServerSettingsUpdateManyMutationInputObjectSchema, ServerSettingsUpdateManyMutationInputObjectZodSchema, ServerSettingsUpdateManyResultSchema, ServerSettingsUpdateManySchema, ServerSettingsUpdateManyZodSchema, ServerSettingsUpdateOneSchema, ServerSettingsUpdateOneZodSchema, ServerSettingsUpdateResultSchema, ServerSettingsUpsertOneSchema, ServerSettingsUpsertOneZodSchema, ServerSettingsUpsertResultSchema, ServerSettingsWhereInputObjectSchema, ServerSettingsWhereInputObjectZodSchema, ServerSettingsWhereUniqueInputObjectSchema, ServerSettingsWhereUniqueInputObjectZodSchema, type SetupInitDto, SetupInitSchema, type SetupStatusResponse, type SortOrder, SortOrderInputObjectSchema, SortOrderInputObjectZodSchema, SortOrderSchema, StringFieldUpdateOperationsInputObjectSchema, StringFieldUpdateOperationsInputObjectZodSchema, StringFilterObjectSchema, StringFilterObjectZodSchema, StringNullableFilterObjectSchema, StringNullableFilterObjectZodSchema, StringNullableWithAggregatesFilterObjectSchema, StringNullableWithAggregatesFilterObjectZodSchema, StringWithAggregatesFilterObjectSchema, StringWithAggregatesFilterObjectZodSchema, type TransactionIsolationLevel, TransactionIsolationLevelSchema, type UpdateEmployeeDto, UpdateEmployeeSchema, type UpdateOrganizationDto, UpdateOrganizationSchema, type UpdateOwnEmailDto, UpdateOwnEmailSchema, type UpdateOwnPasswordDto, UpdateOwnPasswordSchema, 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 };