@spscommerce/asst-api 4.1.0 → 4.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- import './CompanyBriefByOrg-itus4RMD.js';
1
+ import './CompanyBriefByOrg-Dy2omcT0.js';
2
2
  import { z } from 'zod';
3
3
 
4
4
  declare const importSchema: z.ZodObject<{
@@ -605,848 +605,6 @@ type ItemHierarchyResponse = {
605
605
  };
606
606
  declare const itemHierarchyResponseSchema: z.ZodType<ItemHierarchyResponse>;
607
607
 
608
- declare const attributeMetaDataSchema: z.ZodObject<{
609
- dbName: z.ZodString;
610
- label: z.ZodString;
611
- group: z.ZodString;
612
- aliases: z.ZodArray<z.ZodString, "many">;
613
- orderBy: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
614
- type: z.ZodString;
615
- storageType: z.ZodString;
616
- rsxPath: z.ZodString;
617
- indexed: z.ZodBoolean;
618
- repeatable: z.ZodBoolean;
619
- extended: z.ZodBoolean;
620
- hybrid: z.ZodBoolean;
621
- userVisible: z.ZodBoolean;
622
- retailerOwnedId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
623
- }, "strip", z.ZodTypeAny, {
624
- type: string;
625
- label: string;
626
- dbName: string;
627
- group: string;
628
- aliases: string[];
629
- orderBy: string | number;
630
- storageType: string;
631
- rsxPath: string;
632
- indexed: boolean;
633
- repeatable: boolean;
634
- extended: boolean;
635
- hybrid: boolean;
636
- userVisible: boolean;
637
- retailerOwnedId?: number | null | undefined;
638
- }, {
639
- type: string;
640
- label: string;
641
- dbName: string;
642
- group: string;
643
- aliases: string[];
644
- orderBy: string | number;
645
- storageType: string;
646
- rsxPath: string;
647
- indexed: boolean;
648
- repeatable: boolean;
649
- extended: boolean;
650
- hybrid: boolean;
651
- userVisible: boolean;
652
- retailerOwnedId?: number | null | undefined;
653
- }>;
654
- type AttributeMetaData = z.infer<typeof attributeMetaDataSchema>;
655
-
656
- declare const attributesByCompanySchema: z.ZodObject<{
657
- next: z.ZodOptional<z.ZodNullable<z.ZodString>>;
658
- previous: z.ZodOptional<z.ZodNullable<z.ZodString>>;
659
- count: z.ZodNumber;
660
- results: z.ZodArray<z.ZodObject<{
661
- attributeId: z.ZodNumber;
662
- attributeName: z.ZodString;
663
- displayName: z.ZodString;
664
- modifiedBy: z.ZodString;
665
- modifiedDate: z.ZodNumber;
666
- retailerOwnedId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
667
- clusterAttrGroupId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
668
- attributeType: z.ZodString;
669
- }, "strip", z.ZodTypeAny, {
670
- modifiedDate: number;
671
- modifiedBy: string;
672
- attributeId: number;
673
- attributeName: string;
674
- displayName: string;
675
- attributeType: string;
676
- retailerOwnedId?: number | null | undefined;
677
- clusterAttrGroupId?: number | null | undefined;
678
- }, {
679
- modifiedDate: number;
680
- modifiedBy: string;
681
- attributeId: number;
682
- attributeName: string;
683
- displayName: string;
684
- attributeType: string;
685
- retailerOwnedId?: number | null | undefined;
686
- clusterAttrGroupId?: number | null | undefined;
687
- }>, "many">;
688
- }, "strip", z.ZodTypeAny, {
689
- count: number;
690
- results: {
691
- modifiedDate: number;
692
- modifiedBy: string;
693
- attributeId: number;
694
- attributeName: string;
695
- displayName: string;
696
- attributeType: string;
697
- retailerOwnedId?: number | null | undefined;
698
- clusterAttrGroupId?: number | null | undefined;
699
- }[];
700
- next?: string | null | undefined;
701
- previous?: string | null | undefined;
702
- }, {
703
- count: number;
704
- results: {
705
- modifiedDate: number;
706
- modifiedBy: string;
707
- attributeId: number;
708
- attributeName: string;
709
- displayName: string;
710
- attributeType: string;
711
- retailerOwnedId?: number | null | undefined;
712
- clusterAttrGroupId?: number | null | undefined;
713
- }[];
714
- next?: string | null | undefined;
715
- previous?: string | null | undefined;
716
- }>;
717
- type AttributesByCompany = z.infer<typeof attributesByCompanySchema>;
718
-
719
- declare const attributeSummarySchema: z.ZodObject<{
720
- attributeId: z.ZodNumber;
721
- attributeName: z.ZodString;
722
- displayName: z.ZodString;
723
- modifiedBy: z.ZodString;
724
- modifiedDate: z.ZodNumber;
725
- retailerOwnedId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
726
- clusterAttrGroupId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
727
- attributeType: z.ZodString;
728
- }, "strip", z.ZodTypeAny, {
729
- modifiedDate: number;
730
- modifiedBy: string;
731
- attributeId: number;
732
- attributeName: string;
733
- displayName: string;
734
- attributeType: string;
735
- retailerOwnedId?: number | null | undefined;
736
- clusterAttrGroupId?: number | null | undefined;
737
- }, {
738
- modifiedDate: number;
739
- modifiedBy: string;
740
- attributeId: number;
741
- attributeName: string;
742
- displayName: string;
743
- attributeType: string;
744
- retailerOwnedId?: number | null | undefined;
745
- clusterAttrGroupId?: number | null | undefined;
746
- }>;
747
- type AttributeSummary = z.infer<typeof attributeSummarySchema>;
748
-
749
- declare const attrDatatypeNameEnumSchema: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "STRING", "REAL"]>;
750
- type AttrDatatypeNameEnum = z.infer<typeof attrDatatypeNameEnumSchema>;
751
-
752
- declare const attributeDefinitionSchema: z.ZodObject<{
753
- attrDataTypeId: z.ZodNumber;
754
- attrDatatype: z.ZodObject<{
755
- attrDatatypeId: z.ZodNumber;
756
- datatypeName: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "STRING", "REAL"]>;
757
- displayOnly: z.ZodBoolean;
758
- }, "strip", z.ZodTypeAny, {
759
- attrDatatypeId: number;
760
- datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
761
- displayOnly: boolean;
762
- }, {
763
- attrDatatypeId: number;
764
- datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
765
- displayOnly: boolean;
766
- }>;
767
- attrGroupId: z.ZodNumber;
768
- attrGroups: z.ZodArray<z.ZodObject<{
769
- attrGroupId: z.ZodNumber;
770
- attrGroupType: z.ZodObject<{
771
- attrGroupTypeId: z.ZodNumber;
772
- groupTypeName: z.ZodString;
773
- primary: z.ZodBoolean;
774
- restricted: z.ZodBoolean;
775
- }, "strip", z.ZodTypeAny, {
776
- attrGroupTypeId: number;
777
- groupTypeName: string;
778
- primary: boolean;
779
- restricted: boolean;
780
- }, {
781
- attrGroupTypeId: number;
782
- groupTypeName: string;
783
- primary: boolean;
784
- restricted: boolean;
785
- }>;
786
- attrGroupTypeId: z.ZodNumber;
787
- groupName: z.ZodString;
788
- isDefault: z.ZodBoolean;
789
- orderWeight: z.ZodNumber;
790
- primary: z.ZodBoolean;
791
- }, "strip", z.ZodTypeAny, {
792
- attrGroupId: number;
793
- attrGroupType: {
794
- attrGroupTypeId: number;
795
- groupTypeName: string;
796
- primary: boolean;
797
- restricted: boolean;
798
- };
799
- attrGroupTypeId: number;
800
- primary: boolean;
801
- groupName: string;
802
- isDefault: boolean;
803
- orderWeight: number;
804
- }, {
805
- attrGroupId: number;
806
- attrGroupType: {
807
- attrGroupTypeId: number;
808
- groupTypeName: string;
809
- primary: boolean;
810
- restricted: boolean;
811
- };
812
- attrGroupTypeId: number;
813
- primary: boolean;
814
- groupName: string;
815
- isDefault: boolean;
816
- orderWeight: number;
817
- }>, "many">;
818
- attrRestrictions: z.ZodOptional<z.ZodArray<z.ZodObject<{
819
- attrRestrictId: z.ZodNumber;
820
- ignoreGlobal: z.ZodOptional<z.ZodBoolean>;
821
- isDefault: z.ZodBoolean;
822
- isEssential: z.ZodBoolean;
823
- locale: z.ZodString;
824
- mandatory: z.ZodBoolean;
825
- repeatable: z.ZodBoolean;
826
- minLength: z.ZodOptional<z.ZodNumber>;
827
- maxLength: z.ZodOptional<z.ZodNumber>;
828
- }, "strip", z.ZodTypeAny, {
829
- repeatable: boolean;
830
- isDefault: boolean;
831
- attrRestrictId: number;
832
- isEssential: boolean;
833
- locale: string;
834
- mandatory: boolean;
835
- ignoreGlobal?: boolean | undefined;
836
- minLength?: number | undefined;
837
- maxLength?: number | undefined;
838
- }, {
839
- repeatable: boolean;
840
- isDefault: boolean;
841
- attrRestrictId: number;
842
- isEssential: boolean;
843
- locale: string;
844
- mandatory: boolean;
845
- ignoreGlobal?: boolean | undefined;
846
- minLength?: number | undefined;
847
- maxLength?: number | undefined;
848
- }>, "many">>;
849
- attrRoundId: z.ZodNumber;
850
- attrStorage: z.ZodObject<{
851
- attrStorageId: z.ZodNumber;
852
- storageName: z.ZodString;
853
- }, "strip", z.ZodTypeAny, {
854
- attrStorageId: number;
855
- storageName: string;
856
- }, {
857
- attrStorageId: number;
858
- storageName: string;
859
- }>;
860
- attrStorageId: z.ZodNumber;
861
- attrValues: z.ZodOptional<z.ZodArray<z.ZodObject<{
862
- attrKeyPair: z.ZodString;
863
- attrValueId: z.ZodOptional<z.ZodNumber>;
864
- isDefault: z.ZodBoolean;
865
- locale: z.ZodString;
866
- value: z.ZodString;
867
- }, "strip", z.ZodTypeAny, {
868
- value: string;
869
- isDefault: boolean;
870
- locale: string;
871
- attrKeyPair: string;
872
- attrValueId?: number | undefined;
873
- }, {
874
- value: string;
875
- isDefault: boolean;
876
- locale: string;
877
- attrKeyPair: string;
878
- attrValueId?: number | undefined;
879
- }>, "many">>;
880
- attributeId: z.ZodNumber;
881
- attributeName: z.ZodString;
882
- createdBy: z.ZodString;
883
- createdDate: z.ZodNumber;
884
- description: z.ZodOptional<z.ZodString>;
885
- displayName: z.ZodString;
886
- modifiedDate: z.ZodNumber;
887
- orderWeight: z.ZodOptional<z.ZodNumber>;
888
- parentAttribute: z.ZodOptional<z.ZodObject<{
889
- attrDataTypeId: z.ZodNumber;
890
- attrDatatype: z.ZodObject<{
891
- attrDatatypeId: z.ZodNumber;
892
- datatypeName: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "STRING", "REAL"]>;
893
- displayOnly: z.ZodBoolean;
894
- }, "strip", z.ZodTypeAny, {
895
- attrDatatypeId: number;
896
- datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
897
- displayOnly: boolean;
898
- }, {
899
- attrDatatypeId: number;
900
- datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
901
- displayOnly: boolean;
902
- }>;
903
- attrGroupId: z.ZodNumber;
904
- attrGroups: z.ZodArray<z.ZodObject<{
905
- attrGroupId: z.ZodNumber;
906
- attrGroupType: z.ZodObject<{
907
- attrGroupTypeId: z.ZodNumber;
908
- groupTypeName: z.ZodString;
909
- primary: z.ZodBoolean;
910
- restricted: z.ZodBoolean;
911
- }, "strip", z.ZodTypeAny, {
912
- attrGroupTypeId: number;
913
- groupTypeName: string;
914
- primary: boolean;
915
- restricted: boolean;
916
- }, {
917
- attrGroupTypeId: number;
918
- groupTypeName: string;
919
- primary: boolean;
920
- restricted: boolean;
921
- }>;
922
- attrGroupTypeId: z.ZodNumber;
923
- groupName: z.ZodString;
924
- isDefault: z.ZodBoolean;
925
- orderWeight: z.ZodNumber;
926
- primary: z.ZodBoolean;
927
- }, "strip", z.ZodTypeAny, {
928
- attrGroupId: number;
929
- attrGroupType: {
930
- attrGroupTypeId: number;
931
- groupTypeName: string;
932
- primary: boolean;
933
- restricted: boolean;
934
- };
935
- attrGroupTypeId: number;
936
- primary: boolean;
937
- groupName: string;
938
- isDefault: boolean;
939
- orderWeight: number;
940
- }, {
941
- attrGroupId: number;
942
- attrGroupType: {
943
- attrGroupTypeId: number;
944
- groupTypeName: string;
945
- primary: boolean;
946
- restricted: boolean;
947
- };
948
- attrGroupTypeId: number;
949
- primary: boolean;
950
- groupName: string;
951
- isDefault: boolean;
952
- orderWeight: number;
953
- }>, "many">;
954
- attrRoundId: z.ZodNumber;
955
- attrStorageId: z.ZodNumber;
956
- attributeId: z.ZodNumber;
957
- attributeName: z.ZodString;
958
- createdBy: z.ZodString;
959
- createdDate: z.ZodNumber;
960
- description: z.ZodOptional<z.ZodString>;
961
- displayName: z.ZodString;
962
- modifiedDate: z.ZodNumber;
963
- orderWeight: z.ZodNumber;
964
- parentAttributeId: z.ZodOptional<z.ZodNumber>;
965
- primaryAttrGroup: z.ZodObject<{
966
- attrGroupId: z.ZodNumber;
967
- attrGroupType: z.ZodObject<{
968
- attrGroupTypeId: z.ZodNumber;
969
- groupTypeName: z.ZodString;
970
- primary: z.ZodBoolean;
971
- restricted: z.ZodBoolean;
972
- }, "strip", z.ZodTypeAny, {
973
- attrGroupTypeId: number;
974
- groupTypeName: string;
975
- primary: boolean;
976
- restricted: boolean;
977
- }, {
978
- attrGroupTypeId: number;
979
- groupTypeName: string;
980
- primary: boolean;
981
- restricted: boolean;
982
- }>;
983
- attrGroupTypeId: z.ZodNumber;
984
- groupName: z.ZodString;
985
- isDefault: z.ZodBoolean;
986
- orderWeight: z.ZodNumber;
987
- primary: z.ZodBoolean;
988
- }, "strip", z.ZodTypeAny, {
989
- attrGroupId: number;
990
- attrGroupType: {
991
- attrGroupTypeId: number;
992
- groupTypeName: string;
993
- primary: boolean;
994
- restricted: boolean;
995
- };
996
- attrGroupTypeId: number;
997
- primary: boolean;
998
- groupName: string;
999
- isDefault: boolean;
1000
- orderWeight: number;
1001
- }, {
1002
- attrGroupId: number;
1003
- attrGroupType: {
1004
- attrGroupTypeId: number;
1005
- groupTypeName: string;
1006
- primary: boolean;
1007
- restricted: boolean;
1008
- };
1009
- attrGroupTypeId: number;
1010
- primary: boolean;
1011
- groupName: string;
1012
- isDefault: boolean;
1013
- orderWeight: number;
1014
- }>;
1015
- }, "strip", z.ZodTypeAny, {
1016
- createdDate: number;
1017
- createdBy: string;
1018
- modifiedDate: number;
1019
- attributeId: number;
1020
- attributeName: string;
1021
- displayName: string;
1022
- attrGroupId: number;
1023
- orderWeight: number;
1024
- attrDataTypeId: number;
1025
- attrDatatype: {
1026
- attrDatatypeId: number;
1027
- datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
1028
- displayOnly: boolean;
1029
- };
1030
- attrGroups: {
1031
- attrGroupId: number;
1032
- attrGroupType: {
1033
- attrGroupTypeId: number;
1034
- groupTypeName: string;
1035
- primary: boolean;
1036
- restricted: boolean;
1037
- };
1038
- attrGroupTypeId: number;
1039
- primary: boolean;
1040
- groupName: string;
1041
- isDefault: boolean;
1042
- orderWeight: number;
1043
- }[];
1044
- attrRoundId: number;
1045
- attrStorageId: number;
1046
- primaryAttrGroup: {
1047
- attrGroupId: number;
1048
- attrGroupType: {
1049
- attrGroupTypeId: number;
1050
- groupTypeName: string;
1051
- primary: boolean;
1052
- restricted: boolean;
1053
- };
1054
- attrGroupTypeId: number;
1055
- primary: boolean;
1056
- groupName: string;
1057
- isDefault: boolean;
1058
- orderWeight: number;
1059
- };
1060
- description?: string | undefined;
1061
- parentAttributeId?: number | undefined;
1062
- }, {
1063
- createdDate: number;
1064
- createdBy: string;
1065
- modifiedDate: number;
1066
- attributeId: number;
1067
- attributeName: string;
1068
- displayName: string;
1069
- attrGroupId: number;
1070
- orderWeight: number;
1071
- attrDataTypeId: number;
1072
- attrDatatype: {
1073
- attrDatatypeId: number;
1074
- datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
1075
- displayOnly: boolean;
1076
- };
1077
- attrGroups: {
1078
- attrGroupId: number;
1079
- attrGroupType: {
1080
- attrGroupTypeId: number;
1081
- groupTypeName: string;
1082
- primary: boolean;
1083
- restricted: boolean;
1084
- };
1085
- attrGroupTypeId: number;
1086
- primary: boolean;
1087
- groupName: string;
1088
- isDefault: boolean;
1089
- orderWeight: number;
1090
- }[];
1091
- attrRoundId: number;
1092
- attrStorageId: number;
1093
- primaryAttrGroup: {
1094
- attrGroupId: number;
1095
- attrGroupType: {
1096
- attrGroupTypeId: number;
1097
- groupTypeName: string;
1098
- primary: boolean;
1099
- restricted: boolean;
1100
- };
1101
- attrGroupTypeId: number;
1102
- primary: boolean;
1103
- groupName: string;
1104
- isDefault: boolean;
1105
- orderWeight: number;
1106
- };
1107
- description?: string | undefined;
1108
- parentAttributeId?: number | undefined;
1109
- }>>;
1110
- parentAttributeId: z.ZodOptional<z.ZodNumber>;
1111
- primaryAttrGroup: z.ZodObject<{
1112
- attrGroupId: z.ZodNumber;
1113
- attrGroupType: z.ZodObject<{
1114
- attrGroupTypeId: z.ZodNumber;
1115
- groupTypeName: z.ZodString;
1116
- primary: z.ZodBoolean;
1117
- restricted: z.ZodBoolean;
1118
- }, "strip", z.ZodTypeAny, {
1119
- attrGroupTypeId: number;
1120
- groupTypeName: string;
1121
- primary: boolean;
1122
- restricted: boolean;
1123
- }, {
1124
- attrGroupTypeId: number;
1125
- groupTypeName: string;
1126
- primary: boolean;
1127
- restricted: boolean;
1128
- }>;
1129
- attrGroupTypeId: z.ZodNumber;
1130
- groupName: z.ZodString;
1131
- isDefault: z.ZodBoolean;
1132
- orderWeight: z.ZodNumber;
1133
- primary: z.ZodBoolean;
1134
- }, "strip", z.ZodTypeAny, {
1135
- attrGroupId: number;
1136
- attrGroupType: {
1137
- attrGroupTypeId: number;
1138
- groupTypeName: string;
1139
- primary: boolean;
1140
- restricted: boolean;
1141
- };
1142
- attrGroupTypeId: number;
1143
- primary: boolean;
1144
- groupName: string;
1145
- isDefault: boolean;
1146
- orderWeight: number;
1147
- }, {
1148
- attrGroupId: number;
1149
- attrGroupType: {
1150
- attrGroupTypeId: number;
1151
- groupTypeName: string;
1152
- primary: boolean;
1153
- restricted: boolean;
1154
- };
1155
- attrGroupTypeId: number;
1156
- primary: boolean;
1157
- groupName: string;
1158
- isDefault: boolean;
1159
- orderWeight: number;
1160
- }>;
1161
- }, "strip", z.ZodTypeAny, {
1162
- createdDate: number;
1163
- createdBy: string;
1164
- modifiedDate: number;
1165
- attributeId: number;
1166
- attributeName: string;
1167
- displayName: string;
1168
- attrGroupId: number;
1169
- attrDataTypeId: number;
1170
- attrDatatype: {
1171
- attrDatatypeId: number;
1172
- datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
1173
- displayOnly: boolean;
1174
- };
1175
- attrGroups: {
1176
- attrGroupId: number;
1177
- attrGroupType: {
1178
- attrGroupTypeId: number;
1179
- groupTypeName: string;
1180
- primary: boolean;
1181
- restricted: boolean;
1182
- };
1183
- attrGroupTypeId: number;
1184
- primary: boolean;
1185
- groupName: string;
1186
- isDefault: boolean;
1187
- orderWeight: number;
1188
- }[];
1189
- attrRoundId: number;
1190
- attrStorageId: number;
1191
- primaryAttrGroup: {
1192
- attrGroupId: number;
1193
- attrGroupType: {
1194
- attrGroupTypeId: number;
1195
- groupTypeName: string;
1196
- primary: boolean;
1197
- restricted: boolean;
1198
- };
1199
- attrGroupTypeId: number;
1200
- primary: boolean;
1201
- groupName: string;
1202
- isDefault: boolean;
1203
- orderWeight: number;
1204
- };
1205
- attrStorage: {
1206
- attrStorageId: number;
1207
- storageName: string;
1208
- };
1209
- description?: string | undefined;
1210
- orderWeight?: number | undefined;
1211
- parentAttributeId?: number | undefined;
1212
- attrRestrictions?: {
1213
- repeatable: boolean;
1214
- isDefault: boolean;
1215
- attrRestrictId: number;
1216
- isEssential: boolean;
1217
- locale: string;
1218
- mandatory: boolean;
1219
- ignoreGlobal?: boolean | undefined;
1220
- minLength?: number | undefined;
1221
- maxLength?: number | undefined;
1222
- }[] | undefined;
1223
- attrValues?: {
1224
- value: string;
1225
- isDefault: boolean;
1226
- locale: string;
1227
- attrKeyPair: string;
1228
- attrValueId?: number | undefined;
1229
- }[] | undefined;
1230
- parentAttribute?: {
1231
- createdDate: number;
1232
- createdBy: string;
1233
- modifiedDate: number;
1234
- attributeId: number;
1235
- attributeName: string;
1236
- displayName: string;
1237
- attrGroupId: number;
1238
- orderWeight: number;
1239
- attrDataTypeId: number;
1240
- attrDatatype: {
1241
- attrDatatypeId: number;
1242
- datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
1243
- displayOnly: boolean;
1244
- };
1245
- attrGroups: {
1246
- attrGroupId: number;
1247
- attrGroupType: {
1248
- attrGroupTypeId: number;
1249
- groupTypeName: string;
1250
- primary: boolean;
1251
- restricted: boolean;
1252
- };
1253
- attrGroupTypeId: number;
1254
- primary: boolean;
1255
- groupName: string;
1256
- isDefault: boolean;
1257
- orderWeight: number;
1258
- }[];
1259
- attrRoundId: number;
1260
- attrStorageId: number;
1261
- primaryAttrGroup: {
1262
- attrGroupId: number;
1263
- attrGroupType: {
1264
- attrGroupTypeId: number;
1265
- groupTypeName: string;
1266
- primary: boolean;
1267
- restricted: boolean;
1268
- };
1269
- attrGroupTypeId: number;
1270
- primary: boolean;
1271
- groupName: string;
1272
- isDefault: boolean;
1273
- orderWeight: number;
1274
- };
1275
- description?: string | undefined;
1276
- parentAttributeId?: number | undefined;
1277
- } | undefined;
1278
- }, {
1279
- createdDate: number;
1280
- createdBy: string;
1281
- modifiedDate: number;
1282
- attributeId: number;
1283
- attributeName: string;
1284
- displayName: string;
1285
- attrGroupId: number;
1286
- attrDataTypeId: number;
1287
- attrDatatype: {
1288
- attrDatatypeId: number;
1289
- datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
1290
- displayOnly: boolean;
1291
- };
1292
- attrGroups: {
1293
- attrGroupId: number;
1294
- attrGroupType: {
1295
- attrGroupTypeId: number;
1296
- groupTypeName: string;
1297
- primary: boolean;
1298
- restricted: boolean;
1299
- };
1300
- attrGroupTypeId: number;
1301
- primary: boolean;
1302
- groupName: string;
1303
- isDefault: boolean;
1304
- orderWeight: number;
1305
- }[];
1306
- attrRoundId: number;
1307
- attrStorageId: number;
1308
- primaryAttrGroup: {
1309
- attrGroupId: number;
1310
- attrGroupType: {
1311
- attrGroupTypeId: number;
1312
- groupTypeName: string;
1313
- primary: boolean;
1314
- restricted: boolean;
1315
- };
1316
- attrGroupTypeId: number;
1317
- primary: boolean;
1318
- groupName: string;
1319
- isDefault: boolean;
1320
- orderWeight: number;
1321
- };
1322
- attrStorage: {
1323
- attrStorageId: number;
1324
- storageName: string;
1325
- };
1326
- description?: string | undefined;
1327
- orderWeight?: number | undefined;
1328
- parentAttributeId?: number | undefined;
1329
- attrRestrictions?: {
1330
- repeatable: boolean;
1331
- isDefault: boolean;
1332
- attrRestrictId: number;
1333
- isEssential: boolean;
1334
- locale: string;
1335
- mandatory: boolean;
1336
- ignoreGlobal?: boolean | undefined;
1337
- minLength?: number | undefined;
1338
- maxLength?: number | undefined;
1339
- }[] | undefined;
1340
- attrValues?: {
1341
- value: string;
1342
- isDefault: boolean;
1343
- locale: string;
1344
- attrKeyPair: string;
1345
- attrValueId?: number | undefined;
1346
- }[] | undefined;
1347
- parentAttribute?: {
1348
- createdDate: number;
1349
- createdBy: string;
1350
- modifiedDate: number;
1351
- attributeId: number;
1352
- attributeName: string;
1353
- displayName: string;
1354
- attrGroupId: number;
1355
- orderWeight: number;
1356
- attrDataTypeId: number;
1357
- attrDatatype: {
1358
- attrDatatypeId: number;
1359
- datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
1360
- displayOnly: boolean;
1361
- };
1362
- attrGroups: {
1363
- attrGroupId: number;
1364
- attrGroupType: {
1365
- attrGroupTypeId: number;
1366
- groupTypeName: string;
1367
- primary: boolean;
1368
- restricted: boolean;
1369
- };
1370
- attrGroupTypeId: number;
1371
- primary: boolean;
1372
- groupName: string;
1373
- isDefault: boolean;
1374
- orderWeight: number;
1375
- }[];
1376
- attrRoundId: number;
1377
- attrStorageId: number;
1378
- primaryAttrGroup: {
1379
- attrGroupId: number;
1380
- attrGroupType: {
1381
- attrGroupTypeId: number;
1382
- groupTypeName: string;
1383
- primary: boolean;
1384
- restricted: boolean;
1385
- };
1386
- attrGroupTypeId: number;
1387
- primary: boolean;
1388
- groupName: string;
1389
- isDefault: boolean;
1390
- orderWeight: number;
1391
- };
1392
- description?: string | undefined;
1393
- parentAttributeId?: number | undefined;
1394
- } | undefined;
1395
- }>;
1396
- type AttributeDefinition = z.infer<typeof attributeDefinitionSchema>;
1397
-
1398
- declare const attributeGroupSchema: z.ZodObject<{
1399
- attrGroupId: z.ZodNumber;
1400
- attrGroupType: z.ZodObject<{
1401
- attrGroupTypeId: z.ZodNumber;
1402
- groupTypeName: z.ZodString;
1403
- primary: z.ZodBoolean;
1404
- restricted: z.ZodBoolean;
1405
- }, "strip", z.ZodTypeAny, {
1406
- attrGroupTypeId: number;
1407
- groupTypeName: string;
1408
- primary: boolean;
1409
- restricted: boolean;
1410
- }, {
1411
- attrGroupTypeId: number;
1412
- groupTypeName: string;
1413
- primary: boolean;
1414
- restricted: boolean;
1415
- }>;
1416
- attrGroupTypeId: z.ZodNumber;
1417
- groupName: z.ZodString;
1418
- isDefault: z.ZodBoolean;
1419
- orderWeight: z.ZodNumber;
1420
- primary: z.ZodBoolean;
1421
- }, "strip", z.ZodTypeAny, {
1422
- attrGroupId: number;
1423
- attrGroupType: {
1424
- attrGroupTypeId: number;
1425
- groupTypeName: string;
1426
- primary: boolean;
1427
- restricted: boolean;
1428
- };
1429
- attrGroupTypeId: number;
1430
- primary: boolean;
1431
- groupName: string;
1432
- isDefault: boolean;
1433
- orderWeight: number;
1434
- }, {
1435
- attrGroupId: number;
1436
- attrGroupType: {
1437
- attrGroupTypeId: number;
1438
- groupTypeName: string;
1439
- primary: boolean;
1440
- restricted: boolean;
1441
- };
1442
- attrGroupTypeId: number;
1443
- primary: boolean;
1444
- groupName: string;
1445
- isDefault: boolean;
1446
- orderWeight: number;
1447
- }>;
1448
- type AttributeGroup = z.infer<typeof attributeGroupSchema>;
1449
-
1450
608
  declare const localeSchema: z.ZodObject<{
1451
609
  localeCode: z.ZodString;
1452
610
  localeDescription: z.ZodString;
@@ -1538,19 +696,19 @@ declare const identityServiceDatetimePreferencesSchema: z.ZodObject<{
1538
696
  LONG_TIME: z.ZodString;
1539
697
  DATE: z.ZodString;
1540
698
  }, "strip", z.ZodTypeAny, {
1541
- DATE: string;
1542
699
  DATE_TIME: string;
1543
700
  TIME: string;
1544
701
  SHORT_DATE: string;
1545
702
  LONG_DATETIME: string;
1546
703
  LONG_TIME: string;
1547
- }, {
1548
704
  DATE: string;
705
+ }, {
1549
706
  DATE_TIME: string;
1550
707
  TIME: string;
1551
708
  SHORT_DATE: string;
1552
709
  LONG_DATETIME: string;
1553
710
  LONG_TIME: string;
711
+ DATE: string;
1554
712
  }>;
1555
713
  type IdentityServiceDatetimePreferences = z.infer<typeof identityServiceDatetimePreferencesSchema>;
1556
714
 
@@ -1626,31 +784,31 @@ declare const identityServicePreferencesSchema: z.ZodObject<{
1626
784
  LONG_TIME: z.ZodString;
1627
785
  DATE: z.ZodString;
1628
786
  }, "strip", z.ZodTypeAny, {
1629
- DATE: string;
1630
787
  DATE_TIME: string;
1631
788
  TIME: string;
1632
789
  SHORT_DATE: string;
1633
790
  LONG_DATETIME: string;
1634
791
  LONG_TIME: string;
1635
- }, {
1636
792
  DATE: string;
793
+ }, {
1637
794
  DATE_TIME: string;
1638
795
  TIME: string;
1639
796
  SHORT_DATE: string;
1640
797
  LONG_DATETIME: string;
1641
798
  LONG_TIME: string;
799
+ DATE: string;
1642
800
  }>;
1643
801
  }, "strip", z.ZodTypeAny, {
1644
802
  locale: string;
1645
803
  timezone: string;
1646
804
  language: string[];
1647
805
  datetime: {
1648
- DATE: string;
1649
806
  DATE_TIME: string;
1650
807
  TIME: string;
1651
808
  SHORT_DATE: string;
1652
809
  LONG_DATETIME: string;
1653
810
  LONG_TIME: string;
811
+ DATE: string;
1654
812
  };
1655
813
  cpUpgrade?: string | undefined;
1656
814
  }, {
@@ -1658,12 +816,12 @@ declare const identityServicePreferencesSchema: z.ZodObject<{
1658
816
  timezone: string;
1659
817
  language: string[];
1660
818
  datetime: {
1661
- DATE: string;
1662
819
  DATE_TIME: string;
1663
820
  TIME: string;
1664
821
  SHORT_DATE: string;
1665
822
  LONG_DATETIME: string;
1666
823
  LONG_TIME: string;
824
+ DATE: string;
1667
825
  };
1668
826
  cpUpgrade?: string | undefined;
1669
827
  }>;
@@ -1703,31 +861,31 @@ declare const identityServiceUserSchema: z.ZodObject<{
1703
861
  LONG_TIME: z.ZodString;
1704
862
  DATE: z.ZodString;
1705
863
  }, "strip", z.ZodTypeAny, {
1706
- DATE: string;
1707
864
  DATE_TIME: string;
1708
865
  TIME: string;
1709
866
  SHORT_DATE: string;
1710
867
  LONG_DATETIME: string;
1711
868
  LONG_TIME: string;
1712
- }, {
1713
869
  DATE: string;
870
+ }, {
1714
871
  DATE_TIME: string;
1715
872
  TIME: string;
1716
873
  SHORT_DATE: string;
1717
874
  LONG_DATETIME: string;
1718
875
  LONG_TIME: string;
876
+ DATE: string;
1719
877
  }>;
1720
878
  }, "strip", z.ZodTypeAny, {
1721
879
  locale: string;
1722
880
  timezone: string;
1723
881
  language: string[];
1724
882
  datetime: {
1725
- DATE: string;
1726
883
  DATE_TIME: string;
1727
884
  TIME: string;
1728
885
  SHORT_DATE: string;
1729
886
  LONG_DATETIME: string;
1730
887
  LONG_TIME: string;
888
+ DATE: string;
1731
889
  };
1732
890
  cpUpgrade?: string | undefined;
1733
891
  }, {
@@ -1735,12 +893,12 @@ declare const identityServiceUserSchema: z.ZodObject<{
1735
893
  timezone: string;
1736
894
  language: string[];
1737
895
  datetime: {
1738
- DATE: string;
1739
896
  DATE_TIME: string;
1740
897
  TIME: string;
1741
898
  SHORT_DATE: string;
1742
899
  LONG_DATETIME: string;
1743
900
  LONG_TIME: string;
901
+ DATE: string;
1744
902
  };
1745
903
  cpUpgrade?: string | undefined;
1746
904
  }>>;
@@ -1830,12 +988,12 @@ declare const identityServiceUserSchema: z.ZodObject<{
1830
988
  timezone: string;
1831
989
  language: string[];
1832
990
  datetime: {
1833
- DATE: string;
1834
991
  DATE_TIME: string;
1835
992
  TIME: string;
1836
993
  SHORT_DATE: string;
1837
994
  LONG_DATETIME: string;
1838
995
  LONG_TIME: string;
996
+ DATE: string;
1839
997
  };
1840
998
  cpUpgrade?: string | undefined;
1841
999
  } | undefined;
@@ -1880,12 +1038,12 @@ declare const identityServiceUserSchema: z.ZodObject<{
1880
1038
  timezone: string;
1881
1039
  language: string[];
1882
1040
  datetime: {
1883
- DATE: string;
1884
1041
  DATE_TIME: string;
1885
1042
  TIME: string;
1886
1043
  SHORT_DATE: string;
1887
1044
  LONG_DATETIME: string;
1888
1045
  LONG_TIME: string;
1046
+ DATE: string;
1889
1047
  };
1890
1048
  cpUpgrade?: string | undefined;
1891
1049
  } | undefined;
@@ -1945,31 +1103,31 @@ declare const userAccountSchema: z.ZodObject<{
1945
1103
  LONG_TIME: z.ZodString;
1946
1104
  DATE: z.ZodString;
1947
1105
  }, "strip", z.ZodTypeAny, {
1948
- DATE: string;
1949
1106
  DATE_TIME: string;
1950
1107
  TIME: string;
1951
1108
  SHORT_DATE: string;
1952
1109
  LONG_DATETIME: string;
1953
1110
  LONG_TIME: string;
1954
- }, {
1955
1111
  DATE: string;
1112
+ }, {
1956
1113
  DATE_TIME: string;
1957
1114
  TIME: string;
1958
1115
  SHORT_DATE: string;
1959
1116
  LONG_DATETIME: string;
1960
1117
  LONG_TIME: string;
1118
+ DATE: string;
1961
1119
  }>;
1962
1120
  }, "strip", z.ZodTypeAny, {
1963
1121
  locale: string;
1964
1122
  timezone: string;
1965
1123
  language: string[];
1966
1124
  datetime: {
1967
- DATE: string;
1968
1125
  DATE_TIME: string;
1969
1126
  TIME: string;
1970
1127
  SHORT_DATE: string;
1971
1128
  LONG_DATETIME: string;
1972
1129
  LONG_TIME: string;
1130
+ DATE: string;
1973
1131
  };
1974
1132
  cpUpgrade?: string | undefined;
1975
1133
  }, {
@@ -1977,12 +1135,12 @@ declare const userAccountSchema: z.ZodObject<{
1977
1135
  timezone: string;
1978
1136
  language: string[];
1979
1137
  datetime: {
1980
- DATE: string;
1981
1138
  DATE_TIME: string;
1982
1139
  TIME: string;
1983
1140
  SHORT_DATE: string;
1984
1141
  LONG_DATETIME: string;
1985
1142
  LONG_TIME: string;
1143
+ DATE: string;
1986
1144
  };
1987
1145
  cpUpgrade?: string | undefined;
1988
1146
  }>>;
@@ -2072,12 +1230,12 @@ declare const userAccountSchema: z.ZodObject<{
2072
1230
  timezone: string;
2073
1231
  language: string[];
2074
1232
  datetime: {
2075
- DATE: string;
2076
1233
  DATE_TIME: string;
2077
1234
  TIME: string;
2078
1235
  SHORT_DATE: string;
2079
1236
  LONG_DATETIME: string;
2080
1237
  LONG_TIME: string;
1238
+ DATE: string;
2081
1239
  };
2082
1240
  cpUpgrade?: string | undefined;
2083
1241
  } | undefined;
@@ -2122,12 +1280,12 @@ declare const userAccountSchema: z.ZodObject<{
2122
1280
  timezone: string;
2123
1281
  language: string[];
2124
1282
  datetime: {
2125
- DATE: string;
2126
1283
  DATE_TIME: string;
2127
1284
  TIME: string;
2128
1285
  SHORT_DATE: string;
2129
1286
  LONG_DATETIME: string;
2130
1287
  LONG_TIME: string;
1288
+ DATE: string;
2131
1289
  };
2132
1290
  cpUpgrade?: string | undefined;
2133
1291
  } | undefined;
@@ -2207,12 +1365,12 @@ declare const userAccountSchema: z.ZodObject<{
2207
1365
  timezone: string;
2208
1366
  language: string[];
2209
1367
  datetime: {
2210
- DATE: string;
2211
1368
  DATE_TIME: string;
2212
1369
  TIME: string;
2213
1370
  SHORT_DATE: string;
2214
1371
  LONG_DATETIME: string;
2215
1372
  LONG_TIME: string;
1373
+ DATE: string;
2216
1374
  };
2217
1375
  cpUpgrade?: string | undefined;
2218
1376
  } | undefined;
@@ -2279,12 +1437,12 @@ declare const userAccountSchema: z.ZodObject<{
2279
1437
  timezone: string;
2280
1438
  language: string[];
2281
1439
  datetime: {
2282
- DATE: string;
2283
1440
  DATE_TIME: string;
2284
1441
  TIME: string;
2285
1442
  SHORT_DATE: string;
2286
1443
  LONG_DATETIME: string;
2287
1444
  LONG_TIME: string;
1445
+ DATE: string;
2288
1446
  };
2289
1447
  cpUpgrade?: string | undefined;
2290
1448
  } | undefined;
@@ -3099,7 +2257,7 @@ declare const phaseEnumSchema: z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED",
3099
2257
  type PhaseEnum = z.infer<typeof phaseEnumSchema>;
3100
2258
 
3101
2259
  declare const attributeDetailSchema: z.ZodObject<{
3102
- type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "STRING", "REAL"]>;
2260
+ type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "REFERENCE", "STRING", "REAL"]>;
3103
2261
  name: z.ZodString;
