@meerkapp/wms-contracts 0.3.0-beta.6 → 0.3.0-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +4037 -3927
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +775 -435
- package/dist/index.d.ts +775 -435
- package/dist/index.js +4037 -3927
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -9,10 +9,10 @@ type TransactionIsolationLevel = z.infer<typeof TransactionIsolationLevelSchema>
|
|
|
9
9
|
declare const ProductTypeScalarFieldEnumSchema: z.ZodEnum<["id", "name", "defaultWriteoffStrategy", "skuMode", "skuTemplate", "skuCounter", "characteristicsScheme", "updatedAt"]>;
|
|
10
10
|
type ProductTypeScalarFieldEnum = z.infer<typeof ProductTypeScalarFieldEnumSchema>;
|
|
11
11
|
|
|
12
|
-
declare const FolderScalarFieldEnumSchema: z.ZodEnum<["id", "name", "parentId", "
|
|
12
|
+
declare const FolderScalarFieldEnumSchema: z.ZodEnum<["id", "name", "parentId", "pinnedAt", "pinOrder", "updatedAt"]>;
|
|
13
13
|
type FolderScalarFieldEnum = z.infer<typeof FolderScalarFieldEnumSchema>;
|
|
14
14
|
|
|
15
|
-
declare const ProductCollectionScalarFieldEnumSchema: z.ZodEnum<["id", "name", "folderId", "defaultProductTypeId", "
|
|
15
|
+
declare const ProductCollectionScalarFieldEnumSchema: z.ZodEnum<["id", "name", "folderId", "defaultProductTypeId", "pinnedAt", "pinOrder", "updatedAt"]>;
|
|
16
16
|
type ProductCollectionScalarFieldEnum = z.infer<typeof ProductCollectionScalarFieldEnumSchema>;
|
|
17
17
|
|
|
18
18
|
declare const EmployeeScalarFieldEnumSchema: z.ZodEnum<["id", "email", "password", "firstName", "lastName", "phone", "avatarUrl", "warehouseId", "isActive", "lastSeen", "updatedAt"]>;
|
|
@@ -557,7 +557,8 @@ declare const FolderFindFirstSelectZodSchema: z.ZodObject<{
|
|
|
557
557
|
id: z.ZodOptional<z.ZodBoolean>;
|
|
558
558
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
559
559
|
parentId: z.ZodOptional<z.ZodBoolean>;
|
|
560
|
-
|
|
560
|
+
pinnedAt: z.ZodOptional<z.ZodBoolean>;
|
|
561
|
+
pinOrder: z.ZodOptional<z.ZodBoolean>;
|
|
561
562
|
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
|
562
563
|
parent: z.ZodOptional<z.ZodBoolean>;
|
|
563
564
|
children: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -568,7 +569,8 @@ declare const FolderFindFirstSelectZodSchema: z.ZodObject<{
|
|
|
568
569
|
name?: boolean | undefined;
|
|
569
570
|
updatedAt?: boolean | undefined;
|
|
570
571
|
parentId?: boolean | undefined;
|
|
571
|
-
|
|
572
|
+
pinnedAt?: boolean | undefined;
|
|
573
|
+
pinOrder?: boolean | undefined;
|
|
572
574
|
collections?: boolean | undefined;
|
|
573
575
|
parent?: boolean | undefined;
|
|
574
576
|
children?: boolean | undefined;
|
|
@@ -578,7 +580,8 @@ declare const FolderFindFirstSelectZodSchema: z.ZodObject<{
|
|
|
578
580
|
name?: boolean | undefined;
|
|
579
581
|
updatedAt?: boolean | undefined;
|
|
580
582
|
parentId?: boolean | undefined;
|
|
581
|
-
|
|
583
|
+
pinnedAt?: boolean | undefined;
|
|
584
|
+
pinOrder?: boolean | undefined;
|
|
582
585
|
collections?: boolean | undefined;
|
|
583
586
|
parent?: boolean | undefined;
|
|
584
587
|
children?: boolean | undefined;
|
|
@@ -593,7 +596,7 @@ declare const FolderFindFirstZodSchema: z.ZodObject<{
|
|
|
593
596
|
cursor: z.ZodOptional<z.ZodType<Prisma.FolderWhereUniqueInput, z.ZodTypeDef, Prisma.FolderWhereUniqueInput>>;
|
|
594
597
|
take: z.ZodOptional<z.ZodNumber>;
|
|
595
598
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
596
|
-
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "parentId", "
|
|
599
|
+
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "parentId", "pinnedAt", "pinOrder", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "name", "parentId", "pinnedAt", "pinOrder", "updatedAt"]>, "many">]>>;
|
|
597
600
|
}, "strict", z.ZodTypeAny, {
|
|
598
601
|
where?: Prisma.FolderWhereInput | undefined;
|
|
599
602
|
select?: Prisma.FolderSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -602,7 +605,7 @@ declare const FolderFindFirstZodSchema: z.ZodObject<{
|
|
|
602
605
|
cursor?: Prisma.FolderWhereUniqueInput | undefined;
|
|
603
606
|
take?: number | undefined;
|
|
604
607
|
skip?: number | undefined;
|
|
605
|
-
distinct?: "id" | "name" | "updatedAt" | "parentId" | "
|
|
608
|
+
distinct?: "id" | "name" | "updatedAt" | "parentId" | "pinnedAt" | "pinOrder" | ("id" | "name" | "updatedAt" | "parentId" | "pinnedAt" | "pinOrder")[] | undefined;
|
|
606
609
|
}, {
|
|
607
610
|
where?: Prisma.FolderWhereInput | undefined;
|
|
608
611
|
select?: Prisma.FolderSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -611,7 +614,7 @@ declare const FolderFindFirstZodSchema: z.ZodObject<{
|
|
|
611
614
|
cursor?: Prisma.FolderWhereUniqueInput | undefined;
|
|
612
615
|
take?: number | undefined;
|
|
613
616
|
skip?: number | undefined;
|
|
614
|
-
distinct?: "id" | "name" | "updatedAt" | "parentId" | "
|
|
617
|
+
distinct?: "id" | "name" | "updatedAt" | "parentId" | "pinnedAt" | "pinOrder" | ("id" | "name" | "updatedAt" | "parentId" | "pinnedAt" | "pinOrder")[] | undefined;
|
|
615
618
|
}>;
|
|
616
619
|
|
|
617
620
|
declare const FolderFindFirstOrThrowSelectSchema: z.ZodType<Prisma.FolderSelect>;
|
|
@@ -619,7 +622,8 @@ declare const FolderFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
|
|
619
622
|
id: z.ZodOptional<z.ZodBoolean>;
|
|
620
623
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
621
624
|
parentId: z.ZodOptional<z.ZodBoolean>;
|
|
622
|
-
|
|
625
|
+
pinnedAt: z.ZodOptional<z.ZodBoolean>;
|
|
626
|
+
pinOrder: z.ZodOptional<z.ZodBoolean>;
|
|
623
627
|
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
|
624
628
|
parent: z.ZodOptional<z.ZodBoolean>;
|
|
625
629
|
children: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -630,7 +634,8 @@ declare const FolderFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
|
|
630
634
|
name?: boolean | undefined;
|
|
631
635
|
updatedAt?: boolean | undefined;
|
|
632
636
|
parentId?: boolean | undefined;
|
|
633
|
-
|
|
637
|
+
pinnedAt?: boolean | undefined;
|
|
638
|
+
pinOrder?: boolean | undefined;
|
|
634
639
|
collections?: boolean | undefined;
|
|
635
640
|
parent?: boolean | undefined;
|
|
636
641
|
children?: boolean | undefined;
|
|
@@ -640,7 +645,8 @@ declare const FolderFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
|
|
640
645
|
name?: boolean | undefined;
|
|
641
646
|
updatedAt?: boolean | undefined;
|
|
642
647
|
parentId?: boolean | undefined;
|
|
643
|
-
|
|
648
|
+
pinnedAt?: boolean | undefined;
|
|
649
|
+
pinOrder?: boolean | undefined;
|
|
644
650
|
collections?: boolean | undefined;
|
|
645
651
|
parent?: boolean | undefined;
|
|
646
652
|
children?: boolean | undefined;
|
|
@@ -655,7 +661,7 @@ declare const FolderFindFirstOrThrowZodSchema: z.ZodObject<{
|
|
|
655
661
|
cursor: z.ZodOptional<z.ZodType<Prisma.FolderWhereUniqueInput, z.ZodTypeDef, Prisma.FolderWhereUniqueInput>>;
|
|
656
662
|
take: z.ZodOptional<z.ZodNumber>;
|
|
657
663
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
658
|
-
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "parentId", "
|
|
664
|
+
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "parentId", "pinnedAt", "pinOrder", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "name", "parentId", "pinnedAt", "pinOrder", "updatedAt"]>, "many">]>>;
|
|
659
665
|
}, "strict", z.ZodTypeAny, {
|
|
660
666
|
where?: Prisma.FolderWhereInput | undefined;
|
|
661
667
|
select?: Prisma.FolderSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -664,7 +670,7 @@ declare const FolderFindFirstOrThrowZodSchema: z.ZodObject<{
|
|
|
664
670
|
cursor?: Prisma.FolderWhereUniqueInput | undefined;
|
|
665
671
|
take?: number | undefined;
|
|
666
672
|
skip?: number | undefined;
|
|
667
|
-
distinct?: "id" | "name" | "updatedAt" | "parentId" | "
|
|
673
|
+
distinct?: "id" | "name" | "updatedAt" | "parentId" | "pinnedAt" | "pinOrder" | ("id" | "name" | "updatedAt" | "parentId" | "pinnedAt" | "pinOrder")[] | undefined;
|
|
668
674
|
}, {
|
|
669
675
|
where?: Prisma.FolderWhereInput | undefined;
|
|
670
676
|
select?: Prisma.FolderSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -673,7 +679,7 @@ declare const FolderFindFirstOrThrowZodSchema: z.ZodObject<{
|
|
|
673
679
|
cursor?: Prisma.FolderWhereUniqueInput | undefined;
|
|
674
680
|
take?: number | undefined;
|
|
675
681
|
skip?: number | undefined;
|
|
676
|
-
distinct?: "id" | "name" | "updatedAt" | "parentId" | "
|
|
682
|
+
distinct?: "id" | "name" | "updatedAt" | "parentId" | "pinnedAt" | "pinOrder" | ("id" | "name" | "updatedAt" | "parentId" | "pinnedAt" | "pinOrder")[] | undefined;
|
|
677
683
|
}>;
|
|
678
684
|
|
|
679
685
|
declare const FolderFindManySelectSchema: z.ZodType<Prisma.FolderSelect>;
|
|
@@ -681,7 +687,8 @@ declare const FolderFindManySelectZodSchema: z.ZodObject<{
|
|
|
681
687
|
id: z.ZodOptional<z.ZodBoolean>;
|
|
682
688
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
683
689
|
parentId: z.ZodOptional<z.ZodBoolean>;
|
|
684
|
-
|
|
690
|
+
pinnedAt: z.ZodOptional<z.ZodBoolean>;
|
|
691
|
+
pinOrder: z.ZodOptional<z.ZodBoolean>;
|
|
685
692
|
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
|
686
693
|
parent: z.ZodOptional<z.ZodBoolean>;
|
|
687
694
|
children: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -692,7 +699,8 @@ declare const FolderFindManySelectZodSchema: z.ZodObject<{
|
|
|
692
699
|
name?: boolean | undefined;
|
|
693
700
|
updatedAt?: boolean | undefined;
|
|
694
701
|
parentId?: boolean | undefined;
|
|
695
|
-
|
|
702
|
+
pinnedAt?: boolean | undefined;
|
|
703
|
+
pinOrder?: boolean | undefined;
|
|
696
704
|
collections?: boolean | undefined;
|
|
697
705
|
parent?: boolean | undefined;
|
|
698
706
|
children?: boolean | undefined;
|
|
@@ -702,7 +710,8 @@ declare const FolderFindManySelectZodSchema: z.ZodObject<{
|
|
|
702
710
|
name?: boolean | undefined;
|
|
703
711
|
updatedAt?: boolean | undefined;
|
|
704
712
|
parentId?: boolean | undefined;
|
|
705
|
-
|
|
713
|
+
pinnedAt?: boolean | undefined;
|
|
714
|
+
pinOrder?: boolean | undefined;
|
|
706
715
|
collections?: boolean | undefined;
|
|
707
716
|
parent?: boolean | undefined;
|
|
708
717
|
children?: boolean | undefined;
|
|
@@ -717,7 +726,7 @@ declare const FolderFindManyZodSchema: z.ZodObject<{
|
|
|
717
726
|
cursor: z.ZodOptional<z.ZodType<Prisma.FolderWhereUniqueInput, z.ZodTypeDef, Prisma.FolderWhereUniqueInput>>;
|
|
718
727
|
take: z.ZodOptional<z.ZodNumber>;
|
|
719
728
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
720
|
-
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "parentId", "
|
|
729
|
+
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "parentId", "pinnedAt", "pinOrder", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "name", "parentId", "pinnedAt", "pinOrder", "updatedAt"]>, "many">]>>;
|
|
721
730
|
}, "strict", z.ZodTypeAny, {
|
|
722
731
|
where?: Prisma.FolderWhereInput | undefined;
|
|
723
732
|
select?: Prisma.FolderSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -726,7 +735,7 @@ declare const FolderFindManyZodSchema: z.ZodObject<{
|
|
|
726
735
|
cursor?: Prisma.FolderWhereUniqueInput | undefined;
|
|
727
736
|
take?: number | undefined;
|
|
728
737
|
skip?: number | undefined;
|
|
729
|
-
distinct?: "id" | "name" | "updatedAt" | "parentId" | "
|
|
738
|
+
distinct?: "id" | "name" | "updatedAt" | "parentId" | "pinnedAt" | "pinOrder" | ("id" | "name" | "updatedAt" | "parentId" | "pinnedAt" | "pinOrder")[] | undefined;
|
|
730
739
|
}, {
|
|
731
740
|
where?: Prisma.FolderWhereInput | undefined;
|
|
732
741
|
select?: Prisma.FolderSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -735,7 +744,7 @@ declare const FolderFindManyZodSchema: z.ZodObject<{
|
|
|
735
744
|
cursor?: Prisma.FolderWhereUniqueInput | undefined;
|
|
736
745
|
take?: number | undefined;
|
|
737
746
|
skip?: number | undefined;
|
|
738
|
-
distinct?: "id" | "name" | "updatedAt" | "parentId" | "
|
|
747
|
+
distinct?: "id" | "name" | "updatedAt" | "parentId" | "pinnedAt" | "pinOrder" | ("id" | "name" | "updatedAt" | "parentId" | "pinnedAt" | "pinOrder")[] | undefined;
|
|
739
748
|
}>;
|
|
740
749
|
|
|
741
750
|
declare const FolderCountSchema: z.ZodType<Prisma.FolderCountArgs>;
|
|
@@ -937,14 +946,14 @@ declare const FolderGroupByZodSchema: z.ZodObject<{
|
|
|
937
946
|
having: z.ZodOptional<z.ZodType<Prisma.FolderScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.FolderScalarWhereWithAggregatesInput>>;
|
|
938
947
|
take: z.ZodOptional<z.ZodNumber>;
|
|
939
948
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
940
|
-
by: z.ZodArray<z.ZodEnum<["id", "name", "parentId", "
|
|
949
|
+
by: z.ZodArray<z.ZodEnum<["id", "name", "parentId", "pinnedAt", "pinOrder", "updatedAt"]>, "many">;
|
|
941
950
|
_count: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodType<Prisma.FolderCountAggregateInputType, z.ZodTypeDef, Prisma.FolderCountAggregateInputType>]>>;
|
|
942
951
|
_min: z.ZodOptional<z.ZodType<Prisma.FolderMinAggregateInputType, z.ZodTypeDef, Prisma.FolderMinAggregateInputType>>;
|
|
943
952
|
_max: z.ZodOptional<z.ZodType<Prisma.FolderMaxAggregateInputType, z.ZodTypeDef, Prisma.FolderMaxAggregateInputType>>;
|
|
944
953
|
_avg: z.ZodOptional<z.ZodType<Prisma.FolderAvgAggregateInputType, z.ZodTypeDef, Prisma.FolderAvgAggregateInputType>>;
|
|
945
954
|
_sum: z.ZodOptional<z.ZodType<Prisma.FolderSumAggregateInputType, z.ZodTypeDef, Prisma.FolderSumAggregateInputType>>;
|
|
946
955
|
}, "strict", z.ZodTypeAny, {
|
|
947
|
-
by: ("id" | "name" | "updatedAt" | "parentId" | "
|
|
956
|
+
by: ("id" | "name" | "updatedAt" | "parentId" | "pinnedAt" | "pinOrder")[];
|
|
948
957
|
where?: Prisma.FolderWhereInput | undefined;
|
|
949
958
|
_count?: true | Prisma.FolderCountAggregateInputType | undefined;
|
|
950
959
|
orderBy?: Prisma.FolderOrderByWithAggregationInput | Prisma.FolderOrderByWithAggregationInput[] | undefined;
|
|
@@ -956,7 +965,7 @@ declare const FolderGroupByZodSchema: z.ZodObject<{
|
|
|
956
965
|
_sum?: Prisma.FolderSumAggregateInputType | undefined;
|
|
957
966
|
having?: Prisma.FolderScalarWhereWithAggregatesInput | undefined;
|
|
958
967
|
}, {
|
|
959
|
-
by: ("id" | "name" | "updatedAt" | "parentId" | "
|
|
968
|
+
by: ("id" | "name" | "updatedAt" | "parentId" | "pinnedAt" | "pinOrder")[];
|
|
960
969
|
where?: Prisma.FolderWhereInput | undefined;
|
|
961
970
|
_count?: true | Prisma.FolderCountAggregateInputType | undefined;
|
|
962
971
|
orderBy?: Prisma.FolderOrderByWithAggregationInput | Prisma.FolderOrderByWithAggregationInput[] | undefined;
|
|
@@ -1005,7 +1014,8 @@ declare const ProductCollectionFindFirstSelectZodSchema: z.ZodObject<{
|
|
|
1005
1014
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
1006
1015
|
folderId: z.ZodOptional<z.ZodBoolean>;
|
|
1007
1016
|
defaultProductTypeId: z.ZodOptional<z.ZodBoolean>;
|
|
1008
|
-
|
|
1017
|
+
pinnedAt: z.ZodOptional<z.ZodBoolean>;
|
|
1018
|
+
pinOrder: z.ZodOptional<z.ZodBoolean>;
|
|
1009
1019
|
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
|
1010
1020
|
folder: z.ZodOptional<z.ZodBoolean>;
|
|
1011
1021
|
defaultProductType: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1013,7 +1023,8 @@ declare const ProductCollectionFindFirstSelectZodSchema: z.ZodObject<{
|
|
|
1013
1023
|
id?: boolean | undefined;
|
|
1014
1024
|
name?: boolean | undefined;
|
|
1015
1025
|
updatedAt?: boolean | undefined;
|
|
1016
|
-
|
|
1026
|
+
pinnedAt?: boolean | undefined;
|
|
1027
|
+
pinOrder?: boolean | undefined;
|
|
1017
1028
|
folderId?: boolean | undefined;
|
|
1018
1029
|
defaultProductTypeId?: boolean | undefined;
|
|
1019
1030
|
folder?: boolean | undefined;
|
|
@@ -1022,7 +1033,8 @@ declare const ProductCollectionFindFirstSelectZodSchema: z.ZodObject<{
|
|
|
1022
1033
|
id?: boolean | undefined;
|
|
1023
1034
|
name?: boolean | undefined;
|
|
1024
1035
|
updatedAt?: boolean | undefined;
|
|
1025
|
-
|
|
1036
|
+
pinnedAt?: boolean | undefined;
|
|
1037
|
+
pinOrder?: boolean | undefined;
|
|
1026
1038
|
folderId?: boolean | undefined;
|
|
1027
1039
|
defaultProductTypeId?: boolean | undefined;
|
|
1028
1040
|
folder?: boolean | undefined;
|
|
@@ -1037,7 +1049,7 @@ declare const ProductCollectionFindFirstZodSchema: z.ZodObject<{
|
|
|
1037
1049
|
cursor: z.ZodOptional<z.ZodType<Prisma.ProductCollectionWhereUniqueInput, z.ZodTypeDef, Prisma.ProductCollectionWhereUniqueInput>>;
|
|
1038
1050
|
take: z.ZodOptional<z.ZodNumber>;
|
|
1039
1051
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
1040
|
-
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "folderId", "defaultProductTypeId", "
|
|
1052
|
+
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "folderId", "defaultProductTypeId", "pinnedAt", "pinOrder", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "name", "folderId", "defaultProductTypeId", "pinnedAt", "pinOrder", "updatedAt"]>, "many">]>>;
|
|
1041
1053
|
}, "strict", z.ZodTypeAny, {
|
|
1042
1054
|
where?: Prisma.ProductCollectionWhereInput | undefined;
|
|
1043
1055
|
select?: Prisma.ProductCollectionSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -1046,7 +1058,7 @@ declare const ProductCollectionFindFirstZodSchema: z.ZodObject<{
|
|
|
1046
1058
|
cursor?: Prisma.ProductCollectionWhereUniqueInput | undefined;
|
|
1047
1059
|
take?: number | undefined;
|
|
1048
1060
|
skip?: number | undefined;
|
|
1049
|
-
distinct?: "id" | "name" | "updatedAt" | "
|
|
1061
|
+
distinct?: "id" | "name" | "updatedAt" | "pinnedAt" | "pinOrder" | "folderId" | "defaultProductTypeId" | ("id" | "name" | "updatedAt" | "pinnedAt" | "pinOrder" | "folderId" | "defaultProductTypeId")[] | undefined;
|
|
1050
1062
|
}, {
|
|
1051
1063
|
where?: Prisma.ProductCollectionWhereInput | undefined;
|
|
1052
1064
|
select?: Prisma.ProductCollectionSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -1055,7 +1067,7 @@ declare const ProductCollectionFindFirstZodSchema: z.ZodObject<{
|
|
|
1055
1067
|
cursor?: Prisma.ProductCollectionWhereUniqueInput | undefined;
|
|
1056
1068
|
take?: number | undefined;
|
|
1057
1069
|
skip?: number | undefined;
|
|
1058
|
-
distinct?: "id" | "name" | "updatedAt" | "
|
|
1070
|
+
distinct?: "id" | "name" | "updatedAt" | "pinnedAt" | "pinOrder" | "folderId" | "defaultProductTypeId" | ("id" | "name" | "updatedAt" | "pinnedAt" | "pinOrder" | "folderId" | "defaultProductTypeId")[] | undefined;
|
|
1059
1071
|
}>;
|
|
1060
1072
|
|
|
1061
1073
|
declare const ProductCollectionFindFirstOrThrowSelectSchema: z.ZodType<Prisma.ProductCollectionSelect>;
|
|
@@ -1064,7 +1076,8 @@ declare const ProductCollectionFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
|
|
1064
1076
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
1065
1077
|
folderId: z.ZodOptional<z.ZodBoolean>;
|
|
1066
1078
|
defaultProductTypeId: z.ZodOptional<z.ZodBoolean>;
|
|
1067
|
-
|
|
1079
|
+
pinnedAt: z.ZodOptional<z.ZodBoolean>;
|
|
1080
|
+
pinOrder: z.ZodOptional<z.ZodBoolean>;
|
|
1068
1081
|
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
|
1069
1082
|
folder: z.ZodOptional<z.ZodBoolean>;
|
|
1070
1083
|
defaultProductType: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1072,7 +1085,8 @@ declare const ProductCollectionFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
|
|
1072
1085
|
id?: boolean | undefined;
|
|
1073
1086
|
name?: boolean | undefined;
|
|
1074
1087
|
updatedAt?: boolean | undefined;
|
|
1075
|
-
|
|
1088
|
+
pinnedAt?: boolean | undefined;
|
|
1089
|
+
pinOrder?: boolean | undefined;
|
|
1076
1090
|
folderId?: boolean | undefined;
|
|
1077
1091
|
defaultProductTypeId?: boolean | undefined;
|
|
1078
1092
|
folder?: boolean | undefined;
|
|
@@ -1081,7 +1095,8 @@ declare const ProductCollectionFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
|
|
1081
1095
|
id?: boolean | undefined;
|
|
1082
1096
|
name?: boolean | undefined;
|
|
1083
1097
|
updatedAt?: boolean | undefined;
|
|
1084
|
-
|
|
1098
|
+
pinnedAt?: boolean | undefined;
|
|
1099
|
+
pinOrder?: boolean | undefined;
|
|
1085
1100
|
folderId?: boolean | undefined;
|
|
1086
1101
|
defaultProductTypeId?: boolean | undefined;
|
|
1087
1102
|
folder?: boolean | undefined;
|
|
@@ -1096,7 +1111,7 @@ declare const ProductCollectionFindFirstOrThrowZodSchema: z.ZodObject<{
|
|
|
1096
1111
|
cursor: z.ZodOptional<z.ZodType<Prisma.ProductCollectionWhereUniqueInput, z.ZodTypeDef, Prisma.ProductCollectionWhereUniqueInput>>;
|
|
1097
1112
|
take: z.ZodOptional<z.ZodNumber>;
|
|
1098
1113
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
1099
|
-
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "folderId", "defaultProductTypeId", "
|
|
1114
|
+
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "folderId", "defaultProductTypeId", "pinnedAt", "pinOrder", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "name", "folderId", "defaultProductTypeId", "pinnedAt", "pinOrder", "updatedAt"]>, "many">]>>;
|
|
1100
1115
|
}, "strict", z.ZodTypeAny, {
|
|
1101
1116
|
where?: Prisma.ProductCollectionWhereInput | undefined;
|
|
1102
1117
|
select?: Prisma.ProductCollectionSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -1105,7 +1120,7 @@ declare const ProductCollectionFindFirstOrThrowZodSchema: z.ZodObject<{
|
|
|
1105
1120
|
cursor?: Prisma.ProductCollectionWhereUniqueInput | undefined;
|
|
1106
1121
|
take?: number | undefined;
|
|
1107
1122
|
skip?: number | undefined;
|
|
1108
|
-
distinct?: "id" | "name" | "updatedAt" | "
|
|
1123
|
+
distinct?: "id" | "name" | "updatedAt" | "pinnedAt" | "pinOrder" | "folderId" | "defaultProductTypeId" | ("id" | "name" | "updatedAt" | "pinnedAt" | "pinOrder" | "folderId" | "defaultProductTypeId")[] | undefined;
|
|
1109
1124
|
}, {
|
|
1110
1125
|
where?: Prisma.ProductCollectionWhereInput | undefined;
|
|
1111
1126
|
select?: Prisma.ProductCollectionSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -1114,7 +1129,7 @@ declare const ProductCollectionFindFirstOrThrowZodSchema: z.ZodObject<{
|
|
|
1114
1129
|
cursor?: Prisma.ProductCollectionWhereUniqueInput | undefined;
|
|
1115
1130
|
take?: number | undefined;
|
|
1116
1131
|
skip?: number | undefined;
|
|
1117
|
-
distinct?: "id" | "name" | "updatedAt" | "
|
|
1132
|
+
distinct?: "id" | "name" | "updatedAt" | "pinnedAt" | "pinOrder" | "folderId" | "defaultProductTypeId" | ("id" | "name" | "updatedAt" | "pinnedAt" | "pinOrder" | "folderId" | "defaultProductTypeId")[] | undefined;
|
|
1118
1133
|
}>;
|
|
1119
1134
|
|
|
1120
1135
|
declare const ProductCollectionFindManySelectSchema: z.ZodType<Prisma.ProductCollectionSelect>;
|
|
@@ -1123,7 +1138,8 @@ declare const ProductCollectionFindManySelectZodSchema: z.ZodObject<{
|
|
|
1123
1138
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
1124
1139
|
folderId: z.ZodOptional<z.ZodBoolean>;
|
|
1125
1140
|
defaultProductTypeId: z.ZodOptional<z.ZodBoolean>;
|
|
1126
|
-
|
|
1141
|
+
pinnedAt: z.ZodOptional<z.ZodBoolean>;
|
|
1142
|
+
pinOrder: z.ZodOptional<z.ZodBoolean>;
|
|
1127
1143
|
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
|
1128
1144
|
folder: z.ZodOptional<z.ZodBoolean>;
|
|
1129
1145
|
defaultProductType: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1131,7 +1147,8 @@ declare const ProductCollectionFindManySelectZodSchema: z.ZodObject<{
|
|
|
1131
1147
|
id?: boolean | undefined;
|
|
1132
1148
|
name?: boolean | undefined;
|
|
1133
1149
|
updatedAt?: boolean | undefined;
|
|
1134
|
-
|
|
1150
|
+
pinnedAt?: boolean | undefined;
|
|
1151
|
+
pinOrder?: boolean | undefined;
|
|
1135
1152
|
folderId?: boolean | undefined;
|
|
1136
1153
|
defaultProductTypeId?: boolean | undefined;
|
|
1137
1154
|
folder?: boolean | undefined;
|
|
@@ -1140,7 +1157,8 @@ declare const ProductCollectionFindManySelectZodSchema: z.ZodObject<{
|
|
|
1140
1157
|
id?: boolean | undefined;
|
|
1141
1158
|
name?: boolean | undefined;
|
|
1142
1159
|
updatedAt?: boolean | undefined;
|
|
1143
|
-
|
|
1160
|
+
pinnedAt?: boolean | undefined;
|
|
1161
|
+
pinOrder?: boolean | undefined;
|
|
1144
1162
|
folderId?: boolean | undefined;
|
|
1145
1163
|
defaultProductTypeId?: boolean | undefined;
|
|
1146
1164
|
folder?: boolean | undefined;
|
|
@@ -1155,7 +1173,7 @@ declare const ProductCollectionFindManyZodSchema: z.ZodObject<{
|
|
|
1155
1173
|
cursor: z.ZodOptional<z.ZodType<Prisma.ProductCollectionWhereUniqueInput, z.ZodTypeDef, Prisma.ProductCollectionWhereUniqueInput>>;
|
|
1156
1174
|
take: z.ZodOptional<z.ZodNumber>;
|
|
1157
1175
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
1158
|
-
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "folderId", "defaultProductTypeId", "
|
|
1176
|
+
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "name", "folderId", "defaultProductTypeId", "pinnedAt", "pinOrder", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "name", "folderId", "defaultProductTypeId", "pinnedAt", "pinOrder", "updatedAt"]>, "many">]>>;
|
|
1159
1177
|
}, "strict", z.ZodTypeAny, {
|
|
1160
1178
|
where?: Prisma.ProductCollectionWhereInput | undefined;
|
|
1161
1179
|
select?: Prisma.ProductCollectionSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -1164,7 +1182,7 @@ declare const ProductCollectionFindManyZodSchema: z.ZodObject<{
|
|
|
1164
1182
|
cursor?: Prisma.ProductCollectionWhereUniqueInput | undefined;
|
|
1165
1183
|
take?: number | undefined;
|
|
1166
1184
|
skip?: number | undefined;
|
|
1167
|
-
distinct?: "id" | "name" | "updatedAt" | "
|
|
1185
|
+
distinct?: "id" | "name" | "updatedAt" | "pinnedAt" | "pinOrder" | "folderId" | "defaultProductTypeId" | ("id" | "name" | "updatedAt" | "pinnedAt" | "pinOrder" | "folderId" | "defaultProductTypeId")[] | undefined;
|
|
1168
1186
|
}, {
|
|
1169
1187
|
where?: Prisma.ProductCollectionWhereInput | undefined;
|
|
1170
1188
|
select?: Prisma.ProductCollectionSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -1173,7 +1191,7 @@ declare const ProductCollectionFindManyZodSchema: z.ZodObject<{
|
|
|
1173
1191
|
cursor?: Prisma.ProductCollectionWhereUniqueInput | undefined;
|
|
1174
1192
|
take?: number | undefined;
|
|
1175
1193
|
skip?: number | undefined;
|
|
1176
|
-
distinct?: "id" | "name" | "updatedAt" | "
|
|
1194
|
+
distinct?: "id" | "name" | "updatedAt" | "pinnedAt" | "pinOrder" | "folderId" | "defaultProductTypeId" | ("id" | "name" | "updatedAt" | "pinnedAt" | "pinOrder" | "folderId" | "defaultProductTypeId")[] | undefined;
|
|
1177
1195
|
}>;
|
|
1178
1196
|
|
|
1179
1197
|
declare const ProductCollectionCountSchema: z.ZodType<Prisma.ProductCollectionCountArgs>;
|
|
@@ -1375,14 +1393,14 @@ declare const ProductCollectionGroupByZodSchema: z.ZodObject<{
|
|
|
1375
1393
|
having: z.ZodOptional<z.ZodType<Prisma.ProductCollectionScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.ProductCollectionScalarWhereWithAggregatesInput>>;
|
|
1376
1394
|
take: z.ZodOptional<z.ZodNumber>;
|
|
1377
1395
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
1378
|
-
by: z.ZodArray<z.ZodEnum<["id", "name", "folderId", "defaultProductTypeId", "
|
|
1396
|
+
by: z.ZodArray<z.ZodEnum<["id", "name", "folderId", "defaultProductTypeId", "pinnedAt", "pinOrder", "updatedAt"]>, "many">;
|
|
1379
1397
|
_count: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodType<Prisma.ProductCollectionCountAggregateInputType, z.ZodTypeDef, Prisma.ProductCollectionCountAggregateInputType>]>>;
|
|
1380
1398
|
_min: z.ZodOptional<z.ZodType<Prisma.ProductCollectionMinAggregateInputType, z.ZodTypeDef, Prisma.ProductCollectionMinAggregateInputType>>;
|
|
1381
1399
|
_max: z.ZodOptional<z.ZodType<Prisma.ProductCollectionMaxAggregateInputType, z.ZodTypeDef, Prisma.ProductCollectionMaxAggregateInputType>>;
|
|
1382
1400
|
_avg: z.ZodOptional<z.ZodType<Prisma.ProductCollectionAvgAggregateInputType, z.ZodTypeDef, Prisma.ProductCollectionAvgAggregateInputType>>;
|
|
1383
1401
|
_sum: z.ZodOptional<z.ZodType<Prisma.ProductCollectionSumAggregateInputType, z.ZodTypeDef, Prisma.ProductCollectionSumAggregateInputType>>;
|
|
1384
1402
|
}, "strict", z.ZodTypeAny, {
|
|
1385
|
-
by: ("id" | "name" | "updatedAt" | "
|
|
1403
|
+
by: ("id" | "name" | "updatedAt" | "pinnedAt" | "pinOrder" | "folderId" | "defaultProductTypeId")[];
|
|
1386
1404
|
where?: Prisma.ProductCollectionWhereInput | undefined;
|
|
1387
1405
|
_count?: true | Prisma.ProductCollectionCountAggregateInputType | undefined;
|
|
1388
1406
|
orderBy?: Prisma.ProductCollectionOrderByWithAggregationInput | Prisma.ProductCollectionOrderByWithAggregationInput[] | undefined;
|
|
@@ -1394,7 +1412,7 @@ declare const ProductCollectionGroupByZodSchema: z.ZodObject<{
|
|
|
1394
1412
|
_sum?: Prisma.ProductCollectionSumAggregateInputType | undefined;
|
|
1395
1413
|
having?: Prisma.ProductCollectionScalarWhereWithAggregatesInput | undefined;
|
|
1396
1414
|
}, {
|
|
1397
|
-
by: ("id" | "name" | "updatedAt" | "
|
|
1415
|
+
by: ("id" | "name" | "updatedAt" | "pinnedAt" | "pinOrder" | "folderId" | "defaultProductTypeId")[];
|
|
1398
1416
|
where?: Prisma.ProductCollectionWhereInput | undefined;
|
|
1399
1417
|
_count?: true | Prisma.ProductCollectionCountAggregateInputType | undefined;
|
|
1400
1418
|
orderBy?: Prisma.ProductCollectionOrderByWithAggregationInput | Prisma.ProductCollectionOrderByWithAggregationInput[] | undefined;
|
|
@@ -6335,7 +6353,8 @@ declare const FolderFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
6335
6353
|
id: z.ZodNumber;
|
|
6336
6354
|
name: z.ZodString;
|
|
6337
6355
|
parentId: z.ZodOptional<z.ZodNumber>;
|
|
6338
|
-
|
|
6356
|
+
pinnedAt: z.ZodOptional<z.ZodDate>;
|
|
6357
|
+
pinOrder: z.ZodOptional<z.ZodNumber>;
|
|
6339
6358
|
updatedAt: z.ZodDate;
|
|
6340
6359
|
parent: z.ZodOptional<z.ZodUnknown>;
|
|
6341
6360
|
children: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -6344,19 +6363,21 @@ declare const FolderFindUniqueResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
6344
6363
|
id: number;
|
|
6345
6364
|
name: string;
|
|
6346
6365
|
updatedAt: Date;
|
|
6347
|
-
sortOrder: number;
|
|
6348
6366
|
collections: unknown[];
|
|
6349
6367
|
children: unknown[];
|
|
6350
6368
|
parentId?: number | undefined;
|
|
6369
|
+
pinnedAt?: Date | undefined;
|
|
6370
|
+
pinOrder?: number | undefined;
|
|
6351
6371
|
parent?: unknown;
|
|
6352
6372
|
}, {
|
|
6353
6373
|
id: number;
|
|
6354
6374
|
name: string;
|
|
6355
6375
|
updatedAt: Date;
|
|
6356
|
-
sortOrder: number;
|
|
6357
6376
|
collections: unknown[];
|
|
6358
6377
|
children: unknown[];
|
|
6359
6378
|
parentId?: number | undefined;
|
|
6379
|
+
pinnedAt?: Date | undefined;
|
|
6380
|
+
pinOrder?: number | undefined;
|
|
6360
6381
|
parent?: unknown;
|
|
6361
6382
|
}>>;
|
|
6362
6383
|
|
|
@@ -6364,7 +6385,8 @@ declare const FolderFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
6364
6385
|
id: z.ZodNumber;
|
|
6365
6386
|
name: z.ZodString;
|
|
6366
6387
|
parentId: z.ZodOptional<z.ZodNumber>;
|
|
6367
|
-
|
|
6388
|
+
pinnedAt: z.ZodOptional<z.ZodDate>;
|
|
6389
|
+
pinOrder: z.ZodOptional<z.ZodNumber>;
|
|
6368
6390
|
updatedAt: z.ZodDate;
|
|
6369
6391
|
parent: z.ZodOptional<z.ZodUnknown>;
|
|
6370
6392
|
children: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -6373,19 +6395,21 @@ declare const FolderFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
6373
6395
|
id: number;
|
|
6374
6396
|
name: string;
|
|
6375
6397
|
updatedAt: Date;
|
|
6376
|
-
sortOrder: number;
|
|
6377
6398
|
collections: unknown[];
|
|
6378
6399
|
children: unknown[];
|
|
6379
6400
|
parentId?: number | undefined;
|
|
6401
|
+
pinnedAt?: Date | undefined;
|
|
6402
|
+
pinOrder?: number | undefined;
|
|
6380
6403
|
parent?: unknown;
|
|
6381
6404
|
}, {
|
|
6382
6405
|
id: number;
|
|
6383
6406
|
name: string;
|
|
6384
6407
|
updatedAt: Date;
|
|
6385
|
-
sortOrder: number;
|
|
6386
6408
|
collections: unknown[];
|
|
6387
6409
|
children: unknown[];
|
|
6388
6410
|
parentId?: number | undefined;
|
|
6411
|
+
pinnedAt?: Date | undefined;
|
|
6412
|
+
pinOrder?: number | undefined;
|
|
6389
6413
|
parent?: unknown;
|
|
6390
6414
|
}>>;
|
|
6391
6415
|
|
|
@@ -6394,7 +6418,8 @@ declare const FolderFindManyResultSchema: z.ZodObject<{
|
|
|
6394
6418
|
id: z.ZodNumber;
|
|
6395
6419
|
name: z.ZodString;
|
|
6396
6420
|
parentId: z.ZodOptional<z.ZodNumber>;
|
|
6397
|
-
|
|
6421
|
+
pinnedAt: z.ZodOptional<z.ZodDate>;
|
|
6422
|
+
pinOrder: z.ZodOptional<z.ZodNumber>;
|
|
6398
6423
|
updatedAt: z.ZodDate;
|
|
6399
6424
|
parent: z.ZodOptional<z.ZodUnknown>;
|
|
6400
6425
|
children: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -6403,19 +6428,21 @@ declare const FolderFindManyResultSchema: z.ZodObject<{
|
|
|
6403
6428
|
id: number;
|
|
6404
6429
|
name: string;
|
|
6405
6430
|
updatedAt: Date;
|
|
6406
|
-
sortOrder: number;
|
|
6407
6431
|
collections: unknown[];
|
|
6408
6432
|
children: unknown[];
|
|
6409
6433
|
parentId?: number | undefined;
|
|
6434
|
+
pinnedAt?: Date | undefined;
|
|
6435
|
+
pinOrder?: number | undefined;
|
|
6410
6436
|
parent?: unknown;
|
|
6411
6437
|
}, {
|
|
6412
6438
|
id: number;
|
|
6413
6439
|
name: string;
|
|
6414
6440
|
updatedAt: Date;
|
|
6415
|
-
sortOrder: number;
|
|
6416
6441
|
collections: unknown[];
|
|
6417
6442
|
children: unknown[];
|
|
6418
6443
|
parentId?: number | undefined;
|
|
6444
|
+
pinnedAt?: Date | undefined;
|
|
6445
|
+
pinOrder?: number | undefined;
|
|
6419
6446
|
parent?: unknown;
|
|
6420
6447
|
}>, "many">;
|
|
6421
6448
|
pagination: z.ZodObject<{
|
|
@@ -6445,10 +6472,11 @@ declare const FolderFindManyResultSchema: z.ZodObject<{
|
|
|
6445
6472
|
id: number;
|
|
6446
6473
|
name: string;
|
|
6447
6474
|
updatedAt: Date;
|
|
6448
|
-
sortOrder: number;
|
|
6449
6475
|
collections: unknown[];
|
|
6450
6476
|
children: unknown[];
|
|
6451
6477
|
parentId?: number | undefined;
|
|
6478
|
+
pinnedAt?: Date | undefined;
|
|
6479
|
+
pinOrder?: number | undefined;
|
|
6452
6480
|
parent?: unknown;
|
|
6453
6481
|
}[];
|
|
6454
6482
|
pagination: {
|
|
@@ -6464,10 +6492,11 @@ declare const FolderFindManyResultSchema: z.ZodObject<{
|
|
|
6464
6492
|
id: number;
|
|
6465
6493
|
name: string;
|
|
6466
6494
|
updatedAt: Date;
|
|
6467
|
-
sortOrder: number;
|
|
6468
6495
|
collections: unknown[];
|
|
6469
6496
|
children: unknown[];
|
|
6470
6497
|
parentId?: number | undefined;
|
|
6498
|
+
pinnedAt?: Date | undefined;
|
|
6499
|
+
pinOrder?: number | undefined;
|
|
6471
6500
|
parent?: unknown;
|
|
6472
6501
|
}[];
|
|
6473
6502
|
pagination: {
|
|
@@ -6484,7 +6513,8 @@ declare const FolderCreateResultSchema: z.ZodObject<{
|
|
|
6484
6513
|
id: z.ZodNumber;
|
|
6485
6514
|
name: z.ZodString;
|
|
6486
6515
|
parentId: z.ZodOptional<z.ZodNumber>;
|
|
6487
|
-
|
|
6516
|
+
pinnedAt: z.ZodOptional<z.ZodDate>;
|
|
6517
|
+
pinOrder: z.ZodOptional<z.ZodNumber>;
|
|
6488
6518
|
updatedAt: z.ZodDate;
|
|
6489
6519
|
parent: z.ZodOptional<z.ZodUnknown>;
|
|
6490
6520
|
children: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -6493,19 +6523,21 @@ declare const FolderCreateResultSchema: z.ZodObject<{
|
|
|
6493
6523
|
id: number;
|
|
6494
6524
|
name: string;
|
|
6495
6525
|
updatedAt: Date;
|
|
6496
|
-
sortOrder: number;
|
|
6497
6526
|
collections: unknown[];
|
|
6498
6527
|
children: unknown[];
|
|
6499
6528
|
parentId?: number | undefined;
|
|
6529
|
+
pinnedAt?: Date | undefined;
|
|
6530
|
+
pinOrder?: number | undefined;
|
|
6500
6531
|
parent?: unknown;
|
|
6501
6532
|
}, {
|
|
6502
6533
|
id: number;
|
|
6503
6534
|
name: string;
|
|
6504
6535
|
updatedAt: Date;
|
|
6505
|
-
sortOrder: number;
|
|
6506
6536
|
collections: unknown[];
|
|
6507
6537
|
children: unknown[];
|
|
6508
6538
|
parentId?: number | undefined;
|
|
6539
|
+
pinnedAt?: Date | undefined;
|
|
6540
|
+
pinOrder?: number | undefined;
|
|
6509
6541
|
parent?: unknown;
|
|
6510
6542
|
}>;
|
|
6511
6543
|
|
|
@@ -6521,7 +6553,8 @@ declare const FolderUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
6521
6553
|
id: z.ZodNumber;
|
|
6522
6554
|
name: z.ZodString;
|
|
6523
6555
|
parentId: z.ZodOptional<z.ZodNumber>;
|
|
6524
|
-
|
|
6556
|
+
pinnedAt: z.ZodOptional<z.ZodDate>;
|
|
6557
|
+
pinOrder: z.ZodOptional<z.ZodNumber>;
|
|
6525
6558
|
updatedAt: z.ZodDate;
|
|
6526
6559
|
parent: z.ZodOptional<z.ZodUnknown>;
|
|
6527
6560
|
children: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -6530,19 +6563,21 @@ declare const FolderUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
6530
6563
|
id: number;
|
|
6531
6564
|
name: string;
|
|
6532
6565
|
updatedAt: Date;
|
|
6533
|
-
sortOrder: number;
|
|
6534
6566
|
collections: unknown[];
|
|
6535
6567
|
children: unknown[];
|
|
6536
6568
|
parentId?: number | undefined;
|
|
6569
|
+
pinnedAt?: Date | undefined;
|
|
6570
|
+
pinOrder?: number | undefined;
|
|
6537
6571
|
parent?: unknown;
|
|
6538
6572
|
}, {
|
|
6539
6573
|
id: number;
|
|
6540
6574
|
name: string;
|
|
6541
6575
|
updatedAt: Date;
|
|
6542
|
-
sortOrder: number;
|
|
6543
6576
|
collections: unknown[];
|
|
6544
6577
|
children: unknown[];
|
|
6545
6578
|
parentId?: number | undefined;
|
|
6579
|
+
pinnedAt?: Date | undefined;
|
|
6580
|
+
pinOrder?: number | undefined;
|
|
6546
6581
|
parent?: unknown;
|
|
6547
6582
|
}>>;
|
|
6548
6583
|
|
|
@@ -6558,7 +6593,8 @@ declare const FolderUpsertResultSchema: z.ZodObject<{
|
|
|
6558
6593
|
id: z.ZodNumber;
|
|
6559
6594
|
name: z.ZodString;
|
|
6560
6595
|
parentId: z.ZodOptional<z.ZodNumber>;
|
|
6561
|
-
|
|
6596
|
+
pinnedAt: z.ZodOptional<z.ZodDate>;
|
|
6597
|
+
pinOrder: z.ZodOptional<z.ZodNumber>;
|
|
6562
6598
|
updatedAt: z.ZodDate;
|
|
6563
6599
|
parent: z.ZodOptional<z.ZodUnknown>;
|
|
6564
6600
|
children: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -6567,19 +6603,21 @@ declare const FolderUpsertResultSchema: z.ZodObject<{
|
|
|
6567
6603
|
id: number;
|
|
6568
6604
|
name: string;
|
|
6569
6605
|
updatedAt: Date;
|
|
6570
|
-
sortOrder: number;
|
|
6571
6606
|
collections: unknown[];
|
|
6572
6607
|
children: unknown[];
|
|
6573
6608
|
parentId?: number | undefined;
|
|
6609
|
+
pinnedAt?: Date | undefined;
|
|
6610
|
+
pinOrder?: number | undefined;
|
|
6574
6611
|
parent?: unknown;
|
|
6575
6612
|
}, {
|
|
6576
6613
|
id: number;
|
|
6577
6614
|
name: string;
|
|
6578
6615
|
updatedAt: Date;
|
|
6579
|
-
sortOrder: number;
|
|
6580
6616
|
collections: unknown[];
|
|
6581
6617
|
children: unknown[];
|
|
6582
6618
|
parentId?: number | undefined;
|
|
6619
|
+
pinnedAt?: Date | undefined;
|
|
6620
|
+
pinOrder?: number | undefined;
|
|
6583
6621
|
parent?: unknown;
|
|
6584
6622
|
}>;
|
|
6585
6623
|
|
|
@@ -6587,7 +6625,8 @@ declare const FolderDeleteResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
6587
6625
|
id: z.ZodNumber;
|
|
6588
6626
|
name: z.ZodString;
|
|
6589
6627
|
parentId: z.ZodOptional<z.ZodNumber>;
|
|
6590
|
-
|
|
6628
|
+
pinnedAt: z.ZodOptional<z.ZodDate>;
|
|
6629
|
+
pinOrder: z.ZodOptional<z.ZodNumber>;
|
|
6591
6630
|
updatedAt: z.ZodDate;
|
|
6592
6631
|
parent: z.ZodOptional<z.ZodUnknown>;
|
|
6593
6632
|
children: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -6596,19 +6635,21 @@ declare const FolderDeleteResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
6596
6635
|
id: number;
|
|
6597
6636
|
name: string;
|
|
6598
6637
|
updatedAt: Date;
|
|
6599
|
-
sortOrder: number;
|
|
6600
6638
|
collections: unknown[];
|
|
6601
6639
|
children: unknown[];
|
|
6602
6640
|
parentId?: number | undefined;
|
|
6641
|
+
pinnedAt?: Date | undefined;
|
|
6642
|
+
pinOrder?: number | undefined;
|
|
6603
6643
|
parent?: unknown;
|
|
6604
6644
|
}, {
|
|
6605
6645
|
id: number;
|
|
6606
6646
|
name: string;
|
|
6607
6647
|
updatedAt: Date;
|
|
6608
|
-
sortOrder: number;
|
|
6609
6648
|
collections: unknown[];
|
|
6610
6649
|
children: unknown[];
|
|
6611
6650
|
parentId?: number | undefined;
|
|
6651
|
+
pinnedAt?: Date | undefined;
|
|
6652
|
+
pinOrder?: number | undefined;
|
|
6612
6653
|
parent?: unknown;
|
|
6613
6654
|
}>>;
|
|
6614
6655
|
|
|
@@ -6625,7 +6666,8 @@ declare const FolderAggregateResultSchema: z.ZodObject<{
|
|
|
6625
6666
|
id: z.ZodNumber;
|
|
6626
6667
|
name: z.ZodNumber;
|
|
6627
6668
|
parentId: z.ZodNumber;
|
|
6628
|
-
|
|
6669
|
+
pinnedAt: z.ZodNumber;
|
|
6670
|
+
pinOrder: z.ZodNumber;
|
|
6629
6671
|
updatedAt: z.ZodNumber;
|
|
6630
6672
|
parent: z.ZodNumber;
|
|
6631
6673
|
children: z.ZodNumber;
|
|
@@ -6635,7 +6677,8 @@ declare const FolderAggregateResultSchema: z.ZodObject<{
|
|
|
6635
6677
|
name: number;
|
|
6636
6678
|
updatedAt: number;
|
|
6637
6679
|
parentId: number;
|
|
6638
|
-
|
|
6680
|
+
pinnedAt: number;
|
|
6681
|
+
pinOrder: number;
|
|
6639
6682
|
collections: number;
|
|
6640
6683
|
parent: number;
|
|
6641
6684
|
children: number;
|
|
@@ -6644,7 +6687,8 @@ declare const FolderAggregateResultSchema: z.ZodObject<{
|
|
|
6644
6687
|
name: number;
|
|
6645
6688
|
updatedAt: number;
|
|
6646
6689
|
parentId: number;
|
|
6647
|
-
|
|
6690
|
+
pinnedAt: number;
|
|
6691
|
+
pinOrder: number;
|
|
6648
6692
|
collections: number;
|
|
6649
6693
|
parent: number;
|
|
6650
6694
|
children: number;
|
|
@@ -6652,66 +6696,72 @@ declare const FolderAggregateResultSchema: z.ZodObject<{
|
|
|
6652
6696
|
_sum: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6653
6697
|
id: z.ZodNullable<z.ZodNumber>;
|
|
6654
6698
|
parentId: z.ZodNullable<z.ZodNumber>;
|
|
6655
|
-
|
|
6699
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
6656
6700
|
}, "strip", z.ZodTypeAny, {
|
|
6657
6701
|
id: number | null;
|
|
6658
6702
|
parentId: number | null;
|
|
6659
|
-
|
|
6703
|
+
pinOrder: number | null;
|
|
6660
6704
|
}, {
|
|
6661
6705
|
id: number | null;
|
|
6662
6706
|
parentId: number | null;
|
|
6663
|
-
|
|
6707
|
+
pinOrder: number | null;
|
|
6664
6708
|
}>>>;
|
|
6665
6709
|
_avg: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6666
6710
|
id: z.ZodNullable<z.ZodNumber>;
|
|
6667
6711
|
parentId: z.ZodNullable<z.ZodNumber>;
|
|
6668
|
-
|
|
6712
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
6669
6713
|
}, "strip", z.ZodTypeAny, {
|
|
6670
6714
|
id: number | null;
|
|
6671
6715
|
parentId: number | null;
|
|
6672
|
-
|
|
6716
|
+
pinOrder: number | null;
|
|
6673
6717
|
}, {
|
|
6674
6718
|
id: number | null;
|
|
6675
6719
|
parentId: number | null;
|
|
6676
|
-
|
|
6720
|
+
pinOrder: number | null;
|
|
6677
6721
|
}>>>;
|
|
6678
6722
|
_min: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6679
6723
|
id: z.ZodNullable<z.ZodNumber>;
|
|
6680
6724
|
name: z.ZodNullable<z.ZodString>;
|
|
6681
6725
|
parentId: z.ZodNullable<z.ZodNumber>;
|
|
6682
|
-
|
|
6726
|
+
pinnedAt: z.ZodNullable<z.ZodDate>;
|
|
6727
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
6683
6728
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
6684
6729
|
}, "strip", z.ZodTypeAny, {
|
|
6685
6730
|
id: number | null;
|
|
6686
6731
|
name: string | null;
|
|
6687
6732
|
updatedAt: Date | null;
|
|
6688
6733
|
parentId: number | null;
|
|
6689
|
-
|
|
6734
|
+
pinnedAt: Date | null;
|
|
6735
|
+
pinOrder: number | null;
|
|
6690
6736
|
}, {
|
|
6691
6737
|
id: number | null;
|
|
6692
6738
|
name: string | null;
|
|
6693
6739
|
updatedAt: Date | null;
|
|
6694
6740
|
parentId: number | null;
|
|
6695
|
-
|
|
6741
|
+
pinnedAt: Date | null;
|
|
6742
|
+
pinOrder: number | null;
|
|
6696
6743
|
}>>>;
|
|
6697
6744
|
_max: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6698
6745
|
id: z.ZodNullable<z.ZodNumber>;
|
|
6699
6746
|
name: z.ZodNullable<z.ZodString>;
|
|
6700
6747
|
parentId: z.ZodNullable<z.ZodNumber>;
|
|
6701
|
-
|
|
6748
|
+
pinnedAt: z.ZodNullable<z.ZodDate>;
|
|
6749
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
6702
6750
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
6703
6751
|
}, "strip", z.ZodTypeAny, {
|
|
6704
6752
|
id: number | null;
|
|
6705
6753
|
name: string | null;
|
|
6706
6754
|
updatedAt: Date | null;
|
|
6707
6755
|
parentId: number | null;
|
|
6708
|
-
|
|
6756
|
+
pinnedAt: Date | null;
|
|
6757
|
+
pinOrder: number | null;
|
|
6709
6758
|
}, {
|
|
6710
6759
|
id: number | null;
|
|
6711
6760
|
name: string | null;
|
|
6712
6761
|
updatedAt: Date | null;
|
|
6713
6762
|
parentId: number | null;
|
|
6714
|
-
|
|
6763
|
+
pinnedAt: Date | null;
|
|
6764
|
+
pinOrder: number | null;
|
|
6715
6765
|
}>>>;
|
|
6716
6766
|
}, "strip", z.ZodTypeAny, {
|
|
6717
6767
|
_count?: {
|
|
@@ -6719,7 +6769,8 @@ declare const FolderAggregateResultSchema: z.ZodObject<{
|
|
|
6719
6769
|
name: number;
|
|
6720
6770
|
updatedAt: number;
|
|
6721
6771
|
parentId: number;
|
|
6722
|
-
|
|
6772
|
+
pinnedAt: number;
|
|
6773
|
+
pinOrder: number;
|
|
6723
6774
|
collections: number;
|
|
6724
6775
|
parent: number;
|
|
6725
6776
|
children: number;
|
|
@@ -6729,24 +6780,26 @@ declare const FolderAggregateResultSchema: z.ZodObject<{
|
|
|
6729
6780
|
name: string | null;
|
|
6730
6781
|
updatedAt: Date | null;
|
|
6731
6782
|
parentId: number | null;
|
|
6732
|
-
|
|
6783
|
+
pinnedAt: Date | null;
|
|
6784
|
+
pinOrder: number | null;
|
|
6733
6785
|
} | null | undefined;
|
|
6734
6786
|
_max?: {
|
|
6735
6787
|
id: number | null;
|
|
6736
6788
|
name: string | null;
|
|
6737
6789
|
updatedAt: Date | null;
|
|
6738
6790
|
parentId: number | null;
|
|
6739
|
-
|
|
6791
|
+
pinnedAt: Date | null;
|
|
6792
|
+
pinOrder: number | null;
|
|
6740
6793
|
} | null | undefined;
|
|
6741
6794
|
_avg?: {
|
|
6742
6795
|
id: number | null;
|
|
6743
6796
|
parentId: number | null;
|
|
6744
|
-
|
|
6797
|
+
pinOrder: number | null;
|
|
6745
6798
|
} | null | undefined;
|
|
6746
6799
|
_sum?: {
|
|
6747
6800
|
id: number | null;
|
|
6748
6801
|
parentId: number | null;
|
|
6749
|
-
|
|
6802
|
+
pinOrder: number | null;
|
|
6750
6803
|
} | null | undefined;
|
|
6751
6804
|
}, {
|
|
6752
6805
|
_count?: {
|
|
@@ -6754,7 +6807,8 @@ declare const FolderAggregateResultSchema: z.ZodObject<{
|
|
|
6754
6807
|
name: number;
|
|
6755
6808
|
updatedAt: number;
|
|
6756
6809
|
parentId: number;
|
|
6757
|
-
|
|
6810
|
+
pinnedAt: number;
|
|
6811
|
+
pinOrder: number;
|
|
6758
6812
|
collections: number;
|
|
6759
6813
|
parent: number;
|
|
6760
6814
|
children: number;
|
|
@@ -6764,24 +6818,26 @@ declare const FolderAggregateResultSchema: z.ZodObject<{
|
|
|
6764
6818
|
name: string | null;
|
|
6765
6819
|
updatedAt: Date | null;
|
|
6766
6820
|
parentId: number | null;
|
|
6767
|
-
|
|
6821
|
+
pinnedAt: Date | null;
|
|
6822
|
+
pinOrder: number | null;
|
|
6768
6823
|
} | null | undefined;
|
|
6769
6824
|
_max?: {
|
|
6770
6825
|
id: number | null;
|
|
6771
6826
|
name: string | null;
|
|
6772
6827
|
updatedAt: Date | null;
|
|
6773
6828
|
parentId: number | null;
|
|
6774
|
-
|
|
6829
|
+
pinnedAt: Date | null;
|
|
6830
|
+
pinOrder: number | null;
|
|
6775
6831
|
} | null | undefined;
|
|
6776
6832
|
_avg?: {
|
|
6777
6833
|
id: number | null;
|
|
6778
6834
|
parentId: number | null;
|
|
6779
|
-
|
|
6835
|
+
pinOrder: number | null;
|
|
6780
6836
|
} | null | undefined;
|
|
6781
6837
|
_sum?: {
|
|
6782
6838
|
id: number | null;
|
|
6783
6839
|
parentId: number | null;
|
|
6784
|
-
|
|
6840
|
+
pinOrder: number | null;
|
|
6785
6841
|
} | null | undefined;
|
|
6786
6842
|
}>;
|
|
6787
6843
|
|
|
@@ -6789,13 +6845,15 @@ declare const FolderGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
6789
6845
|
id: z.ZodNumber;
|
|
6790
6846
|
name: z.ZodString;
|
|
6791
6847
|
parentId: z.ZodNumber;
|
|
6792
|
-
|
|
6848
|
+
pinnedAt: z.ZodDate;
|
|
6849
|
+
pinOrder: z.ZodNumber;
|
|
6793
6850
|
updatedAt: z.ZodDate;
|
|
6794
6851
|
_count: z.ZodOptional<z.ZodObject<{
|
|
6795
6852
|
id: z.ZodNumber;
|
|
6796
6853
|
name: z.ZodNumber;
|
|
6797
6854
|
parentId: z.ZodNumber;
|
|
6798
|
-
|
|
6855
|
+
pinnedAt: z.ZodNumber;
|
|
6856
|
+
pinOrder: z.ZodNumber;
|
|
6799
6857
|
updatedAt: z.ZodNumber;
|
|
6800
6858
|
parent: z.ZodNumber;
|
|
6801
6859
|
children: z.ZodNumber;
|
|
@@ -6805,7 +6863,8 @@ declare const FolderGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
6805
6863
|
name: number;
|
|
6806
6864
|
updatedAt: number;
|
|
6807
6865
|
parentId: number;
|
|
6808
|
-
|
|
6866
|
+
pinnedAt: number;
|
|
6867
|
+
pinOrder: number;
|
|
6809
6868
|
collections: number;
|
|
6810
6869
|
parent: number;
|
|
6811
6870
|
children: number;
|
|
@@ -6814,7 +6873,8 @@ declare const FolderGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
6814
6873
|
name: number;
|
|
6815
6874
|
updatedAt: number;
|
|
6816
6875
|
parentId: number;
|
|
6817
|
-
|
|
6876
|
+
pinnedAt: number;
|
|
6877
|
+
pinOrder: number;
|
|
6818
6878
|
collections: number;
|
|
6819
6879
|
parent: number;
|
|
6820
6880
|
children: number;
|
|
@@ -6822,79 +6882,87 @@ declare const FolderGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
6822
6882
|
_sum: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6823
6883
|
id: z.ZodNullable<z.ZodNumber>;
|
|
6824
6884
|
parentId: z.ZodNullable<z.ZodNumber>;
|
|
6825
|
-
|
|
6885
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
6826
6886
|
}, "strip", z.ZodTypeAny, {
|
|
6827
6887
|
id: number | null;
|
|
6828
6888
|
parentId: number | null;
|
|
6829
|
-
|
|
6889
|
+
pinOrder: number | null;
|
|
6830
6890
|
}, {
|
|
6831
6891
|
id: number | null;
|
|
6832
6892
|
parentId: number | null;
|
|
6833
|
-
|
|
6893
|
+
pinOrder: number | null;
|
|
6834
6894
|
}>>>;
|
|
6835
6895
|
_avg: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6836
6896
|
id: z.ZodNullable<z.ZodNumber>;
|
|
6837
6897
|
parentId: z.ZodNullable<z.ZodNumber>;
|
|
6838
|
-
|
|
6898
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
6839
6899
|
}, "strip", z.ZodTypeAny, {
|
|
6840
6900
|
id: number | null;
|
|
6841
6901
|
parentId: number | null;
|
|
6842
|
-
|
|
6902
|
+
pinOrder: number | null;
|
|
6843
6903
|
}, {
|
|
6844
6904
|
id: number | null;
|
|
6845
6905
|
parentId: number | null;
|
|
6846
|
-
|
|
6906
|
+
pinOrder: number | null;
|
|
6847
6907
|
}>>>;
|
|
6848
6908
|
_min: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6849
6909
|
id: z.ZodNullable<z.ZodNumber>;
|
|
6850
6910
|
name: z.ZodNullable<z.ZodString>;
|
|
6851
6911
|
parentId: z.ZodNullable<z.ZodNumber>;
|
|
6852
|
-
|
|
6912
|
+
pinnedAt: z.ZodNullable<z.ZodDate>;
|
|
6913
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
6853
6914
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
6854
6915
|
}, "strip", z.ZodTypeAny, {
|
|
6855
6916
|
id: number | null;
|
|
6856
6917
|
name: string | null;
|
|
6857
6918
|
updatedAt: Date | null;
|
|
6858
6919
|
parentId: number | null;
|
|
6859
|
-
|
|
6920
|
+
pinnedAt: Date | null;
|
|
6921
|
+
pinOrder: number | null;
|
|
6860
6922
|
}, {
|
|
6861
6923
|
id: number | null;
|
|
6862
6924
|
name: string | null;
|
|
6863
6925
|
updatedAt: Date | null;
|
|
6864
6926
|
parentId: number | null;
|
|
6865
|
-
|
|
6927
|
+
pinnedAt: Date | null;
|
|
6928
|
+
pinOrder: number | null;
|
|
6866
6929
|
}>>>;
|
|
6867
6930
|
_max: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6868
6931
|
id: z.ZodNullable<z.ZodNumber>;
|
|
6869
6932
|
name: z.ZodNullable<z.ZodString>;
|
|
6870
6933
|
parentId: z.ZodNullable<z.ZodNumber>;
|
|
6871
|
-
|
|
6934
|
+
pinnedAt: z.ZodNullable<z.ZodDate>;
|
|
6935
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
6872
6936
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
6873
6937
|
}, "strip", z.ZodTypeAny, {
|
|
6874
6938
|
id: number | null;
|
|
6875
6939
|
name: string | null;
|
|
6876
6940
|
updatedAt: Date | null;
|
|
6877
6941
|
parentId: number | null;
|
|
6878
|
-
|
|
6942
|
+
pinnedAt: Date | null;
|
|
6943
|
+
pinOrder: number | null;
|
|
6879
6944
|
}, {
|
|
6880
6945
|
id: number | null;
|
|
6881
6946
|
name: string | null;
|
|
6882
6947
|
updatedAt: Date | null;
|
|
6883
6948
|
parentId: number | null;
|
|
6884
|
-
|
|
6949
|
+
pinnedAt: Date | null;
|
|
6950
|
+
pinOrder: number | null;
|
|
6885
6951
|
}>>>;
|
|
6886
6952
|
}, "strip", z.ZodTypeAny, {
|
|
6887
6953
|
id: number;
|
|
6888
6954
|
name: string;
|
|
6889
6955
|
updatedAt: Date;
|
|
6890
6956
|
parentId: number;
|
|
6891
|
-
|
|
6957
|
+
pinnedAt: Date;
|
|
6958
|
+
pinOrder: number;
|
|
6892
6959
|
_count?: {
|
|
6893
6960
|
id: number;
|
|
6894
6961
|
name: number;
|
|
6895
6962
|
updatedAt: number;
|
|
6896
6963
|
parentId: number;
|
|
6897
|
-
|
|
6964
|
+
pinnedAt: number;
|
|
6965
|
+
pinOrder: number;
|
|
6898
6966
|
collections: number;
|
|
6899
6967
|
parent: number;
|
|
6900
6968
|
children: number;
|
|
@@ -6904,37 +6972,41 @@ declare const FolderGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
6904
6972
|
name: string | null;
|
|
6905
6973
|
updatedAt: Date | null;
|
|
6906
6974
|
parentId: number | null;
|
|
6907
|
-
|
|
6975
|
+
pinnedAt: Date | null;
|
|
6976
|
+
pinOrder: number | null;
|
|
6908
6977
|
} | null | undefined;
|
|
6909
6978
|
_max?: {
|
|
6910
6979
|
id: number | null;
|
|
6911
6980
|
name: string | null;
|
|
6912
6981
|
updatedAt: Date | null;
|
|
6913
6982
|
parentId: number | null;
|
|
6914
|
-
|
|
6983
|
+
pinnedAt: Date | null;
|
|
6984
|
+
pinOrder: number | null;
|
|
6915
6985
|
} | null | undefined;
|
|
6916
6986
|
_avg?: {
|
|
6917
6987
|
id: number | null;
|
|
6918
6988
|
parentId: number | null;
|
|
6919
|
-
|
|
6989
|
+
pinOrder: number | null;
|
|
6920
6990
|
} | null | undefined;
|
|
6921
6991
|
_sum?: {
|
|
6922
6992
|
id: number | null;
|
|
6923
6993
|
parentId: number | null;
|
|
6924
|
-
|
|
6994
|
+
pinOrder: number | null;
|
|
6925
6995
|
} | null | undefined;
|
|
6926
6996
|
}, {
|
|
6927
6997
|
id: number;
|
|
6928
6998
|
name: string;
|
|
6929
6999
|
updatedAt: Date;
|
|
6930
7000
|
parentId: number;
|
|
6931
|
-
|
|
7001
|
+
pinnedAt: Date;
|
|
7002
|
+
pinOrder: number;
|
|
6932
7003
|
_count?: {
|
|
6933
7004
|
id: number;
|
|
6934
7005
|
name: number;
|
|
6935
7006
|
updatedAt: number;
|
|
6936
7007
|
parentId: number;
|
|
6937
|
-
|
|
7008
|
+
pinnedAt: number;
|
|
7009
|
+
pinOrder: number;
|
|
6938
7010
|
collections: number;
|
|
6939
7011
|
parent: number;
|
|
6940
7012
|
children: number;
|
|
@@ -6944,24 +7016,26 @@ declare const FolderGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
6944
7016
|
name: string | null;
|
|
6945
7017
|
updatedAt: Date | null;
|
|
6946
7018
|
parentId: number | null;
|
|
6947
|
-
|
|
7019
|
+
pinnedAt: Date | null;
|
|
7020
|
+
pinOrder: number | null;
|
|
6948
7021
|
} | null | undefined;
|
|
6949
7022
|
_max?: {
|
|
6950
7023
|
id: number | null;
|
|
6951
7024
|
name: string | null;
|
|
6952
7025
|
updatedAt: Date | null;
|
|
6953
7026
|
parentId: number | null;
|
|
6954
|
-
|
|
7027
|
+
pinnedAt: Date | null;
|
|
7028
|
+
pinOrder: number | null;
|
|
6955
7029
|
} | null | undefined;
|
|
6956
7030
|
_avg?: {
|
|
6957
7031
|
id: number | null;
|
|
6958
7032
|
parentId: number | null;
|
|
6959
|
-
|
|
7033
|
+
pinOrder: number | null;
|
|
6960
7034
|
} | null | undefined;
|
|
6961
7035
|
_sum?: {
|
|
6962
7036
|
id: number | null;
|
|
6963
7037
|
parentId: number | null;
|
|
6964
|
-
|
|
7038
|
+
pinOrder: number | null;
|
|
6965
7039
|
} | null | undefined;
|
|
6966
7040
|
}>, "many">;
|
|
6967
7041
|
|
|
@@ -6972,7 +7046,8 @@ declare const ProductCollectionFindUniqueResultSchema: z.ZodNullable<z.ZodObject
|
|
|
6972
7046
|
name: z.ZodString;
|
|
6973
7047
|
folderId: z.ZodOptional<z.ZodNumber>;
|
|
6974
7048
|
defaultProductTypeId: z.ZodOptional<z.ZodNumber>;
|
|
6975
|
-
|
|
7049
|
+
pinnedAt: z.ZodOptional<z.ZodDate>;
|
|
7050
|
+
pinOrder: z.ZodOptional<z.ZodNumber>;
|
|
6976
7051
|
updatedAt: z.ZodDate;
|
|
6977
7052
|
folder: z.ZodOptional<z.ZodUnknown>;
|
|
6978
7053
|
defaultProductType: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -6980,7 +7055,8 @@ declare const ProductCollectionFindUniqueResultSchema: z.ZodNullable<z.ZodObject
|
|
|
6980
7055
|
id: number;
|
|
6981
7056
|
name: string;
|
|
6982
7057
|
updatedAt: Date;
|
|
6983
|
-
|
|
7058
|
+
pinnedAt?: Date | undefined;
|
|
7059
|
+
pinOrder?: number | undefined;
|
|
6984
7060
|
folderId?: number | undefined;
|
|
6985
7061
|
defaultProductTypeId?: number | undefined;
|
|
6986
7062
|
folder?: unknown;
|
|
@@ -6989,7 +7065,8 @@ declare const ProductCollectionFindUniqueResultSchema: z.ZodNullable<z.ZodObject
|
|
|
6989
7065
|
id: number;
|
|
6990
7066
|
name: string;
|
|
6991
7067
|
updatedAt: Date;
|
|
6992
|
-
|
|
7068
|
+
pinnedAt?: Date | undefined;
|
|
7069
|
+
pinOrder?: number | undefined;
|
|
6993
7070
|
folderId?: number | undefined;
|
|
6994
7071
|
defaultProductTypeId?: number | undefined;
|
|
6995
7072
|
folder?: unknown;
|
|
@@ -7001,7 +7078,8 @@ declare const ProductCollectionFindFirstResultSchema: z.ZodNullable<z.ZodObject<
|
|
|
7001
7078
|
name: z.ZodString;
|
|
7002
7079
|
folderId: z.ZodOptional<z.ZodNumber>;
|
|
7003
7080
|
defaultProductTypeId: z.ZodOptional<z.ZodNumber>;
|
|
7004
|
-
|
|
7081
|
+
pinnedAt: z.ZodOptional<z.ZodDate>;
|
|
7082
|
+
pinOrder: z.ZodOptional<z.ZodNumber>;
|
|
7005
7083
|
updatedAt: z.ZodDate;
|
|
7006
7084
|
folder: z.ZodOptional<z.ZodUnknown>;
|
|
7007
7085
|
defaultProductType: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -7009,7 +7087,8 @@ declare const ProductCollectionFindFirstResultSchema: z.ZodNullable<z.ZodObject<
|
|
|
7009
7087
|
id: number;
|
|
7010
7088
|
name: string;
|
|
7011
7089
|
updatedAt: Date;
|
|
7012
|
-
|
|
7090
|
+
pinnedAt?: Date | undefined;
|
|
7091
|
+
pinOrder?: number | undefined;
|
|
7013
7092
|
folderId?: number | undefined;
|
|
7014
7093
|
defaultProductTypeId?: number | undefined;
|
|
7015
7094
|
folder?: unknown;
|
|
@@ -7018,7 +7097,8 @@ declare const ProductCollectionFindFirstResultSchema: z.ZodNullable<z.ZodObject<
|
|
|
7018
7097
|
id: number;
|
|
7019
7098
|
name: string;
|
|
7020
7099
|
updatedAt: Date;
|
|
7021
|
-
|
|
7100
|
+
pinnedAt?: Date | undefined;
|
|
7101
|
+
pinOrder?: number | undefined;
|
|
7022
7102
|
folderId?: number | undefined;
|
|
7023
7103
|
defaultProductTypeId?: number | undefined;
|
|
7024
7104
|
folder?: unknown;
|
|
@@ -7031,7 +7111,8 @@ declare const ProductCollectionFindManyResultSchema: z.ZodObject<{
|
|
|
7031
7111
|
name: z.ZodString;
|
|
7032
7112
|
folderId: z.ZodOptional<z.ZodNumber>;
|
|
7033
7113
|
defaultProductTypeId: z.ZodOptional<z.ZodNumber>;
|
|
7034
|
-
|
|
7114
|
+
pinnedAt: z.ZodOptional<z.ZodDate>;
|
|
7115
|
+
pinOrder: z.ZodOptional<z.ZodNumber>;
|
|
7035
7116
|
updatedAt: z.ZodDate;
|
|
7036
7117
|
folder: z.ZodOptional<z.ZodUnknown>;
|
|
7037
7118
|
defaultProductType: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -7039,7 +7120,8 @@ declare const ProductCollectionFindManyResultSchema: z.ZodObject<{
|
|
|
7039
7120
|
id: number;
|
|
7040
7121
|
name: string;
|
|
7041
7122
|
updatedAt: Date;
|
|
7042
|
-
|
|
7123
|
+
pinnedAt?: Date | undefined;
|
|
7124
|
+
pinOrder?: number | undefined;
|
|
7043
7125
|
folderId?: number | undefined;
|
|
7044
7126
|
defaultProductTypeId?: number | undefined;
|
|
7045
7127
|
folder?: unknown;
|
|
@@ -7048,7 +7130,8 @@ declare const ProductCollectionFindManyResultSchema: z.ZodObject<{
|
|
|
7048
7130
|
id: number;
|
|
7049
7131
|
name: string;
|
|
7050
7132
|
updatedAt: Date;
|
|
7051
|
-
|
|
7133
|
+
pinnedAt?: Date | undefined;
|
|
7134
|
+
pinOrder?: number | undefined;
|
|
7052
7135
|
folderId?: number | undefined;
|
|
7053
7136
|
defaultProductTypeId?: number | undefined;
|
|
7054
7137
|
folder?: unknown;
|
|
@@ -7081,7 +7164,8 @@ declare const ProductCollectionFindManyResultSchema: z.ZodObject<{
|
|
|
7081
7164
|
id: number;
|
|
7082
7165
|
name: string;
|
|
7083
7166
|
updatedAt: Date;
|
|
7084
|
-
|
|
7167
|
+
pinnedAt?: Date | undefined;
|
|
7168
|
+
pinOrder?: number | undefined;
|
|
7085
7169
|
folderId?: number | undefined;
|
|
7086
7170
|
defaultProductTypeId?: number | undefined;
|
|
7087
7171
|
folder?: unknown;
|
|
@@ -7100,7 +7184,8 @@ declare const ProductCollectionFindManyResultSchema: z.ZodObject<{
|
|
|
7100
7184
|
id: number;
|
|
7101
7185
|
name: string;
|
|
7102
7186
|
updatedAt: Date;
|
|
7103
|
-
|
|
7187
|
+
pinnedAt?: Date | undefined;
|
|
7188
|
+
pinOrder?: number | undefined;
|
|
7104
7189
|
folderId?: number | undefined;
|
|
7105
7190
|
defaultProductTypeId?: number | undefined;
|
|
7106
7191
|
folder?: unknown;
|
|
@@ -7121,7 +7206,8 @@ declare const ProductCollectionCreateResultSchema: z.ZodObject<{
|
|
|
7121
7206
|
name: z.ZodString;
|
|
7122
7207
|
folderId: z.ZodOptional<z.ZodNumber>;
|
|
7123
7208
|
defaultProductTypeId: z.ZodOptional<z.ZodNumber>;
|
|
7124
|
-
|
|
7209
|
+
pinnedAt: z.ZodOptional<z.ZodDate>;
|
|
7210
|
+
pinOrder: z.ZodOptional<z.ZodNumber>;
|
|
7125
7211
|
updatedAt: z.ZodDate;
|
|
7126
7212
|
folder: z.ZodOptional<z.ZodUnknown>;
|
|
7127
7213
|
defaultProductType: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -7129,7 +7215,8 @@ declare const ProductCollectionCreateResultSchema: z.ZodObject<{
|
|
|
7129
7215
|
id: number;
|
|
7130
7216
|
name: string;
|
|
7131
7217
|
updatedAt: Date;
|
|
7132
|
-
|
|
7218
|
+
pinnedAt?: Date | undefined;
|
|
7219
|
+
pinOrder?: number | undefined;
|
|
7133
7220
|
folderId?: number | undefined;
|
|
7134
7221
|
defaultProductTypeId?: number | undefined;
|
|
7135
7222
|
folder?: unknown;
|
|
@@ -7138,7 +7225,8 @@ declare const ProductCollectionCreateResultSchema: z.ZodObject<{
|
|
|
7138
7225
|
id: number;
|
|
7139
7226
|
name: string;
|
|
7140
7227
|
updatedAt: Date;
|
|
7141
|
-
|
|
7228
|
+
pinnedAt?: Date | undefined;
|
|
7229
|
+
pinOrder?: number | undefined;
|
|
7142
7230
|
folderId?: number | undefined;
|
|
7143
7231
|
defaultProductTypeId?: number | undefined;
|
|
7144
7232
|
folder?: unknown;
|
|
@@ -7158,7 +7246,8 @@ declare const ProductCollectionUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
7158
7246
|
name: z.ZodString;
|
|
7159
7247
|
folderId: z.ZodOptional<z.ZodNumber>;
|
|
7160
7248
|
defaultProductTypeId: z.ZodOptional<z.ZodNumber>;
|
|
7161
|
-
|
|
7249
|
+
pinnedAt: z.ZodOptional<z.ZodDate>;
|
|
7250
|
+
pinOrder: z.ZodOptional<z.ZodNumber>;
|
|
7162
7251
|
updatedAt: z.ZodDate;
|
|
7163
7252
|
folder: z.ZodOptional<z.ZodUnknown>;
|
|
7164
7253
|
defaultProductType: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -7166,7 +7255,8 @@ declare const ProductCollectionUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
7166
7255
|
id: number;
|
|
7167
7256
|
name: string;
|
|
7168
7257
|
updatedAt: Date;
|
|
7169
|
-
|
|
7258
|
+
pinnedAt?: Date | undefined;
|
|
7259
|
+
pinOrder?: number | undefined;
|
|
7170
7260
|
folderId?: number | undefined;
|
|
7171
7261
|
defaultProductTypeId?: number | undefined;
|
|
7172
7262
|
folder?: unknown;
|
|
@@ -7175,7 +7265,8 @@ declare const ProductCollectionUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
7175
7265
|
id: number;
|
|
7176
7266
|
name: string;
|
|
7177
7267
|
updatedAt: Date;
|
|
7178
|
-
|
|
7268
|
+
pinnedAt?: Date | undefined;
|
|
7269
|
+
pinOrder?: number | undefined;
|
|
7179
7270
|
folderId?: number | undefined;
|
|
7180
7271
|
defaultProductTypeId?: number | undefined;
|
|
7181
7272
|
folder?: unknown;
|
|
@@ -7195,7 +7286,8 @@ declare const ProductCollectionUpsertResultSchema: z.ZodObject<{
|
|
|
7195
7286
|
name: z.ZodString;
|
|
7196
7287
|
folderId: z.ZodOptional<z.ZodNumber>;
|
|
7197
7288
|
defaultProductTypeId: z.ZodOptional<z.ZodNumber>;
|
|
7198
|
-
|
|
7289
|
+
pinnedAt: z.ZodOptional<z.ZodDate>;
|
|
7290
|
+
pinOrder: z.ZodOptional<z.ZodNumber>;
|
|
7199
7291
|
updatedAt: z.ZodDate;
|
|
7200
7292
|
folder: z.ZodOptional<z.ZodUnknown>;
|
|
7201
7293
|
defaultProductType: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -7203,7 +7295,8 @@ declare const ProductCollectionUpsertResultSchema: z.ZodObject<{
|
|
|
7203
7295
|
id: number;
|
|
7204
7296
|
name: string;
|
|
7205
7297
|
updatedAt: Date;
|
|
7206
|
-
|
|
7298
|
+
pinnedAt?: Date | undefined;
|
|
7299
|
+
pinOrder?: number | undefined;
|
|
7207
7300
|
folderId?: number | undefined;
|
|
7208
7301
|
defaultProductTypeId?: number | undefined;
|
|
7209
7302
|
folder?: unknown;
|
|
@@ -7212,7 +7305,8 @@ declare const ProductCollectionUpsertResultSchema: z.ZodObject<{
|
|
|
7212
7305
|
id: number;
|
|
7213
7306
|
name: string;
|
|
7214
7307
|
updatedAt: Date;
|
|
7215
|
-
|
|
7308
|
+
pinnedAt?: Date | undefined;
|
|
7309
|
+
pinOrder?: number | undefined;
|
|
7216
7310
|
folderId?: number | undefined;
|
|
7217
7311
|
defaultProductTypeId?: number | undefined;
|
|
7218
7312
|
folder?: unknown;
|
|
@@ -7224,7 +7318,8 @@ declare const ProductCollectionDeleteResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
7224
7318
|
name: z.ZodString;
|
|
7225
7319
|
folderId: z.ZodOptional<z.ZodNumber>;
|
|
7226
7320
|
defaultProductTypeId: z.ZodOptional<z.ZodNumber>;
|
|
7227
|
-
|
|
7321
|
+
pinnedAt: z.ZodOptional<z.ZodDate>;
|
|
7322
|
+
pinOrder: z.ZodOptional<z.ZodNumber>;
|
|
7228
7323
|
updatedAt: z.ZodDate;
|
|
7229
7324
|
folder: z.ZodOptional<z.ZodUnknown>;
|
|
7230
7325
|
defaultProductType: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -7232,7 +7327,8 @@ declare const ProductCollectionDeleteResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
7232
7327
|
id: number;
|
|
7233
7328
|
name: string;
|
|
7234
7329
|
updatedAt: Date;
|
|
7235
|
-
|
|
7330
|
+
pinnedAt?: Date | undefined;
|
|
7331
|
+
pinOrder?: number | undefined;
|
|
7236
7332
|
folderId?: number | undefined;
|
|
7237
7333
|
defaultProductTypeId?: number | undefined;
|
|
7238
7334
|
folder?: unknown;
|
|
@@ -7241,7 +7337,8 @@ declare const ProductCollectionDeleteResultSchema: z.ZodNullable<z.ZodObject<{
|
|
|
7241
7337
|
id: number;
|
|
7242
7338
|
name: string;
|
|
7243
7339
|
updatedAt: Date;
|
|
7244
|
-
|
|
7340
|
+
pinnedAt?: Date | undefined;
|
|
7341
|
+
pinOrder?: number | undefined;
|
|
7245
7342
|
folderId?: number | undefined;
|
|
7246
7343
|
defaultProductTypeId?: number | undefined;
|
|
7247
7344
|
folder?: unknown;
|
|
@@ -7262,7 +7359,8 @@ declare const ProductCollectionAggregateResultSchema: z.ZodObject<{
|
|
|
7262
7359
|
name: z.ZodNumber;
|
|
7263
7360
|
folderId: z.ZodNumber;
|
|
7264
7361
|
defaultProductTypeId: z.ZodNumber;
|
|
7265
|
-
|
|
7362
|
+
pinnedAt: z.ZodNumber;
|
|
7363
|
+
pinOrder: z.ZodNumber;
|
|
7266
7364
|
updatedAt: z.ZodNumber;
|
|
7267
7365
|
folder: z.ZodNumber;
|
|
7268
7366
|
defaultProductType: z.ZodNumber;
|
|
@@ -7270,7 +7368,8 @@ declare const ProductCollectionAggregateResultSchema: z.ZodObject<{
|
|
|
7270
7368
|
id: number;
|
|
7271
7369
|
name: number;
|
|
7272
7370
|
updatedAt: number;
|
|
7273
|
-
|
|
7371
|
+
pinnedAt: number;
|
|
7372
|
+
pinOrder: number;
|
|
7274
7373
|
folderId: number;
|
|
7275
7374
|
defaultProductTypeId: number;
|
|
7276
7375
|
folder: number;
|
|
@@ -7279,7 +7378,8 @@ declare const ProductCollectionAggregateResultSchema: z.ZodObject<{
|
|
|
7279
7378
|
id: number;
|
|
7280
7379
|
name: number;
|
|
7281
7380
|
updatedAt: number;
|
|
7282
|
-
|
|
7381
|
+
pinnedAt: number;
|
|
7382
|
+
pinOrder: number;
|
|
7283
7383
|
folderId: number;
|
|
7284
7384
|
defaultProductTypeId: number;
|
|
7285
7385
|
folder: number;
|
|
@@ -7289,15 +7389,15 @@ declare const ProductCollectionAggregateResultSchema: z.ZodObject<{
|
|
|
7289
7389
|
id: z.ZodNullable<z.ZodNumber>;
|
|
7290
7390
|
folderId: z.ZodNullable<z.ZodNumber>;
|
|
7291
7391
|
defaultProductTypeId: z.ZodNullable<z.ZodNumber>;
|
|
7292
|
-
|
|
7392
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
7293
7393
|
}, "strip", z.ZodTypeAny, {
|
|
7294
7394
|
id: number | null;
|
|
7295
|
-
|
|
7395
|
+
pinOrder: number | null;
|
|
7296
7396
|
folderId: number | null;
|
|
7297
7397
|
defaultProductTypeId: number | null;
|
|
7298
7398
|
}, {
|
|
7299
7399
|
id: number | null;
|
|
7300
|
-
|
|
7400
|
+
pinOrder: number | null;
|
|
7301
7401
|
folderId: number | null;
|
|
7302
7402
|
defaultProductTypeId: number | null;
|
|
7303
7403
|
}>>>;
|
|
@@ -7305,15 +7405,15 @@ declare const ProductCollectionAggregateResultSchema: z.ZodObject<{
|
|
|
7305
7405
|
id: z.ZodNullable<z.ZodNumber>;
|
|
7306
7406
|
folderId: z.ZodNullable<z.ZodNumber>;
|
|
7307
7407
|
defaultProductTypeId: z.ZodNullable<z.ZodNumber>;
|
|
7308
|
-
|
|
7408
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
7309
7409
|
}, "strip", z.ZodTypeAny, {
|
|
7310
7410
|
id: number | null;
|
|
7311
|
-
|
|
7411
|
+
pinOrder: number | null;
|
|
7312
7412
|
folderId: number | null;
|
|
7313
7413
|
defaultProductTypeId: number | null;
|
|
7314
7414
|
}, {
|
|
7315
7415
|
id: number | null;
|
|
7316
|
-
|
|
7416
|
+
pinOrder: number | null;
|
|
7317
7417
|
folderId: number | null;
|
|
7318
7418
|
defaultProductTypeId: number | null;
|
|
7319
7419
|
}>>>;
|
|
@@ -7322,20 +7422,23 @@ declare const ProductCollectionAggregateResultSchema: z.ZodObject<{
|
|
|
7322
7422
|
name: z.ZodNullable<z.ZodString>;
|
|
7323
7423
|
folderId: z.ZodNullable<z.ZodNumber>;
|
|
7324
7424
|
defaultProductTypeId: z.ZodNullable<z.ZodNumber>;
|
|
7325
|
-
|
|
7425
|
+
pinnedAt: z.ZodNullable<z.ZodDate>;
|
|
7426
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
7326
7427
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
7327
7428
|
}, "strip", z.ZodTypeAny, {
|
|
7328
7429
|
id: number | null;
|
|
7329
7430
|
name: string | null;
|
|
7330
7431
|
updatedAt: Date | null;
|
|
7331
|
-
|
|
7432
|
+
pinnedAt: Date | null;
|
|
7433
|
+
pinOrder: number | null;
|
|
7332
7434
|
folderId: number | null;
|
|
7333
7435
|
defaultProductTypeId: number | null;
|
|
7334
7436
|
}, {
|
|
7335
7437
|
id: number | null;
|
|
7336
7438
|
name: string | null;
|
|
7337
7439
|
updatedAt: Date | null;
|
|
7338
|
-
|
|
7440
|
+
pinnedAt: Date | null;
|
|
7441
|
+
pinOrder: number | null;
|
|
7339
7442
|
folderId: number | null;
|
|
7340
7443
|
defaultProductTypeId: number | null;
|
|
7341
7444
|
}>>>;
|
|
@@ -7344,20 +7447,23 @@ declare const ProductCollectionAggregateResultSchema: z.ZodObject<{
|
|
|
7344
7447
|
name: z.ZodNullable<z.ZodString>;
|
|
7345
7448
|
folderId: z.ZodNullable<z.ZodNumber>;
|
|
7346
7449
|
defaultProductTypeId: z.ZodNullable<z.ZodNumber>;
|
|
7347
|
-
|
|
7450
|
+
pinnedAt: z.ZodNullable<z.ZodDate>;
|
|
7451
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
7348
7452
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
7349
7453
|
}, "strip", z.ZodTypeAny, {
|
|
7350
7454
|
id: number | null;
|
|
7351
7455
|
name: string | null;
|
|
7352
7456
|
updatedAt: Date | null;
|
|
7353
|
-
|
|
7457
|
+
pinnedAt: Date | null;
|
|
7458
|
+
pinOrder: number | null;
|
|
7354
7459
|
folderId: number | null;
|
|
7355
7460
|
defaultProductTypeId: number | null;
|
|
7356
7461
|
}, {
|
|
7357
7462
|
id: number | null;
|
|
7358
7463
|
name: string | null;
|
|
7359
7464
|
updatedAt: Date | null;
|
|
7360
|
-
|
|
7465
|
+
pinnedAt: Date | null;
|
|
7466
|
+
pinOrder: number | null;
|
|
7361
7467
|
folderId: number | null;
|
|
7362
7468
|
defaultProductTypeId: number | null;
|
|
7363
7469
|
}>>>;
|
|
@@ -7366,7 +7472,8 @@ declare const ProductCollectionAggregateResultSchema: z.ZodObject<{
|
|
|
7366
7472
|
id: number;
|
|
7367
7473
|
name: number;
|
|
7368
7474
|
updatedAt: number;
|
|
7369
|
-
|
|
7475
|
+
pinnedAt: number;
|
|
7476
|
+
pinOrder: number;
|
|
7370
7477
|
folderId: number;
|
|
7371
7478
|
defaultProductTypeId: number;
|
|
7372
7479
|
folder: number;
|
|
@@ -7376,7 +7483,8 @@ declare const ProductCollectionAggregateResultSchema: z.ZodObject<{
|
|
|
7376
7483
|
id: number | null;
|
|
7377
7484
|
name: string | null;
|
|
7378
7485
|
updatedAt: Date | null;
|
|
7379
|
-
|
|
7486
|
+
pinnedAt: Date | null;
|
|
7487
|
+
pinOrder: number | null;
|
|
7380
7488
|
folderId: number | null;
|
|
7381
7489
|
defaultProductTypeId: number | null;
|
|
7382
7490
|
} | null | undefined;
|
|
@@ -7384,19 +7492,20 @@ declare const ProductCollectionAggregateResultSchema: z.ZodObject<{
|
|
|
7384
7492
|
id: number | null;
|
|
7385
7493
|
name: string | null;
|
|
7386
7494
|
updatedAt: Date | null;
|
|
7387
|
-
|
|
7495
|
+
pinnedAt: Date | null;
|
|
7496
|
+
pinOrder: number | null;
|
|
7388
7497
|
folderId: number | null;
|
|
7389
7498
|
defaultProductTypeId: number | null;
|
|
7390
7499
|
} | null | undefined;
|
|
7391
7500
|
_avg?: {
|
|
7392
7501
|
id: number | null;
|
|
7393
|
-
|
|
7502
|
+
pinOrder: number | null;
|
|
7394
7503
|
folderId: number | null;
|
|
7395
7504
|
defaultProductTypeId: number | null;
|
|
7396
7505
|
} | null | undefined;
|
|
7397
7506
|
_sum?: {
|
|
7398
7507
|
id: number | null;
|
|
7399
|
-
|
|
7508
|
+
pinOrder: number | null;
|
|
7400
7509
|
folderId: number | null;
|
|
7401
7510
|
defaultProductTypeId: number | null;
|
|
7402
7511
|
} | null | undefined;
|
|
@@ -7405,7 +7514,8 @@ declare const ProductCollectionAggregateResultSchema: z.ZodObject<{
|
|
|
7405
7514
|
id: number;
|
|
7406
7515
|
name: number;
|
|
7407
7516
|
updatedAt: number;
|
|
7408
|
-
|
|
7517
|
+
pinnedAt: number;
|
|
7518
|
+
pinOrder: number;
|
|
7409
7519
|
folderId: number;
|
|
7410
7520
|
defaultProductTypeId: number;
|
|
7411
7521
|
folder: number;
|
|
@@ -7415,7 +7525,8 @@ declare const ProductCollectionAggregateResultSchema: z.ZodObject<{
|
|
|
7415
7525
|
id: number | null;
|
|
7416
7526
|
name: string | null;
|
|
7417
7527
|
updatedAt: Date | null;
|
|
7418
|
-
|
|
7528
|
+
pinnedAt: Date | null;
|
|
7529
|
+
pinOrder: number | null;
|
|
7419
7530
|
folderId: number | null;
|
|
7420
7531
|
defaultProductTypeId: number | null;
|
|
7421
7532
|
} | null | undefined;
|
|
@@ -7423,19 +7534,20 @@ declare const ProductCollectionAggregateResultSchema: z.ZodObject<{
|
|
|
7423
7534
|
id: number | null;
|
|
7424
7535
|
name: string | null;
|
|
7425
7536
|
updatedAt: Date | null;
|
|
7426
|
-
|
|
7537
|
+
pinnedAt: Date | null;
|
|
7538
|
+
pinOrder: number | null;
|
|
7427
7539
|
folderId: number | null;
|
|
7428
7540
|
defaultProductTypeId: number | null;
|
|
7429
7541
|
} | null | undefined;
|
|
7430
7542
|
_avg?: {
|
|
7431
7543
|
id: number | null;
|
|
7432
|
-
|
|
7544
|
+
pinOrder: number | null;
|
|
7433
7545
|
folderId: number | null;
|
|
7434
7546
|
defaultProductTypeId: number | null;
|
|
7435
7547
|
} | null | undefined;
|
|
7436
7548
|
_sum?: {
|
|
7437
7549
|
id: number | null;
|
|
7438
|
-
|
|
7550
|
+
pinOrder: number | null;
|
|
7439
7551
|
folderId: number | null;
|
|
7440
7552
|
defaultProductTypeId: number | null;
|
|
7441
7553
|
} | null | undefined;
|
|
@@ -7446,14 +7558,16 @@ declare const ProductCollectionGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
7446
7558
|
name: z.ZodString;
|
|
7447
7559
|
folderId: z.ZodNumber;
|
|
7448
7560
|
defaultProductTypeId: z.ZodNumber;
|
|
7449
|
-
|
|
7561
|
+
pinnedAt: z.ZodDate;
|
|
7562
|
+
pinOrder: z.ZodNumber;
|
|
7450
7563
|
updatedAt: z.ZodDate;
|
|
7451
7564
|
_count: z.ZodOptional<z.ZodObject<{
|
|
7452
7565
|
id: z.ZodNumber;
|
|
7453
7566
|
name: z.ZodNumber;
|
|
7454
7567
|
folderId: z.ZodNumber;
|
|
7455
7568
|
defaultProductTypeId: z.ZodNumber;
|
|
7456
|
-
|
|
7569
|
+
pinnedAt: z.ZodNumber;
|
|
7570
|
+
pinOrder: z.ZodNumber;
|
|
7457
7571
|
updatedAt: z.ZodNumber;
|
|
7458
7572
|
folder: z.ZodNumber;
|
|
7459
7573
|
defaultProductType: z.ZodNumber;
|
|
@@ -7461,7 +7575,8 @@ declare const ProductCollectionGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
7461
7575
|
id: number;
|
|
7462
7576
|
name: number;
|
|
7463
7577
|
updatedAt: number;
|
|
7464
|
-
|
|
7578
|
+
pinnedAt: number;
|
|
7579
|
+
pinOrder: number;
|
|
7465
7580
|
folderId: number;
|
|
7466
7581
|
defaultProductTypeId: number;
|
|
7467
7582
|
folder: number;
|
|
@@ -7470,7 +7585,8 @@ declare const ProductCollectionGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
7470
7585
|
id: number;
|
|
7471
7586
|
name: number;
|
|
7472
7587
|
updatedAt: number;
|
|
7473
|
-
|
|
7588
|
+
pinnedAt: number;
|
|
7589
|
+
pinOrder: number;
|
|
7474
7590
|
folderId: number;
|
|
7475
7591
|
defaultProductTypeId: number;
|
|
7476
7592
|
folder: number;
|
|
@@ -7480,15 +7596,15 @@ declare const ProductCollectionGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
7480
7596
|
id: z.ZodNullable<z.ZodNumber>;
|
|
7481
7597
|
folderId: z.ZodNullable<z.ZodNumber>;
|
|
7482
7598
|
defaultProductTypeId: z.ZodNullable<z.ZodNumber>;
|
|
7483
|
-
|
|
7599
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
7484
7600
|
}, "strip", z.ZodTypeAny, {
|
|
7485
7601
|
id: number | null;
|
|
7486
|
-
|
|
7602
|
+
pinOrder: number | null;
|
|
7487
7603
|
folderId: number | null;
|
|
7488
7604
|
defaultProductTypeId: number | null;
|
|
7489
7605
|
}, {
|
|
7490
7606
|
id: number | null;
|
|
7491
|
-
|
|
7607
|
+
pinOrder: number | null;
|
|
7492
7608
|
folderId: number | null;
|
|
7493
7609
|
defaultProductTypeId: number | null;
|
|
7494
7610
|
}>>>;
|
|
@@ -7496,15 +7612,15 @@ declare const ProductCollectionGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
7496
7612
|
id: z.ZodNullable<z.ZodNumber>;
|
|
7497
7613
|
folderId: z.ZodNullable<z.ZodNumber>;
|
|
7498
7614
|
defaultProductTypeId: z.ZodNullable<z.ZodNumber>;
|
|
7499
|
-
|
|
7615
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
7500
7616
|
}, "strip", z.ZodTypeAny, {
|
|
7501
7617
|
id: number | null;
|
|
7502
|
-
|
|
7618
|
+
pinOrder: number | null;
|
|
7503
7619
|
folderId: number | null;
|
|
7504
7620
|
defaultProductTypeId: number | null;
|
|
7505
7621
|
}, {
|
|
7506
7622
|
id: number | null;
|
|
7507
|
-
|
|
7623
|
+
pinOrder: number | null;
|
|
7508
7624
|
folderId: number | null;
|
|
7509
7625
|
defaultProductTypeId: number | null;
|
|
7510
7626
|
}>>>;
|
|
@@ -7513,20 +7629,23 @@ declare const ProductCollectionGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
7513
7629
|
name: z.ZodNullable<z.ZodString>;
|
|
7514
7630
|
folderId: z.ZodNullable<z.ZodNumber>;
|
|
7515
7631
|
defaultProductTypeId: z.ZodNullable<z.ZodNumber>;
|
|
7516
|
-
|
|
7632
|
+
pinnedAt: z.ZodNullable<z.ZodDate>;
|
|
7633
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
7517
7634
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
7518
7635
|
}, "strip", z.ZodTypeAny, {
|
|
7519
7636
|
id: number | null;
|
|
7520
7637
|
name: string | null;
|
|
7521
7638
|
updatedAt: Date | null;
|
|
7522
|
-
|
|
7639
|
+
pinnedAt: Date | null;
|
|
7640
|
+
pinOrder: number | null;
|
|
7523
7641
|
folderId: number | null;
|
|
7524
7642
|
defaultProductTypeId: number | null;
|
|
7525
7643
|
}, {
|
|
7526
7644
|
id: number | null;
|
|
7527
7645
|
name: string | null;
|
|
7528
7646
|
updatedAt: Date | null;
|
|
7529
|
-
|
|
7647
|
+
pinnedAt: Date | null;
|
|
7648
|
+
pinOrder: number | null;
|
|
7530
7649
|
folderId: number | null;
|
|
7531
7650
|
defaultProductTypeId: number | null;
|
|
7532
7651
|
}>>>;
|
|
@@ -7535,20 +7654,23 @@ declare const ProductCollectionGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
7535
7654
|
name: z.ZodNullable<z.ZodString>;
|
|
7536
7655
|
folderId: z.ZodNullable<z.ZodNumber>;
|
|
7537
7656
|
defaultProductTypeId: z.ZodNullable<z.ZodNumber>;
|
|
7538
|
-
|
|
7657
|
+
pinnedAt: z.ZodNullable<z.ZodDate>;
|
|
7658
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
7539
7659
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
7540
7660
|
}, "strip", z.ZodTypeAny, {
|
|
7541
7661
|
id: number | null;
|
|
7542
7662
|
name: string | null;
|
|
7543
7663
|
updatedAt: Date | null;
|
|
7544
|
-
|
|
7664
|
+
pinnedAt: Date | null;
|
|
7665
|
+
pinOrder: number | null;
|
|
7545
7666
|
folderId: number | null;
|
|
7546
7667
|
defaultProductTypeId: number | null;
|
|
7547
7668
|
}, {
|
|
7548
7669
|
id: number | null;
|
|
7549
7670
|
name: string | null;
|
|
7550
7671
|
updatedAt: Date | null;
|
|
7551
|
-
|
|
7672
|
+
pinnedAt: Date | null;
|
|
7673
|
+
pinOrder: number | null;
|
|
7552
7674
|
folderId: number | null;
|
|
7553
7675
|
defaultProductTypeId: number | null;
|
|
7554
7676
|
}>>>;
|
|
@@ -7556,14 +7678,16 @@ declare const ProductCollectionGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
7556
7678
|
id: number;
|
|
7557
7679
|
name: string;
|
|
7558
7680
|
updatedAt: Date;
|
|
7559
|
-
|
|
7681
|
+
pinnedAt: Date;
|
|
7682
|
+
pinOrder: number;
|
|
7560
7683
|
folderId: number;
|
|
7561
7684
|
defaultProductTypeId: number;
|
|
7562
7685
|
_count?: {
|
|
7563
7686
|
id: number;
|
|
7564
7687
|
name: number;
|
|
7565
7688
|
updatedAt: number;
|
|
7566
|
-
|
|
7689
|
+
pinnedAt: number;
|
|
7690
|
+
pinOrder: number;
|
|
7567
7691
|
folderId: number;
|
|
7568
7692
|
defaultProductTypeId: number;
|
|
7569
7693
|
folder: number;
|
|
@@ -7573,7 +7697,8 @@ declare const ProductCollectionGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
7573
7697
|
id: number | null;
|
|
7574
7698
|
name: string | null;
|
|
7575
7699
|
updatedAt: Date | null;
|
|
7576
|
-
|
|
7700
|
+
pinnedAt: Date | null;
|
|
7701
|
+
pinOrder: number | null;
|
|
7577
7702
|
folderId: number | null;
|
|
7578
7703
|
defaultProductTypeId: number | null;
|
|
7579
7704
|
} | null | undefined;
|
|
@@ -7581,19 +7706,20 @@ declare const ProductCollectionGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
7581
7706
|
id: number | null;
|
|
7582
7707
|
name: string | null;
|
|
7583
7708
|
updatedAt: Date | null;
|
|
7584
|
-
|
|
7709
|
+
pinnedAt: Date | null;
|
|
7710
|
+
pinOrder: number | null;
|
|
7585
7711
|
folderId: number | null;
|
|
7586
7712
|
defaultProductTypeId: number | null;
|
|
7587
7713
|
} | null | undefined;
|
|
7588
7714
|
_avg?: {
|
|
7589
7715
|
id: number | null;
|
|
7590
|
-
|
|
7716
|
+
pinOrder: number | null;
|
|
7591
7717
|
folderId: number | null;
|
|
7592
7718
|
defaultProductTypeId: number | null;
|
|
7593
7719
|
} | null | undefined;
|
|
7594
7720
|
_sum?: {
|
|
7595
7721
|
id: number | null;
|
|
7596
|
-
|
|
7722
|
+
pinOrder: number | null;
|
|
7597
7723
|
folderId: number | null;
|
|
7598
7724
|
defaultProductTypeId: number | null;
|
|
7599
7725
|
} | null | undefined;
|
|
@@ -7601,14 +7727,16 @@ declare const ProductCollectionGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
7601
7727
|
id: number;
|
|
7602
7728
|
name: string;
|
|
7603
7729
|
updatedAt: Date;
|
|
7604
|
-
|
|
7730
|
+
pinnedAt: Date;
|
|
7731
|
+
pinOrder: number;
|
|
7605
7732
|
folderId: number;
|
|
7606
7733
|
defaultProductTypeId: number;
|
|
7607
7734
|
_count?: {
|
|
7608
7735
|
id: number;
|
|
7609
7736
|
name: number;
|
|
7610
7737
|
updatedAt: number;
|
|
7611
|
-
|
|
7738
|
+
pinnedAt: number;
|
|
7739
|
+
pinOrder: number;
|
|
7612
7740
|
folderId: number;
|
|
7613
7741
|
defaultProductTypeId: number;
|
|
7614
7742
|
folder: number;
|
|
@@ -7618,7 +7746,8 @@ declare const ProductCollectionGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
7618
7746
|
id: number | null;
|
|
7619
7747
|
name: string | null;
|
|
7620
7748
|
updatedAt: Date | null;
|
|
7621
|
-
|
|
7749
|
+
pinnedAt: Date | null;
|
|
7750
|
+
pinOrder: number | null;
|
|
7622
7751
|
folderId: number | null;
|
|
7623
7752
|
defaultProductTypeId: number | null;
|
|
7624
7753
|
} | null | undefined;
|
|
@@ -7626,19 +7755,20 @@ declare const ProductCollectionGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
|
|
7626
7755
|
id: number | null;
|
|
7627
7756
|
name: string | null;
|
|
7628
7757
|
updatedAt: Date | null;
|
|
7629
|
-
|
|
7758
|
+
pinnedAt: Date | null;
|
|
7759
|
+
pinOrder: number | null;
|
|
7630
7760
|
folderId: number | null;
|
|
7631
7761
|
defaultProductTypeId: number | null;
|
|
7632
7762
|
} | null | undefined;
|
|
7633
7763
|
_avg?: {
|
|
7634
7764
|
id: number | null;
|
|
7635
|
-
|
|
7765
|
+
pinOrder: number | null;
|
|
7636
7766
|
folderId: number | null;
|
|
7637
7767
|
defaultProductTypeId: number | null;
|
|
7638
7768
|
} | null | undefined;
|
|
7639
7769
|
_sum?: {
|
|
7640
7770
|
id: number | null;
|
|
7641
|
-
|
|
7771
|
+
pinOrder: number | null;
|
|
7642
7772
|
folderId: number | null;
|
|
7643
7773
|
defaultProductTypeId: number | null;
|
|
7644
7774
|
} | null | undefined;
|
|
@@ -19468,30 +19598,30 @@ declare const FolderAvgAggregateInputObjectSchema: z.ZodType<Prisma.FolderAvgAgg
|
|
|
19468
19598
|
declare const FolderAvgAggregateInputObjectZodSchema: z.ZodObject<{
|
|
19469
19599
|
id: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19470
19600
|
parentId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19471
|
-
|
|
19601
|
+
pinOrder: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19472
19602
|
}, "strict", z.ZodTypeAny, {
|
|
19473
19603
|
id?: true | undefined;
|
|
19474
19604
|
parentId?: true | undefined;
|
|
19475
|
-
|
|
19605
|
+
pinOrder?: true | undefined;
|
|
19476
19606
|
}, {
|
|
19477
19607
|
id?: true | undefined;
|
|
19478
19608
|
parentId?: true | undefined;
|
|
19479
|
-
|
|
19609
|
+
pinOrder?: true | undefined;
|
|
19480
19610
|
}>;
|
|
19481
19611
|
|
|
19482
19612
|
declare const FolderAvgOrderByAggregateInputObjectSchema: z.ZodType<Prisma.FolderAvgOrderByAggregateInput>;
|
|
19483
19613
|
declare const FolderAvgOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
19484
19614
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19485
19615
|
parentId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19486
|
-
|
|
19616
|
+
pinOrder: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19487
19617
|
}, "strict", z.ZodTypeAny, {
|
|
19488
19618
|
id?: "asc" | "desc" | undefined;
|
|
19489
19619
|
parentId?: "asc" | "desc" | undefined;
|
|
19490
|
-
|
|
19620
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
19491
19621
|
}, {
|
|
19492
19622
|
id?: "asc" | "desc" | undefined;
|
|
19493
19623
|
parentId?: "asc" | "desc" | undefined;
|
|
19494
|
-
|
|
19624
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
19495
19625
|
}>;
|
|
19496
19626
|
|
|
19497
19627
|
declare const FolderCountAggregateInputObjectSchema: z.ZodType<Prisma.FolderCountAggregateInputType>;
|
|
@@ -19499,7 +19629,8 @@ declare const FolderCountAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
19499
19629
|
id: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19500
19630
|
name: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19501
19631
|
parentId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19502
|
-
|
|
19632
|
+
pinnedAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19633
|
+
pinOrder: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19503
19634
|
updatedAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19504
19635
|
_all: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19505
19636
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -19507,14 +19638,16 @@ declare const FolderCountAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
19507
19638
|
name?: true | undefined;
|
|
19508
19639
|
updatedAt?: true | undefined;
|
|
19509
19640
|
parentId?: true | undefined;
|
|
19510
|
-
|
|
19641
|
+
pinnedAt?: true | undefined;
|
|
19642
|
+
pinOrder?: true | undefined;
|
|
19511
19643
|
_all?: true | undefined;
|
|
19512
19644
|
}, {
|
|
19513
19645
|
id?: true | undefined;
|
|
19514
19646
|
name?: true | undefined;
|
|
19515
19647
|
updatedAt?: true | undefined;
|
|
19516
19648
|
parentId?: true | undefined;
|
|
19517
|
-
|
|
19649
|
+
pinnedAt?: true | undefined;
|
|
19650
|
+
pinOrder?: true | undefined;
|
|
19518
19651
|
_all?: true | undefined;
|
|
19519
19652
|
}>;
|
|
19520
19653
|
|
|
@@ -19523,20 +19656,23 @@ declare const FolderCountOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
19523
19656
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19524
19657
|
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19525
19658
|
parentId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19526
|
-
|
|
19659
|
+
pinnedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19660
|
+
pinOrder: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19527
19661
|
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19528
19662
|
}, "strict", z.ZodTypeAny, {
|
|
19529
19663
|
id?: "asc" | "desc" | undefined;
|
|
19530
19664
|
name?: "asc" | "desc" | undefined;
|
|
19531
19665
|
updatedAt?: "asc" | "desc" | undefined;
|
|
19532
19666
|
parentId?: "asc" | "desc" | undefined;
|
|
19533
|
-
|
|
19667
|
+
pinnedAt?: "asc" | "desc" | undefined;
|
|
19668
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
19534
19669
|
}, {
|
|
19535
19670
|
id?: "asc" | "desc" | undefined;
|
|
19536
19671
|
name?: "asc" | "desc" | undefined;
|
|
19537
19672
|
updatedAt?: "asc" | "desc" | undefined;
|
|
19538
19673
|
parentId?: "asc" | "desc" | undefined;
|
|
19539
|
-
|
|
19674
|
+
pinnedAt?: "asc" | "desc" | undefined;
|
|
19675
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
19540
19676
|
}>;
|
|
19541
19677
|
|
|
19542
19678
|
declare const FolderCountOutputTypeArgsObjectSchema: z.ZodObject<{
|
|
@@ -19619,19 +19755,22 @@ declare const FolderCountOutputTypeSelectObjectZodSchema: z.ZodObject<{
|
|
|
19619
19755
|
declare const FolderCreateInputObjectSchema: z.ZodType<Prisma.FolderCreateInput>;
|
|
19620
19756
|
declare const FolderCreateInputObjectZodSchema: z.ZodObject<{
|
|
19621
19757
|
name: z.ZodString;
|
|
19622
|
-
|
|
19758
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
19759
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
19623
19760
|
parent: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderCreateNestedOneWithoutChildrenInput, z.ZodTypeDef, Prisma.FolderCreateNestedOneWithoutChildrenInput>>>;
|
|
19624
19761
|
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderCreateNestedManyWithoutParentInput, z.ZodTypeDef, Prisma.FolderCreateNestedManyWithoutParentInput>>>;
|
|
19625
19762
|
collections: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductCollectionCreateNestedManyWithoutFolderInput, z.ZodTypeDef, Prisma.ProductCollectionCreateNestedManyWithoutFolderInput>>>;
|
|
19626
19763
|
}, "strict", z.ZodTypeAny, {
|
|
19627
19764
|
name: string;
|
|
19628
|
-
|
|
19765
|
+
pinnedAt?: Date | null | undefined;
|
|
19766
|
+
pinOrder?: number | null | undefined;
|
|
19629
19767
|
collections?: Prisma.ProductCollectionCreateNestedManyWithoutFolderInput | undefined;
|
|
19630
19768
|
parent?: Prisma.FolderCreateNestedOneWithoutChildrenInput | undefined;
|
|
19631
19769
|
children?: Prisma.FolderCreateNestedManyWithoutParentInput | undefined;
|
|
19632
19770
|
}, {
|
|
19633
19771
|
name: string;
|
|
19634
|
-
|
|
19772
|
+
pinnedAt?: Date | null | undefined;
|
|
19773
|
+
pinOrder?: number | null | undefined;
|
|
19635
19774
|
collections?: Prisma.ProductCollectionCreateNestedManyWithoutFolderInput | undefined;
|
|
19636
19775
|
parent?: Prisma.FolderCreateNestedOneWithoutChildrenInput | undefined;
|
|
19637
19776
|
children?: Prisma.FolderCreateNestedManyWithoutParentInput | undefined;
|
|
@@ -19642,38 +19781,44 @@ declare const FolderCreateManyInputObjectZodSchema: z.ZodObject<{
|
|
|
19642
19781
|
id: z.ZodOptional<z.ZodNumber>;
|
|
19643
19782
|
name: z.ZodString;
|
|
19644
19783
|
parentId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
19645
|
-
|
|
19784
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
19785
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
19646
19786
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
19647
19787
|
}, "strict", z.ZodTypeAny, {
|
|
19648
19788
|
name: string;
|
|
19649
19789
|
id?: number | undefined;
|
|
19650
19790
|
updatedAt?: Date | undefined;
|
|
19651
19791
|
parentId?: number | null | undefined;
|
|
19652
|
-
|
|
19792
|
+
pinnedAt?: Date | null | undefined;
|
|
19793
|
+
pinOrder?: number | null | undefined;
|
|
19653
19794
|
}, {
|
|
19654
19795
|
name: string;
|
|
19655
19796
|
id?: number | undefined;
|
|
19656
19797
|
updatedAt?: Date | undefined;
|
|
19657
19798
|
parentId?: number | null | undefined;
|
|
19658
|
-
|
|
19799
|
+
pinnedAt?: Date | null | undefined;
|
|
19800
|
+
pinOrder?: number | null | undefined;
|
|
19659
19801
|
}>;
|
|
19660
19802
|
|
|
19661
19803
|
declare const FolderCreateManyParentInputObjectSchema: z.ZodType<Prisma.FolderCreateManyParentInput>;
|
|
19662
19804
|
declare const FolderCreateManyParentInputObjectZodSchema: z.ZodObject<{
|
|
19663
19805
|
id: z.ZodOptional<z.ZodNumber>;
|
|
19664
19806
|
name: z.ZodString;
|
|
19665
|
-
|
|
19807
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
19808
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
19666
19809
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
19667
19810
|
}, "strict", z.ZodTypeAny, {
|
|
19668
19811
|
name: string;
|
|
19669
19812
|
id?: number | undefined;
|
|
19670
19813
|
updatedAt?: Date | undefined;
|
|
19671
|
-
|
|
19814
|
+
pinnedAt?: Date | null | undefined;
|
|
19815
|
+
pinOrder?: number | null | undefined;
|
|
19672
19816
|
}, {
|
|
19673
19817
|
name: string;
|
|
19674
19818
|
id?: number | undefined;
|
|
19675
19819
|
updatedAt?: Date | undefined;
|
|
19676
|
-
|
|
19820
|
+
pinnedAt?: Date | null | undefined;
|
|
19821
|
+
pinOrder?: number | null | undefined;
|
|
19677
19822
|
}>;
|
|
19678
19823
|
|
|
19679
19824
|
declare const FolderCreateManyParentInputEnvelopeObjectSchema: z.ZodType<Prisma.FolderCreateManyParentInputEnvelope>;
|
|
@@ -19775,20 +19920,23 @@ declare const FolderCreateOrConnectWithoutParentInputObjectZodSchema: z.ZodObjec
|
|
|
19775
19920
|
declare const FolderCreateWithoutChildrenInputObjectSchema: z.ZodType<Prisma.FolderCreateWithoutChildrenInput>;
|
|
19776
19921
|
declare const FolderCreateWithoutChildrenInputObjectZodSchema: z.ZodObject<{
|
|
19777
19922
|
name: z.ZodString;
|
|
19778
|
-
|
|
19923
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
19924
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
19779
19925
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
19780
19926
|
parent: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderCreateNestedOneWithoutChildrenInput, z.ZodTypeDef, Prisma.FolderCreateNestedOneWithoutChildrenInput>>>;
|
|
19781
19927
|
collections: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductCollectionCreateNestedManyWithoutFolderInput, z.ZodTypeDef, Prisma.ProductCollectionCreateNestedManyWithoutFolderInput>>>;
|
|
19782
19928
|
}, "strict", z.ZodTypeAny, {
|
|
19783
19929
|
name: string;
|
|
19784
19930
|
updatedAt?: Date | undefined;
|
|
19785
|
-
|
|
19931
|
+
pinnedAt?: Date | null | undefined;
|
|
19932
|
+
pinOrder?: number | null | undefined;
|
|
19786
19933
|
collections?: Prisma.ProductCollectionCreateNestedManyWithoutFolderInput | undefined;
|
|
19787
19934
|
parent?: Prisma.FolderCreateNestedOneWithoutChildrenInput | undefined;
|
|
19788
19935
|
}, {
|
|
19789
19936
|
name: string;
|
|
19790
19937
|
updatedAt?: Date | undefined;
|
|
19791
|
-
|
|
19938
|
+
pinnedAt?: Date | null | undefined;
|
|
19939
|
+
pinOrder?: number | null | undefined;
|
|
19792
19940
|
collections?: Prisma.ProductCollectionCreateNestedManyWithoutFolderInput | undefined;
|
|
19793
19941
|
parent?: Prisma.FolderCreateNestedOneWithoutChildrenInput | undefined;
|
|
19794
19942
|
}>;
|
|
@@ -19796,20 +19944,23 @@ declare const FolderCreateWithoutChildrenInputObjectZodSchema: z.ZodObject<{
|
|
|
19796
19944
|
declare const FolderCreateWithoutCollectionsInputObjectSchema: z.ZodType<Prisma.FolderCreateWithoutCollectionsInput>;
|
|
19797
19945
|
declare const FolderCreateWithoutCollectionsInputObjectZodSchema: z.ZodObject<{
|
|
19798
19946
|
name: z.ZodString;
|
|
19799
|
-
|
|
19947
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
19948
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
19800
19949
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
19801
19950
|
parent: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderCreateNestedOneWithoutChildrenInput, z.ZodTypeDef, Prisma.FolderCreateNestedOneWithoutChildrenInput>>>;
|
|
19802
19951
|
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderCreateNestedManyWithoutParentInput, z.ZodTypeDef, Prisma.FolderCreateNestedManyWithoutParentInput>>>;
|
|
19803
19952
|
}, "strict", z.ZodTypeAny, {
|
|
19804
19953
|
name: string;
|
|
19805
19954
|
updatedAt?: Date | undefined;
|
|
19806
|
-
|
|
19955
|
+
pinnedAt?: Date | null | undefined;
|
|
19956
|
+
pinOrder?: number | null | undefined;
|
|
19807
19957
|
parent?: Prisma.FolderCreateNestedOneWithoutChildrenInput | undefined;
|
|
19808
19958
|
children?: Prisma.FolderCreateNestedManyWithoutParentInput | undefined;
|
|
19809
19959
|
}, {
|
|
19810
19960
|
name: string;
|
|
19811
19961
|
updatedAt?: Date | undefined;
|
|
19812
|
-
|
|
19962
|
+
pinnedAt?: Date | null | undefined;
|
|
19963
|
+
pinOrder?: number | null | undefined;
|
|
19813
19964
|
parent?: Prisma.FolderCreateNestedOneWithoutChildrenInput | undefined;
|
|
19814
19965
|
children?: Prisma.FolderCreateNestedManyWithoutParentInput | undefined;
|
|
19815
19966
|
}>;
|
|
@@ -19817,20 +19968,23 @@ declare const FolderCreateWithoutCollectionsInputObjectZodSchema: z.ZodObject<{
|
|
|
19817
19968
|
declare const FolderCreateWithoutParentInputObjectSchema: z.ZodType<Prisma.FolderCreateWithoutParentInput>;
|
|
19818
19969
|
declare const FolderCreateWithoutParentInputObjectZodSchema: z.ZodObject<{
|
|
19819
19970
|
name: z.ZodString;
|
|
19820
|
-
|
|
19971
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
19972
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
19821
19973
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
19822
19974
|
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderCreateNestedManyWithoutParentInput, z.ZodTypeDef, Prisma.FolderCreateNestedManyWithoutParentInput>>>;
|
|
19823
19975
|
collections: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductCollectionCreateNestedManyWithoutFolderInput, z.ZodTypeDef, Prisma.ProductCollectionCreateNestedManyWithoutFolderInput>>>;
|
|
19824
19976
|
}, "strict", z.ZodTypeAny, {
|
|
19825
19977
|
name: string;
|
|
19826
19978
|
updatedAt?: Date | undefined;
|
|
19827
|
-
|
|
19979
|
+
pinnedAt?: Date | null | undefined;
|
|
19980
|
+
pinOrder?: number | null | undefined;
|
|
19828
19981
|
collections?: Prisma.ProductCollectionCreateNestedManyWithoutFolderInput | undefined;
|
|
19829
19982
|
children?: Prisma.FolderCreateNestedManyWithoutParentInput | undefined;
|
|
19830
19983
|
}, {
|
|
19831
19984
|
name: string;
|
|
19832
19985
|
updatedAt?: Date | undefined;
|
|
19833
|
-
|
|
19986
|
+
pinnedAt?: Date | null | undefined;
|
|
19987
|
+
pinOrder?: number | null | undefined;
|
|
19834
19988
|
collections?: Prisma.ProductCollectionCreateNestedManyWithoutFolderInput | undefined;
|
|
19835
19989
|
children?: Prisma.FolderCreateNestedManyWithoutParentInput | undefined;
|
|
19836
19990
|
}>;
|
|
@@ -19898,20 +20052,23 @@ declare const FolderMaxAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
19898
20052
|
id: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19899
20053
|
name: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19900
20054
|
parentId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19901
|
-
|
|
20055
|
+
pinnedAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
20056
|
+
pinOrder: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19902
20057
|
updatedAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19903
20058
|
}, "strict", z.ZodTypeAny, {
|
|
19904
20059
|
id?: true | undefined;
|
|
19905
20060
|
name?: true | undefined;
|
|
19906
20061
|
updatedAt?: true | undefined;
|
|
19907
20062
|
parentId?: true | undefined;
|
|
19908
|
-
|
|
20063
|
+
pinnedAt?: true | undefined;
|
|
20064
|
+
pinOrder?: true | undefined;
|
|
19909
20065
|
}, {
|
|
19910
20066
|
id?: true | undefined;
|
|
19911
20067
|
name?: true | undefined;
|
|
19912
20068
|
updatedAt?: true | undefined;
|
|
19913
20069
|
parentId?: true | undefined;
|
|
19914
|
-
|
|
20070
|
+
pinnedAt?: true | undefined;
|
|
20071
|
+
pinOrder?: true | undefined;
|
|
19915
20072
|
}>;
|
|
19916
20073
|
|
|
19917
20074
|
declare const FolderMaxOrderByAggregateInputObjectSchema: z.ZodType<Prisma.FolderMaxOrderByAggregateInput>;
|
|
@@ -19919,20 +20076,23 @@ declare const FolderMaxOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
19919
20076
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19920
20077
|
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19921
20078
|
parentId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19922
|
-
|
|
20079
|
+
pinnedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
20080
|
+
pinOrder: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19923
20081
|
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19924
20082
|
}, "strict", z.ZodTypeAny, {
|
|
19925
20083
|
id?: "asc" | "desc" | undefined;
|
|
19926
20084
|
name?: "asc" | "desc" | undefined;
|
|
19927
20085
|
updatedAt?: "asc" | "desc" | undefined;
|
|
19928
20086
|
parentId?: "asc" | "desc" | undefined;
|
|
19929
|
-
|
|
20087
|
+
pinnedAt?: "asc" | "desc" | undefined;
|
|
20088
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
19930
20089
|
}, {
|
|
19931
20090
|
id?: "asc" | "desc" | undefined;
|
|
19932
20091
|
name?: "asc" | "desc" | undefined;
|
|
19933
20092
|
updatedAt?: "asc" | "desc" | undefined;
|
|
19934
20093
|
parentId?: "asc" | "desc" | undefined;
|
|
19935
|
-
|
|
20094
|
+
pinnedAt?: "asc" | "desc" | undefined;
|
|
20095
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
19936
20096
|
}>;
|
|
19937
20097
|
|
|
19938
20098
|
declare const FolderMinAggregateInputObjectSchema: z.ZodType<Prisma.FolderMinAggregateInputType>;
|
|
@@ -19940,20 +20100,23 @@ declare const FolderMinAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
19940
20100
|
id: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19941
20101
|
name: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19942
20102
|
parentId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19943
|
-
|
|
20103
|
+
pinnedAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
20104
|
+
pinOrder: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19944
20105
|
updatedAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
19945
20106
|
}, "strict", z.ZodTypeAny, {
|
|
19946
20107
|
id?: true | undefined;
|
|
19947
20108
|
name?: true | undefined;
|
|
19948
20109
|
updatedAt?: true | undefined;
|
|
19949
20110
|
parentId?: true | undefined;
|
|
19950
|
-
|
|
20111
|
+
pinnedAt?: true | undefined;
|
|
20112
|
+
pinOrder?: true | undefined;
|
|
19951
20113
|
}, {
|
|
19952
20114
|
id?: true | undefined;
|
|
19953
20115
|
name?: true | undefined;
|
|
19954
20116
|
updatedAt?: true | undefined;
|
|
19955
20117
|
parentId?: true | undefined;
|
|
19956
|
-
|
|
20118
|
+
pinnedAt?: true | undefined;
|
|
20119
|
+
pinOrder?: true | undefined;
|
|
19957
20120
|
}>;
|
|
19958
20121
|
|
|
19959
20122
|
declare const FolderMinOrderByAggregateInputObjectSchema: z.ZodType<Prisma.FolderMinOrderByAggregateInput>;
|
|
@@ -19961,20 +20124,23 @@ declare const FolderMinOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
19961
20124
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19962
20125
|
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19963
20126
|
parentId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19964
|
-
|
|
20127
|
+
pinnedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
20128
|
+
pinOrder: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19965
20129
|
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
19966
20130
|
}, "strict", z.ZodTypeAny, {
|
|
19967
20131
|
id?: "asc" | "desc" | undefined;
|
|
19968
20132
|
name?: "asc" | "desc" | undefined;
|
|
19969
20133
|
updatedAt?: "asc" | "desc" | undefined;
|
|
19970
20134
|
parentId?: "asc" | "desc" | undefined;
|
|
19971
|
-
|
|
20135
|
+
pinnedAt?: "asc" | "desc" | undefined;
|
|
20136
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
19972
20137
|
}, {
|
|
19973
20138
|
id?: "asc" | "desc" | undefined;
|
|
19974
20139
|
name?: "asc" | "desc" | undefined;
|
|
19975
20140
|
updatedAt?: "asc" | "desc" | undefined;
|
|
19976
20141
|
parentId?: "asc" | "desc" | undefined;
|
|
19977
|
-
|
|
20142
|
+
pinnedAt?: "asc" | "desc" | undefined;
|
|
20143
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
19978
20144
|
}>;
|
|
19979
20145
|
|
|
19980
20146
|
declare const FolderNullableScalarRelationFilterObjectSchema: z.ZodType<Prisma.FolderNullableScalarRelationFilter>;
|
|
@@ -20003,7 +20169,8 @@ declare const FolderOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
|
|
|
20003
20169
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
20004
20170
|
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
20005
20171
|
parentId: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
20006
|
-
|
|
20172
|
+
pinnedAt: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
20173
|
+
pinOrder: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
20007
20174
|
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
20008
20175
|
_count: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderCountOrderByAggregateInput, z.ZodTypeDef, Prisma.FolderCountOrderByAggregateInput>>>;
|
|
20009
20176
|
_avg: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderAvgOrderByAggregateInput, z.ZodTypeDef, Prisma.FolderAvgOrderByAggregateInput>>>;
|
|
@@ -20015,7 +20182,8 @@ declare const FolderOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
|
|
|
20015
20182
|
name?: "asc" | "desc" | undefined;
|
|
20016
20183
|
updatedAt?: "asc" | "desc" | undefined;
|
|
20017
20184
|
parentId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
20018
|
-
|
|
20185
|
+
pinnedAt?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
20186
|
+
pinOrder?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
20019
20187
|
_count?: Prisma.FolderCountOrderByAggregateInput | undefined;
|
|
20020
20188
|
_min?: Prisma.FolderMinOrderByAggregateInput | undefined;
|
|
20021
20189
|
_max?: Prisma.FolderMaxOrderByAggregateInput | undefined;
|
|
@@ -20026,7 +20194,8 @@ declare const FolderOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
|
|
|
20026
20194
|
name?: "asc" | "desc" | undefined;
|
|
20027
20195
|
updatedAt?: "asc" | "desc" | undefined;
|
|
20028
20196
|
parentId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
20029
|
-
|
|
20197
|
+
pinnedAt?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
20198
|
+
pinOrder?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
20030
20199
|
_count?: Prisma.FolderCountOrderByAggregateInput | undefined;
|
|
20031
20200
|
_min?: Prisma.FolderMinOrderByAggregateInput | undefined;
|
|
20032
20201
|
_max?: Prisma.FolderMaxOrderByAggregateInput | undefined;
|
|
@@ -20039,7 +20208,8 @@ declare const FolderOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
|
|
20039
20208
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
20040
20209
|
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
20041
20210
|
parentId: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
20042
|
-
|
|
20211
|
+
pinnedAt: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
20212
|
+
pinOrder: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
20043
20213
|
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
20044
20214
|
parent: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderOrderByWithRelationInput, z.ZodTypeDef, Prisma.FolderOrderByWithRelationInput>>>;
|
|
20045
20215
|
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderOrderByRelationAggregateInput, z.ZodTypeDef, Prisma.FolderOrderByRelationAggregateInput>>>;
|
|
@@ -20049,7 +20219,8 @@ declare const FolderOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
|
|
20049
20219
|
name?: "asc" | "desc" | undefined;
|
|
20050
20220
|
updatedAt?: "asc" | "desc" | undefined;
|
|
20051
20221
|
parentId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
20052
|
-
|
|
20222
|
+
pinnedAt?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
20223
|
+
pinOrder?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
20053
20224
|
collections?: Prisma.ProductCollectionOrderByRelationAggregateInput | undefined;
|
|
20054
20225
|
parent?: Prisma.FolderOrderByWithRelationInput | undefined;
|
|
20055
20226
|
children?: Prisma.FolderOrderByRelationAggregateInput | undefined;
|
|
@@ -20058,7 +20229,8 @@ declare const FolderOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
|
|
20058
20229
|
name?: "asc" | "desc" | undefined;
|
|
20059
20230
|
updatedAt?: "asc" | "desc" | undefined;
|
|
20060
20231
|
parentId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
20061
|
-
|
|
20232
|
+
pinnedAt?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
20233
|
+
pinOrder?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
20062
20234
|
collections?: Prisma.ProductCollectionOrderByRelationAggregateInput | undefined;
|
|
20063
20235
|
parent?: Prisma.FolderOrderByWithRelationInput | undefined;
|
|
20064
20236
|
children?: Prisma.FolderOrderByRelationAggregateInput | undefined;
|
|
@@ -20072,14 +20244,16 @@ declare const FolderScalarWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
20072
20244
|
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
|
20073
20245
|
name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
20074
20246
|
parentId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
20075
|
-
|
|
20247
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeNullableFilter<never>, z.ZodTypeDef, Prisma.DateTimeNullableFilter<never>>>, z.ZodDate]>>>;
|
|
20248
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
20076
20249
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
20077
20250
|
}, "strict", z.ZodTypeAny, {
|
|
20078
20251
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
20079
20252
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
20080
20253
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
20081
20254
|
parentId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
20082
|
-
|
|
20255
|
+
pinnedAt?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
20256
|
+
pinOrder?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
20083
20257
|
AND?: Prisma.FolderScalarWhereInput | Prisma.FolderScalarWhereInput[] | undefined;
|
|
20084
20258
|
OR?: Prisma.FolderScalarWhereInput[] | undefined;
|
|
20085
20259
|
NOT?: Prisma.FolderScalarWhereInput | Prisma.FolderScalarWhereInput[] | undefined;
|
|
@@ -20088,7 +20262,8 @@ declare const FolderScalarWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
20088
20262
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
20089
20263
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
20090
20264
|
parentId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
20091
|
-
|
|
20265
|
+
pinnedAt?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
20266
|
+
pinOrder?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
20092
20267
|
AND?: Prisma.FolderScalarWhereInput | Prisma.FolderScalarWhereInput[] | undefined;
|
|
20093
20268
|
OR?: Prisma.FolderScalarWhereInput[] | undefined;
|
|
20094
20269
|
NOT?: Prisma.FolderScalarWhereInput | Prisma.FolderScalarWhereInput[] | undefined;
|
|
@@ -20102,14 +20277,16 @@ declare const FolderScalarWhereWithAggregatesInputObjectZodSchema: z.ZodObject<{
|
|
|
20102
20277
|
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntWithAggregatesFilter<never>>>, z.ZodNumber]>>;
|
|
20103
20278
|
name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
|
|
20104
20279
|
parentId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntNullableWithAggregatesFilter<never>>>, z.ZodNumber]>>>;
|
|
20105
|
-
|
|
20280
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.DateTimeNullableWithAggregatesFilter<never>>>, z.ZodDate]>>>;
|
|
20281
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntNullableWithAggregatesFilter<never>>>, z.ZodNumber]>>>;
|
|
20106
20282
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.DateTimeWithAggregatesFilter<never>>>, z.ZodDate]>>;
|
|
20107
20283
|
}, "strict", z.ZodTypeAny, {
|
|
20108
20284
|
id?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
|
|
20109
20285
|
name?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
20110
20286
|
updatedAt?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
|
|
20111
20287
|
parentId?: number | Prisma.IntNullableWithAggregatesFilter<never> | null | undefined;
|
|
20112
|
-
|
|
20288
|
+
pinnedAt?: Date | Prisma.DateTimeNullableWithAggregatesFilter<never> | null | undefined;
|
|
20289
|
+
pinOrder?: number | Prisma.IntNullableWithAggregatesFilter<never> | null | undefined;
|
|
20113
20290
|
AND?: Prisma.FolderScalarWhereWithAggregatesInput | Prisma.FolderScalarWhereWithAggregatesInput[] | undefined;
|
|
20114
20291
|
OR?: Prisma.FolderScalarWhereWithAggregatesInput[] | undefined;
|
|
20115
20292
|
NOT?: Prisma.FolderScalarWhereWithAggregatesInput | Prisma.FolderScalarWhereWithAggregatesInput[] | undefined;
|
|
@@ -20118,7 +20295,8 @@ declare const FolderScalarWhereWithAggregatesInputObjectZodSchema: z.ZodObject<{
|
|
|
20118
20295
|
name?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
20119
20296
|
updatedAt?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
|
|
20120
20297
|
parentId?: number | Prisma.IntNullableWithAggregatesFilter<never> | null | undefined;
|
|
20121
|
-
|
|
20298
|
+
pinnedAt?: Date | Prisma.DateTimeNullableWithAggregatesFilter<never> | null | undefined;
|
|
20299
|
+
pinOrder?: number | Prisma.IntNullableWithAggregatesFilter<never> | null | undefined;
|
|
20122
20300
|
AND?: Prisma.FolderScalarWhereWithAggregatesInput | Prisma.FolderScalarWhereWithAggregatesInput[] | undefined;
|
|
20123
20301
|
OR?: Prisma.FolderScalarWhereWithAggregatesInput[] | undefined;
|
|
20124
20302
|
NOT?: Prisma.FolderScalarWhereWithAggregatesInput | Prisma.FolderScalarWhereWithAggregatesInput[] | undefined;
|
|
@@ -20129,7 +20307,8 @@ declare const FolderSelectObjectZodSchema: z.ZodObject<{
|
|
|
20129
20307
|
id: z.ZodOptional<z.ZodBoolean>;
|
|
20130
20308
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
20131
20309
|
parentId: z.ZodOptional<z.ZodBoolean>;
|
|
20132
|
-
|
|
20310
|
+
pinnedAt: z.ZodOptional<z.ZodBoolean>;
|
|
20311
|
+
pinOrder: z.ZodOptional<z.ZodBoolean>;
|
|
20133
20312
|
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
|
20134
20313
|
parent: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
|
20135
20314
|
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderSelect<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.FolderSelect<_prisma_client_runtime_library.DefaultArgs>>>>;
|
|
@@ -20155,7 +20334,8 @@ declare const FolderSelectObjectZodSchema: z.ZodObject<{
|
|
|
20155
20334
|
name?: boolean | undefined;
|
|
20156
20335
|
updatedAt?: boolean | undefined;
|
|
20157
20336
|
parentId?: boolean | undefined;
|
|
20158
|
-
|
|
20337
|
+
pinnedAt?: boolean | undefined;
|
|
20338
|
+
pinOrder?: boolean | undefined;
|
|
20159
20339
|
collections?: boolean | Prisma.ProductCollectionFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
20160
20340
|
parent?: boolean | {
|
|
20161
20341
|
select?: Prisma.FolderSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -20170,7 +20350,8 @@ declare const FolderSelectObjectZodSchema: z.ZodObject<{
|
|
|
20170
20350
|
name?: boolean | undefined;
|
|
20171
20351
|
updatedAt?: boolean | undefined;
|
|
20172
20352
|
parentId?: boolean | undefined;
|
|
20173
|
-
|
|
20353
|
+
pinnedAt?: boolean | undefined;
|
|
20354
|
+
pinOrder?: boolean | undefined;
|
|
20174
20355
|
collections?: boolean | Prisma.ProductCollectionFindManyArgs<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
20175
20356
|
parent?: boolean | {
|
|
20176
20357
|
select?: Prisma.FolderSelect<_prisma_client_runtime_library.DefaultArgs> | undefined;
|
|
@@ -20186,30 +20367,30 @@ declare const FolderSumAggregateInputObjectSchema: z.ZodType<Prisma.FolderSumAgg
|
|
|
20186
20367
|
declare const FolderSumAggregateInputObjectZodSchema: z.ZodObject<{
|
|
20187
20368
|
id: z.ZodOptional<z.ZodLiteral<true>>;
|
|
20188
20369
|
parentId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
20189
|
-
|
|
20370
|
+
pinOrder: z.ZodOptional<z.ZodLiteral<true>>;
|
|
20190
20371
|
}, "strict", z.ZodTypeAny, {
|
|
20191
20372
|
id?: true | undefined;
|
|
20192
20373
|
parentId?: true | undefined;
|
|
20193
|
-
|
|
20374
|
+
pinOrder?: true | undefined;
|
|
20194
20375
|
}, {
|
|
20195
20376
|
id?: true | undefined;
|
|
20196
20377
|
parentId?: true | undefined;
|
|
20197
|
-
|
|
20378
|
+
pinOrder?: true | undefined;
|
|
20198
20379
|
}>;
|
|
20199
20380
|
|
|
20200
20381
|
declare const FolderSumOrderByAggregateInputObjectSchema: z.ZodType<Prisma.FolderSumOrderByAggregateInput>;
|
|
20201
20382
|
declare const FolderSumOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
20202
20383
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
20203
20384
|
parentId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
20204
|
-
|
|
20385
|
+
pinOrder: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
20205
20386
|
}, "strict", z.ZodTypeAny, {
|
|
20206
20387
|
id?: "asc" | "desc" | undefined;
|
|
20207
20388
|
parentId?: "asc" | "desc" | undefined;
|
|
20208
|
-
|
|
20389
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
20209
20390
|
}, {
|
|
20210
20391
|
id?: "asc" | "desc" | undefined;
|
|
20211
20392
|
parentId?: "asc" | "desc" | undefined;
|
|
20212
|
-
|
|
20393
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
20213
20394
|
}>;
|
|
20214
20395
|
|
|
20215
20396
|
declare const FolderUncheckedCreateInputObjectSchema: z.ZodType<Prisma.FolderUncheckedCreateInput>;
|
|
@@ -20217,21 +20398,24 @@ declare const FolderUncheckedCreateInputObjectZodSchema: z.ZodObject<{
|
|
|
20217
20398
|
id: z.ZodOptional<z.ZodNumber>;
|
|
20218
20399
|
name: z.ZodString;
|
|
20219
20400
|
parentId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
20220
|
-
|
|
20401
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
20402
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
20221
20403
|
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderUncheckedCreateNestedManyWithoutParentInput, z.ZodTypeDef, Prisma.FolderUncheckedCreateNestedManyWithoutParentInput>>>;
|
|
20222
20404
|
collections: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductCollectionUncheckedCreateNestedManyWithoutFolderInput, z.ZodTypeDef, Prisma.ProductCollectionUncheckedCreateNestedManyWithoutFolderInput>>>;
|
|
20223
20405
|
}, "strict", z.ZodTypeAny, {
|
|
20224
20406
|
name: string;
|
|
20225
20407
|
id?: number | undefined;
|
|
20226
20408
|
parentId?: number | null | undefined;
|
|
20227
|
-
|
|
20409
|
+
pinnedAt?: Date | null | undefined;
|
|
20410
|
+
pinOrder?: number | null | undefined;
|
|
20228
20411
|
collections?: Prisma.ProductCollectionUncheckedCreateNestedManyWithoutFolderInput | undefined;
|
|
20229
20412
|
children?: Prisma.FolderUncheckedCreateNestedManyWithoutParentInput | undefined;
|
|
20230
20413
|
}, {
|
|
20231
20414
|
name: string;
|
|
20232
20415
|
id?: number | undefined;
|
|
20233
20416
|
parentId?: number | null | undefined;
|
|
20234
|
-
|
|
20417
|
+
pinnedAt?: Date | null | undefined;
|
|
20418
|
+
pinOrder?: number | null | undefined;
|
|
20235
20419
|
collections?: Prisma.ProductCollectionUncheckedCreateNestedManyWithoutFolderInput | undefined;
|
|
20236
20420
|
children?: Prisma.FolderUncheckedCreateNestedManyWithoutParentInput | undefined;
|
|
20237
20421
|
}>;
|
|
@@ -20259,7 +20443,8 @@ declare const FolderUncheckedCreateWithoutChildrenInputObjectZodSchema: z.ZodObj
|
|
|
20259
20443
|
id: z.ZodOptional<z.ZodNumber>;
|
|
20260
20444
|
name: z.ZodString;
|
|
20261
20445
|
parentId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
20262
|
-
|
|
20446
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
20447
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
20263
20448
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
20264
20449
|
collections: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductCollectionUncheckedCreateNestedManyWithoutFolderInput, z.ZodTypeDef, Prisma.ProductCollectionUncheckedCreateNestedManyWithoutFolderInput>>>;
|
|
20265
20450
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -20267,14 +20452,16 @@ declare const FolderUncheckedCreateWithoutChildrenInputObjectZodSchema: z.ZodObj
|
|
|
20267
20452
|
id?: number | undefined;
|
|
20268
20453
|
updatedAt?: Date | undefined;
|
|
20269
20454
|
parentId?: number | null | undefined;
|
|
20270
|
-
|
|
20455
|
+
pinnedAt?: Date | null | undefined;
|
|
20456
|
+
pinOrder?: number | null | undefined;
|
|
20271
20457
|
collections?: Prisma.ProductCollectionUncheckedCreateNestedManyWithoutFolderInput | undefined;
|
|
20272
20458
|
}, {
|
|
20273
20459
|
name: string;
|
|
20274
20460
|
id?: number | undefined;
|
|
20275
20461
|
updatedAt?: Date | undefined;
|
|
20276
20462
|
parentId?: number | null | undefined;
|
|
20277
|
-
|
|
20463
|
+
pinnedAt?: Date | null | undefined;
|
|
20464
|
+
pinOrder?: number | null | undefined;
|
|
20278
20465
|
collections?: Prisma.ProductCollectionUncheckedCreateNestedManyWithoutFolderInput | undefined;
|
|
20279
20466
|
}>;
|
|
20280
20467
|
|
|
@@ -20283,7 +20470,8 @@ declare const FolderUncheckedCreateWithoutCollectionsInputObjectZodSchema: z.Zod
|
|
|
20283
20470
|
id: z.ZodOptional<z.ZodNumber>;
|
|
20284
20471
|
name: z.ZodString;
|
|
20285
20472
|
parentId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
20286
|
-
|
|
20473
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
20474
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
20287
20475
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
20288
20476
|
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderUncheckedCreateNestedManyWithoutParentInput, z.ZodTypeDef, Prisma.FolderUncheckedCreateNestedManyWithoutParentInput>>>;
|
|
20289
20477
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -20291,14 +20479,16 @@ declare const FolderUncheckedCreateWithoutCollectionsInputObjectZodSchema: z.Zod
|
|
|
20291
20479
|
id?: number | undefined;
|
|
20292
20480
|
updatedAt?: Date | undefined;
|
|
20293
20481
|
parentId?: number | null | undefined;
|
|
20294
|
-
|
|
20482
|
+
pinnedAt?: Date | null | undefined;
|
|
20483
|
+
pinOrder?: number | null | undefined;
|
|
20295
20484
|
children?: Prisma.FolderUncheckedCreateNestedManyWithoutParentInput | undefined;
|
|
20296
20485
|
}, {
|
|
20297
20486
|
name: string;
|
|
20298
20487
|
id?: number | undefined;
|
|
20299
20488
|
updatedAt?: Date | undefined;
|
|
20300
20489
|
parentId?: number | null | undefined;
|
|
20301
|
-
|
|
20490
|
+
pinnedAt?: Date | null | undefined;
|
|
20491
|
+
pinOrder?: number | null | undefined;
|
|
20302
20492
|
children?: Prisma.FolderUncheckedCreateNestedManyWithoutParentInput | undefined;
|
|
20303
20493
|
}>;
|
|
20304
20494
|
|
|
@@ -20306,7 +20496,8 @@ declare const FolderUncheckedCreateWithoutParentInputObjectSchema: z.ZodType<Pri
|
|
|
20306
20496
|
declare const FolderUncheckedCreateWithoutParentInputObjectZodSchema: z.ZodObject<{
|
|
20307
20497
|
id: z.ZodOptional<z.ZodNumber>;
|
|
20308
20498
|
name: z.ZodString;
|
|
20309
|
-
|
|
20499
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
20500
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
20310
20501
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
20311
20502
|
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderUncheckedCreateNestedManyWithoutParentInput, z.ZodTypeDef, Prisma.FolderUncheckedCreateNestedManyWithoutParentInput>>>;
|
|
20312
20503
|
collections: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductCollectionUncheckedCreateNestedManyWithoutFolderInput, z.ZodTypeDef, Prisma.ProductCollectionUncheckedCreateNestedManyWithoutFolderInput>>>;
|
|
@@ -20314,14 +20505,16 @@ declare const FolderUncheckedCreateWithoutParentInputObjectZodSchema: z.ZodObjec
|
|
|
20314
20505
|
name: string;
|
|
20315
20506
|
id?: number | undefined;
|
|
20316
20507
|
updatedAt?: Date | undefined;
|
|
20317
|
-
|
|
20508
|
+
pinnedAt?: Date | null | undefined;
|
|
20509
|
+
pinOrder?: number | null | undefined;
|
|
20318
20510
|
collections?: Prisma.ProductCollectionUncheckedCreateNestedManyWithoutFolderInput | undefined;
|
|
20319
20511
|
children?: Prisma.FolderUncheckedCreateNestedManyWithoutParentInput | undefined;
|
|
20320
20512
|
}, {
|
|
20321
20513
|
name: string;
|
|
20322
20514
|
id?: number | undefined;
|
|
20323
20515
|
updatedAt?: Date | undefined;
|
|
20324
|
-
|
|
20516
|
+
pinnedAt?: Date | null | undefined;
|
|
20517
|
+
pinOrder?: number | null | undefined;
|
|
20325
20518
|
collections?: Prisma.ProductCollectionUncheckedCreateNestedManyWithoutFolderInput | undefined;
|
|
20326
20519
|
children?: Prisma.FolderUncheckedCreateNestedManyWithoutParentInput | undefined;
|
|
20327
20520
|
}>;
|
|
@@ -20331,7 +20524,8 @@ declare const FolderUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
20331
20524
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
20332
20525
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
20333
20526
|
parentId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
20334
|
-
|
|
20527
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
20528
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
20335
20529
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
20336
20530
|
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderUncheckedUpdateManyWithoutParentNestedInput, z.ZodTypeDef, Prisma.FolderUncheckedUpdateManyWithoutParentNestedInput>>>;
|
|
20337
20531
|
collections: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductCollectionUncheckedUpdateManyWithoutFolderNestedInput, z.ZodTypeDef, Prisma.ProductCollectionUncheckedUpdateManyWithoutFolderNestedInput>>>;
|
|
@@ -20340,7 +20534,8 @@ declare const FolderUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
20340
20534
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20341
20535
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20342
20536
|
parentId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20343
|
-
|
|
20537
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20538
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20344
20539
|
collections?: Prisma.ProductCollectionUncheckedUpdateManyWithoutFolderNestedInput | undefined;
|
|
20345
20540
|
children?: Prisma.FolderUncheckedUpdateManyWithoutParentNestedInput | undefined;
|
|
20346
20541
|
}, {
|
|
@@ -20348,7 +20543,8 @@ declare const FolderUncheckedUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
20348
20543
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20349
20544
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20350
20545
|
parentId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20351
|
-
|
|
20546
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20547
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20352
20548
|
collections?: Prisma.ProductCollectionUncheckedUpdateManyWithoutFolderNestedInput | undefined;
|
|
20353
20549
|
children?: Prisma.FolderUncheckedUpdateManyWithoutParentNestedInput | undefined;
|
|
20354
20550
|
}>;
|
|
@@ -20358,38 +20554,44 @@ declare const FolderUncheckedUpdateManyInputObjectZodSchema: z.ZodObject<{
|
|
|
20358
20554
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
20359
20555
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
20360
20556
|
parentId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
20361
|
-
|
|
20557
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
20558
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
20362
20559
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
20363
20560
|
}, "strict", z.ZodTypeAny, {
|
|
20364
20561
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
20365
20562
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20366
20563
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20367
20564
|
parentId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20368
|
-
|
|
20565
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20566
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20369
20567
|
}, {
|
|
20370
20568
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
20371
20569
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20372
20570
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20373
20571
|
parentId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20374
|
-
|
|
20572
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20573
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20375
20574
|
}>;
|
|
20376
20575
|
|
|
20377
20576
|
declare const FolderUncheckedUpdateManyWithoutParentInputObjectSchema: z.ZodType<Prisma.FolderUncheckedUpdateManyWithoutParentInput>;
|
|
20378
20577
|
declare const FolderUncheckedUpdateManyWithoutParentInputObjectZodSchema: z.ZodObject<{
|
|
20379
20578
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
20380
20579
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
20381
|
-
|
|
20580
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
20581
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
20382
20582
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
20383
20583
|
}, "strict", z.ZodTypeAny, {
|
|
20384
20584
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
20385
20585
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20386
20586
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20387
|
-
|
|
20587
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20588
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20388
20589
|
}, {
|
|
20389
20590
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
20390
20591
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20391
20592
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20392
|
-
|
|
20593
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20594
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20393
20595
|
}>;
|
|
20394
20596
|
|
|
20395
20597
|
declare const FolderUncheckedUpdateManyWithoutParentNestedInputObjectSchema: z.ZodType<Prisma.FolderUncheckedUpdateManyWithoutParentNestedInput>;
|
|
@@ -20436,7 +20638,8 @@ declare const FolderUncheckedUpdateWithoutChildrenInputObjectZodSchema: z.ZodObj
|
|
|
20436
20638
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
20437
20639
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
20438
20640
|
parentId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
20439
|
-
|
|
20641
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
20642
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
20440
20643
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
20441
20644
|
collections: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductCollectionUncheckedUpdateManyWithoutFolderNestedInput, z.ZodTypeDef, Prisma.ProductCollectionUncheckedUpdateManyWithoutFolderNestedInput>>>;
|
|
20442
20645
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -20444,14 +20647,16 @@ declare const FolderUncheckedUpdateWithoutChildrenInputObjectZodSchema: z.ZodObj
|
|
|
20444
20647
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20445
20648
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20446
20649
|
parentId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20447
|
-
|
|
20650
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20651
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20448
20652
|
collections?: Prisma.ProductCollectionUncheckedUpdateManyWithoutFolderNestedInput | undefined;
|
|
20449
20653
|
}, {
|
|
20450
20654
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
20451
20655
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20452
20656
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20453
20657
|
parentId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20454
|
-
|
|
20658
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20659
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20455
20660
|
collections?: Prisma.ProductCollectionUncheckedUpdateManyWithoutFolderNestedInput | undefined;
|
|
20456
20661
|
}>;
|
|
20457
20662
|
|
|
@@ -20460,7 +20665,8 @@ declare const FolderUncheckedUpdateWithoutCollectionsInputObjectZodSchema: z.Zod
|
|
|
20460
20665
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
20461
20666
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
20462
20667
|
parentId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
20463
|
-
|
|
20668
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
20669
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
20464
20670
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
20465
20671
|
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderUncheckedUpdateManyWithoutParentNestedInput, z.ZodTypeDef, Prisma.FolderUncheckedUpdateManyWithoutParentNestedInput>>>;
|
|
20466
20672
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -20468,14 +20674,16 @@ declare const FolderUncheckedUpdateWithoutCollectionsInputObjectZodSchema: z.Zod
|
|
|
20468
20674
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20469
20675
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20470
20676
|
parentId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20471
|
-
|
|
20677
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20678
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20472
20679
|
children?: Prisma.FolderUncheckedUpdateManyWithoutParentNestedInput | undefined;
|
|
20473
20680
|
}, {
|
|
20474
20681
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
20475
20682
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20476
20683
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20477
20684
|
parentId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20478
|
-
|
|
20685
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20686
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20479
20687
|
children?: Prisma.FolderUncheckedUpdateManyWithoutParentNestedInput | undefined;
|
|
20480
20688
|
}>;
|
|
20481
20689
|
|
|
@@ -20483,7 +20691,8 @@ declare const FolderUncheckedUpdateWithoutParentInputObjectSchema: z.ZodType<Pri
|
|
|
20483
20691
|
declare const FolderUncheckedUpdateWithoutParentInputObjectZodSchema: z.ZodObject<{
|
|
20484
20692
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
20485
20693
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
20486
|
-
|
|
20694
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
20695
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
20487
20696
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
20488
20697
|
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderUncheckedUpdateManyWithoutParentNestedInput, z.ZodTypeDef, Prisma.FolderUncheckedUpdateManyWithoutParentNestedInput>>>;
|
|
20489
20698
|
collections: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductCollectionUncheckedUpdateManyWithoutFolderNestedInput, z.ZodTypeDef, Prisma.ProductCollectionUncheckedUpdateManyWithoutFolderNestedInput>>>;
|
|
@@ -20491,14 +20700,16 @@ declare const FolderUncheckedUpdateWithoutParentInputObjectZodSchema: z.ZodObjec
|
|
|
20491
20700
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
20492
20701
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20493
20702
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20494
|
-
|
|
20703
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20704
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20495
20705
|
collections?: Prisma.ProductCollectionUncheckedUpdateManyWithoutFolderNestedInput | undefined;
|
|
20496
20706
|
children?: Prisma.FolderUncheckedUpdateManyWithoutParentNestedInput | undefined;
|
|
20497
20707
|
}, {
|
|
20498
20708
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
20499
20709
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20500
20710
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20501
|
-
|
|
20711
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20712
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20502
20713
|
collections?: Prisma.ProductCollectionUncheckedUpdateManyWithoutFolderNestedInput | undefined;
|
|
20503
20714
|
children?: Prisma.FolderUncheckedUpdateManyWithoutParentNestedInput | undefined;
|
|
20504
20715
|
}>;
|
|
@@ -20506,7 +20717,8 @@ declare const FolderUncheckedUpdateWithoutParentInputObjectZodSchema: z.ZodObjec
|
|
|
20506
20717
|
declare const FolderUpdateInputObjectSchema: z.ZodType<Prisma.FolderUpdateInput>;
|
|
20507
20718
|
declare const FolderUpdateInputObjectZodSchema: z.ZodObject<{
|
|
20508
20719
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
20509
|
-
|
|
20720
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
20721
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
20510
20722
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
20511
20723
|
parent: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderUpdateOneWithoutChildrenNestedInput, z.ZodTypeDef, Prisma.FolderUpdateOneWithoutChildrenNestedInput>>>;
|
|
20512
20724
|
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderUpdateManyWithoutParentNestedInput, z.ZodTypeDef, Prisma.FolderUpdateManyWithoutParentNestedInput>>>;
|
|
@@ -20514,14 +20726,16 @@ declare const FolderUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
20514
20726
|
}, "strict", z.ZodTypeAny, {
|
|
20515
20727
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20516
20728
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20517
|
-
|
|
20729
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20730
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20518
20731
|
collections?: Prisma.ProductCollectionUpdateManyWithoutFolderNestedInput | undefined;
|
|
20519
20732
|
parent?: Prisma.FolderUpdateOneWithoutChildrenNestedInput | undefined;
|
|
20520
20733
|
children?: Prisma.FolderUpdateManyWithoutParentNestedInput | undefined;
|
|
20521
20734
|
}, {
|
|
20522
20735
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20523
20736
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20524
|
-
|
|
20737
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20738
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20525
20739
|
collections?: Prisma.ProductCollectionUpdateManyWithoutFolderNestedInput | undefined;
|
|
20526
20740
|
parent?: Prisma.FolderUpdateOneWithoutChildrenNestedInput | undefined;
|
|
20527
20741
|
children?: Prisma.FolderUpdateManyWithoutParentNestedInput | undefined;
|
|
@@ -20530,16 +20744,19 @@ declare const FolderUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
20530
20744
|
declare const FolderUpdateManyMutationInputObjectSchema: z.ZodType<Prisma.FolderUpdateManyMutationInput>;
|
|
20531
20745
|
declare const FolderUpdateManyMutationInputObjectZodSchema: z.ZodObject<{
|
|
20532
20746
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
20533
|
-
|
|
20747
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
20748
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
20534
20749
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
20535
20750
|
}, "strict", z.ZodTypeAny, {
|
|
20536
20751
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20537
20752
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20538
|
-
|
|
20753
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20754
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20539
20755
|
}, {
|
|
20540
20756
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20541
20757
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20542
|
-
|
|
20758
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20759
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20543
20760
|
}>;
|
|
20544
20761
|
|
|
20545
20762
|
declare const FolderUpdateManyWithWhereWithoutParentInputObjectSchema: z.ZodType<Prisma.FolderUpdateManyWithWhereWithoutParentInput>;
|
|
@@ -20686,20 +20903,23 @@ declare const FolderUpdateWithWhereUniqueWithoutParentInputObjectZodSchema: z.Zo
|
|
|
20686
20903
|
declare const FolderUpdateWithoutChildrenInputObjectSchema: z.ZodType<Prisma.FolderUpdateWithoutChildrenInput>;
|
|
20687
20904
|
declare const FolderUpdateWithoutChildrenInputObjectZodSchema: z.ZodObject<{
|
|
20688
20905
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
20689
|
-
|
|
20906
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
20907
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
20690
20908
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
20691
20909
|
parent: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderUpdateOneWithoutChildrenNestedInput, z.ZodTypeDef, Prisma.FolderUpdateOneWithoutChildrenNestedInput>>>;
|
|
20692
20910
|
collections: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductCollectionUpdateManyWithoutFolderNestedInput, z.ZodTypeDef, Prisma.ProductCollectionUpdateManyWithoutFolderNestedInput>>>;
|
|
20693
20911
|
}, "strict", z.ZodTypeAny, {
|
|
20694
20912
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20695
20913
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20696
|
-
|
|
20914
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20915
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20697
20916
|
collections?: Prisma.ProductCollectionUpdateManyWithoutFolderNestedInput | undefined;
|
|
20698
20917
|
parent?: Prisma.FolderUpdateOneWithoutChildrenNestedInput | undefined;
|
|
20699
20918
|
}, {
|
|
20700
20919
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20701
20920
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20702
|
-
|
|
20921
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20922
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20703
20923
|
collections?: Prisma.ProductCollectionUpdateManyWithoutFolderNestedInput | undefined;
|
|
20704
20924
|
parent?: Prisma.FolderUpdateOneWithoutChildrenNestedInput | undefined;
|
|
20705
20925
|
}>;
|
|
@@ -20707,20 +20927,23 @@ declare const FolderUpdateWithoutChildrenInputObjectZodSchema: z.ZodObject<{
|
|
|
20707
20927
|
declare const FolderUpdateWithoutCollectionsInputObjectSchema: z.ZodType<Prisma.FolderUpdateWithoutCollectionsInput>;
|
|
20708
20928
|
declare const FolderUpdateWithoutCollectionsInputObjectZodSchema: z.ZodObject<{
|
|
20709
20929
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
20710
|
-
|
|
20930
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
20931
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
20711
20932
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
20712
20933
|
parent: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderUpdateOneWithoutChildrenNestedInput, z.ZodTypeDef, Prisma.FolderUpdateOneWithoutChildrenNestedInput>>>;
|
|
20713
20934
|
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderUpdateManyWithoutParentNestedInput, z.ZodTypeDef, Prisma.FolderUpdateManyWithoutParentNestedInput>>>;
|
|
20714
20935
|
}, "strict", z.ZodTypeAny, {
|
|
20715
20936
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20716
20937
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20717
|
-
|
|
20938
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20939
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20718
20940
|
parent?: Prisma.FolderUpdateOneWithoutChildrenNestedInput | undefined;
|
|
20719
20941
|
children?: Prisma.FolderUpdateManyWithoutParentNestedInput | undefined;
|
|
20720
20942
|
}, {
|
|
20721
20943
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20722
20944
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20723
|
-
|
|
20945
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20946
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20724
20947
|
parent?: Prisma.FolderUpdateOneWithoutChildrenNestedInput | undefined;
|
|
20725
20948
|
children?: Prisma.FolderUpdateManyWithoutParentNestedInput | undefined;
|
|
20726
20949
|
}>;
|
|
@@ -20728,20 +20951,23 @@ declare const FolderUpdateWithoutCollectionsInputObjectZodSchema: z.ZodObject<{
|
|
|
20728
20951
|
declare const FolderUpdateWithoutParentInputObjectSchema: z.ZodType<Prisma.FolderUpdateWithoutParentInput>;
|
|
20729
20952
|
declare const FolderUpdateWithoutParentInputObjectZodSchema: z.ZodObject<{
|
|
20730
20953
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
20731
|
-
|
|
20954
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
20955
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
20732
20956
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
20733
20957
|
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderUpdateManyWithoutParentNestedInput, z.ZodTypeDef, Prisma.FolderUpdateManyWithoutParentNestedInput>>>;
|
|
20734
20958
|
collections: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductCollectionUpdateManyWithoutFolderNestedInput, z.ZodTypeDef, Prisma.ProductCollectionUpdateManyWithoutFolderNestedInput>>>;
|
|
20735
20959
|
}, "strict", z.ZodTypeAny, {
|
|
20736
20960
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20737
20961
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20738
|
-
|
|
20962
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20963
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20739
20964
|
collections?: Prisma.ProductCollectionUpdateManyWithoutFolderNestedInput | undefined;
|
|
20740
20965
|
children?: Prisma.FolderUpdateManyWithoutParentNestedInput | undefined;
|
|
20741
20966
|
}, {
|
|
20742
20967
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
20743
20968
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
20744
|
-
|
|
20969
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
20970
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
20745
20971
|
collections?: Prisma.ProductCollectionUpdateManyWithoutFolderNestedInput | undefined;
|
|
20746
20972
|
children?: Prisma.FolderUpdateManyWithoutParentNestedInput | undefined;
|
|
20747
20973
|
}>;
|
|
@@ -20799,7 +21025,8 @@ declare const FolderWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
20799
21025
|
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
|
20800
21026
|
name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
20801
21027
|
parentId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
20802
|
-
|
|
21028
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeNullableFilter<never>, z.ZodTypeDef, Prisma.DateTimeNullableFilter<never>>>, z.ZodDate]>>>;
|
|
21029
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
20803
21030
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
20804
21031
|
parent: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.FolderNullableScalarRelationFilter, z.ZodTypeDef, Prisma.FolderNullableScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.FolderWhereInput, z.ZodTypeDef, Prisma.FolderWhereInput>>]>>;
|
|
20805
21032
|
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderListRelationFilter, z.ZodTypeDef, Prisma.FolderListRelationFilter>>>;
|
|
@@ -20809,7 +21036,8 @@ declare const FolderWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
20809
21036
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
20810
21037
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
20811
21038
|
parentId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
20812
|
-
|
|
21039
|
+
pinnedAt?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
21040
|
+
pinOrder?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
20813
21041
|
AND?: Prisma.FolderWhereInput | Prisma.FolderWhereInput[] | undefined;
|
|
20814
21042
|
OR?: Prisma.FolderWhereInput[] | undefined;
|
|
20815
21043
|
NOT?: Prisma.FolderWhereInput | Prisma.FolderWhereInput[] | undefined;
|
|
@@ -20821,7 +21049,8 @@ declare const FolderWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
20821
21049
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
20822
21050
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
20823
21051
|
parentId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
20824
|
-
|
|
21052
|
+
pinnedAt?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
21053
|
+
pinOrder?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
20825
21054
|
AND?: Prisma.FolderWhereInput | Prisma.FolderWhereInput[] | undefined;
|
|
20826
21055
|
OR?: Prisma.FolderWhereInput[] | undefined;
|
|
20827
21056
|
NOT?: Prisma.FolderWhereInput | Prisma.FolderWhereInput[] | undefined;
|
|
@@ -23660,15 +23889,15 @@ declare const ProductCollectionAvgAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
23660
23889
|
id: z.ZodOptional<z.ZodLiteral<true>>;
|
|
23661
23890
|
folderId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
23662
23891
|
defaultProductTypeId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
23663
|
-
|
|
23892
|
+
pinOrder: z.ZodOptional<z.ZodLiteral<true>>;
|
|
23664
23893
|
}, "strict", z.ZodTypeAny, {
|
|
23665
23894
|
id?: true | undefined;
|
|
23666
|
-
|
|
23895
|
+
pinOrder?: true | undefined;
|
|
23667
23896
|
folderId?: true | undefined;
|
|
23668
23897
|
defaultProductTypeId?: true | undefined;
|
|
23669
23898
|
}, {
|
|
23670
23899
|
id?: true | undefined;
|
|
23671
|
-
|
|
23900
|
+
pinOrder?: true | undefined;
|
|
23672
23901
|
folderId?: true | undefined;
|
|
23673
23902
|
defaultProductTypeId?: true | undefined;
|
|
23674
23903
|
}>;
|
|
@@ -23678,15 +23907,15 @@ declare const ProductCollectionAvgOrderByAggregateInputObjectZodSchema: z.ZodObj
|
|
|
23678
23907
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
23679
23908
|
folderId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
23680
23909
|
defaultProductTypeId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
23681
|
-
|
|
23910
|
+
pinOrder: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
23682
23911
|
}, "strict", z.ZodTypeAny, {
|
|
23683
23912
|
id?: "asc" | "desc" | undefined;
|
|
23684
|
-
|
|
23913
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
23685
23914
|
folderId?: "asc" | "desc" | undefined;
|
|
23686
23915
|
defaultProductTypeId?: "asc" | "desc" | undefined;
|
|
23687
23916
|
}, {
|
|
23688
23917
|
id?: "asc" | "desc" | undefined;
|
|
23689
|
-
|
|
23918
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
23690
23919
|
folderId?: "asc" | "desc" | undefined;
|
|
23691
23920
|
defaultProductTypeId?: "asc" | "desc" | undefined;
|
|
23692
23921
|
}>;
|
|
@@ -23697,14 +23926,16 @@ declare const ProductCollectionCountAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
23697
23926
|
name: z.ZodOptional<z.ZodLiteral<true>>;
|
|
23698
23927
|
folderId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
23699
23928
|
defaultProductTypeId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
23700
|
-
|
|
23929
|
+
pinnedAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
23930
|
+
pinOrder: z.ZodOptional<z.ZodLiteral<true>>;
|
|
23701
23931
|
updatedAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
23702
23932
|
_all: z.ZodOptional<z.ZodLiteral<true>>;
|
|
23703
23933
|
}, "strict", z.ZodTypeAny, {
|
|
23704
23934
|
id?: true | undefined;
|
|
23705
23935
|
name?: true | undefined;
|
|
23706
23936
|
updatedAt?: true | undefined;
|
|
23707
|
-
|
|
23937
|
+
pinnedAt?: true | undefined;
|
|
23938
|
+
pinOrder?: true | undefined;
|
|
23708
23939
|
folderId?: true | undefined;
|
|
23709
23940
|
defaultProductTypeId?: true | undefined;
|
|
23710
23941
|
_all?: true | undefined;
|
|
@@ -23712,7 +23943,8 @@ declare const ProductCollectionCountAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
23712
23943
|
id?: true | undefined;
|
|
23713
23944
|
name?: true | undefined;
|
|
23714
23945
|
updatedAt?: true | undefined;
|
|
23715
|
-
|
|
23946
|
+
pinnedAt?: true | undefined;
|
|
23947
|
+
pinOrder?: true | undefined;
|
|
23716
23948
|
folderId?: true | undefined;
|
|
23717
23949
|
defaultProductTypeId?: true | undefined;
|
|
23718
23950
|
_all?: true | undefined;
|
|
@@ -23724,20 +23956,23 @@ declare const ProductCollectionCountOrderByAggregateInputObjectZodSchema: z.ZodO
|
|
|
23724
23956
|
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
23725
23957
|
folderId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
23726
23958
|
defaultProductTypeId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
23727
|
-
|
|
23959
|
+
pinnedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
23960
|
+
pinOrder: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
23728
23961
|
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
23729
23962
|
}, "strict", z.ZodTypeAny, {
|
|
23730
23963
|
id?: "asc" | "desc" | undefined;
|
|
23731
23964
|
name?: "asc" | "desc" | undefined;
|
|
23732
23965
|
updatedAt?: "asc" | "desc" | undefined;
|
|
23733
|
-
|
|
23966
|
+
pinnedAt?: "asc" | "desc" | undefined;
|
|
23967
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
23734
23968
|
folderId?: "asc" | "desc" | undefined;
|
|
23735
23969
|
defaultProductTypeId?: "asc" | "desc" | undefined;
|
|
23736
23970
|
}, {
|
|
23737
23971
|
id?: "asc" | "desc" | undefined;
|
|
23738
23972
|
name?: "asc" | "desc" | undefined;
|
|
23739
23973
|
updatedAt?: "asc" | "desc" | undefined;
|
|
23740
|
-
|
|
23974
|
+
pinnedAt?: "asc" | "desc" | undefined;
|
|
23975
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
23741
23976
|
folderId?: "asc" | "desc" | undefined;
|
|
23742
23977
|
defaultProductTypeId?: "asc" | "desc" | undefined;
|
|
23743
23978
|
}>;
|
|
@@ -23745,17 +23980,20 @@ declare const ProductCollectionCountOrderByAggregateInputObjectZodSchema: z.ZodO
|
|
|
23745
23980
|
declare const ProductCollectionCreateInputObjectSchema: z.ZodType<Prisma.ProductCollectionCreateInput>;
|
|
23746
23981
|
declare const ProductCollectionCreateInputObjectZodSchema: z.ZodObject<{
|
|
23747
23982
|
name: z.ZodString;
|
|
23748
|
-
|
|
23983
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
23984
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
23749
23985
|
folder: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderCreateNestedOneWithoutCollectionsInput, z.ZodTypeDef, Prisma.FolderCreateNestedOneWithoutCollectionsInput>>>;
|
|
23750
23986
|
defaultProductType: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductTypeCreateNestedOneWithoutCollectionsInput, z.ZodTypeDef, Prisma.ProductTypeCreateNestedOneWithoutCollectionsInput>>>;
|
|
23751
23987
|
}, "strict", z.ZodTypeAny, {
|
|
23752
23988
|
name: string;
|
|
23753
|
-
|
|
23989
|
+
pinnedAt?: Date | null | undefined;
|
|
23990
|
+
pinOrder?: number | null | undefined;
|
|
23754
23991
|
folder?: Prisma.FolderCreateNestedOneWithoutCollectionsInput | undefined;
|
|
23755
23992
|
defaultProductType?: Prisma.ProductTypeCreateNestedOneWithoutCollectionsInput | undefined;
|
|
23756
23993
|
}, {
|
|
23757
23994
|
name: string;
|
|
23758
|
-
|
|
23995
|
+
pinnedAt?: Date | null | undefined;
|
|
23996
|
+
pinOrder?: number | null | undefined;
|
|
23759
23997
|
folder?: Prisma.FolderCreateNestedOneWithoutCollectionsInput | undefined;
|
|
23760
23998
|
defaultProductType?: Prisma.ProductTypeCreateNestedOneWithoutCollectionsInput | undefined;
|
|
23761
23999
|
}>;
|
|
@@ -23765,19 +24003,22 @@ declare const ProductCollectionCreateManyDefaultProductTypeInputObjectZodSchema:
|
|
|
23765
24003
|
id: z.ZodOptional<z.ZodNumber>;
|
|
23766
24004
|
name: z.ZodString;
|
|
23767
24005
|
folderId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
23768
|
-
|
|
24006
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
24007
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
23769
24008
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
23770
24009
|
}, "strict", z.ZodTypeAny, {
|
|
23771
24010
|
name: string;
|
|
23772
24011
|
id?: number | undefined;
|
|
23773
24012
|
updatedAt?: Date | undefined;
|
|
23774
|
-
|
|
24013
|
+
pinnedAt?: Date | null | undefined;
|
|
24014
|
+
pinOrder?: number | null | undefined;
|
|
23775
24015
|
folderId?: number | null | undefined;
|
|
23776
24016
|
}, {
|
|
23777
24017
|
name: string;
|
|
23778
24018
|
id?: number | undefined;
|
|
23779
24019
|
updatedAt?: Date | undefined;
|
|
23780
|
-
|
|
24020
|
+
pinnedAt?: Date | null | undefined;
|
|
24021
|
+
pinOrder?: number | null | undefined;
|
|
23781
24022
|
folderId?: number | null | undefined;
|
|
23782
24023
|
}>;
|
|
23783
24024
|
|
|
@@ -23798,19 +24039,22 @@ declare const ProductCollectionCreateManyFolderInputObjectZodSchema: z.ZodObject
|
|
|
23798
24039
|
id: z.ZodOptional<z.ZodNumber>;
|
|
23799
24040
|
name: z.ZodString;
|
|
23800
24041
|
defaultProductTypeId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
23801
|
-
|
|
24042
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
24043
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
23802
24044
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
23803
24045
|
}, "strict", z.ZodTypeAny, {
|
|
23804
24046
|
name: string;
|
|
23805
24047
|
id?: number | undefined;
|
|
23806
24048
|
updatedAt?: Date | undefined;
|
|
23807
|
-
|
|
24049
|
+
pinnedAt?: Date | null | undefined;
|
|
24050
|
+
pinOrder?: number | null | undefined;
|
|
23808
24051
|
defaultProductTypeId?: number | null | undefined;
|
|
23809
24052
|
}, {
|
|
23810
24053
|
name: string;
|
|
23811
24054
|
id?: number | undefined;
|
|
23812
24055
|
updatedAt?: Date | undefined;
|
|
23813
|
-
|
|
24056
|
+
pinnedAt?: Date | null | undefined;
|
|
24057
|
+
pinOrder?: number | null | undefined;
|
|
23814
24058
|
defaultProductTypeId?: number | null | undefined;
|
|
23815
24059
|
}>;
|
|
23816
24060
|
|
|
@@ -23832,20 +24076,23 @@ declare const ProductCollectionCreateManyInputObjectZodSchema: z.ZodObject<{
|
|
|
23832
24076
|
name: z.ZodString;
|
|
23833
24077
|
folderId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
23834
24078
|
defaultProductTypeId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
23835
|
-
|
|
24079
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
24080
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
23836
24081
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
23837
24082
|
}, "strict", z.ZodTypeAny, {
|
|
23838
24083
|
name: string;
|
|
23839
24084
|
id?: number | undefined;
|
|
23840
24085
|
updatedAt?: Date | undefined;
|
|
23841
|
-
|
|
24086
|
+
pinnedAt?: Date | null | undefined;
|
|
24087
|
+
pinOrder?: number | null | undefined;
|
|
23842
24088
|
folderId?: number | null | undefined;
|
|
23843
24089
|
defaultProductTypeId?: number | null | undefined;
|
|
23844
24090
|
}, {
|
|
23845
24091
|
name: string;
|
|
23846
24092
|
id?: number | undefined;
|
|
23847
24093
|
updatedAt?: Date | undefined;
|
|
23848
|
-
|
|
24094
|
+
pinnedAt?: Date | null | undefined;
|
|
24095
|
+
pinOrder?: number | null | undefined;
|
|
23849
24096
|
folderId?: number | null | undefined;
|
|
23850
24097
|
defaultProductTypeId?: number | null | undefined;
|
|
23851
24098
|
}>;
|
|
@@ -23913,36 +24160,42 @@ declare const ProductCollectionCreateOrConnectWithoutFolderInputObjectZodSchema:
|
|
|
23913
24160
|
declare const ProductCollectionCreateWithoutDefaultProductTypeInputObjectSchema: z.ZodType<Prisma.ProductCollectionCreateWithoutDefaultProductTypeInput>;
|
|
23914
24161
|
declare const ProductCollectionCreateWithoutDefaultProductTypeInputObjectZodSchema: z.ZodObject<{
|
|
23915
24162
|
name: z.ZodString;
|
|
23916
|
-
|
|
24163
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
24164
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
23917
24165
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
23918
24166
|
folder: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderCreateNestedOneWithoutCollectionsInput, z.ZodTypeDef, Prisma.FolderCreateNestedOneWithoutCollectionsInput>>>;
|
|
23919
24167
|
}, "strict", z.ZodTypeAny, {
|
|
23920
24168
|
name: string;
|
|
23921
24169
|
updatedAt?: Date | undefined;
|
|
23922
|
-
|
|
24170
|
+
pinnedAt?: Date | null | undefined;
|
|
24171
|
+
pinOrder?: number | null | undefined;
|
|
23923
24172
|
folder?: Prisma.FolderCreateNestedOneWithoutCollectionsInput | undefined;
|
|
23924
24173
|
}, {
|
|
23925
24174
|
name: string;
|
|
23926
24175
|
updatedAt?: Date | undefined;
|
|
23927
|
-
|
|
24176
|
+
pinnedAt?: Date | null | undefined;
|
|
24177
|
+
pinOrder?: number | null | undefined;
|
|
23928
24178
|
folder?: Prisma.FolderCreateNestedOneWithoutCollectionsInput | undefined;
|
|
23929
24179
|
}>;
|
|
23930
24180
|
|
|
23931
24181
|
declare const ProductCollectionCreateWithoutFolderInputObjectSchema: z.ZodType<Prisma.ProductCollectionCreateWithoutFolderInput>;
|
|
23932
24182
|
declare const ProductCollectionCreateWithoutFolderInputObjectZodSchema: z.ZodObject<{
|
|
23933
24183
|
name: z.ZodString;
|
|
23934
|
-
|
|
24184
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
24185
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
23935
24186
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
23936
24187
|
defaultProductType: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductTypeCreateNestedOneWithoutCollectionsInput, z.ZodTypeDef, Prisma.ProductTypeCreateNestedOneWithoutCollectionsInput>>>;
|
|
23937
24188
|
}, "strict", z.ZodTypeAny, {
|
|
23938
24189
|
name: string;
|
|
23939
24190
|
updatedAt?: Date | undefined;
|
|
23940
|
-
|
|
24191
|
+
pinnedAt?: Date | null | undefined;
|
|
24192
|
+
pinOrder?: number | null | undefined;
|
|
23941
24193
|
defaultProductType?: Prisma.ProductTypeCreateNestedOneWithoutCollectionsInput | undefined;
|
|
23942
24194
|
}, {
|
|
23943
24195
|
name: string;
|
|
23944
24196
|
updatedAt?: Date | undefined;
|
|
23945
|
-
|
|
24197
|
+
pinnedAt?: Date | null | undefined;
|
|
24198
|
+
pinOrder?: number | null | undefined;
|
|
23946
24199
|
defaultProductType?: Prisma.ProductTypeCreateNestedOneWithoutCollectionsInput | undefined;
|
|
23947
24200
|
}>;
|
|
23948
24201
|
|
|
@@ -24021,20 +24274,23 @@ declare const ProductCollectionMaxAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
24021
24274
|
name: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24022
24275
|
folderId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24023
24276
|
defaultProductTypeId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24024
|
-
|
|
24277
|
+
pinnedAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24278
|
+
pinOrder: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24025
24279
|
updatedAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24026
24280
|
}, "strict", z.ZodTypeAny, {
|
|
24027
24281
|
id?: true | undefined;
|
|
24028
24282
|
name?: true | undefined;
|
|
24029
24283
|
updatedAt?: true | undefined;
|
|
24030
|
-
|
|
24284
|
+
pinnedAt?: true | undefined;
|
|
24285
|
+
pinOrder?: true | undefined;
|
|
24031
24286
|
folderId?: true | undefined;
|
|
24032
24287
|
defaultProductTypeId?: true | undefined;
|
|
24033
24288
|
}, {
|
|
24034
24289
|
id?: true | undefined;
|
|
24035
24290
|
name?: true | undefined;
|
|
24036
24291
|
updatedAt?: true | undefined;
|
|
24037
|
-
|
|
24292
|
+
pinnedAt?: true | undefined;
|
|
24293
|
+
pinOrder?: true | undefined;
|
|
24038
24294
|
folderId?: true | undefined;
|
|
24039
24295
|
defaultProductTypeId?: true | undefined;
|
|
24040
24296
|
}>;
|
|
@@ -24045,20 +24301,23 @@ declare const ProductCollectionMaxOrderByAggregateInputObjectZodSchema: z.ZodObj
|
|
|
24045
24301
|
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24046
24302
|
folderId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24047
24303
|
defaultProductTypeId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24048
|
-
|
|
24304
|
+
pinnedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24305
|
+
pinOrder: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24049
24306
|
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24050
24307
|
}, "strict", z.ZodTypeAny, {
|
|
24051
24308
|
id?: "asc" | "desc" | undefined;
|
|
24052
24309
|
name?: "asc" | "desc" | undefined;
|
|
24053
24310
|
updatedAt?: "asc" | "desc" | undefined;
|
|
24054
|
-
|
|
24311
|
+
pinnedAt?: "asc" | "desc" | undefined;
|
|
24312
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
24055
24313
|
folderId?: "asc" | "desc" | undefined;
|
|
24056
24314
|
defaultProductTypeId?: "asc" | "desc" | undefined;
|
|
24057
24315
|
}, {
|
|
24058
24316
|
id?: "asc" | "desc" | undefined;
|
|
24059
24317
|
name?: "asc" | "desc" | undefined;
|
|
24060
24318
|
updatedAt?: "asc" | "desc" | undefined;
|
|
24061
|
-
|
|
24319
|
+
pinnedAt?: "asc" | "desc" | undefined;
|
|
24320
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
24062
24321
|
folderId?: "asc" | "desc" | undefined;
|
|
24063
24322
|
defaultProductTypeId?: "asc" | "desc" | undefined;
|
|
24064
24323
|
}>;
|
|
@@ -24069,20 +24328,23 @@ declare const ProductCollectionMinAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
24069
24328
|
name: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24070
24329
|
folderId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24071
24330
|
defaultProductTypeId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24072
|
-
|
|
24331
|
+
pinnedAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24332
|
+
pinOrder: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24073
24333
|
updatedAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24074
24334
|
}, "strict", z.ZodTypeAny, {
|
|
24075
24335
|
id?: true | undefined;
|
|
24076
24336
|
name?: true | undefined;
|
|
24077
24337
|
updatedAt?: true | undefined;
|
|
24078
|
-
|
|
24338
|
+
pinnedAt?: true | undefined;
|
|
24339
|
+
pinOrder?: true | undefined;
|
|
24079
24340
|
folderId?: true | undefined;
|
|
24080
24341
|
defaultProductTypeId?: true | undefined;
|
|
24081
24342
|
}, {
|
|
24082
24343
|
id?: true | undefined;
|
|
24083
24344
|
name?: true | undefined;
|
|
24084
24345
|
updatedAt?: true | undefined;
|
|
24085
|
-
|
|
24346
|
+
pinnedAt?: true | undefined;
|
|
24347
|
+
pinOrder?: true | undefined;
|
|
24086
24348
|
folderId?: true | undefined;
|
|
24087
24349
|
defaultProductTypeId?: true | undefined;
|
|
24088
24350
|
}>;
|
|
@@ -24093,20 +24355,23 @@ declare const ProductCollectionMinOrderByAggregateInputObjectZodSchema: z.ZodObj
|
|
|
24093
24355
|
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24094
24356
|
folderId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24095
24357
|
defaultProductTypeId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24096
|
-
|
|
24358
|
+
pinnedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24359
|
+
pinOrder: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24097
24360
|
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24098
24361
|
}, "strict", z.ZodTypeAny, {
|
|
24099
24362
|
id?: "asc" | "desc" | undefined;
|
|
24100
24363
|
name?: "asc" | "desc" | undefined;
|
|
24101
24364
|
updatedAt?: "asc" | "desc" | undefined;
|
|
24102
|
-
|
|
24365
|
+
pinnedAt?: "asc" | "desc" | undefined;
|
|
24366
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
24103
24367
|
folderId?: "asc" | "desc" | undefined;
|
|
24104
24368
|
defaultProductTypeId?: "asc" | "desc" | undefined;
|
|
24105
24369
|
}, {
|
|
24106
24370
|
id?: "asc" | "desc" | undefined;
|
|
24107
24371
|
name?: "asc" | "desc" | undefined;
|
|
24108
24372
|
updatedAt?: "asc" | "desc" | undefined;
|
|
24109
|
-
|
|
24373
|
+
pinnedAt?: "asc" | "desc" | undefined;
|
|
24374
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
24110
24375
|
folderId?: "asc" | "desc" | undefined;
|
|
24111
24376
|
defaultProductTypeId?: "asc" | "desc" | undefined;
|
|
24112
24377
|
}>;
|
|
@@ -24126,7 +24391,8 @@ declare const ProductCollectionOrderByWithAggregationInputObjectZodSchema: z.Zod
|
|
|
24126
24391
|
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24127
24392
|
folderId: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
24128
24393
|
defaultProductTypeId: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
24129
|
-
|
|
24394
|
+
pinnedAt: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
24395
|
+
pinOrder: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
24130
24396
|
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24131
24397
|
_count: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductCollectionCountOrderByAggregateInput, z.ZodTypeDef, Prisma.ProductCollectionCountOrderByAggregateInput>>>;
|
|
24132
24398
|
_avg: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductCollectionAvgOrderByAggregateInput, z.ZodTypeDef, Prisma.ProductCollectionAvgOrderByAggregateInput>>>;
|
|
@@ -24137,7 +24403,8 @@ declare const ProductCollectionOrderByWithAggregationInputObjectZodSchema: z.Zod
|
|
|
24137
24403
|
id?: "asc" | "desc" | undefined;
|
|
24138
24404
|
name?: "asc" | "desc" | undefined;
|
|
24139
24405
|
updatedAt?: "asc" | "desc" | undefined;
|
|
24140
|
-
|
|
24406
|
+
pinnedAt?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
24407
|
+
pinOrder?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
24141
24408
|
folderId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
24142
24409
|
defaultProductTypeId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
24143
24410
|
_count?: Prisma.ProductCollectionCountOrderByAggregateInput | undefined;
|
|
@@ -24149,7 +24416,8 @@ declare const ProductCollectionOrderByWithAggregationInputObjectZodSchema: z.Zod
|
|
|
24149
24416
|
id?: "asc" | "desc" | undefined;
|
|
24150
24417
|
name?: "asc" | "desc" | undefined;
|
|
24151
24418
|
updatedAt?: "asc" | "desc" | undefined;
|
|
24152
|
-
|
|
24419
|
+
pinnedAt?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
24420
|
+
pinOrder?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
24153
24421
|
folderId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
24154
24422
|
defaultProductTypeId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
24155
24423
|
_count?: Prisma.ProductCollectionCountOrderByAggregateInput | undefined;
|
|
@@ -24165,7 +24433,8 @@ declare const ProductCollectionOrderByWithRelationInputObjectZodSchema: z.ZodObj
|
|
|
24165
24433
|
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24166
24434
|
folderId: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
24167
24435
|
defaultProductTypeId: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
24168
|
-
|
|
24436
|
+
pinnedAt: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
24437
|
+
pinOrder: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
24169
24438
|
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24170
24439
|
folder: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderOrderByWithRelationInput, z.ZodTypeDef, Prisma.FolderOrderByWithRelationInput>>>;
|
|
24171
24440
|
defaultProductType: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductTypeOrderByWithRelationInput, z.ZodTypeDef, Prisma.ProductTypeOrderByWithRelationInput>>>;
|
|
@@ -24173,7 +24442,8 @@ declare const ProductCollectionOrderByWithRelationInputObjectZodSchema: z.ZodObj
|
|
|
24173
24442
|
id?: "asc" | "desc" | undefined;
|
|
24174
24443
|
name?: "asc" | "desc" | undefined;
|
|
24175
24444
|
updatedAt?: "asc" | "desc" | undefined;
|
|
24176
|
-
|
|
24445
|
+
pinnedAt?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
24446
|
+
pinOrder?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
24177
24447
|
folderId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
24178
24448
|
defaultProductTypeId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
24179
24449
|
folder?: Prisma.FolderOrderByWithRelationInput | undefined;
|
|
@@ -24182,7 +24452,8 @@ declare const ProductCollectionOrderByWithRelationInputObjectZodSchema: z.ZodObj
|
|
|
24182
24452
|
id?: "asc" | "desc" | undefined;
|
|
24183
24453
|
name?: "asc" | "desc" | undefined;
|
|
24184
24454
|
updatedAt?: "asc" | "desc" | undefined;
|
|
24185
|
-
|
|
24455
|
+
pinnedAt?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
24456
|
+
pinOrder?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
24186
24457
|
folderId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
24187
24458
|
defaultProductTypeId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
24188
24459
|
folder?: Prisma.FolderOrderByWithRelationInput | undefined;
|
|
@@ -24198,13 +24469,15 @@ declare const ProductCollectionScalarWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
24198
24469
|
name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
24199
24470
|
folderId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
24200
24471
|
defaultProductTypeId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
24201
|
-
|
|
24472
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeNullableFilter<never>, z.ZodTypeDef, Prisma.DateTimeNullableFilter<never>>>, z.ZodDate]>>>;
|
|
24473
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
24202
24474
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
24203
24475
|
}, "strict", z.ZodTypeAny, {
|
|
24204
24476
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
24205
24477
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
24206
24478
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
24207
|
-
|
|
24479
|
+
pinnedAt?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
24480
|
+
pinOrder?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
24208
24481
|
folderId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
24209
24482
|
defaultProductTypeId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
24210
24483
|
AND?: Prisma.ProductCollectionScalarWhereInput | Prisma.ProductCollectionScalarWhereInput[] | undefined;
|
|
@@ -24214,7 +24487,8 @@ declare const ProductCollectionScalarWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
24214
24487
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
24215
24488
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
24216
24489
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
24217
|
-
|
|
24490
|
+
pinnedAt?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
24491
|
+
pinOrder?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
24218
24492
|
folderId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
24219
24493
|
defaultProductTypeId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
24220
24494
|
AND?: Prisma.ProductCollectionScalarWhereInput | Prisma.ProductCollectionScalarWhereInput[] | undefined;
|
|
@@ -24231,13 +24505,15 @@ declare const ProductCollectionScalarWhereWithAggregatesInputObjectZodSchema: z.
|
|
|
24231
24505
|
name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
|
|
24232
24506
|
folderId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntNullableWithAggregatesFilter<never>>>, z.ZodNumber]>>>;
|
|
24233
24507
|
defaultProductTypeId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntNullableWithAggregatesFilter<never>>>, z.ZodNumber]>>>;
|
|
24234
|
-
|
|
24508
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.DateTimeNullableWithAggregatesFilter<never>>>, z.ZodDate]>>>;
|
|
24509
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntNullableWithAggregatesFilter<never>>>, z.ZodNumber]>>>;
|
|
24235
24510
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.DateTimeWithAggregatesFilter<never>>>, z.ZodDate]>>;
|
|
24236
24511
|
}, "strict", z.ZodTypeAny, {
|
|
24237
24512
|
id?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
|
|
24238
24513
|
name?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
24239
24514
|
updatedAt?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
|
|
24240
|
-
|
|
24515
|
+
pinnedAt?: Date | Prisma.DateTimeNullableWithAggregatesFilter<never> | null | undefined;
|
|
24516
|
+
pinOrder?: number | Prisma.IntNullableWithAggregatesFilter<never> | null | undefined;
|
|
24241
24517
|
folderId?: number | Prisma.IntNullableWithAggregatesFilter<never> | null | undefined;
|
|
24242
24518
|
defaultProductTypeId?: number | Prisma.IntNullableWithAggregatesFilter<never> | null | undefined;
|
|
24243
24519
|
AND?: Prisma.ProductCollectionScalarWhereWithAggregatesInput | Prisma.ProductCollectionScalarWhereWithAggregatesInput[] | undefined;
|
|
@@ -24247,7 +24523,8 @@ declare const ProductCollectionScalarWhereWithAggregatesInputObjectZodSchema: z.
|
|
|
24247
24523
|
id?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
|
|
24248
24524
|
name?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
|
24249
24525
|
updatedAt?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
|
|
24250
|
-
|
|
24526
|
+
pinnedAt?: Date | Prisma.DateTimeNullableWithAggregatesFilter<never> | null | undefined;
|
|
24527
|
+
pinOrder?: number | Prisma.IntNullableWithAggregatesFilter<never> | null | undefined;
|
|
24251
24528
|
folderId?: number | Prisma.IntNullableWithAggregatesFilter<never> | null | undefined;
|
|
24252
24529
|
defaultProductTypeId?: number | Prisma.IntNullableWithAggregatesFilter<never> | null | undefined;
|
|
24253
24530
|
AND?: Prisma.ProductCollectionScalarWhereWithAggregatesInput | Prisma.ProductCollectionScalarWhereWithAggregatesInput[] | undefined;
|
|
@@ -24261,7 +24538,8 @@ declare const ProductCollectionSelectObjectZodSchema: z.ZodObject<{
|
|
|
24261
24538
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
24262
24539
|
folderId: z.ZodOptional<z.ZodBoolean>;
|
|
24263
24540
|
defaultProductTypeId: z.ZodOptional<z.ZodBoolean>;
|
|
24264
|
-
|
|
24541
|
+
pinnedAt: z.ZodOptional<z.ZodBoolean>;
|
|
24542
|
+
pinOrder: z.ZodOptional<z.ZodBoolean>;
|
|
24265
24543
|
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
|
24266
24544
|
folder: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
|
24267
24545
|
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderSelect<_prisma_client_runtime_library.DefaultArgs>, z.ZodTypeDef, Prisma.FolderSelect<_prisma_client_runtime_library.DefaultArgs>>>>;
|
|
@@ -24287,7 +24565,8 @@ declare const ProductCollectionSelectObjectZodSchema: z.ZodObject<{
|
|
|
24287
24565
|
id?: boolean | undefined;
|
|
24288
24566
|
name?: boolean | undefined;
|
|
24289
24567
|
updatedAt?: boolean | undefined;
|
|
24290
|
-
|
|
24568
|
+
pinnedAt?: boolean | undefined;
|
|
24569
|
+
pinOrder?: boolean | undefined;
|
|
24291
24570
|
folderId?: boolean | undefined;
|
|
24292
24571
|
defaultProductTypeId?: boolean | undefined;
|
|
24293
24572
|
folder?: boolean | {
|
|
@@ -24302,7 +24581,8 @@ declare const ProductCollectionSelectObjectZodSchema: z.ZodObject<{
|
|
|
24302
24581
|
id?: boolean | undefined;
|
|
24303
24582
|
name?: boolean | undefined;
|
|
24304
24583
|
updatedAt?: boolean | undefined;
|
|
24305
|
-
|
|
24584
|
+
pinnedAt?: boolean | undefined;
|
|
24585
|
+
pinOrder?: boolean | undefined;
|
|
24306
24586
|
folderId?: boolean | undefined;
|
|
24307
24587
|
defaultProductTypeId?: boolean | undefined;
|
|
24308
24588
|
folder?: boolean | {
|
|
@@ -24320,15 +24600,15 @@ declare const ProductCollectionSumAggregateInputObjectZodSchema: z.ZodObject<{
|
|
|
24320
24600
|
id: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24321
24601
|
folderId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24322
24602
|
defaultProductTypeId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24323
|
-
|
|
24603
|
+
pinOrder: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24324
24604
|
}, "strict", z.ZodTypeAny, {
|
|
24325
24605
|
id?: true | undefined;
|
|
24326
|
-
|
|
24606
|
+
pinOrder?: true | undefined;
|
|
24327
24607
|
folderId?: true | undefined;
|
|
24328
24608
|
defaultProductTypeId?: true | undefined;
|
|
24329
24609
|
}, {
|
|
24330
24610
|
id?: true | undefined;
|
|
24331
|
-
|
|
24611
|
+
pinOrder?: true | undefined;
|
|
24332
24612
|
folderId?: true | undefined;
|
|
24333
24613
|
defaultProductTypeId?: true | undefined;
|
|
24334
24614
|
}>;
|
|
@@ -24338,15 +24618,15 @@ declare const ProductCollectionSumOrderByAggregateInputObjectZodSchema: z.ZodObj
|
|
|
24338
24618
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24339
24619
|
folderId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24340
24620
|
defaultProductTypeId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24341
|
-
|
|
24621
|
+
pinOrder: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
24342
24622
|
}, "strict", z.ZodTypeAny, {
|
|
24343
24623
|
id?: "asc" | "desc" | undefined;
|
|
24344
|
-
|
|
24624
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
24345
24625
|
folderId?: "asc" | "desc" | undefined;
|
|
24346
24626
|
defaultProductTypeId?: "asc" | "desc" | undefined;
|
|
24347
24627
|
}, {
|
|
24348
24628
|
id?: "asc" | "desc" | undefined;
|
|
24349
|
-
|
|
24629
|
+
pinOrder?: "asc" | "desc" | undefined;
|
|
24350
24630
|
folderId?: "asc" | "desc" | undefined;
|
|
24351
24631
|
defaultProductTypeId?: "asc" | "desc" | undefined;
|
|
24352
24632
|
}>;
|
|
@@ -24357,17 +24637,20 @@ declare const ProductCollectionUncheckedCreateInputObjectZodSchema: z.ZodObject<
|
|
|
24357
24637
|
name: z.ZodString;
|
|
24358
24638
|
folderId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
24359
24639
|
defaultProductTypeId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
24360
|
-
|
|
24640
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
24641
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
24361
24642
|
}, "strict", z.ZodTypeAny, {
|
|
24362
24643
|
name: string;
|
|
24363
24644
|
id?: number | undefined;
|
|
24364
|
-
|
|
24645
|
+
pinnedAt?: Date | null | undefined;
|
|
24646
|
+
pinOrder?: number | null | undefined;
|
|
24365
24647
|
folderId?: number | null | undefined;
|
|
24366
24648
|
defaultProductTypeId?: number | null | undefined;
|
|
24367
24649
|
}, {
|
|
24368
24650
|
name: string;
|
|
24369
24651
|
id?: number | undefined;
|
|
24370
|
-
|
|
24652
|
+
pinnedAt?: Date | null | undefined;
|
|
24653
|
+
pinOrder?: number | null | undefined;
|
|
24371
24654
|
folderId?: number | null | undefined;
|
|
24372
24655
|
defaultProductTypeId?: number | null | undefined;
|
|
24373
24656
|
}>;
|
|
@@ -24413,19 +24696,22 @@ declare const ProductCollectionUncheckedCreateWithoutDefaultProductTypeInputObje
|
|
|
24413
24696
|
id: z.ZodOptional<z.ZodNumber>;
|
|
24414
24697
|
name: z.ZodString;
|
|
24415
24698
|
folderId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
24416
|
-
|
|
24699
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
24700
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
24417
24701
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
24418
24702
|
}, "strict", z.ZodTypeAny, {
|
|
24419
24703
|
name: string;
|
|
24420
24704
|
id?: number | undefined;
|
|
24421
24705
|
updatedAt?: Date | undefined;
|
|
24422
|
-
|
|
24706
|
+
pinnedAt?: Date | null | undefined;
|
|
24707
|
+
pinOrder?: number | null | undefined;
|
|
24423
24708
|
folderId?: number | null | undefined;
|
|
24424
24709
|
}, {
|
|
24425
24710
|
name: string;
|
|
24426
24711
|
id?: number | undefined;
|
|
24427
24712
|
updatedAt?: Date | undefined;
|
|
24428
|
-
|
|
24713
|
+
pinnedAt?: Date | null | undefined;
|
|
24714
|
+
pinOrder?: number | null | undefined;
|
|
24429
24715
|
folderId?: number | null | undefined;
|
|
24430
24716
|
}>;
|
|
24431
24717
|
|
|
@@ -24434,19 +24720,22 @@ declare const ProductCollectionUncheckedCreateWithoutFolderInputObjectZodSchema:
|
|
|
24434
24720
|
id: z.ZodOptional<z.ZodNumber>;
|
|
24435
24721
|
name: z.ZodString;
|
|
24436
24722
|
defaultProductTypeId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
24437
|
-
|
|
24723
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
24724
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
24438
24725
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
24439
24726
|
}, "strict", z.ZodTypeAny, {
|
|
24440
24727
|
name: string;
|
|
24441
24728
|
id?: number | undefined;
|
|
24442
24729
|
updatedAt?: Date | undefined;
|
|
24443
|
-
|
|
24730
|
+
pinnedAt?: Date | null | undefined;
|
|
24731
|
+
pinOrder?: number | null | undefined;
|
|
24444
24732
|
defaultProductTypeId?: number | null | undefined;
|
|
24445
24733
|
}, {
|
|
24446
24734
|
name: string;
|
|
24447
24735
|
id?: number | undefined;
|
|
24448
24736
|
updatedAt?: Date | undefined;
|
|
24449
|
-
|
|
24737
|
+
pinnedAt?: Date | null | undefined;
|
|
24738
|
+
pinOrder?: number | null | undefined;
|
|
24450
24739
|
defaultProductTypeId?: number | null | undefined;
|
|
24451
24740
|
}>;
|
|
24452
24741
|
|
|
@@ -24456,20 +24745,23 @@ declare const ProductCollectionUncheckedUpdateInputObjectZodSchema: z.ZodObject<
|
|
|
24456
24745
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
24457
24746
|
folderId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24458
24747
|
defaultProductTypeId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24459
|
-
|
|
24748
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
24749
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24460
24750
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
24461
24751
|
}, "strict", z.ZodTypeAny, {
|
|
24462
24752
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
24463
24753
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24464
24754
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24465
|
-
|
|
24755
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
24756
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24466
24757
|
folderId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24467
24758
|
defaultProductTypeId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24468
24759
|
}, {
|
|
24469
24760
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
24470
24761
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24471
24762
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24472
|
-
|
|
24763
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
24764
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24473
24765
|
folderId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24474
24766
|
defaultProductTypeId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24475
24767
|
}>;
|
|
@@ -24480,20 +24772,23 @@ declare const ProductCollectionUncheckedUpdateManyInputObjectZodSchema: z.ZodObj
|
|
|
24480
24772
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
24481
24773
|
folderId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24482
24774
|
defaultProductTypeId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24483
|
-
|
|
24775
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
24776
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24484
24777
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
24485
24778
|
}, "strict", z.ZodTypeAny, {
|
|
24486
24779
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
24487
24780
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24488
24781
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24489
|
-
|
|
24782
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
24783
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24490
24784
|
folderId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24491
24785
|
defaultProductTypeId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24492
24786
|
}, {
|
|
24493
24787
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
24494
24788
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24495
24789
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24496
|
-
|
|
24790
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
24791
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24497
24792
|
folderId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24498
24793
|
defaultProductTypeId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24499
24794
|
}>;
|
|
@@ -24503,19 +24798,22 @@ declare const ProductCollectionUncheckedUpdateManyWithoutDefaultProductTypeInput
|
|
|
24503
24798
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
24504
24799
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
24505
24800
|
folderId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24506
|
-
|
|
24801
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
24802
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24507
24803
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
24508
24804
|
}, "strict", z.ZodTypeAny, {
|
|
24509
24805
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
24510
24806
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24511
24807
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24512
|
-
|
|
24808
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
24809
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24513
24810
|
folderId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24514
24811
|
}, {
|
|
24515
24812
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
24516
24813
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24517
24814
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24518
|
-
|
|
24815
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
24816
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24519
24817
|
folderId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24520
24818
|
}>;
|
|
24521
24819
|
|
|
@@ -24563,19 +24861,22 @@ declare const ProductCollectionUncheckedUpdateManyWithoutFolderInputObjectZodSch
|
|
|
24563
24861
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
24564
24862
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
24565
24863
|
defaultProductTypeId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24566
|
-
|
|
24864
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
24865
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24567
24866
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
24568
24867
|
}, "strict", z.ZodTypeAny, {
|
|
24569
24868
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
24570
24869
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24571
24870
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24572
|
-
|
|
24871
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
24872
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24573
24873
|
defaultProductTypeId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24574
24874
|
}, {
|
|
24575
24875
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
24576
24876
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24577
24877
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24578
|
-
|
|
24878
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
24879
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24579
24880
|
defaultProductTypeId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24580
24881
|
}>;
|
|
24581
24882
|
|
|
@@ -24623,19 +24924,22 @@ declare const ProductCollectionUncheckedUpdateWithoutDefaultProductTypeInputObje
|
|
|
24623
24924
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
24624
24925
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
24625
24926
|
folderId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24626
|
-
|
|
24927
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
24928
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24627
24929
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
24628
24930
|
}, "strict", z.ZodTypeAny, {
|
|
24629
24931
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
24630
24932
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24631
24933
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24632
|
-
|
|
24934
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
24935
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24633
24936
|
folderId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24634
24937
|
}, {
|
|
24635
24938
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
24636
24939
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24637
24940
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24638
|
-
|
|
24941
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
24942
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24639
24943
|
folderId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24640
24944
|
}>;
|
|
24641
24945
|
|
|
@@ -24644,39 +24948,45 @@ declare const ProductCollectionUncheckedUpdateWithoutFolderInputObjectZodSchema:
|
|
|
24644
24948
|
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
24645
24949
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
24646
24950
|
defaultProductTypeId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24647
|
-
|
|
24951
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
24952
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24648
24953
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
24649
24954
|
}, "strict", z.ZodTypeAny, {
|
|
24650
24955
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
24651
24956
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24652
24957
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24653
|
-
|
|
24958
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
24959
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24654
24960
|
defaultProductTypeId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24655
24961
|
}, {
|
|
24656
24962
|
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
24657
24963
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24658
24964
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24659
|
-
|
|
24965
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
24966
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24660
24967
|
defaultProductTypeId?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24661
24968
|
}>;
|
|
24662
24969
|
|
|
24663
24970
|
declare const ProductCollectionUpdateInputObjectSchema: z.ZodType<Prisma.ProductCollectionUpdateInput>;
|
|
24664
24971
|
declare const ProductCollectionUpdateInputObjectZodSchema: z.ZodObject<{
|
|
24665
24972
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
24666
|
-
|
|
24973
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
24974
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24667
24975
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
24668
24976
|
folder: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderUpdateOneWithoutCollectionsNestedInput, z.ZodTypeDef, Prisma.FolderUpdateOneWithoutCollectionsNestedInput>>>;
|
|
24669
24977
|
defaultProductType: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductTypeUpdateOneWithoutCollectionsNestedInput, z.ZodTypeDef, Prisma.ProductTypeUpdateOneWithoutCollectionsNestedInput>>>;
|
|
24670
24978
|
}, "strict", z.ZodTypeAny, {
|
|
24671
24979
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24672
24980
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24673
|
-
|
|
24981
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
24982
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24674
24983
|
folder?: Prisma.FolderUpdateOneWithoutCollectionsNestedInput | undefined;
|
|
24675
24984
|
defaultProductType?: Prisma.ProductTypeUpdateOneWithoutCollectionsNestedInput | undefined;
|
|
24676
24985
|
}, {
|
|
24677
24986
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24678
24987
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24679
|
-
|
|
24988
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
24989
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24680
24990
|
folder?: Prisma.FolderUpdateOneWithoutCollectionsNestedInput | undefined;
|
|
24681
24991
|
defaultProductType?: Prisma.ProductTypeUpdateOneWithoutCollectionsNestedInput | undefined;
|
|
24682
24992
|
}>;
|
|
@@ -24684,16 +24994,19 @@ declare const ProductCollectionUpdateInputObjectZodSchema: z.ZodObject<{
|
|
|
24684
24994
|
declare const ProductCollectionUpdateManyMutationInputObjectSchema: z.ZodType<Prisma.ProductCollectionUpdateManyMutationInput>;
|
|
24685
24995
|
declare const ProductCollectionUpdateManyMutationInputObjectZodSchema: z.ZodObject<{
|
|
24686
24996
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
24687
|
-
|
|
24997
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
24998
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24688
24999
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
24689
25000
|
}, "strict", z.ZodTypeAny, {
|
|
24690
25001
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24691
25002
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24692
|
-
|
|
25003
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
25004
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24693
25005
|
}, {
|
|
24694
25006
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24695
25007
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24696
|
-
|
|
25008
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
25009
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24697
25010
|
}>;
|
|
24698
25011
|
|
|
24699
25012
|
declare const ProductCollectionUpdateManyWithWhereWithoutDefaultProductTypeInputObjectSchema: z.ZodType<Prisma.ProductCollectionUpdateManyWithWhereWithoutDefaultProductTypeInput>;
|
|
@@ -24825,36 +25138,42 @@ declare const ProductCollectionUpdateWithWhereUniqueWithoutFolderInputObjectZodS
|
|
|
24825
25138
|
declare const ProductCollectionUpdateWithoutDefaultProductTypeInputObjectSchema: z.ZodType<Prisma.ProductCollectionUpdateWithoutDefaultProductTypeInput>;
|
|
24826
25139
|
declare const ProductCollectionUpdateWithoutDefaultProductTypeInputObjectZodSchema: z.ZodObject<{
|
|
24827
25140
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
24828
|
-
|
|
25141
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
25142
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24829
25143
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
24830
25144
|
folder: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.FolderUpdateOneWithoutCollectionsNestedInput, z.ZodTypeDef, Prisma.FolderUpdateOneWithoutCollectionsNestedInput>>>;
|
|
24831
25145
|
}, "strict", z.ZodTypeAny, {
|
|
24832
25146
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24833
25147
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24834
|
-
|
|
25148
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
25149
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24835
25150
|
folder?: Prisma.FolderUpdateOneWithoutCollectionsNestedInput | undefined;
|
|
24836
25151
|
}, {
|
|
24837
25152
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24838
25153
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24839
|
-
|
|
25154
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
25155
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24840
25156
|
folder?: Prisma.FolderUpdateOneWithoutCollectionsNestedInput | undefined;
|
|
24841
25157
|
}>;
|
|
24842
25158
|
|
|
24843
25159
|
declare const ProductCollectionUpdateWithoutFolderInputObjectSchema: z.ZodType<Prisma.ProductCollectionUpdateWithoutFolderInput>;
|
|
24844
25160
|
declare const ProductCollectionUpdateWithoutFolderInputObjectZodSchema: z.ZodObject<{
|
|
24845
25161
|
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
|
24846
|
-
|
|
25162
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableDateTimeFieldUpdateOperationsInput>>]>>>;
|
|
25163
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
|
|
24847
25164
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
24848
25165
|
defaultProductType: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ProductTypeUpdateOneWithoutCollectionsNestedInput, z.ZodTypeDef, Prisma.ProductTypeUpdateOneWithoutCollectionsNestedInput>>>;
|
|
24849
25166
|
}, "strict", z.ZodTypeAny, {
|
|
24850
25167
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24851
25168
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24852
|
-
|
|
25169
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
25170
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24853
25171
|
defaultProductType?: Prisma.ProductTypeUpdateOneWithoutCollectionsNestedInput | undefined;
|
|
24854
25172
|
}, {
|
|
24855
25173
|
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
|
24856
25174
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
24857
|
-
|
|
25175
|
+
pinnedAt?: Date | Prisma.NullableDateTimeFieldUpdateOperationsInput | null | undefined;
|
|
25176
|
+
pinOrder?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
|
|
24858
25177
|
defaultProductType?: Prisma.ProductTypeUpdateOneWithoutCollectionsNestedInput | undefined;
|
|
24859
25178
|
}>;
|
|
24860
25179
|
|
|
@@ -24897,7 +25216,8 @@ declare const ProductCollectionWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
24897
25216
|
name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
24898
25217
|
folderId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
24899
25218
|
defaultProductTypeId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
24900
|
-
|
|
25219
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeNullableFilter<never>, z.ZodTypeDef, Prisma.DateTimeNullableFilter<never>>>, z.ZodDate]>>>;
|
|
25220
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
24901
25221
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
24902
25222
|
folder: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.FolderNullableScalarRelationFilter, z.ZodTypeDef, Prisma.FolderNullableScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.FolderWhereInput, z.ZodTypeDef, Prisma.FolderWhereInput>>]>>;
|
|
24903
25223
|
defaultProductType: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.ProductTypeNullableScalarRelationFilter, z.ZodTypeDef, Prisma.ProductTypeNullableScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.ProductTypeWhereInput, z.ZodTypeDef, Prisma.ProductTypeWhereInput>>]>>;
|
|
@@ -24905,7 +25225,8 @@ declare const ProductCollectionWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
24905
25225
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
24906
25226
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
24907
25227
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
24908
|
-
|
|
25228
|
+
pinnedAt?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
25229
|
+
pinOrder?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
24909
25230
|
folderId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
24910
25231
|
defaultProductTypeId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
24911
25232
|
AND?: Prisma.ProductCollectionWhereInput | Prisma.ProductCollectionWhereInput[] | undefined;
|
|
@@ -24917,7 +25238,8 @@ declare const ProductCollectionWhereInputObjectZodSchema: z.ZodObject<{
|
|
|
24917
25238
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
24918
25239
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
24919
25240
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
24920
|
-
|
|
25241
|
+
pinnedAt?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
25242
|
+
pinOrder?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
24921
25243
|
folderId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
24922
25244
|
defaultProductTypeId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
24923
25245
|
AND?: Prisma.ProductCollectionWhereInput | Prisma.ProductCollectionWhereInput[] | undefined;
|
|
@@ -28249,7 +28571,8 @@ declare const FolderModelSchema: z.ZodObject<{
|
|
|
28249
28571
|
id: z.ZodNumber;
|
|
28250
28572
|
name: z.ZodString;
|
|
28251
28573
|
parentId: z.ZodNullable<z.ZodNumber>;
|
|
28252
|
-
|
|
28574
|
+
pinnedAt: z.ZodNullable<z.ZodDate>;
|
|
28575
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
28253
28576
|
updatedAt: z.ZodDate;
|
|
28254
28577
|
parent: z.ZodNullable<z.ZodUnknown>;
|
|
28255
28578
|
children: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -28259,7 +28582,8 @@ declare const FolderModelSchema: z.ZodObject<{
|
|
|
28259
28582
|
name: string;
|
|
28260
28583
|
updatedAt: Date;
|
|
28261
28584
|
parentId: number | null;
|
|
28262
|
-
|
|
28585
|
+
pinnedAt: Date | null;
|
|
28586
|
+
pinOrder: number | null;
|
|
28263
28587
|
collections: unknown[];
|
|
28264
28588
|
children: unknown[];
|
|
28265
28589
|
parent?: unknown;
|
|
@@ -28268,7 +28592,8 @@ declare const FolderModelSchema: z.ZodObject<{
|
|
|
28268
28592
|
name: string;
|
|
28269
28593
|
updatedAt: Date;
|
|
28270
28594
|
parentId: number | null;
|
|
28271
|
-
|
|
28595
|
+
pinnedAt: Date | null;
|
|
28596
|
+
pinOrder: number | null;
|
|
28272
28597
|
collections: unknown[];
|
|
28273
28598
|
children: unknown[];
|
|
28274
28599
|
parent?: unknown;
|
|
@@ -28280,7 +28605,8 @@ declare const ProductCollectionModelSchema: z.ZodObject<{
|
|
|
28280
28605
|
name: z.ZodString;
|
|
28281
28606
|
folderId: z.ZodNullable<z.ZodNumber>;
|
|
28282
28607
|
defaultProductTypeId: z.ZodNullable<z.ZodNumber>;
|
|
28283
|
-
|
|
28608
|
+
pinnedAt: z.ZodNullable<z.ZodDate>;
|
|
28609
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
28284
28610
|
updatedAt: z.ZodDate;
|
|
28285
28611
|
folder: z.ZodNullable<z.ZodUnknown>;
|
|
28286
28612
|
defaultProductType: z.ZodNullable<z.ZodUnknown>;
|
|
@@ -28288,7 +28614,8 @@ declare const ProductCollectionModelSchema: z.ZodObject<{
|
|
|
28288
28614
|
id: number;
|
|
28289
28615
|
name: string;
|
|
28290
28616
|
updatedAt: Date;
|
|
28291
|
-
|
|
28617
|
+
pinnedAt: Date | null;
|
|
28618
|
+
pinOrder: number | null;
|
|
28292
28619
|
folderId: number | null;
|
|
28293
28620
|
defaultProductTypeId: number | null;
|
|
28294
28621
|
folder?: unknown;
|
|
@@ -28297,7 +28624,8 @@ declare const ProductCollectionModelSchema: z.ZodObject<{
|
|
|
28297
28624
|
id: number;
|
|
28298
28625
|
name: string;
|
|
28299
28626
|
updatedAt: Date;
|
|
28300
|
-
|
|
28627
|
+
pinnedAt: Date | null;
|
|
28628
|
+
pinOrder: number | null;
|
|
28301
28629
|
folderId: number | null;
|
|
28302
28630
|
defaultProductTypeId: number | null;
|
|
28303
28631
|
folder?: unknown;
|
|
@@ -28594,7 +28922,8 @@ declare const FolderInputSchema: z.ZodObject<{
|
|
|
28594
28922
|
id: z.ZodNumber;
|
|
28595
28923
|
name: z.ZodString;
|
|
28596
28924
|
parentId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
28597
|
-
|
|
28925
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
28926
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
28598
28927
|
updatedAt: z.ZodDate;
|
|
28599
28928
|
parent: z.ZodNullable<z.ZodOptional<z.ZodUnknown>>;
|
|
28600
28929
|
children: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -28603,19 +28932,21 @@ declare const FolderInputSchema: z.ZodObject<{
|
|
|
28603
28932
|
id: number;
|
|
28604
28933
|
name: string;
|
|
28605
28934
|
updatedAt: Date;
|
|
28606
|
-
sortOrder: number;
|
|
28607
28935
|
collections: unknown[];
|
|
28608
28936
|
children: unknown[];
|
|
28609
28937
|
parentId?: number | null | undefined;
|
|
28938
|
+
pinnedAt?: Date | null | undefined;
|
|
28939
|
+
pinOrder?: number | null | undefined;
|
|
28610
28940
|
parent?: unknown;
|
|
28611
28941
|
}, {
|
|
28612
28942
|
id: number;
|
|
28613
28943
|
name: string;
|
|
28614
28944
|
updatedAt: Date;
|
|
28615
|
-
sortOrder: number;
|
|
28616
28945
|
collections: unknown[];
|
|
28617
28946
|
children: unknown[];
|
|
28618
28947
|
parentId?: number | null | undefined;
|
|
28948
|
+
pinnedAt?: Date | null | undefined;
|
|
28949
|
+
pinOrder?: number | null | undefined;
|
|
28619
28950
|
parent?: unknown;
|
|
28620
28951
|
}>;
|
|
28621
28952
|
type FolderInputType = z.infer<typeof FolderInputSchema>;
|
|
@@ -28625,7 +28956,8 @@ declare const ProductCollectionInputSchema: z.ZodObject<{
|
|
|
28625
28956
|
name: z.ZodString;
|
|
28626
28957
|
folderId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
28627
28958
|
defaultProductTypeId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
28628
|
-
|
|
28959
|
+
pinnedAt: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
28960
|
+
pinOrder: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
28629
28961
|
updatedAt: z.ZodDate;
|
|
28630
28962
|
folder: z.ZodNullable<z.ZodOptional<z.ZodUnknown>>;
|
|
28631
28963
|
defaultProductType: z.ZodNullable<z.ZodOptional<z.ZodUnknown>>;
|
|
@@ -28633,7 +28965,8 @@ declare const ProductCollectionInputSchema: z.ZodObject<{
|
|
|
28633
28965
|
id: number;
|
|
28634
28966
|
name: string;
|
|
28635
28967
|
updatedAt: Date;
|
|
28636
|
-
|
|
28968
|
+
pinnedAt?: Date | null | undefined;
|
|
28969
|
+
pinOrder?: number | null | undefined;
|
|
28637
28970
|
folderId?: number | null | undefined;
|
|
28638
28971
|
defaultProductTypeId?: number | null | undefined;
|
|
28639
28972
|
folder?: unknown;
|
|
@@ -28642,7 +28975,8 @@ declare const ProductCollectionInputSchema: z.ZodObject<{
|
|
|
28642
28975
|
id: number;
|
|
28643
28976
|
name: string;
|
|
28644
28977
|
updatedAt: Date;
|
|
28645
|
-
|
|
28978
|
+
pinnedAt?: Date | null | undefined;
|
|
28979
|
+
pinOrder?: number | null | undefined;
|
|
28646
28980
|
folderId?: number | null | undefined;
|
|
28647
28981
|
defaultProductTypeId?: number | null | undefined;
|
|
28648
28982
|
folder?: unknown;
|
|
@@ -28939,7 +29273,8 @@ declare const FolderResultSchema: z.ZodObject<{
|
|
|
28939
29273
|
id: z.ZodNumber;
|
|
28940
29274
|
name: z.ZodString;
|
|
28941
29275
|
parentId: z.ZodNullable<z.ZodNumber>;
|
|
28942
|
-
|
|
29276
|
+
pinnedAt: z.ZodNullable<z.ZodDate>;
|
|
29277
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
28943
29278
|
updatedAt: z.ZodDate;
|
|
28944
29279
|
parent: z.ZodNullable<z.ZodUnknown>;
|
|
28945
29280
|
children: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -28949,7 +29284,8 @@ declare const FolderResultSchema: z.ZodObject<{
|
|
|
28949
29284
|
name: string;
|
|
28950
29285
|
updatedAt: Date;
|
|
28951
29286
|
parentId: number | null;
|
|
28952
|
-
|
|
29287
|
+
pinnedAt: Date | null;
|
|
29288
|
+
pinOrder: number | null;
|
|
28953
29289
|
collections: unknown[];
|
|
28954
29290
|
children: unknown[];
|
|
28955
29291
|
parent?: unknown;
|
|
@@ -28958,7 +29294,8 @@ declare const FolderResultSchema: z.ZodObject<{
|
|
|
28958
29294
|
name: string;
|
|
28959
29295
|
updatedAt: Date;
|
|
28960
29296
|
parentId: number | null;
|
|
28961
|
-
|
|
29297
|
+
pinnedAt: Date | null;
|
|
29298
|
+
pinOrder: number | null;
|
|
28962
29299
|
collections: unknown[];
|
|
28963
29300
|
children: unknown[];
|
|
28964
29301
|
parent?: unknown;
|
|
@@ -28970,7 +29307,8 @@ declare const ProductCollectionResultSchema: z.ZodObject<{
|
|
|
28970
29307
|
name: z.ZodString;
|
|
28971
29308
|
folderId: z.ZodNullable<z.ZodNumber>;
|
|
28972
29309
|
defaultProductTypeId: z.ZodNullable<z.ZodNumber>;
|
|
28973
|
-
|
|
29310
|
+
pinnedAt: z.ZodNullable<z.ZodDate>;
|
|
29311
|
+
pinOrder: z.ZodNullable<z.ZodNumber>;
|
|
28974
29312
|
updatedAt: z.ZodDate;
|
|
28975
29313
|
folder: z.ZodNullable<z.ZodUnknown>;
|
|
28976
29314
|
defaultProductType: z.ZodNullable<z.ZodUnknown>;
|
|
@@ -28978,7 +29316,8 @@ declare const ProductCollectionResultSchema: z.ZodObject<{
|
|
|
28978
29316
|
id: number;
|
|
28979
29317
|
name: string;
|
|
28980
29318
|
updatedAt: Date;
|
|
28981
|
-
|
|
29319
|
+
pinnedAt: Date | null;
|
|
29320
|
+
pinOrder: number | null;
|
|
28982
29321
|
folderId: number | null;
|
|
28983
29322
|
defaultProductTypeId: number | null;
|
|
28984
29323
|
folder?: unknown;
|
|
@@ -28987,7 +29326,8 @@ declare const ProductCollectionResultSchema: z.ZodObject<{
|
|
|
28987
29326
|
id: number;
|
|
28988
29327
|
name: string;
|
|
28989
29328
|
updatedAt: Date;
|
|
28990
|
-
|
|
29329
|
+
pinnedAt: Date | null;
|
|
29330
|
+
pinOrder: number | null;
|
|
28991
29331
|
folderId: number | null;
|
|
28992
29332
|
defaultProductTypeId: number | null;
|
|
28993
29333
|
folder?: unknown;
|
|
@@ -29266,7 +29606,7 @@ interface Paginated<T> {
|
|
|
29266
29606
|
pages: number;
|
|
29267
29607
|
}
|
|
29268
29608
|
|
|
29269
|
-
declare const ALL_PERMISSIONS: readonly ["organization:create", "organization:update", "warehouse:create", "warehouse:update", "locality:create", "employee:create", "employee:update:info", "employee:update:warehouse", "employee:update:roles", "employee:update:email", "employee:update:password", "employee:toggle:active", "employee:update:avatar", "employee:update:own:info", "employee:update:own:email", "employee:update:own:password", "employee:update:own:avatar", "role:create", "role:update", "product_type:create", "product_type:update", "folder:create", "folder:update", "folder:delete", "product_collection:create", "product_collection:update", "product_collection:delete"];
|
|
29609
|
+
declare const ALL_PERMISSIONS: readonly ["organization:create", "organization:update", "warehouse:create", "warehouse:update", "locality:create", "employee:create", "employee:update:info", "employee:update:warehouse", "employee:update:roles", "employee:update:email", "employee:update:password", "employee:toggle:active", "employee:update:avatar", "employee:update:own:info", "employee:update:own:email", "employee:update:own:password", "employee:update:own:avatar", "role:create", "role:update", "product_type:create", "product_type:update", "folder:create", "folder:update", "folder:delete", "folder:pin", "product_collection:create", "product_collection:update", "product_collection:delete", "product_collection:pin"];
|
|
29270
29610
|
type Permission = (typeof ALL_PERMISSIONS)[number];
|
|
29271
29611
|
declare const LoginSchema: z$1.ZodObject<{
|
|
29272
29612
|
email: z$1.ZodString;
|
|
@@ -30984,18 +31324,18 @@ declare const ProductCollectionSchema: z$1.ZodObject<{
|
|
|
30984
31324
|
id: number;
|
|
30985
31325
|
name: string;
|
|
30986
31326
|
updatedAt: string;
|
|
30987
|
-
folderId: number | null;
|
|
30988
|
-
defaultProductTypeId: number | null;
|
|
30989
31327
|
pinnedAt: string | null;
|
|
30990
31328
|
pinOrder: number | null;
|
|
31329
|
+
folderId: number | null;
|
|
31330
|
+
defaultProductTypeId: number | null;
|
|
30991
31331
|
}, {
|
|
30992
31332
|
id: number;
|
|
30993
31333
|
name: string;
|
|
30994
31334
|
updatedAt: string;
|
|
30995
|
-
folderId: number | null;
|
|
30996
|
-
defaultProductTypeId: number | null;
|
|
30997
31335
|
pinnedAt: string | null;
|
|
30998
31336
|
pinOrder: number | null;
|
|
31337
|
+
folderId: number | null;
|
|
31338
|
+
defaultProductTypeId: number | null;
|
|
30999
31339
|
}>;
|
|
31000
31340
|
type CreateProductCollectionDto = z$1.infer<typeof CreateProductCollectionSchema>;
|
|
31001
31341
|
type UpdateProductCollectionDto = z$1.infer<typeof UpdateProductCollectionSchema>;
|