3104
2262
  value: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodNumber, "many">]>>;
3105
2263
  label: z.ZodString;
@@ -3107,14 +2265,14 @@ declare const attributeDetailSchema: z.ZodObject<{
3107
2265
  orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
3108
2266
  }, "strip", z.ZodTypeAny, {
3109
2267
  value: string | number | string[] | number[] | null;
3110
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2268
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3111
2269
  name: string;
3112
2270
  label: string;
3113
2271
  group: string;
3114
2272
  orderBy?: string | number | null | undefined;
3115
2273
  }, {
3116
2274
  value: string | number | string[] | number[] | null;
3117
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2275
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3118
2276
  name: string;
3119
2277
  label: string;
3120
2278
  group: string;
@@ -3164,7 +2322,7 @@ type ComponentDetails = z.infer<typeof componentDetailsSchema>;
3164
2322
  declare const groupedAttributeListSchema: z.ZodObject<{
3165
2323
  type: z.ZodString;
3166
2324
  rows: z.ZodArray<z.ZodArray<z.ZodObject<{
3167
- type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "STRING", "REAL"]>;
2325
+ type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "REFERENCE", "STRING", "REAL"]>;
3168
2326
  name: z.ZodString;
3169
2327
  value: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodNumber, "many">]>>;
3170
2328
  label: z.ZodString;
@@ -3172,14 +2330,14 @@ declare const groupedAttributeListSchema: z.ZodObject<{
3172
2330
  orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
3173
2331
  }, "strip", z.ZodTypeAny, {
3174
2332
  value: string | number | string[] | number[] | null;
3175
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2333
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3176
2334
  name: string;
3177
2335
  label: string;
3178
2336
  group: string;
3179
2337
  orderBy?: string | number | null | undefined;
3180
2338
  }, {
3181
2339
  value: string | number | string[] | number[] | null;
3182
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2340
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3183
2341
  name: string;
3184
2342
  label: string;
3185
2343
  group: string;
@@ -3199,7 +2357,7 @@ declare const groupedAttributeListSchema: z.ZodObject<{
3199
2357
  type: string;
3200
2358
  rows: {
3201
2359
  value: string | number | string[] | number[] | null;
3202
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2360
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3203
2361
  name: string;
3204
2362
  label: string;
3205
2363
  group: string;
@@ -3213,7 +2371,7 @@ declare const groupedAttributeListSchema: z.ZodObject<{
3213
2371
  type: string;
3214
2372
  rows: {
3215
2373
  value: string | number | string[] | number[] | null;
3216
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2374
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3217
2375
  name: string;
3218
2376
  label: string;
3219
2377
  group: string;
@@ -3229,7 +2387,7 @@ type GroupedAttributeList = z.infer<typeof groupedAttributeListSchema>;
3229
2387
  declare const groupedAttributesSchema: z.ZodObject<{
3230
2388
  type: z.ZodString;
3231
2389
  attributes: z.ZodArray<z.ZodObject<{
3232
- type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "STRING", "REAL"]>;
2390
+ type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "REFERENCE", "STRING", "REAL"]>;
3233
2391
  name: z.ZodString;
3234
2392
  value: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodNumber, "many">]>>;
3235
2393
  label: z.ZodString;
@@ -3237,14 +2395,14 @@ declare const groupedAttributesSchema: z.ZodObject<{
3237
2395
  orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
3238
2396
  }, "strip", z.ZodTypeAny, {
3239
2397
  value: string | number | string[] | number[] | null;
3240
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2398
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3241
2399
  name: string;
3242
2400
  label: string;
3243
2401
  group: string;
3244
2402
  orderBy?: string | number | null | undefined;
3245
2403
  }, {
3246
2404
  value: string | number | string[] | number[] | null;
3247
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2405
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3248
2406
  name: string;
3249
2407
  label: string;
3250
2408
  group: string;
@@ -3253,7 +2411,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
3253
2411
  attributeGroups: z.ZodArray<z.ZodObject<{
3254
2412
  type: z.ZodString;
3255
2413
  rows: z.ZodArray<z.ZodArray<z.ZodObject<{
3256
- type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "STRING", "REAL"]>;
2414
+ type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "REFERENCE", "STRING", "REAL"]>;
3257
2415
  name: z.ZodString;
3258
2416
  value: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodNumber, "many">]>>;
3259
2417
  label: z.ZodString;
@@ -3261,14 +2419,14 @@ declare const groupedAttributesSchema: z.ZodObject<{
3261
2419
  orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
3262
2420
  }, "strip", z.ZodTypeAny, {
3263
2421
  value: string | number | string[] | number[] | null;
3264
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2422
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3265
2423
  name: string;
3266
2424
  label: string;
3267
2425
  group: string;
3268
2426
  orderBy?: string | number | null | undefined;
3269
2427
  }, {
3270
2428
  value: string | number | string[] | number[] | null;
3271
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2429
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3272
2430
  name: string;
3273
2431
  label: string;
3274
2432
  group: string;
@@ -3288,7 +2446,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
3288
2446
  type: string;
3289
2447
  rows: {
3290
2448
  value: string | number | string[] | number[] | null;
3291
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2449
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3292
2450
  name: string;
3293
2451
  label: string;
3294
2452
  group: string;
@@ -3302,7 +2460,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
3302
2460
  type: string;
3303
2461
  rows: {
3304
2462
  value: string | number | string[] | number[] | null;
3305
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2463
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3306
2464
  name: string;
3307
2465
  label: string;
3308
2466
  group: string;
@@ -3317,7 +2475,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
3317
2475
  type: string;
3318
2476
  attributes: {
3319
2477
  value: string | number | string[] | number[] | null;
3320
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2478
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3321
2479
  name: string;
3322
2480
  label: string;
3323
2481
  group: string;
@@ -3327,7 +2485,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
3327
2485
  type: string;
3328
2486
  rows: {
3329
2487
  value: string | number | string[] | number[] | null;
3330
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2488
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3331
2489
  name: string;
3332
2490
  label: string;
3333
2491
  group: string;
@@ -3342,7 +2500,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
3342
2500
  type: string;
3343
2501
  attributes: {
3344
2502
  value: string | number | string[] | number[] | null;
3345
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2503
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3346
2504
  name: string;
3347
2505
  label: string;
3348
2506
  group: string;
@@ -3352,7 +2510,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
3352
2510
  type: string;
3353
2511
  rows: {
3354
2512
  value: string | number | string[] | number[] | null;
3355
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2513
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3356
2514
  name: string;
3357
2515
  label: string;
3358
2516
  group: string;
@@ -3479,7 +2637,7 @@ declare const groupedItemSchema: z.ZodObject<{
3479
2637
  groupedAttributes: z.ZodArray<z.ZodObject<{
3480
2638
  type: z.ZodString;
3481
2639
  attributes: z.ZodArray<z.ZodObject<{
3482
- type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "STRING", "REAL"]>;
2640
+ type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "REFERENCE", "STRING", "REAL"]>;
3483
2641
  name: z.ZodString;
3484
2642
  value: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodNumber, "many">]>>;
3485
2643
  label: z.ZodString;
@@ -3487,14 +2645,14 @@ declare const groupedItemSchema: z.ZodObject<{
3487
2645
  orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
3488
2646
  }, "strip", z.ZodTypeAny, {
3489
2647
  value: string | number | string[] | number[] | null;
3490
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2648
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3491
2649
  name: string;
3492
2650
  label: string;
3493
2651
  group: string;
3494
2652
  orderBy?: string | number | null | undefined;
3495
2653
  }, {
3496
2654
  value: string | number | string[] | number[] | null;
3497
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2655
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3498
2656
  name: string;
3499
2657
  label: string;
3500
2658
  group: string;
@@ -3503,7 +2661,7 @@ declare const groupedItemSchema: z.ZodObject<{
3503
2661
  attributeGroups: z.ZodArray<z.ZodObject<{
3504
2662
  type: z.ZodString;
3505
2663
  rows: z.ZodArray<z.ZodArray<z.ZodObject<{
3506
- type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "STRING", "REAL"]>;
2664
+ type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "REFERENCE", "STRING", "REAL"]>;
3507
2665
  name: z.ZodString;
3508
2666
  value: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodNumber, "many">]>>;
3509
2667
  label: z.ZodString;
@@ -3511,14 +2669,14 @@ declare const groupedItemSchema: z.ZodObject<{
3511
2669
  orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
3512
2670
  }, "strip", z.ZodTypeAny, {
3513
2671
  value: string | number | string[] | number[] | null;
3514
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2672
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3515
2673
  name: string;
3516
2674
  label: string;
3517
2675
  group: string;
3518
2676
  orderBy?: string | number | null | undefined;
3519
2677
  }, {
3520
2678
  value: string | number | string[] | number[] | null;
3521
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2679
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3522
2680
  name: string;
3523
2681
  label: string;
3524
2682
  group: string;
@@ -3538,7 +2696,7 @@ declare const groupedItemSchema: z.ZodObject<{
3538
2696
  type: string;
3539
2697
  rows: {
3540
2698
  value: string | number | string[] | number[] | null;
3541
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2699
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3542
2700
  name: string;
3543
2701
  label: string;
3544
2702
  group: string;
@@ -3552,7 +2710,7 @@ declare const groupedItemSchema: z.ZodObject<{
3552
2710
  type: string;
3553
2711
  rows: {
3554
2712
  value: string | number | string[] | number[] | null;
3555
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2713
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3556
2714
  name: string;
3557
2715
  label: string;
3558
2716
  group: string;
@@ -3567,7 +2725,7 @@ declare const groupedItemSchema: z.ZodObject<{
3567
2725
  type: string;
3568
2726
  attributes: {
3569
2727
  value: string | number | string[] | number[] | null;
3570
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2728
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3571
2729
  name: string;
3572
2730
  label: string;
3573
2731
  group: string;
@@ -3577,7 +2735,7 @@ declare const groupedItemSchema: z.ZodObject<{
3577
2735
  type: string;
3578
2736
  rows: {
3579
2737
  value: string | number | string[] | number[] | null;
3580
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2738
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3581
2739
  name: string;
3582
2740
  label: string;
3583
2741
  group: string;
@@ -3592,7 +2750,7 @@ declare const groupedItemSchema: z.ZodObject<{
3592
2750
  type: string;
3593
2751
  attributes: {
3594
2752
  value: string | number | string[] | number[] | null;
3595
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2753
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3596
2754
  name: string;
3597
2755
  label: string;
3598
2756
  group: string;
@@ -3602,7 +2760,7 @@ declare const groupedItemSchema: z.ZodObject<{
3602
2760
  type: string;
3603
2761
  rows: {
3604
2762
  value: string | number | string[] | number[] | null;
3605
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2763
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3606
2764
  name: string;
3607
2765
  label: string;
3608
2766
  group: string;
@@ -3627,9 +2785,9 @@ declare const groupedItemSchema: z.ZodObject<{
3627
2785
  serviceId: z.ZodNumber;
3628
2786
  attributes: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
3629
2787
  }, "strip", z.ZodTypeAny, {
3630
- attributes: Record<string, string | string[]>;
3631
2788
  serviceId: number;
3632
2789
  iteminfoid: number;
2790
+ attributes: Record<string, string | string[]>;
3633
2791
  companyid: number;
3634
2792
  createddate: number;
3635
2793
  isServiceApi: boolean;
@@ -3638,9 +2796,9 @@ declare const groupedItemSchema: z.ZodObject<{
3638
2796
  itemType: string;
3639
2797
  itemtimestamp: number;
3640
2798
  }, {
3641
- attributes: Record<string, string | string[]>;
3642
2799
  serviceId: number;
3643
2800
  iteminfoid: number;
2801
+ attributes: Record<string, string | string[]>;
3644
2802
  companyid: number;
3645
2803
  createddate: number;
3646
2804
  isServiceApi: boolean;
@@ -3715,9 +2873,9 @@ declare const groupedItemSchema: z.ZodObject<{
3715
2873
  }>, "many">;
3716
2874
  }, "strip", z.ZodTypeAny, {
3717
2875
  itemInfo: {
3718
- attributes: Record<string, string | string[]>;
3719
2876
  serviceId: number;
3720
2877
  iteminfoid: number;
2878
+ attributes: Record<string, string | string[]>;
3721
2879
  companyid: number;
3722
2880
  createddate: number;
3723
2881
  isServiceApi: boolean;
@@ -3750,9 +2908,9 @@ declare const groupedItemSchema: z.ZodObject<{
3750
2908
  }[];
3751
2909
  }, {
3752
2910
  itemInfo: {
3753
- attributes: Record<string, string | string[]>;
3754
2911
  serviceId: number;
3755
2912
  iteminfoid: number;
2913
+ attributes: Record<string, string | string[]>;
3756
2914
  companyid: number;
3757
2915
  createddate: number;
3758
2916
  isServiceApi: boolean;
@@ -3887,7 +3045,7 @@ declare const groupedItemSchema: z.ZodObject<{
3887
3045
  type: string;
3888
3046
  attributes: {
3889
3047
  value: string | number | string[] | number[] | null;
3890
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
3048
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3891
3049
  name: string;
3892
3050
  label: string;
3893
3051
  group: string;
@@ -3897,7 +3055,7 @@ declare const groupedItemSchema: z.ZodObject<{
3897
3055
  type: string;
3898
3056
  rows: {
3899
3057
  value: string | number | string[] | number[] | null;
3900
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
3058
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
3901
3059
  name: string;
3902
3060
  label: string;
3903
3061
  group: string;
@@ -3911,9 +3069,9 @@ declare const groupedItemSchema: z.ZodObject<{
3911
3069
  }[];
3912
3070
  packComponentDetails: {
3913
3071
  itemInfo: {
3914
- attributes: Record<string, string | string[]>;
3915
3072
  serviceId: number;
3916
3073
  iteminfoid: number;
3074
+ attributes: Record<string, string | string[]>;
3917
3075
  companyid: number;
3918
3076
  createddate: number;
3919
3077
  isServiceApi: boolean;
@@ -4000,7 +3158,7 @@ declare const groupedItemSchema: z.ZodObject<{
4000
3158
  type: string;
4001
3159
  attributes: {
4002
3160
  value: string | number | string[] | number[] | null;
4003
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
3161
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4004
3162
  name: string;
4005
3163
  label: string;
4006
3164
  group: string;
@@ -4010,7 +3168,7 @@ declare const groupedItemSchema: z.ZodObject<{
4010
3168
  type: string;
4011
3169
  rows: {
4012
3170
  value: string | number | string[] | number[] | null;
4013
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
3171
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4014
3172
  name: string;
4015
3173
  label: string;
4016
3174
  group: string;
@@ -4024,9 +3182,9 @@ declare const groupedItemSchema: z.ZodObject<{
4024
3182
  }[];
4025
3183
  packComponentDetails: {
4026
3184
  itemInfo: {
4027
- attributes: Record<string, string | string[]>;
4028
3185
  serviceId: number;
4029
3186
  iteminfoid: number;
3187
+ attributes: Record<string, string | string[]>;
4030
3188
  companyid: number;
4031
3189
  createddate: number;
4032
3190
  isServiceApi: boolean;
@@ -4322,7 +3480,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
4322
3480
  groupedAttributes: z.ZodArray<z.ZodObject<{
4323
3481
  type: z.ZodString;
4324
3482
  attributes: z.ZodArray<z.ZodObject<{
4325
- type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "STRING", "REAL"]>;
3483
+ type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "REFERENCE", "STRING", "REAL"]>;
4326
3484
  name: z.ZodString;
4327
3485
  value: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodNumber, "many">]>>;
4328
3486
  label: z.ZodString;
@@ -4330,14 +3488,14 @@ declare const itemDetailViewSchema: z.ZodObject<{
4330
3488
  orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
4331
3489
  }, "strip", z.ZodTypeAny, {
4332
3490
  value: string | number | string[] | number[] | null;
4333
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
3491
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4334
3492
  name: string;
4335
3493
  label: string;
4336
3494
  group: string;
4337
3495
  orderBy?: string | number | null | undefined;
4338
3496
  }, {
4339
3497
  value: string | number | string[] | number[] | null;
4340
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
3498
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4341
3499
  name: string;
4342
3500
  label: string;
4343
3501
  group: string;
@@ -4346,7 +3504,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
4346
3504
  attributeGroups: z.ZodArray<z.ZodObject<{
4347
3505
  type: z.ZodString;
4348
3506
  rows: z.ZodArray<z.ZodArray<z.ZodObject<{
4349
- type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "STRING", "REAL"]>;
3507
+ type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "REFERENCE", "STRING", "REAL"]>;
4350
3508
  name: z.ZodString;
4351
3509
  value: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodNumber, "many">]>>;
4352
3510
  label: z.ZodString;
@@ -4354,14 +3512,14 @@ declare const itemDetailViewSchema: z.ZodObject<{
4354
3512
  orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
4355
3513
  }, "strip", z.ZodTypeAny, {
4356
3514
  value: string | number | string[] | number[] | null;
4357
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
3515
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4358
3516
  name: string;
4359
3517
  label: string;
4360
3518
  group: string;
4361
3519
  orderBy?: string | number | null | undefined;
4362
3520
  }, {
4363
3521
  value: string | number | string[] | number[] | null;
4364
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
3522
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4365
3523
  name: string;
4366
3524
  label: string;
4367
3525
  group: string;
@@ -4381,7 +3539,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
4381
3539
  type: string;
4382
3540
  rows: {
4383
3541
  value: string | number | string[] | number[] | null;
4384
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
3542
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4385
3543
  name: string;
4386
3544
  label: string;
4387
3545
  group: string;
@@ -4395,7 +3553,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
4395
3553
  type: string;
4396
3554
  rows: {
4397
3555
  value: string | number | string[] | number[] | null;
4398
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
3556
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4399
3557
  name: string;
4400
3558
  label: string;
4401
3559
  group: string;
@@ -4410,7 +3568,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
4410
3568
  type: string;
4411
3569
  attributes: {
4412
3570
  value: string | number | string[] | number[] | null;
4413
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
3571
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4414
3572
  name: string;
4415
3573
  label: string;
4416
3574
  group: string;
@@ -4420,7 +3578,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
4420
3578
  type: string;
4421
3579
  rows: {
4422
3580
  value: string | number | string[] | number[] | null;
4423
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
3581
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4424
3582
  name: string;
4425
3583
  label: string;
4426
3584
  group: string;
@@ -4435,7 +3593,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
4435
3593
  type: string;
4436
3594
  attributes: {
4437
3595
  value: string | number | string[] | number[] | null;
4438
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
3596
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4439
3597
  name: string;
4440
3598
  label: string;
4441
3599
  group: string;
@@ -4445,7 +3603,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
4445
3603
  type: string;
4446
3604
  rows: {
4447
3605
  value: string | number | string[] | number[] | null;
4448
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
3606
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4449
3607
  name: string;
4450
3608
  label: string;
4451
3609
  group: string;
@@ -4470,9 +3628,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
4470
3628
  serviceId: z.ZodNumber;
4471
3629
  attributes: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
4472
3630
  }, "strip", z.ZodTypeAny, {
4473
- attributes: Record<string, string | string[]>;
4474
3631
  serviceId: number;
4475
3632
  iteminfoid: number;
3633
+ attributes: Record<string, string | string[]>;
4476
3634
  companyid: number;
4477
3635
  createddate: number;
4478
3636
  isServiceApi: boolean;
@@ -4481,9 +3639,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
4481
3639
  itemType: string;
4482
3640
  itemtimestamp: number;
4483
3641
  }, {
4484
- attributes: Record<string, string | string[]>;
4485
3642
  serviceId: number;
4486
3643
  iteminfoid: number;
3644
+ attributes: Record<string, string | string[]>;
4487
3645
  companyid: number;
4488
3646
  createddate: number;
4489
3647
  isServiceApi: boolean;
@@ -4558,9 +3716,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
4558
3716
  }>, "many">;
4559
3717
  }, "strip", z.ZodTypeAny, {
4560
3718
  itemInfo: {
4561
- attributes: Record<string, string | string[]>;
4562
3719
  serviceId: number;
4563
3720
  iteminfoid: number;
3721
+ attributes: Record<string, string | string[]>;
4564
3722
  companyid: number;
4565
3723
  createddate: number;
4566
3724
  isServiceApi: boolean;
@@ -4593,9 +3751,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
4593
3751
  }[];
4594
3752
  }, {
4595
3753
  itemInfo: {
4596
- attributes: Record<string, string | string[]>;
4597
3754
  serviceId: number;
4598
3755
  iteminfoid: number;
3756
+ attributes: Record<string, string | string[]>;
4599
3757
  companyid: number;
4600
3758
  createddate: number;
4601
3759
  isServiceApi: boolean;
@@ -4730,7 +3888,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
4730
3888
  type: string;
4731
3889
  attributes: {
4732
3890
  value: string | number | string[] | number[] | null;
4733
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
3891
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4734
3892
  name: string;
4735
3893
  label: string;
4736
3894
  group: string;
@@ -4740,7 +3898,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
4740
3898
  type: string;
4741
3899
  rows: {
4742
3900
  value: string | number | string[] | number[] | null;
4743
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
3901
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4744
3902
  name: string;
4745
3903
  label: string;
4746
3904
  group: string;
@@ -4754,9 +3912,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
4754
3912
  }[];
4755
3913
  packComponentDetails: {
4756
3914
  itemInfo: {
4757
- attributes: Record<string, string | string[]>;
4758
3915
  serviceId: number;
4759
3916
  iteminfoid: number;
3917
+ attributes: Record<string, string | string[]>;
4760
3918
  companyid: number;
4761
3919
  createddate: number;
4762
3920
  isServiceApi: boolean;
@@ -4843,7 +4001,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
4843
4001
  type: string;
4844
4002
  attributes: {
4845
4003
  value: string | number | string[] | number[] | null;
4846
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
4004
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4847
4005
  name: string;
4848
4006
  label: string;
4849
4007
  group: string;
@@ -4853,7 +4011,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
4853
4011
  type: string;
4854
4012
  rows: {
4855
4013
  value: string | number | string[] | number[] | null;
4856
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
4014
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4857
4015
  name: string;
4858
4016
  label: string;
4859
4017
  group: string;
@@ -4867,9 +4025,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
4867
4025
  }[];
4868
4026
  packComponentDetails: {
4869
4027
  itemInfo: {
4870
- attributes: Record<string, string | string[]>;
4871
4028
  serviceId: number;
4872
4029
  iteminfoid: number;
4030
+ attributes: Record<string, string | string[]>;
4873
4031
  companyid: number;
4874
4032
  createddate: number;
4875
4033
  isServiceApi: boolean;
@@ -4958,7 +4116,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
4958
4116
  type: string;
4959
4117
  attributes: {
4960
4118
  value: string | number | string[] | number[] | null;
4961
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
4119
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4962
4120
  name: string;
4963
4121
  label: string;
4964
4122
  group: string;
@@ -4968,7 +4126,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
4968
4126
  type: string;
4969
4127
  rows: {
4970
4128
  value: string | number | string[] | number[] | null;
4971
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
4129
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
4972
4130
  name: string;
4973
4131
  label: string;
4974
4132
  group: string;
@@ -4982,9 +4140,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
4982
4140
  }[];
4983
4141
  packComponentDetails: {
4984
4142
  itemInfo: {
4985
- attributes: Record<string, string | string[]>;
4986
4143
  serviceId: number;
4987
4144
  iteminfoid: number;
4145
+ attributes: Record<string, string | string[]>;
4988
4146
  companyid: number;
4989
4147
  createddate: number;
4990
4148
  isServiceApi: boolean;
@@ -5073,7 +4231,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
5073
4231
  type: string;
5074
4232
  attributes: {
5075
4233
  value: string | number | string[] | number[] | null;
5076
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
4234
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
5077
4235
  name: string;
5078
4236
  label: string;
5079
4237
  group: string;
@@ -5083,7 +4241,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
5083
4241
  type: string;
5084
4242
  rows: {
5085
4243
  value: string | number | string[] | number[] | null;
5086
- type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
4244
+ type: "DATE" | "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "KEYVALUE" | "REFERENCE" | "STRING" | "REAL";
5087
4245
  name: string;
5088
4246
  label: string;
5089
4247
  group: string;
@@ -5097,9 +4255,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
5097
4255
  }[];
5098
4256
  packComponentDetails: {
5099
4257
  itemInfo: {
5100
- attributes: Record<string, string | string[]>;
5101
4258
  serviceId: number;
5102
4259
  iteminfoid: number;
4260
+ attributes: Record<string, string | string[]>;
5103
4261
  companyid: number;
5104
4262
  createddate: number;
5105
4263
  isServiceApi: boolean;
@@ -5235,9 +4393,9 @@ declare const packComponentDetailsSchema: z.ZodObject<{
5235
4393
  serviceId: z.ZodNumber;
5236
4394
  attributes: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
5237
4395
  }, "strip", z.ZodTypeAny, {
5238
- attributes: Record<string, string | string[]>;
5239
4396
  serviceId: number;
5240
4397
  iteminfoid: number;
4398
+ attributes: Record<string, string | string[]>;
5241
4399
  companyid: number;
5242
4400
  createddate: number;
5243
4401
  isServiceApi: boolean;
@@ -5246,9 +4404,9 @@ declare const packComponentDetailsSchema: z.ZodObject<{
5246
4404
  itemType: string;
5247
4405
  itemtimestamp: number;
5248
4406
  }, {
5249
- attributes: Record<string, string | string[]>;
5250
4407
  serviceId: number;
5251
4408
  iteminfoid: number;
4409
+ attributes: Record<string, string | string[]>;
5252
4410
  companyid: number;
5253
4411
  createddate: number;
5254
4412
  isServiceApi: boolean;
@@ -5323,9 +4481,9 @@ declare const packComponentDetailsSchema: z.ZodObject<{
5323
4481
  }>, "many">;
5324
4482
  }, "strip", z.ZodTypeAny, {
5325
4483
  itemInfo: {
5326
- attributes: Record<string, string | string[]>;
5327
4484
  serviceId: number;
5328
4485
  iteminfoid: number;
4486
+ attributes: Record<string, string | string[]>;
5329
4487
  companyid: number;
5330
4488
  createddate: number;
5331
4489
  isServiceApi: boolean;
@@ -5358,9 +4516,9 @@ declare const packComponentDetailsSchema: z.ZodObject<{
5358
4516
  }[];
5359
4517
  }, {
5360
4518
  itemInfo: {
5361
- attributes: Record<string, string | string[]>;
5362
4519
  serviceId: number;
5363
4520
  iteminfoid: number;
4521
+ attributes: Record<string, string | string[]>;
5364
4522
  companyid: number;
5365
4523
  createddate: number;
5366
4524
  isServiceApi: boolean;
@@ -5406,9 +4564,9 @@ declare const packComponentItemInfoSchema: z.ZodObject<{
5406
4564
  serviceId: z.ZodNumber;
5407
4565
  attributes: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
5408
4566
  }, "strip", z.ZodTypeAny, {
5409
- attributes: Record<string, string | string[]>;
5410
4567
  serviceId: number;
5411
4568
  iteminfoid: number;
4569
+ attributes: Record<string, string | string[]>;
5412
4570
  companyid: number;
5413
4571
  createddate: number;
5414
4572
  isServiceApi: boolean;
@@ -5417,9 +4575,9 @@ declare const packComponentItemInfoSchema: z.ZodObject<{
5417
4575
  itemType: string;
5418
4576
  itemtimestamp: number;
5419
4577
  }, {
5420
- attributes: Record<string, string | string[]>;
5421
4578
  serviceId: number;
5422
4579
  iteminfoid: number;
4580
+ attributes: Record<string, string | string[]>;
5423
4581
  companyid: number;
5424
4582
  createddate: number;
5425
4583
  isServiceApi: boolean;
@@ -6170,7 +5328,6 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
6170
5328
  }>, "many">;
6171
5329
  repeatableGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6172
5330
  }, "strip", z.ZodTypeAny, {
6173
- attributeName: string | null;
6174
5331
  tradingPartnerStages: {
6175
5332
  companyId: number;
6176
5333
  companyName: string;
@@ -6178,12 +5335,12 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
6178
5335
  isValid: boolean;
6179
5336
  }[];
6180
5337
  errorMessage: string;
5338
+ attributeName: string | null;
6181
5339
  tradingPartnerNames: string[];
6182
5340
  phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS")[];
6183
5341
  attributeDbNames: string[];
6184
5342
  repeatableGroupId?: string | null | undefined;
6185
5343
  }, {
6186
- attributeName: string | null;
6187
5344
  tradingPartnerStages: {
6188
5345
  companyId: number;
6189
5346
  companyName: string;
@@ -6191,6 +5348,7 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
6191
5348
  isValid: boolean;
6192
5349
  }[];
6193
5350
  errorMessage: string;
5351
+ attributeName: string | null;
6194
5352
  tradingPartnerNames: string[];
6195
5353
  phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS")[];
6196
5354
  attributeDbNames: string[];
@@ -6200,7 +5358,6 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
6200
5358
  itemInfoId: number;
6201
5359
  itemName: string | null;
6202
5360
  itemErrorDetails: {
6203
- attributeName: string | null;
6204
5361
  tradingPartnerStages: {
6205
5362
  companyId: number;
6206
5363
  companyName: string;
@@ -6208,6 +5365,7 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
6208
5365
  isValid: boolean;
6209
5366
  }[];
6210
5367
  errorMessage: string;
5368
+ attributeName: string | null;
6211
5369
  tradingPartnerNames: string[];
6212
5370
  phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS")[];
6213
5371
  attributeDbNames: string[];
@@ -6222,7 +5380,6 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
6222
5380
  itemInfoId: number;
6223
5381
  itemName: string | null;
6224
5382
  itemErrorDetails: {
6225
- attributeName: string | null;
6226
5383
  tradingPartnerStages: {
6227
5384
  companyId: number;
6228
5385
  companyName: string;
@@ -6230,6 +5387,7 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
6230
5387
  isValid: boolean;
6231
5388
  }[];
6232
5389
  errorMessage: string;
5390
+ attributeName: string | null;
6233
5391
  tradingPartnerNames: string[];
6234
5392
  phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS")[];
6235
5393
  attributeDbNames: string[];
@@ -6267,7 +5425,6 @@ declare const itemErrorDetailsSchema: z.ZodObject<{
6267
5425
  }>, "many">;
6268
5426
  repeatableGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6269
5427
  }, "strip", z.ZodTypeAny, {
6270
- attributeName: string | null;
6271
5428
  tradingPartnerStages: {
6272
5429
  companyId: number;
6273
5430
  companyName: string;
@@ -6275,12 +5432,12 @@ declare const itemErrorDetailsSchema: z.ZodObject<{
6275
5432
  isValid: boolean;
6276
5433
  }[];
6277
5434
  errorMessage: string;
5435
+ attributeName: string | null;
6278
5436
  tradingPartnerNames: string[];
6279
5437
  phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS")[];
6280
5438
  attributeDbNames: string[];
6281
5439
  repeatableGroupId?: string | null | undefined;
6282
5440
  }, {
6283
- attributeName: string | null;
6284
5441
  tradingPartnerStages: {
6285
5442
  companyId: number;
6286
5443
  companyName: string;
@@ -6288,6 +5445,7 @@ declare const itemErrorDetailsSchema: z.ZodObject<{
6288
5445
  isValid: boolean;
6289
5446
  }[];
6290
5447
  errorMessage: string;
5448
+ attributeName: string | null;
6291
5449
  tradingPartnerNames: string[];
6292
5450
  phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS")[];
6293
5451
  attributeDbNames: string[];
@@ -6564,7 +5722,6 @@ declare const itemErrorDetailsV2Schema: z.ZodObject<{
6564
5722
  }>, "many">;
6565
5723
  repeatableGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6566
5724
  }, "strip", z.ZodTypeAny, {
6567
- attributeName: string | null;
6568
5725
  tradingPartnerStages: {
6569
5726
  companyId: number;
6570
5727
  companyName: string;
@@ -6572,12 +5729,12 @@ declare const itemErrorDetailsV2Schema: z.ZodObject<{
6572
5729
  stage?: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | null | undefined;
6573
5730
  }[];
6574
5731
  errorMessage: string;
5732
+ attributeName: string | null;
6575
5733
  tradingPartnerNames: string[];
6576
5734
  phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED")[];
6577
5735
  attributeDbNames: string[];
6578
5736
  repeatableGroupId?: string | null | undefined;
6579
5737
  }, {
6580
- attributeName: string | null;
6581
5738
  tradingPartnerStages: {
6582
5739
  companyId: number;
6583
5740
  companyName: string;
@@ -6585,6 +5742,7 @@ declare const itemErrorDetailsV2Schema: z.ZodObject<{
6585
5742
  stage?: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | null | undefined;
6586
5743
  }[];
6587
5744
  errorMessage: string;
5745
+ attributeName: string | null;
6588
5746
  tradingPartnerNames: string[];
6589
5747
  phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED")[];
6590
5748
  attributeDbNames: string[];
@@ -6630,7 +5788,6 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
6630
5788
  }>, "many">;
6631
5789
  repeatableGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6632
5790
  }, "strip", z.ZodTypeAny, {
6633
- attributeName: string | null;
6634
5791
  tradingPartnerStages: {
6635
5792
  companyId: number;
6636
5793
  companyName: string;
@@ -6638,12 +5795,12 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
6638
5795
  stage?: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | null | undefined;
6639
5796
  }[];
6640
5797
  errorMessage: string;
5798
+ attributeName: string | null;
6641
5799
  tradingPartnerNames: string[];
6642
5800
  phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED")[];
6643
5801
  attributeDbNames: string[];
6644
5802
  repeatableGroupId?: string | null | undefined;
6645
5803
  }, {
6646
- attributeName: string | null;
6647
5804
  tradingPartnerStages: {
6648
5805
  companyId: number;
6649
5806
  companyName: string;
@@ -6651,6 +5808,7 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
6651
5808
  stage?: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | null | undefined;
6652
5809
  }[];
6653
5810
  errorMessage: string;
5811
+ attributeName: string | null;
6654
5812
  tradingPartnerNames: string[];
6655
5813
  phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED")[];
6656
5814
  attributeDbNames: string[];
@@ -6659,7 +5817,6 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
6659
5817
  }, "strip", z.ZodTypeAny, {
6660
5818
  itemInfoId: number;
6661
5819
  itemErrorDetails: {
6662
- attributeName: string | null;
6663
5820
  tradingPartnerStages: {
6664
5821
  companyId: number;
6665
5822
  companyName: string;
@@ -6667,6 +5824,7 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
6667
5824
  stage?: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | null | undefined;
6668
5825
  }[];
6669
5826
  errorMessage: string;
5827
+ attributeName: string | null;
6670
5828
  tradingPartnerNames: string[];
6671
5829
  phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED")[];
6672
5830
  attributeDbNames: string[];
@@ -6687,7 +5845,6 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
6687
5845
  }, {
6688
5846
  itemInfoId: number;
6689
5847
  itemErrorDetails: {
6690
- attributeName: string | null;
6691
5848
  tradingPartnerStages: {
6692
5849
  companyId: number;
6693
5850
  companyName: string;
@@ -6695,6 +5852,7 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
6695
5852
  stage?: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | null | undefined;
6696
5853
  }[];
6697
5854
  errorMessage: string;
5855
+ attributeName: string | null;
6698
5856
  tradingPartnerNames: string[];
6699
5857
  phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED")[];
6700
5858
  attributeDbNames: string[];
@@ -6715,4 +5873,4 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
6715
5873
  }>;
6716
5874
  type ItemErrorDetailsResultV2 = z.infer<typeof itemErrorDetailsResultV2Schema>;
6717
5875
 
6718
- export { type GroupedItem as $, type AttrProdType as A, type IdentityServiceOrganizationMetadata as B, type CompanyRelationshipUpsertBody as C, type DownLoadItemsParams as D, type Export as E, type IdentityServiceDatetimePreferences as F, type GenerateImportTemplateParams as G, type IdentityServiceOrganization as H, type Import as I, type IdentityServicePreferences as J, type IdentityServiceUser as K, type Locale as L, type ItemHeader as M, type ItemMap as N, type ItemTable as O, type PhaseEnum as P, type TradingPartnerStage as Q, type RegisteredService as R, type SpreadsheetTemplate as S, type TradingPartnerAccessByCompanyId as T, type UserAccount as U, type VendorPartnerAttGroups as V, type AttributeDetail as W, type CategoryEnum as X, type ComponentDetails as Y, type GroupedAttributeList as Z, type GroupedAttributes as _, type ImportsStatus as a, tradingPartnerAccessByCompanyIdSchema as a$, type HierarchyCategory as a0, type HierarchyDetails as a1, type ItemPrice as a2, type PackComponentDetails as a3, type MediaItem as a4, type Bulb as a5, type PackComponent as a6, type RepeatableGroup as a7, type PackComponentItemInfo as a8, type ItemErrorDetails as a9, itemMapSchema as aA, itemSearchViewSchema as aB, itemTableSchema as aC, phaseEnumSchema as aD, tradingPartnerStageSchema as aE, bulbSchema as aF, itemPriceSchema as aG, mediaItemSchema as aH, itemDetailSchema as aI, groupedItemSchema as aJ, categoryEnumSchema as aK, packComponentSchema as aL, itemDetailViewSchema as aM, attributeDetailSchema as aN, repeatableGroupSchema as aO, componentDetailsSchema as aP, hierarchyDetailsSchema as aQ, groupedAttributesSchema as aR, hierarchyCategorySchema as aS, groupedAttributeListSchema as aT, packComponentDetailsSchema as aU, packComponentItemInfoSchema as aV, localeSchema as aW, attrProdTypeSchema as aX, spreadsheetTemplateCompanySchema as aY, spreadsheetTemplateSchema as aZ, connectionSchema as a_, type ItemErrorSummaryV2 as aa, type ItemErrorDetailsV2 as ab, type TradingPartnerStageV2 as ac, importDetailSchema as ad, importErrorSchema as ae, importErrorsSchema as af, importSchema as ag, importsStatusSchema as ah, importStatusEnumSchema as ai, generateImportTemplateParamsSchema as aj, vendorPartnerAttGroupsSchema as ak, exportDayOfWeekEnum as al, exportFrequencyEnum as am, exportTypeEnum as an, exportSchema as ao, downLoadItemsParamsSchema as ap, itemCategoriesSearchSchema as aq, itemCategorySchema as ar, itemHierarchyResponseSchema as as, attrDatatypeNameEnumSchema as at, attributeDefinitionSchema as au, attributeGroupSchema as av, attributeMetaDataSchema as aw, attributeSummarySchema as ax, attributesByCompanySchema as ay, itemHeaderSchema as az, type ItemPartner as b, itemPartnerSchema as b0, companyRelationshipUpsertBodySchema as b1, identityServiceDatetimePreferencesSchema as b2, identityServiceOrganizationMetadataSchema as b3, identityServiceOrganizationSchema as b4, identityServicePreferencesSchema as b5, identityServiceUserSchema as b6, registeredServiceSchema as b7, userAccountSchema as b8, itemErrorDetailsResultSchema as b9, itemErrorDetailsSchema as ba, itemErrorDetailsResultV2Schema as bb, itemErrorSummaryV2Schema as bc, itemErrorDetailsV2Schema as bd, tradingPartnerStageV2Schema as be, itemErrorSummaryResultV2Schema as bf, type ItemCategoriesSearch as c, type ItemHierarchyResponse as d, type AttributeMetaData as e, type AttributesByCompany as f, type AttributeDefinition as g, type ItemSearchView as h, type ItemDetailView as i, type ItemDetail as j, type ItemErrorDetailsResult as k, type ItemErrorSummaryResultV2 as l, type ItemErrorDetailsResultV2 as m, type ImportDetails as n, type ImportError as o, type ImportErrors as p, type ImportStatusEnum as q, type ExportDayOfWeek as r, type ExportFrequency as s, type ExportType as t, type Connection as u, type ItemCategory as v, type AttributeSummary as w, type AttrDatatypeNameEnum as x, type AttributeGroup as y, type SpreadsheetTemplateCompany as z };
5876
+ export { type Bulb as $, type AttrProdType as A, type ItemMap as B, type CompanyRelationshipUpsertBody as C, type DownLoadItemsParams as D, type Export as E, type ItemTable as F, type GenerateImportTemplateParams as G, type TradingPartnerStage as H, type Import as I, type AttributeDetail as J, type CategoryEnum as K, type Locale as L, type ComponentDetails as M, type GroupedAttributeList as N, type GroupedAttributes as O, type PhaseEnum as P, type GroupedItem as Q, type RegisteredService as R, type SpreadsheetTemplate as S, type TradingPartnerAccessByCompanyId as T, type UserAccount as U, type VendorPartnerAttGroups as V, type HierarchyCategory as W, type HierarchyDetails as X, type ItemPrice as Y, type PackComponentDetails as Z, type MediaItem as _, type ImportsStatus as a, itemErrorDetailsResultV2Schema as a$, type PackComponent as a0, type RepeatableGroup as a1, type PackComponentItemInfo as a2, type ItemErrorDetails as a3, type ItemErrorSummaryV2 as a4, type ItemErrorDetailsV2 as a5, type TradingPartnerStageV2 as a6, importDetailSchema as a7, importErrorSchema as a8, importErrorsSchema as a9, itemDetailViewSchema as aA, attributeDetailSchema as aB, repeatableGroupSchema as aC, componentDetailsSchema as aD, hierarchyDetailsSchema as aE, groupedAttributesSchema as aF, hierarchyCategorySchema as aG, groupedAttributeListSchema as aH, packComponentDetailsSchema as aI, packComponentItemInfoSchema as aJ, localeSchema as aK, attrProdTypeSchema as aL, spreadsheetTemplateCompanySchema as aM, spreadsheetTemplateSchema as aN, connectionSchema as aO, tradingPartnerAccessByCompanyIdSchema as aP, itemPartnerSchema as aQ, companyRelationshipUpsertBodySchema as aR, identityServiceDatetimePreferencesSchema as aS, identityServiceOrganizationMetadataSchema as aT, identityServiceOrganizationSchema as aU, identityServicePreferencesSchema as aV, identityServiceUserSchema as aW, registeredServiceSchema as aX, userAccountSchema as aY, itemErrorDetailsResultSchema as aZ, itemErrorDetailsSchema as a_, importSchema as aa, importsStatusSchema as ab, importStatusEnumSchema as ac, generateImportTemplateParamsSchema as ad, vendorPartnerAttGroupsSchema as ae, exportDayOfWeekEnum as af, exportFrequencyEnum as ag, exportTypeEnum as ah, exportSchema as ai, downLoadItemsParamsSchema as aj, itemCategoriesSearchSchema as ak, itemCategorySchema as al, itemHierarchyResponseSchema as am, itemHeaderSchema as an, itemMapSchema as ao, itemSearchViewSchema as ap, itemTableSchema as aq, phaseEnumSchema as ar, tradingPartnerStageSchema as as, bulbSchema as at, itemPriceSchema as au, mediaItemSchema as av, itemDetailSchema as aw, groupedItemSchema as ax, categoryEnumSchema as ay, packComponentSchema as az, type ItemPartner as b, itemErrorSummaryV2Schema as b0, itemErrorDetailsV2Schema as b1, tradingPartnerStageV2Schema as b2, itemErrorSummaryResultV2Schema as b3, type ItemCategoriesSearch as c, type ItemHierarchyResponse as d, type ItemSearchView as e, type ItemDetailView as f, type ItemDetail as g, type ItemErrorDetailsResult as h, type ItemErrorSummaryResultV2 as i, type ItemErrorDetailsResultV2 as j, type ImportDetails as k, type ImportError as l, type ImportErrors as m, type ImportStatusEnum as n, type ExportDayOfWeek as o, type ExportFrequency as p, type ExportType as q, type Connection as r, type ItemCategory as s, type SpreadsheetTemplateCompany as t, type IdentityServiceOrganizationMetadata as u, type IdentityServiceDatetimePreferences as v, type IdentityServiceOrganization as w, type IdentityServicePreferences as x, type IdentityServiceUser as y, type ItemHeader as z };