@spscommerce/asst-api 0.1.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{CompanyBriefByOrg-f1bfabb3.d.ts → CompanyBriefByOrg-HsKxilwl.d.ts} +158 -137
- package/dist/{chunk-PUQDOFRT.js → chunk-6FFDMMN5.js} +452 -198
- package/dist/{chunk-FDGLFR7X.js → chunk-C2N5RQWG.js} +104 -51
- package/dist/{index-d94fdfef.d.ts → index-wuCGfJSu.d.ts} +5 -2
- package/dist/index.cjs +623 -239
- package/dist/index.d.cts +617 -0
- package/dist/index.d.ts +327 -10
- package/dist/index.js +84 -4
- package/dist/msw.cjs +601 -297
- package/dist/msw.d.cts +833 -0
- package/dist/msw.d.ts +54 -28
- package/dist/msw.js +124 -88
- package/dist/{zod-ec1cdb27.d.ts → zod-9pZn6tpQ.d.ts} +232 -244
- package/dist/zod.cjs +454 -200
- package/dist/zod.d.cts +5 -0
- package/dist/zod.d.ts +2 -2
- package/dist/zod.js +5 -5
- package/package.json +2 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import './CompanyBriefByOrg-
|
|
1
|
+
import './CompanyBriefByOrg-HsKxilwl.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
|
|
4
4
|
declare const importDetailSchema: z.ZodObject<{
|
|
@@ -112,50 +112,35 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
112
112
|
}>;
|
|
113
113
|
type Connection = z.infer<typeof connectionSchema>;
|
|
114
114
|
|
|
115
|
-
declare const
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
type?: string | null | undefined;
|
|
125
|
-
}, {
|
|
126
|
-
id: string;
|
|
127
|
-
name?: string | null | undefined;
|
|
128
|
-
description?: string | null | undefined;
|
|
129
|
-
type?: string | null | undefined;
|
|
130
|
-
}>;
|
|
131
|
-
type Hierarchy = z.infer<typeof baseHierarchySchema> & {
|
|
132
|
-
child: Hierarchy | null;
|
|
133
|
-
};
|
|
134
|
-
declare const hierarchySchema: z.ZodType<Hierarchy>;
|
|
135
|
-
|
|
136
|
-
declare const itemHierarchyResponseSchema: z.ZodObject<{
|
|
137
|
-
itemHierarchies: z.ZodArray<z.ZodObject<{
|
|
138
|
-
itemId: z.ZodString;
|
|
139
|
-
hierarchies: z.ZodArray<z.ZodType<Hierarchy, z.ZodTypeDef, Hierarchy>, "many">;
|
|
140
|
-
}, "strip", z.ZodTypeAny, {
|
|
141
|
-
itemId: string;
|
|
142
|
-
hierarchies: Hierarchy[];
|
|
143
|
-
}, {
|
|
144
|
-
itemId: string;
|
|
145
|
-
hierarchies: Hierarchy[];
|
|
146
|
-
}>, "many">;
|
|
115
|
+
declare const itemPartnerSchema: z.ZodObject<{
|
|
116
|
+
itemPartnerId: z.ZodNumber;
|
|
117
|
+
retailerId: z.ZodNumber;
|
|
118
|
+
supplierId: z.ZodNumber;
|
|
119
|
+
catalogId: z.ZodNumber;
|
|
120
|
+
isActive: z.ZodNumber;
|
|
121
|
+
createdDate: z.ZodString;
|
|
122
|
+
modifiedDate: z.ZodString;
|
|
123
|
+
applications: z.ZodArray<z.ZodEnum<["ASSORTMENT", "ITEM-XREF"]>, "many">;
|
|
147
124
|
}, "strip", z.ZodTypeAny, {
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
125
|
+
isActive: number;
|
|
126
|
+
createdDate: string;
|
|
127
|
+
modifiedDate: string;
|
|
128
|
+
retailerId: number;
|
|
129
|
+
supplierId: number;
|
|
130
|
+
catalogId: number;
|
|
131
|
+
itemPartnerId: number;
|
|
132
|
+
applications: ("ASSORTMENT" | "ITEM-XREF")[];
|
|
152
133
|
}, {
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
134
|
+
isActive: number;
|
|
135
|
+
createdDate: string;
|
|
136
|
+
modifiedDate: string;
|
|
137
|
+
retailerId: number;
|
|
138
|
+
supplierId: number;
|
|
139
|
+
catalogId: number;
|
|
140
|
+
itemPartnerId: number;
|
|
141
|
+
applications: ("ASSORTMENT" | "ITEM-XREF")[];
|
|
157
142
|
}>;
|
|
158
|
-
type
|
|
143
|
+
type ItemPartner = z.infer<typeof itemPartnerSchema>;
|
|
159
144
|
|
|
160
145
|
declare const itemCategorySchema: z.ZodObject<{
|
|
161
146
|
categoryid: z.ZodNumber;
|
|
@@ -178,10 +163,10 @@ declare const itemCategorySchema: z.ZodObject<{
|
|
|
178
163
|
categoryid: number;
|
|
179
164
|
encodedCategoryId: string;
|
|
180
165
|
typeId: number;
|
|
166
|
+
description?: string | null | undefined;
|
|
181
167
|
createdDate?: number | null | undefined;
|
|
182
168
|
categorytimestamp?: number | null | undefined;
|
|
183
169
|
categorykey?: string | null | undefined;
|
|
184
|
-
description?: string | null | undefined;
|
|
185
170
|
categoryCatalogName?: string | null | undefined;
|
|
186
171
|
}, {
|
|
187
172
|
type: string;
|
|
@@ -191,25 +176,28 @@ declare const itemCategorySchema: z.ZodObject<{
|
|
|
191
176
|
categoryid: number;
|
|
192
177
|
encodedCategoryId: string;
|
|
193
178
|
typeId: number;
|
|
179
|
+
description?: string | null | undefined;
|
|
194
180
|
createdDate?: number | null | undefined;
|
|
195
181
|
categorytimestamp?: number | null | undefined;
|
|
196
182
|
categorykey?: string | null | undefined;
|
|
197
|
-
description?: string | null | undefined;
|
|
198
183
|
categoryCatalogName?: string | null | undefined;
|
|
199
184
|
}>;
|
|
200
185
|
type ItemCategory = z.infer<typeof itemCategorySchema>;
|
|
201
186
|
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
187
|
+
type Hierarchy = {
|
|
188
|
+
id: string;
|
|
189
|
+
name?: string | null;
|
|
190
|
+
description?: string | null;
|
|
191
|
+
type?: string | null;
|
|
192
|
+
child?: Hierarchy | null;
|
|
193
|
+
};
|
|
194
|
+
type ItemHierarchyResponse = {
|
|
195
|
+
itemHierarchies: Array<{
|
|
196
|
+
itemId: string;
|
|
197
|
+
hierarchies: Array<Hierarchy>;
|
|
198
|
+
}>;
|
|
199
|
+
};
|
|
200
|
+
declare const itemHierarchyResponseSchema: z.ZodType<ItemHierarchyResponse>;
|
|
213
201
|
|
|
214
202
|
declare const attributeSummarySchema: z.ZodObject<{
|
|
215
203
|
attributeId: z.ZodNumber;
|
|
@@ -356,9 +344,9 @@ declare const identityServiceOrganizationSchema: z.ZodObject<{
|
|
|
356
344
|
}>>;
|
|
357
345
|
}, "strip", z.ZodTypeAny, {
|
|
358
346
|
id: string;
|
|
347
|
+
namespace?: string | undefined;
|
|
359
348
|
organization_name?: string | undefined;
|
|
360
349
|
organization_site?: string | undefined;
|
|
361
|
-
namespace?: string | undefined;
|
|
362
350
|
permissions?: string[] | undefined;
|
|
363
351
|
metadata?: {
|
|
364
352
|
value: string;
|
|
@@ -367,9 +355,9 @@ declare const identityServiceOrganizationSchema: z.ZodObject<{
|
|
|
367
355
|
} | undefined;
|
|
368
356
|
}, {
|
|
369
357
|
id: string;
|
|
358
|
+
namespace?: string | undefined;
|
|
370
359
|
organization_name?: string | undefined;
|
|
371
360
|
organization_site?: string | undefined;
|
|
372
|
-
namespace?: string | undefined;
|
|
373
361
|
permissions?: string[] | undefined;
|
|
374
362
|
metadata?: {
|
|
375
363
|
value: string;
|
|
@@ -547,9 +535,9 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
547
535
|
}>>;
|
|
548
536
|
}, "strip", z.ZodTypeAny, {
|
|
549
537
|
id: string;
|
|
538
|
+
namespace?: string | undefined;
|
|
550
539
|
organization_name?: string | undefined;
|
|
551
540
|
organization_site?: string | undefined;
|
|
552
|
-
namespace?: string | undefined;
|
|
553
541
|
permissions?: string[] | undefined;
|
|
554
542
|
metadata?: {
|
|
555
543
|
value: string;
|
|
@@ -558,9 +546,9 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
558
546
|
} | undefined;
|
|
559
547
|
}, {
|
|
560
548
|
id: string;
|
|
549
|
+
namespace?: string | undefined;
|
|
561
550
|
organization_name?: string | undefined;
|
|
562
551
|
organization_site?: string | undefined;
|
|
563
|
-
namespace?: string | undefined;
|
|
564
552
|
permissions?: string[] | undefined;
|
|
565
553
|
metadata?: {
|
|
566
554
|
value: string;
|
|
@@ -576,9 +564,9 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
576
564
|
roles: string[];
|
|
577
565
|
organization: {
|
|
578
566
|
id: string;
|
|
567
|
+
namespace?: string | undefined;
|
|
579
568
|
organization_name?: string | undefined;
|
|
580
569
|
organization_site?: string | undefined;
|
|
581
|
-
namespace?: string | undefined;
|
|
582
570
|
permissions?: string[] | undefined;
|
|
583
571
|
metadata?: {
|
|
584
572
|
value: string;
|
|
@@ -588,6 +576,7 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
588
576
|
};
|
|
589
577
|
password: string;
|
|
590
578
|
verified: boolean;
|
|
579
|
+
description?: string | undefined;
|
|
591
580
|
email?: string | undefined;
|
|
592
581
|
first_name?: string | undefined;
|
|
593
582
|
last_name?: string | undefined;
|
|
@@ -605,7 +594,6 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
605
594
|
phone_number?: string | undefined;
|
|
606
595
|
twitter_handle?: string | undefined;
|
|
607
596
|
linkedin_url?: string | undefined;
|
|
608
|
-
description?: string | undefined;
|
|
609
597
|
preferences?: {
|
|
610
598
|
locale: string;
|
|
611
599
|
timezone: string;
|
|
@@ -626,9 +614,9 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
626
614
|
roles: string[];
|
|
627
615
|
organization: {
|
|
628
616
|
id: string;
|
|
617
|
+
namespace?: string | undefined;
|
|
629
618
|
organization_name?: string | undefined;
|
|
630
619
|
organization_site?: string | undefined;
|
|
631
|
-
namespace?: string | undefined;
|
|
632
620
|
permissions?: string[] | undefined;
|
|
633
621
|
metadata?: {
|
|
634
622
|
value: string;
|
|
@@ -638,6 +626,7 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
638
626
|
};
|
|
639
627
|
password: string;
|
|
640
628
|
verified: boolean;
|
|
629
|
+
description?: string | undefined;
|
|
641
630
|
email?: string | undefined;
|
|
642
631
|
first_name?: string | undefined;
|
|
643
632
|
last_name?: string | undefined;
|
|
@@ -655,7 +644,6 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
655
644
|
phone_number?: string | undefined;
|
|
656
645
|
twitter_handle?: string | undefined;
|
|
657
646
|
linkedin_url?: string | undefined;
|
|
658
|
-
description?: string | undefined;
|
|
659
647
|
preferences?: {
|
|
660
648
|
locale: string;
|
|
661
649
|
timezone: string;
|
|
@@ -1122,14 +1110,14 @@ declare const attributeDetailSchema: z.ZodObject<{
|
|
|
1122
1110
|
group: z.ZodString;
|
|
1123
1111
|
orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
1124
1112
|
}, "strip", z.ZodTypeAny, {
|
|
1125
|
-
value:
|
|
1113
|
+
value: string | number | string[] | number[] | null;
|
|
1126
1114
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1127
1115
|
name: string;
|
|
1128
1116
|
label: string;
|
|
1129
1117
|
group: string;
|
|
1130
1118
|
orderBy?: string | number | null | undefined;
|
|
1131
1119
|
}, {
|
|
1132
|
-
value:
|
|
1120
|
+
value: string | number | string[] | number[] | null;
|
|
1133
1121
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1134
1122
|
name: string;
|
|
1135
1123
|
label: string;
|
|
@@ -1138,12 +1126,12 @@ declare const attributeDetailSchema: z.ZodObject<{
|
|
|
1138
1126
|
}>;
|
|
1139
1127
|
type AttributeDetail = z.infer<typeof attributeDetailSchema>;
|
|
1140
1128
|
|
|
1141
|
-
declare const categoryEnumSchema: z.ZodEnum<["
|
|
1129
|
+
declare const categoryEnumSchema: z.ZodEnum<["ALIAS", "CATALOG", "EXPORT", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAG", "TAXONOMY_ROOT"]>;
|
|
1142
1130
|
type CategoryEnum = z.infer<typeof categoryEnumSchema>;
|
|
1143
1131
|
|
|
1144
1132
|
declare const componentDetailsSchema: z.ZodObject<{
|
|
1145
1133
|
itemInfoId: z.ZodNumber;
|
|
1146
|
-
description: z.ZodString
|
|
1134
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1147
1135
|
saleable: z.ZodBoolean;
|
|
1148
1136
|
valid: z.ZodBoolean;
|
|
1149
1137
|
uniqueCriteria: z.ZodArray<z.ZodObject<{
|
|
@@ -1158,22 +1146,22 @@ declare const componentDetailsSchema: z.ZodObject<{
|
|
|
1158
1146
|
}>, "many">;
|
|
1159
1147
|
}, "strip", z.ZodTypeAny, {
|
|
1160
1148
|
valid: boolean;
|
|
1161
|
-
description: string;
|
|
1162
1149
|
itemInfoId: number;
|
|
1163
1150
|
saleable: boolean;
|
|
1164
1151
|
uniqueCriteria: {
|
|
1165
1152
|
value: string;
|
|
1166
1153
|
name: string;
|
|
1167
1154
|
}[];
|
|
1155
|
+
description?: string | null | undefined;
|
|
1168
1156
|
}, {
|
|
1169
1157
|
valid: boolean;
|
|
1170
|
-
description: string;
|
|
1171
1158
|
itemInfoId: number;
|
|
1172
1159
|
saleable: boolean;
|
|
1173
1160
|
uniqueCriteria: {
|
|
1174
1161
|
value: string;
|
|
1175
1162
|
name: string;
|
|
1176
1163
|
}[];
|
|
1164
|
+
description?: string | null | undefined;
|
|
1177
1165
|
}>;
|
|
1178
1166
|
type ComponentDetails = z.infer<typeof componentDetailsSchema>;
|
|
1179
1167
|
|
|
@@ -1187,14 +1175,14 @@ declare const groupedAttributeListSchema: z.ZodObject<{
|
|
|
1187
1175
|
group: z.ZodString;
|
|
1188
1176
|
orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
1189
1177
|
}, "strip", z.ZodTypeAny, {
|
|
1190
|
-
value:
|
|
1178
|
+
value: string | number | string[] | number[] | null;
|
|
1191
1179
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1192
1180
|
name: string;
|
|
1193
1181
|
label: string;
|
|
1194
1182
|
group: string;
|
|
1195
1183
|
orderBy?: string | number | null | undefined;
|
|
1196
1184
|
}, {
|
|
1197
|
-
value:
|
|
1185
|
+
value: string | number | string[] | number[] | null;
|
|
1198
1186
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1199
1187
|
name: string;
|
|
1200
1188
|
label: string;
|
|
@@ -1214,7 +1202,7 @@ declare const groupedAttributeListSchema: z.ZodObject<{
|
|
|
1214
1202
|
}, "strip", z.ZodTypeAny, {
|
|
1215
1203
|
type: string;
|
|
1216
1204
|
rows: {
|
|
1217
|
-
value:
|
|
1205
|
+
value: string | number | string[] | number[] | null;
|
|
1218
1206
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1219
1207
|
name: string;
|
|
1220
1208
|
label: string;
|
|
@@ -1228,7 +1216,7 @@ declare const groupedAttributeListSchema: z.ZodObject<{
|
|
|
1228
1216
|
}, {
|
|
1229
1217
|
type: string;
|
|
1230
1218
|
rows: {
|
|
1231
|
-
value:
|
|
1219
|
+
value: string | number | string[] | number[] | null;
|
|
1232
1220
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1233
1221
|
name: string;
|
|
1234
1222
|
label: string;
|
|
@@ -1252,14 +1240,14 @@ declare const groupedAttributesSchema: z.ZodObject<{
|
|
|
1252
1240
|
group: z.ZodString;
|
|
1253
1241
|
orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
1254
1242
|
}, "strip", z.ZodTypeAny, {
|
|
1255
|
-
value:
|
|
1243
|
+
value: string | number | string[] | number[] | null;
|
|
1256
1244
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1257
1245
|
name: string;
|
|
1258
1246
|
label: string;
|
|
1259
1247
|
group: string;
|
|
1260
1248
|
orderBy?: string | number | null | undefined;
|
|
1261
1249
|
}, {
|
|
1262
|
-
value:
|
|
1250
|
+
value: string | number | string[] | number[] | null;
|
|
1263
1251
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1264
1252
|
name: string;
|
|
1265
1253
|
label: string;
|
|
@@ -1276,14 +1264,14 @@ declare const groupedAttributesSchema: z.ZodObject<{
|
|
|
1276
1264
|
group: z.ZodString;
|
|
1277
1265
|
orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
1278
1266
|
}, "strip", z.ZodTypeAny, {
|
|
1279
|
-
value:
|
|
1267
|
+
value: string | number | string[] | number[] | null;
|
|
1280
1268
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1281
1269
|
name: string;
|
|
1282
1270
|
label: string;
|
|
1283
1271
|
group: string;
|
|
1284
1272
|
orderBy?: string | number | null | undefined;
|
|
1285
1273
|
}, {
|
|
1286
|
-
value:
|
|
1274
|
+
value: string | number | string[] | number[] | null;
|
|
1287
1275
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1288
1276
|
name: string;
|
|
1289
1277
|
label: string;
|
|
@@ -1303,7 +1291,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
|
|
|
1303
1291
|
}, "strip", z.ZodTypeAny, {
|
|
1304
1292
|
type: string;
|
|
1305
1293
|
rows: {
|
|
1306
|
-
value:
|
|
1294
|
+
value: string | number | string[] | number[] | null;
|
|
1307
1295
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1308
1296
|
name: string;
|
|
1309
1297
|
label: string;
|
|
@@ -1317,7 +1305,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
|
|
|
1317
1305
|
}, {
|
|
1318
1306
|
type: string;
|
|
1319
1307
|
rows: {
|
|
1320
|
-
value:
|
|
1308
|
+
value: string | number | string[] | number[] | null;
|
|
1321
1309
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1322
1310
|
name: string;
|
|
1323
1311
|
label: string;
|
|
@@ -1332,7 +1320,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
|
|
|
1332
1320
|
}, "strip", z.ZodTypeAny, {
|
|
1333
1321
|
type: string;
|
|
1334
1322
|
attributes: {
|
|
1335
|
-
value:
|
|
1323
|
+
value: string | number | string[] | number[] | null;
|
|
1336
1324
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1337
1325
|
name: string;
|
|
1338
1326
|
label: string;
|
|
@@ -1342,7 +1330,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
|
|
|
1342
1330
|
attributeGroups: {
|
|
1343
1331
|
type: string;
|
|
1344
1332
|
rows: {
|
|
1345
|
-
value:
|
|
1333
|
+
value: string | number | string[] | number[] | null;
|
|
1346
1334
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1347
1335
|
name: string;
|
|
1348
1336
|
label: string;
|
|
@@ -1357,7 +1345,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
|
|
|
1357
1345
|
}, {
|
|
1358
1346
|
type: string;
|
|
1359
1347
|
attributes: {
|
|
1360
|
-
value:
|
|
1348
|
+
value: string | number | string[] | number[] | null;
|
|
1361
1349
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1362
1350
|
name: string;
|
|
1363
1351
|
label: string;
|
|
@@ -1367,7 +1355,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
|
|
|
1367
1355
|
attributeGroups: {
|
|
1368
1356
|
type: string;
|
|
1369
1357
|
rows: {
|
|
1370
|
-
value:
|
|
1358
|
+
value: string | number | string[] | number[] | null;
|
|
1371
1359
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1372
1360
|
name: string;
|
|
1373
1361
|
label: string;
|
|
@@ -1394,102 +1382,102 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1394
1382
|
name: z.ZodString;
|
|
1395
1383
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1396
1384
|
id: z.ZodNumber;
|
|
1397
|
-
companyId: z.ZodNumber
|
|
1398
|
-
type: z.ZodEnum<["
|
|
1385
|
+
companyId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1386
|
+
type: z.ZodEnum<["ALIAS", "CATALOG", "EXPORT", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAG", "TAXONOMY_ROOT"]>;
|
|
1399
1387
|
}, "strip", z.ZodTypeAny, {
|
|
1400
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1388
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1401
1389
|
name: string;
|
|
1402
|
-
companyId: number;
|
|
1403
1390
|
id: number;
|
|
1404
1391
|
description?: string | null | undefined;
|
|
1392
|
+
companyId?: number | null | undefined;
|
|
1405
1393
|
}, {
|
|
1406
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1394
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1407
1395
|
name: string;
|
|
1408
|
-
companyId: number;
|
|
1409
1396
|
id: number;
|
|
1410
1397
|
description?: string | null | undefined;
|
|
1398
|
+
companyId?: number | null | undefined;
|
|
1411
1399
|
}>, "many">;
|
|
1412
1400
|
selectionCodes: z.ZodArray<z.ZodObject<{
|
|
1413
1401
|
name: z.ZodString;
|
|
1414
1402
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1415
1403
|
id: z.ZodNumber;
|
|
1416
|
-
companyId: z.ZodNumber
|
|
1417
|
-
type: z.ZodEnum<["
|
|
1404
|
+
companyId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1405
|
+
type: z.ZodEnum<["ALIAS", "CATALOG", "EXPORT", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAG", "TAXONOMY_ROOT"]>;
|
|
1418
1406
|
}, "strip", z.ZodTypeAny, {
|
|
1419
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1407
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1420
1408
|
name: string;
|
|
1421
|
-
companyId: number;
|
|
1422
1409
|
id: number;
|
|
1423
1410
|
description?: string | null | undefined;
|
|
1411
|
+
companyId?: number | null | undefined;
|
|
1424
1412
|
}, {
|
|
1425
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1413
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1426
1414
|
name: string;
|
|
1427
|
-
companyId: number;
|
|
1428
1415
|
id: number;
|
|
1429
1416
|
description?: string | null | undefined;
|
|
1417
|
+
companyId?: number | null | undefined;
|
|
1430
1418
|
}>, "many">;
|
|
1431
1419
|
productCodes: z.ZodArray<z.ZodObject<{
|
|
1432
1420
|
name: z.ZodString;
|
|
1433
1421
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1434
1422
|
id: z.ZodNumber;
|
|
1435
|
-
companyId: z.ZodNumber
|
|
1436
|
-
type: z.ZodEnum<["
|
|
1423
|
+
companyId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1424
|
+
type: z.ZodEnum<["ALIAS", "CATALOG", "EXPORT", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAG", "TAXONOMY_ROOT"]>;
|
|
1437
1425
|
}, "strip", z.ZodTypeAny, {
|
|
1438
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1426
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1439
1427
|
name: string;
|
|
1440
|
-
companyId: number;
|
|
1441
1428
|
id: number;
|
|
1442
1429
|
description?: string | null | undefined;
|
|
1430
|
+
companyId?: number | null | undefined;
|
|
1443
1431
|
}, {
|
|
1444
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1432
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1445
1433
|
name: string;
|
|
1446
|
-
companyId: number;
|
|
1447
1434
|
id: number;
|
|
1448
1435
|
description?: string | null | undefined;
|
|
1436
|
+
companyId?: number | null | undefined;
|
|
1449
1437
|
}>, "many">;
|
|
1450
1438
|
}, "strip", z.ZodTypeAny, {
|
|
1451
1439
|
catalogs: {
|
|
1452
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1440
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1453
1441
|
name: string;
|
|
1454
|
-
companyId: number;
|
|
1455
1442
|
id: number;
|
|
1456
1443
|
description?: string | null | undefined;
|
|
1444
|
+
companyId?: number | null | undefined;
|
|
1457
1445
|
}[];
|
|
1458
1446
|
selectionCodes: {
|
|
1459
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1447
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1460
1448
|
name: string;
|
|
1461
|
-
companyId: number;
|
|
1462
1449
|
id: number;
|
|
1463
1450
|
description?: string | null | undefined;
|
|
1451
|
+
companyId?: number | null | undefined;
|
|
1464
1452
|
}[];
|
|
1465
1453
|
productCodes: {
|
|
1466
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1454
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1467
1455
|
name: string;
|
|
1468
|
-
companyId: number;
|
|
1469
1456
|
id: number;
|
|
1470
1457
|
description?: string | null | undefined;
|
|
1458
|
+
companyId?: number | null | undefined;
|
|
1471
1459
|
}[];
|
|
1472
1460
|
}, {
|
|
1473
1461
|
catalogs: {
|
|
1474
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1462
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1475
1463
|
name: string;
|
|
1476
|
-
companyId: number;
|
|
1477
1464
|
id: number;
|
|
1478
1465
|
description?: string | null | undefined;
|
|
1466
|
+
companyId?: number | null | undefined;
|
|
1479
1467
|
}[];
|
|
1480
1468
|
selectionCodes: {
|
|
1481
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1469
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1482
1470
|
name: string;
|
|
1483
|
-
companyId: number;
|
|
1484
1471
|
id: number;
|
|
1485
1472
|
description?: string | null | undefined;
|
|
1473
|
+
companyId?: number | null | undefined;
|
|
1486
1474
|
}[];
|
|
1487
1475
|
productCodes: {
|
|
1488
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1476
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1489
1477
|
name: string;
|
|
1490
|
-
companyId: number;
|
|
1491
1478
|
id: number;
|
|
1492
1479
|
description?: string | null | undefined;
|
|
1480
|
+
companyId?: number | null | undefined;
|
|
1493
1481
|
}[];
|
|
1494
1482
|
}>;
|
|
1495
1483
|
groupedAttributes: z.ZodArray<z.ZodObject<{
|
|
@@ -1502,14 +1490,14 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1502
1490
|
group: z.ZodString;
|
|
1503
1491
|
orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
1504
1492
|
}, "strip", z.ZodTypeAny, {
|
|
1505
|
-
value:
|
|
1493
|
+
value: string | number | string[] | number[] | null;
|
|
1506
1494
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1507
1495
|
name: string;
|
|
1508
1496
|
label: string;
|
|
1509
1497
|
group: string;
|
|
1510
1498
|
orderBy?: string | number | null | undefined;
|
|
1511
1499
|
}, {
|
|
1512
|
-
value:
|
|
1500
|
+
value: string | number | string[] | number[] | null;
|
|
1513
1501
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1514
1502
|
name: string;
|
|
1515
1503
|
label: string;
|
|
@@ -1526,14 +1514,14 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1526
1514
|
group: z.ZodString;
|
|
1527
1515
|
orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
1528
1516
|
}, "strip", z.ZodTypeAny, {
|
|
1529
|
-
value:
|
|
1517
|
+
value: string | number | string[] | number[] | null;
|
|
1530
1518
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1531
1519
|
name: string;
|
|
1532
1520
|
label: string;
|
|
1533
1521
|
group: string;
|
|
1534
1522
|
orderBy?: string | number | null | undefined;
|
|
1535
1523
|
}, {
|
|
1536
|
-
value:
|
|
1524
|
+
value: string | number | string[] | number[] | null;
|
|
1537
1525
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1538
1526
|
name: string;
|
|
1539
1527
|
label: string;
|
|
@@ -1553,7 +1541,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1553
1541
|
}, "strip", z.ZodTypeAny, {
|
|
1554
1542
|
type: string;
|
|
1555
1543
|
rows: {
|
|
1556
|
-
value:
|
|
1544
|
+
value: string | number | string[] | number[] | null;
|
|
1557
1545
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1558
1546
|
name: string;
|
|
1559
1547
|
label: string;
|
|
@@ -1567,7 +1555,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1567
1555
|
}, {
|
|
1568
1556
|
type: string;
|
|
1569
1557
|
rows: {
|
|
1570
|
-
value:
|
|
1558
|
+
value: string | number | string[] | number[] | null;
|
|
1571
1559
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1572
1560
|
name: string;
|
|
1573
1561
|
label: string;
|
|
@@ -1582,7 +1570,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1582
1570
|
}, "strip", z.ZodTypeAny, {
|
|
1583
1571
|
type: string;
|
|
1584
1572
|
attributes: {
|
|
1585
|
-
value:
|
|
1573
|
+
value: string | number | string[] | number[] | null;
|
|
1586
1574
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1587
1575
|
name: string;
|
|
1588
1576
|
label: string;
|
|
@@ -1592,7 +1580,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1592
1580
|
attributeGroups: {
|
|
1593
1581
|
type: string;
|
|
1594
1582
|
rows: {
|
|
1595
|
-
value:
|
|
1583
|
+
value: string | number | string[] | number[] | null;
|
|
1596
1584
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1597
1585
|
name: string;
|
|
1598
1586
|
label: string;
|
|
@@ -1607,7 +1595,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1607
1595
|
}, {
|
|
1608
1596
|
type: string;
|
|
1609
1597
|
attributes: {
|
|
1610
|
-
value:
|
|
1598
|
+
value: string | number | string[] | number[] | null;
|
|
1611
1599
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1612
1600
|
name: string;
|
|
1613
1601
|
label: string;
|
|
@@ -1617,7 +1605,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1617
1605
|
attributeGroups: {
|
|
1618
1606
|
type: string;
|
|
1619
1607
|
rows: {
|
|
1620
|
-
value:
|
|
1608
|
+
value: string | number | string[] | number[] | null;
|
|
1621
1609
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1622
1610
|
name: string;
|
|
1623
1611
|
label: string;
|
|
@@ -1691,8 +1679,9 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1691
1679
|
currency: string;
|
|
1692
1680
|
qualifier: string;
|
|
1693
1681
|
id?: number | null | undefined;
|
|
1694
|
-
|
|
1682
|
+
gtin?: string | null | undefined;
|
|
1695
1683
|
iteminfoid?: number | null | undefined;
|
|
1684
|
+
priceDivision?: string | null | undefined;
|
|
1696
1685
|
startdate?: string | null | undefined;
|
|
1697
1686
|
enddate?: string | null | undefined;
|
|
1698
1687
|
region?: string | null | undefined;
|
|
@@ -1703,7 +1692,6 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1703
1692
|
range_type?: string | null | undefined;
|
|
1704
1693
|
date_range_type?: string | null | undefined;
|
|
1705
1694
|
min_range?: number | null | undefined;
|
|
1706
|
-
gtin?: string | null | undefined;
|
|
1707
1695
|
priceConditionDescription?: string | null | undefined;
|
|
1708
1696
|
priceUnitQuantity?: number | null | undefined;
|
|
1709
1697
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -1712,8 +1700,9 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1712
1700
|
currency: string;
|
|
1713
1701
|
qualifier: string;
|
|
1714
1702
|
id?: number | null | undefined;
|
|
1715
|
-
|
|
1703
|
+
gtin?: string | null | undefined;
|
|
1716
1704
|
iteminfoid?: number | null | undefined;
|
|
1705
|
+
priceDivision?: string | null | undefined;
|
|
1717
1706
|
startdate?: string | null | undefined;
|
|
1718
1707
|
enddate?: string | null | undefined;
|
|
1719
1708
|
region?: string | null | undefined;
|
|
@@ -1724,7 +1713,6 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1724
1713
|
range_type?: string | null | undefined;
|
|
1725
1714
|
date_range_type?: string | null | undefined;
|
|
1726
1715
|
min_range?: number | null | undefined;
|
|
1727
|
-
gtin?: string | null | undefined;
|
|
1728
1716
|
priceConditionDescription?: string | null | undefined;
|
|
1729
1717
|
priceUnitQuantity?: number | null | undefined;
|
|
1730
1718
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -1747,8 +1735,9 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1747
1735
|
currency: string;
|
|
1748
1736
|
qualifier: string;
|
|
1749
1737
|
id?: number | null | undefined;
|
|
1750
|
-
|
|
1738
|
+
gtin?: string | null | undefined;
|
|
1751
1739
|
iteminfoid?: number | null | undefined;
|
|
1740
|
+
priceDivision?: string | null | undefined;
|
|
1752
1741
|
startdate?: string | null | undefined;
|
|
1753
1742
|
enddate?: string | null | undefined;
|
|
1754
1743
|
region?: string | null | undefined;
|
|
@@ -1759,7 +1748,6 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1759
1748
|
range_type?: string | null | undefined;
|
|
1760
1749
|
date_range_type?: string | null | undefined;
|
|
1761
1750
|
min_range?: number | null | undefined;
|
|
1762
|
-
gtin?: string | null | undefined;
|
|
1763
1751
|
priceConditionDescription?: string | null | undefined;
|
|
1764
1752
|
priceUnitQuantity?: number | null | undefined;
|
|
1765
1753
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -1782,8 +1770,9 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1782
1770
|
currency: string;
|
|
1783
1771
|
qualifier: string;
|
|
1784
1772
|
id?: number | null | undefined;
|
|
1785
|
-
|
|
1773
|
+
gtin?: string | null | undefined;
|
|
1786
1774
|
iteminfoid?: number | null | undefined;
|
|
1775
|
+
priceDivision?: string | null | undefined;
|
|
1787
1776
|
startdate?: string | null | undefined;
|
|
1788
1777
|
enddate?: string | null | undefined;
|
|
1789
1778
|
region?: string | null | undefined;
|
|
@@ -1794,7 +1783,6 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1794
1783
|
range_type?: string | null | undefined;
|
|
1795
1784
|
date_range_type?: string | null | undefined;
|
|
1796
1785
|
min_range?: number | null | undefined;
|
|
1797
|
-
gtin?: string | null | undefined;
|
|
1798
1786
|
priceConditionDescription?: string | null | undefined;
|
|
1799
1787
|
priceUnitQuantity?: number | null | undefined;
|
|
1800
1788
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -1802,7 +1790,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1802
1790
|
}>, "many">;
|
|
1803
1791
|
childComponentDetails: z.ZodArray<z.ZodObject<{
|
|
1804
1792
|
itemInfoId: z.ZodNumber;
|
|
1805
|
-
description: z.ZodString
|
|
1793
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1806
1794
|
saleable: z.ZodBoolean;
|
|
1807
1795
|
valid: z.ZodBoolean;
|
|
1808
1796
|
uniqueCriteria: z.ZodArray<z.ZodObject<{
|
|
@@ -1817,26 +1805,26 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1817
1805
|
}>, "many">;
|
|
1818
1806
|
}, "strip", z.ZodTypeAny, {
|
|
1819
1807
|
valid: boolean;
|
|
1820
|
-
description: string;
|
|
1821
1808
|
itemInfoId: number;
|
|
1822
1809
|
saleable: boolean;
|
|
1823
1810
|
uniqueCriteria: {
|
|
1824
1811
|
value: string;
|
|
1825
1812
|
name: string;
|
|
1826
1813
|
}[];
|
|
1814
|
+
description?: string | null | undefined;
|
|
1827
1815
|
}, {
|
|
1828
1816
|
valid: boolean;
|
|
1829
|
-
description: string;
|
|
1830
1817
|
itemInfoId: number;
|
|
1831
1818
|
saleable: boolean;
|
|
1832
1819
|
uniqueCriteria: {
|
|
1833
1820
|
value: string;
|
|
1834
1821
|
name: string;
|
|
1835
1822
|
}[];
|
|
1823
|
+
description?: string | null | undefined;
|
|
1836
1824
|
}>, "many">;
|
|
1837
1825
|
parentComponentDetails: z.ZodArray<z.ZodObject<{
|
|
1838
1826
|
itemInfoId: z.ZodNumber;
|
|
1839
|
-
description: z.ZodString
|
|
1827
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1840
1828
|
saleable: z.ZodBoolean;
|
|
1841
1829
|
valid: z.ZodBoolean;
|
|
1842
1830
|
uniqueCriteria: z.ZodArray<z.ZodObject<{
|
|
@@ -1851,22 +1839,22 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1851
1839
|
}>, "many">;
|
|
1852
1840
|
}, "strip", z.ZodTypeAny, {
|
|
1853
1841
|
valid: boolean;
|
|
1854
|
-
description: string;
|
|
1855
1842
|
itemInfoId: number;
|
|
1856
1843
|
saleable: boolean;
|
|
1857
1844
|
uniqueCriteria: {
|
|
1858
1845
|
value: string;
|
|
1859
1846
|
name: string;
|
|
1860
1847
|
}[];
|
|
1848
|
+
description?: string | null | undefined;
|
|
1861
1849
|
}, {
|
|
1862
1850
|
valid: boolean;
|
|
1863
|
-
description: string;
|
|
1864
1851
|
itemInfoId: number;
|
|
1865
1852
|
saleable: boolean;
|
|
1866
1853
|
uniqueCriteria: {
|
|
1867
1854
|
value: string;
|
|
1868
1855
|
name: string;
|
|
1869
1856
|
}[];
|
|
1857
|
+
description?: string | null | undefined;
|
|
1870
1858
|
}>, "many">;
|
|
1871
1859
|
locales: z.ZodArray<z.ZodString, "many">;
|
|
1872
1860
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1878,31 +1866,31 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1878
1866
|
identifiers: Record<string, any>;
|
|
1879
1867
|
hierarchyDetails: {
|
|
1880
1868
|
catalogs: {
|
|
1881
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1869
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1882
1870
|
name: string;
|
|
1883
|
-
companyId: number;
|
|
1884
1871
|
id: number;
|
|
1885
1872
|
description?: string | null | undefined;
|
|
1873
|
+
companyId?: number | null | undefined;
|
|
1886
1874
|
}[];
|
|
1887
1875
|
selectionCodes: {
|
|
1888
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1876
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1889
1877
|
name: string;
|
|
1890
|
-
companyId: number;
|
|
1891
1878
|
id: number;
|
|
1892
1879
|
description?: string | null | undefined;
|
|
1880
|
+
companyId?: number | null | undefined;
|
|
1893
1881
|
}[];
|
|
1894
1882
|
productCodes: {
|
|
1895
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1883
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1896
1884
|
name: string;
|
|
1897
|
-
companyId: number;
|
|
1898
1885
|
id: number;
|
|
1899
1886
|
description?: string | null | undefined;
|
|
1887
|
+
companyId?: number | null | undefined;
|
|
1900
1888
|
}[];
|
|
1901
1889
|
};
|
|
1902
1890
|
groupedAttributes: {
|
|
1903
1891
|
type: string;
|
|
1904
1892
|
attributes: {
|
|
1905
|
-
value:
|
|
1893
|
+
value: string | number | string[] | number[] | null;
|
|
1906
1894
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1907
1895
|
name: string;
|
|
1908
1896
|
label: string;
|
|
@@ -1912,7 +1900,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1912
1900
|
attributeGroups: {
|
|
1913
1901
|
type: string;
|
|
1914
1902
|
rows: {
|
|
1915
|
-
value:
|
|
1903
|
+
value: string | number | string[] | number[] | null;
|
|
1916
1904
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1917
1905
|
name: string;
|
|
1918
1906
|
label: string;
|
|
@@ -1943,8 +1931,9 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1943
1931
|
currency: string;
|
|
1944
1932
|
qualifier: string;
|
|
1945
1933
|
id?: number | null | undefined;
|
|
1946
|
-
|
|
1934
|
+
gtin?: string | null | undefined;
|
|
1947
1935
|
iteminfoid?: number | null | undefined;
|
|
1936
|
+
priceDivision?: string | null | undefined;
|
|
1948
1937
|
startdate?: string | null | undefined;
|
|
1949
1938
|
enddate?: string | null | undefined;
|
|
1950
1939
|
region?: string | null | undefined;
|
|
@@ -1955,7 +1944,6 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1955
1944
|
range_type?: string | null | undefined;
|
|
1956
1945
|
date_range_type?: string | null | undefined;
|
|
1957
1946
|
min_range?: number | null | undefined;
|
|
1958
|
-
gtin?: string | null | undefined;
|
|
1959
1947
|
priceConditionDescription?: string | null | undefined;
|
|
1960
1948
|
priceUnitQuantity?: number | null | undefined;
|
|
1961
1949
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -1963,23 +1951,23 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1963
1951
|
}[];
|
|
1964
1952
|
childComponentDetails: {
|
|
1965
1953
|
valid: boolean;
|
|
1966
|
-
description: string;
|
|
1967
1954
|
itemInfoId: number;
|
|
1968
1955
|
saleable: boolean;
|
|
1969
1956
|
uniqueCriteria: {
|
|
1970
1957
|
value: string;
|
|
1971
1958
|
name: string;
|
|
1972
1959
|
}[];
|
|
1960
|
+
description?: string | null | undefined;
|
|
1973
1961
|
}[];
|
|
1974
1962
|
parentComponentDetails: {
|
|
1975
1963
|
valid: boolean;
|
|
1976
|
-
description: string;
|
|
1977
1964
|
itemInfoId: number;
|
|
1978
1965
|
saleable: boolean;
|
|
1979
1966
|
uniqueCriteria: {
|
|
1980
1967
|
value: string;
|
|
1981
1968
|
name: string;
|
|
1982
1969
|
}[];
|
|
1970
|
+
description?: string | null | undefined;
|
|
1983
1971
|
}[];
|
|
1984
1972
|
locales: string[];
|
|
1985
1973
|
}, {
|
|
@@ -1991,31 +1979,31 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1991
1979
|
identifiers: Record<string, any>;
|
|
1992
1980
|
hierarchyDetails: {
|
|
1993
1981
|
catalogs: {
|
|
1994
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1982
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1995
1983
|
name: string;
|
|
1996
|
-
companyId: number;
|
|
1997
1984
|
id: number;
|
|
1998
1985
|
description?: string | null | undefined;
|
|
1986
|
+
companyId?: number | null | undefined;
|
|
1999
1987
|
}[];
|
|
2000
1988
|
selectionCodes: {
|
|
2001
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1989
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2002
1990
|
name: string;
|
|
2003
|
-
companyId: number;
|
|
2004
1991
|
id: number;
|
|
2005
1992
|
description?: string | null | undefined;
|
|
1993
|
+
companyId?: number | null | undefined;
|
|
2006
1994
|
}[];
|
|
2007
1995
|
productCodes: {
|
|
2008
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1996
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2009
1997
|
name: string;
|
|
2010
|
-
companyId: number;
|
|
2011
1998
|
id: number;
|
|
2012
1999
|
description?: string | null | undefined;
|
|
2000
|
+
companyId?: number | null | undefined;
|
|
2013
2001
|
}[];
|
|
2014
2002
|
};
|
|
2015
2003
|
groupedAttributes: {
|
|
2016
2004
|
type: string;
|
|
2017
2005
|
attributes: {
|
|
2018
|
-
value:
|
|
2006
|
+
value: string | number | string[] | number[] | null;
|
|
2019
2007
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2020
2008
|
name: string;
|
|
2021
2009
|
label: string;
|
|
@@ -2025,7 +2013,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
2025
2013
|
attributeGroups: {
|
|
2026
2014
|
type: string;
|
|
2027
2015
|
rows: {
|
|
2028
|
-
value:
|
|
2016
|
+
value: string | number | string[] | number[] | null;
|
|
2029
2017
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2030
2018
|
name: string;
|
|
2031
2019
|
label: string;
|
|
@@ -2056,8 +2044,9 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
2056
2044
|
currency: string;
|
|
2057
2045
|
qualifier: string;
|
|
2058
2046
|
id?: number | null | undefined;
|
|
2059
|
-
|
|
2047
|
+
gtin?: string | null | undefined;
|
|
2060
2048
|
iteminfoid?: number | null | undefined;
|
|
2049
|
+
priceDivision?: string | null | undefined;
|
|
2061
2050
|
startdate?: string | null | undefined;
|
|
2062
2051
|
enddate?: string | null | undefined;
|
|
2063
2052
|
region?: string | null | undefined;
|
|
@@ -2068,7 +2057,6 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
2068
2057
|
range_type?: string | null | undefined;
|
|
2069
2058
|
date_range_type?: string | null | undefined;
|
|
2070
2059
|
min_range?: number | null | undefined;
|
|
2071
|
-
gtin?: string | null | undefined;
|
|
2072
2060
|
priceConditionDescription?: string | null | undefined;
|
|
2073
2061
|
priceUnitQuantity?: number | null | undefined;
|
|
2074
2062
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2076,23 +2064,23 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
2076
2064
|
}[];
|
|
2077
2065
|
childComponentDetails: {
|
|
2078
2066
|
valid: boolean;
|
|
2079
|
-
description: string;
|
|
2080
2067
|
itemInfoId: number;
|
|
2081
2068
|
saleable: boolean;
|
|
2082
2069
|
uniqueCriteria: {
|
|
2083
2070
|
value: string;
|
|
2084
2071
|
name: string;
|
|
2085
2072
|
}[];
|
|
2073
|
+
description?: string | null | undefined;
|
|
2086
2074
|
}[];
|
|
2087
2075
|
parentComponentDetails: {
|
|
2088
2076
|
valid: boolean;
|
|
2089
|
-
description: string;
|
|
2090
2077
|
itemInfoId: number;
|
|
2091
2078
|
saleable: boolean;
|
|
2092
2079
|
uniqueCriteria: {
|
|
2093
2080
|
value: string;
|
|
2094
2081
|
name: string;
|
|
2095
2082
|
}[];
|
|
2083
|
+
description?: string | null | undefined;
|
|
2096
2084
|
}[];
|
|
2097
2085
|
locales: string[];
|
|
2098
2086
|
}>;
|
|
@@ -2102,20 +2090,20 @@ declare const hierarchyCategorySchema: z.ZodObject<{
|
|
|
2102
2090
|
name: z.ZodString;
|
|
2103
2091
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2104
2092
|
id: z.ZodNumber;
|
|
2105
|
-
companyId: z.ZodNumber
|
|
2106
|
-
type: z.ZodEnum<["
|
|
2093
|
+
companyId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2094
|
+
type: z.ZodEnum<["ALIAS", "CATALOG", "EXPORT", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAG", "TAXONOMY_ROOT"]>;
|
|
2107
2095
|
}, "strip", z.ZodTypeAny, {
|
|
2108
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2096
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2109
2097
|
name: string;
|
|
2110
|
-
companyId: number;
|
|
2111
2098
|
id: number;
|
|
2112
2099
|
description?: string | null | undefined;
|
|
2100
|
+
companyId?: number | null | undefined;
|
|
2113
2101
|
}, {
|
|
2114
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2102
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2115
2103
|
name: string;
|
|
2116
|
-
companyId: number;
|
|
2117
2104
|
id: number;
|
|
2118
2105
|
description?: string | null | undefined;
|
|
2106
|
+
companyId?: number | null | undefined;
|
|
2119
2107
|
}>;
|
|
2120
2108
|
type HierarchyCategory = z.infer<typeof hierarchyCategorySchema>;
|
|
2121
2109
|
|
|
@@ -2124,102 +2112,102 @@ declare const hierarchyDetailsSchema: z.ZodObject<{
|
|
|
2124
2112
|
name: z.ZodString;
|
|
2125
2113
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2126
2114
|
id: z.ZodNumber;
|
|
2127
|
-
companyId: z.ZodNumber
|
|
2128
|
-
type: z.ZodEnum<["
|
|
2115
|
+
companyId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2116
|
+
type: z.ZodEnum<["ALIAS", "CATALOG", "EXPORT", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAG", "TAXONOMY_ROOT"]>;
|
|
2129
2117
|
}, "strip", z.ZodTypeAny, {
|
|
2130
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2118
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2131
2119
|
name: string;
|
|
2132
|
-
companyId: number;
|
|
2133
2120
|
id: number;
|
|
2134
2121
|
description?: string | null | undefined;
|
|
2122
|
+
companyId?: number | null | undefined;
|
|
2135
2123
|
}, {
|
|
2136
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2124
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2137
2125
|
name: string;
|
|
2138
|
-
companyId: number;
|
|
2139
2126
|
id: number;
|
|
2140
2127
|
description?: string | null | undefined;
|
|
2128
|
+
companyId?: number | null | undefined;
|
|
2141
2129
|
}>, "many">;
|
|
2142
2130
|
selectionCodes: z.ZodArray<z.ZodObject<{
|
|
2143
2131
|
name: z.ZodString;
|
|
2144
2132
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2145
2133
|
id: z.ZodNumber;
|
|
2146
|
-
companyId: z.ZodNumber
|
|
2147
|
-
type: z.ZodEnum<["
|
|
2134
|
+
companyId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2135
|
+
type: z.ZodEnum<["ALIAS", "CATALOG", "EXPORT", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAG", "TAXONOMY_ROOT"]>;
|
|
2148
2136
|
}, "strip", z.ZodTypeAny, {
|
|
2149
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2137
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2150
2138
|
name: string;
|
|
2151
|
-
companyId: number;
|
|
2152
2139
|
id: number;
|
|
2153
2140
|
description?: string | null | undefined;
|
|
2141
|
+
companyId?: number | null | undefined;
|
|
2154
2142
|
}, {
|
|
2155
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2143
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2156
2144
|
name: string;
|
|
2157
|
-
companyId: number;
|
|
2158
2145
|
id: number;
|
|
2159
2146
|
description?: string | null | undefined;
|
|
2147
|
+
companyId?: number | null | undefined;
|
|
2160
2148
|
}>, "many">;
|
|
2161
2149
|
productCodes: z.ZodArray<z.ZodObject<{
|
|
2162
2150
|
name: z.ZodString;
|
|
2163
2151
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2164
2152
|
id: z.ZodNumber;
|
|
2165
|
-
companyId: z.ZodNumber
|
|
2166
|
-
type: z.ZodEnum<["
|
|
2153
|
+
companyId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2154
|
+
type: z.ZodEnum<["ALIAS", "CATALOG", "EXPORT", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAG", "TAXONOMY_ROOT"]>;
|
|
2167
2155
|
}, "strip", z.ZodTypeAny, {
|
|
2168
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2156
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2169
2157
|
name: string;
|
|
2170
|
-
companyId: number;
|
|
2171
2158
|
id: number;
|
|
2172
2159
|
description?: string | null | undefined;
|
|
2160
|
+
companyId?: number | null | undefined;
|
|
2173
2161
|
}, {
|
|
2174
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2162
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2175
2163
|
name: string;
|
|
2176
|
-
companyId: number;
|
|
2177
2164
|
id: number;
|
|
2178
2165
|
description?: string | null | undefined;
|
|
2166
|
+
companyId?: number | null | undefined;
|
|
2179
2167
|
}>, "many">;
|
|
2180
2168
|
}, "strip", z.ZodTypeAny, {
|
|
2181
2169
|
catalogs: {
|
|
2182
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2170
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2183
2171
|
name: string;
|
|
2184
|
-
companyId: number;
|
|
2185
2172
|
id: number;
|
|
2186
2173
|
description?: string | null | undefined;
|
|
2174
|
+
companyId?: number | null | undefined;
|
|
2187
2175
|
}[];
|
|
2188
2176
|
selectionCodes: {
|
|
2189
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2177
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2190
2178
|
name: string;
|
|
2191
|
-
companyId: number;
|
|
2192
2179
|
id: number;
|
|
2193
2180
|
description?: string | null | undefined;
|
|
2181
|
+
companyId?: number | null | undefined;
|
|
2194
2182
|
}[];
|
|
2195
2183
|
productCodes: {
|
|
2196
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2184
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2197
2185
|
name: string;
|
|
2198
|
-
companyId: number;
|
|
2199
2186
|
id: number;
|
|
2200
2187
|
description?: string | null | undefined;
|
|
2188
|
+
companyId?: number | null | undefined;
|
|
2201
2189
|
}[];
|
|
2202
2190
|
}, {
|
|
2203
2191
|
catalogs: {
|
|
2204
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2192
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2205
2193
|
name: string;
|
|
2206
|
-
companyId: number;
|
|
2207
2194
|
id: number;
|
|
2208
2195
|
description?: string | null | undefined;
|
|
2196
|
+
companyId?: number | null | undefined;
|
|
2209
2197
|
}[];
|
|
2210
2198
|
selectionCodes: {
|
|
2211
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2199
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2212
2200
|
name: string;
|
|
2213
|
-
companyId: number;
|
|
2214
2201
|
id: number;
|
|
2215
2202
|
description?: string | null | undefined;
|
|
2203
|
+
companyId?: number | null | undefined;
|
|
2216
2204
|
}[];
|
|
2217
2205
|
productCodes: {
|
|
2218
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2206
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2219
2207
|
name: string;
|
|
2220
|
-
companyId: number;
|
|
2221
2208
|
id: number;
|
|
2222
2209
|
description?: string | null | undefined;
|
|
2210
|
+
companyId?: number | null | undefined;
|
|
2223
2211
|
}[];
|
|
2224
2212
|
}>;
|
|
2225
2213
|
type HierarchyDetails = z.infer<typeof hierarchyDetailsSchema>;
|
|
@@ -2250,8 +2238,9 @@ declare const itemPriceSchema: z.ZodObject<{
|
|
|
2250
2238
|
currency: string;
|
|
2251
2239
|
qualifier: string;
|
|
2252
2240
|
id?: number | null | undefined;
|
|
2253
|
-
|
|
2241
|
+
gtin?: string | null | undefined;
|
|
2254
2242
|
iteminfoid?: number | null | undefined;
|
|
2243
|
+
priceDivision?: string | null | undefined;
|
|
2255
2244
|
startdate?: string | null | undefined;
|
|
2256
2245
|
enddate?: string | null | undefined;
|
|
2257
2246
|
region?: string | null | undefined;
|
|
@@ -2262,7 +2251,6 @@ declare const itemPriceSchema: z.ZodObject<{
|
|
|
2262
2251
|
range_type?: string | null | undefined;
|
|
2263
2252
|
date_range_type?: string | null | undefined;
|
|
2264
2253
|
min_range?: number | null | undefined;
|
|
2265
|
-
gtin?: string | null | undefined;
|
|
2266
2254
|
priceConditionDescription?: string | null | undefined;
|
|
2267
2255
|
priceUnitQuantity?: number | null | undefined;
|
|
2268
2256
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2271,8 +2259,9 @@ declare const itemPriceSchema: z.ZodObject<{
|
|
|
2271
2259
|
currency: string;
|
|
2272
2260
|
qualifier: string;
|
|
2273
2261
|
id?: number | null | undefined;
|
|
2274
|
-
|
|
2262
|
+
gtin?: string | null | undefined;
|
|
2275
2263
|
iteminfoid?: number | null | undefined;
|
|
2264
|
+
priceDivision?: string | null | undefined;
|
|
2276
2265
|
startdate?: string | null | undefined;
|
|
2277
2266
|
enddate?: string | null | undefined;
|
|
2278
2267
|
region?: string | null | undefined;
|
|
@@ -2283,7 +2272,6 @@ declare const itemPriceSchema: z.ZodObject<{
|
|
|
2283
2272
|
range_type?: string | null | undefined;
|
|
2284
2273
|
date_range_type?: string | null | undefined;
|
|
2285
2274
|
min_range?: number | null | undefined;
|
|
2286
|
-
gtin?: string | null | undefined;
|
|
2287
2275
|
priceConditionDescription?: string | null | undefined;
|
|
2288
2276
|
priceUnitQuantity?: number | null | undefined;
|
|
2289
2277
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2351,8 +2339,9 @@ declare const packComponentDetailsSchema: z.ZodObject<{
|
|
|
2351
2339
|
currency: string;
|
|
2352
2340
|
qualifier: string;
|
|
2353
2341
|
id?: number | null | undefined;
|
|
2354
|
-
|
|
2342
|
+
gtin?: string | null | undefined;
|
|
2355
2343
|
iteminfoid?: number | null | undefined;
|
|
2344
|
+
priceDivision?: string | null | undefined;
|
|
2356
2345
|
startdate?: string | null | undefined;
|
|
2357
2346
|
enddate?: string | null | undefined;
|
|
2358
2347
|
region?: string | null | undefined;
|
|
@@ -2363,7 +2352,6 @@ declare const packComponentDetailsSchema: z.ZodObject<{
|
|
|
2363
2352
|
range_type?: string | null | undefined;
|
|
2364
2353
|
date_range_type?: string | null | undefined;
|
|
2365
2354
|
min_range?: number | null | undefined;
|
|
2366
|
-
gtin?: string | null | undefined;
|
|
2367
2355
|
priceConditionDescription?: string | null | undefined;
|
|
2368
2356
|
priceUnitQuantity?: number | null | undefined;
|
|
2369
2357
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2372,8 +2360,9 @@ declare const packComponentDetailsSchema: z.ZodObject<{
|
|
|
2372
2360
|
currency: string;
|
|
2373
2361
|
qualifier: string;
|
|
2374
2362
|
id?: number | null | undefined;
|
|
2375
|
-
|
|
2363
|
+
gtin?: string | null | undefined;
|
|
2376
2364
|
iteminfoid?: number | null | undefined;
|
|
2365
|
+
priceDivision?: string | null | undefined;
|
|
2377
2366
|
startdate?: string | null | undefined;
|
|
2378
2367
|
enddate?: string | null | undefined;
|
|
2379
2368
|
region?: string | null | undefined;
|
|
@@ -2384,7 +2373,6 @@ declare const packComponentDetailsSchema: z.ZodObject<{
|
|
|
2384
2373
|
range_type?: string | null | undefined;
|
|
2385
2374
|
date_range_type?: string | null | undefined;
|
|
2386
2375
|
min_range?: number | null | undefined;
|
|
2387
|
-
gtin?: string | null | undefined;
|
|
2388
2376
|
priceConditionDescription?: string | null | undefined;
|
|
2389
2377
|
priceUnitQuantity?: number | null | undefined;
|
|
2390
2378
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2407,8 +2395,9 @@ declare const packComponentDetailsSchema: z.ZodObject<{
|
|
|
2407
2395
|
currency: string;
|
|
2408
2396
|
qualifier: string;
|
|
2409
2397
|
id?: number | null | undefined;
|
|
2410
|
-
|
|
2398
|
+
gtin?: string | null | undefined;
|
|
2411
2399
|
iteminfoid?: number | null | undefined;
|
|
2400
|
+
priceDivision?: string | null | undefined;
|
|
2412
2401
|
startdate?: string | null | undefined;
|
|
2413
2402
|
enddate?: string | null | undefined;
|
|
2414
2403
|
region?: string | null | undefined;
|
|
@@ -2419,7 +2408,6 @@ declare const packComponentDetailsSchema: z.ZodObject<{
|
|
|
2419
2408
|
range_type?: string | null | undefined;
|
|
2420
2409
|
date_range_type?: string | null | undefined;
|
|
2421
2410
|
min_range?: number | null | undefined;
|
|
2422
|
-
gtin?: string | null | undefined;
|
|
2423
2411
|
priceConditionDescription?: string | null | undefined;
|
|
2424
2412
|
priceUnitQuantity?: number | null | undefined;
|
|
2425
2413
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2442,8 +2430,9 @@ declare const packComponentDetailsSchema: z.ZodObject<{
|
|
|
2442
2430
|
currency: string;
|
|
2443
2431
|
qualifier: string;
|
|
2444
2432
|
id?: number | null | undefined;
|
|
2445
|
-
|
|
2433
|
+
gtin?: string | null | undefined;
|
|
2446
2434
|
iteminfoid?: number | null | undefined;
|
|
2435
|
+
priceDivision?: string | null | undefined;
|
|
2447
2436
|
startdate?: string | null | undefined;
|
|
2448
2437
|
enddate?: string | null | undefined;
|
|
2449
2438
|
region?: string | null | undefined;
|
|
@@ -2454,7 +2443,6 @@ declare const packComponentDetailsSchema: z.ZodObject<{
|
|
|
2454
2443
|
range_type?: string | null | undefined;
|
|
2455
2444
|
date_range_type?: string | null | undefined;
|
|
2456
2445
|
min_range?: number | null | undefined;
|
|
2457
|
-
gtin?: string | null | undefined;
|
|
2458
2446
|
priceConditionDescription?: string | null | undefined;
|
|
2459
2447
|
priceUnitQuantity?: number | null | undefined;
|
|
2460
2448
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2575,8 +2563,9 @@ declare const packComponentSchema: z.ZodObject<{
|
|
|
2575
2563
|
currency: string;
|
|
2576
2564
|
qualifier: string;
|
|
2577
2565
|
id?: number | null | undefined;
|
|
2578
|
-
|
|
2566
|
+
gtin?: string | null | undefined;
|
|
2579
2567
|
iteminfoid?: number | null | undefined;
|
|
2568
|
+
priceDivision?: string | null | undefined;
|
|
2580
2569
|
startdate?: string | null | undefined;
|
|
2581
2570
|
enddate?: string | null | undefined;
|
|
2582
2571
|
region?: string | null | undefined;
|
|
@@ -2587,7 +2576,6 @@ declare const packComponentSchema: z.ZodObject<{
|
|
|
2587
2576
|
range_type?: string | null | undefined;
|
|
2588
2577
|
date_range_type?: string | null | undefined;
|
|
2589
2578
|
min_range?: number | null | undefined;
|
|
2590
|
-
gtin?: string | null | undefined;
|
|
2591
2579
|
priceConditionDescription?: string | null | undefined;
|
|
2592
2580
|
priceUnitQuantity?: number | null | undefined;
|
|
2593
2581
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2596,8 +2584,9 @@ declare const packComponentSchema: z.ZodObject<{
|
|
|
2596
2584
|
currency: string;
|
|
2597
2585
|
qualifier: string;
|
|
2598
2586
|
id?: number | null | undefined;
|
|
2599
|
-
|
|
2587
|
+
gtin?: string | null | undefined;
|
|
2600
2588
|
iteminfoid?: number | null | undefined;
|
|
2589
|
+
priceDivision?: string | null | undefined;
|
|
2601
2590
|
startdate?: string | null | undefined;
|
|
2602
2591
|
enddate?: string | null | undefined;
|
|
2603
2592
|
region?: string | null | undefined;
|
|
@@ -2608,7 +2597,6 @@ declare const packComponentSchema: z.ZodObject<{
|
|
|
2608
2597
|
range_type?: string | null | undefined;
|
|
2609
2598
|
date_range_type?: string | null | undefined;
|
|
2610
2599
|
min_range?: number | null | undefined;
|
|
2611
|
-
gtin?: string | null | undefined;
|
|
2612
2600
|
priceConditionDescription?: string | null | undefined;
|
|
2613
2601
|
priceUnitQuantity?: number | null | undefined;
|
|
2614
2602
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2620,8 +2608,9 @@ declare const packComponentSchema: z.ZodObject<{
|
|
|
2620
2608
|
currency: string;
|
|
2621
2609
|
qualifier: string;
|
|
2622
2610
|
id?: number | null | undefined;
|
|
2623
|
-
|
|
2611
|
+
gtin?: string | null | undefined;
|
|
2624
2612
|
iteminfoid?: number | null | undefined;
|
|
2613
|
+
priceDivision?: string | null | undefined;
|
|
2625
2614
|
startdate?: string | null | undefined;
|
|
2626
2615
|
enddate?: string | null | undefined;
|
|
2627
2616
|
region?: string | null | undefined;
|
|
@@ -2632,7 +2621,6 @@ declare const packComponentSchema: z.ZodObject<{
|
|
|
2632
2621
|
range_type?: string | null | undefined;
|
|
2633
2622
|
date_range_type?: string | null | undefined;
|
|
2634
2623
|
min_range?: number | null | undefined;
|
|
2635
|
-
gtin?: string | null | undefined;
|
|
2636
2624
|
priceConditionDescription?: string | null | undefined;
|
|
2637
2625
|
priceUnitQuantity?: number | null | undefined;
|
|
2638
2626
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2645,8 +2633,9 @@ declare const packComponentSchema: z.ZodObject<{
|
|
|
2645
2633
|
currency: string;
|
|
2646
2634
|
qualifier: string;
|
|
2647
2635
|
id?: number | null | undefined;
|
|
2648
|
-
|
|
2636
|
+
gtin?: string | null | undefined;
|
|
2649
2637
|
iteminfoid?: number | null | undefined;
|
|
2638
|
+
priceDivision?: string | null | undefined;
|
|
2650
2639
|
startdate?: string | null | undefined;
|
|
2651
2640
|
enddate?: string | null | undefined;
|
|
2652
2641
|
region?: string | null | undefined;
|
|
@@ -2657,7 +2646,6 @@ declare const packComponentSchema: z.ZodObject<{
|
|
|
2657
2646
|
range_type?: string | null | undefined;
|
|
2658
2647
|
date_range_type?: string | null | undefined;
|
|
2659
2648
|
min_range?: number | null | undefined;
|
|
2660
|
-
gtin?: string | null | undefined;
|
|
2661
2649
|
priceConditionDescription?: string | null | undefined;
|
|
2662
2650
|
priceUnitQuantity?: number | null | undefined;
|
|
2663
2651
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2713,8 +2701,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2713
2701
|
currency: string;
|
|
2714
2702
|
qualifier: string;
|
|
2715
2703
|
id?: number | null | undefined;
|
|
2716
|
-
|
|
2704
|
+
gtin?: string | null | undefined;
|
|
2717
2705
|
iteminfoid?: number | null | undefined;
|
|
2706
|
+
priceDivision?: string | null | undefined;
|
|
2718
2707
|
startdate?: string | null | undefined;
|
|
2719
2708
|
enddate?: string | null | undefined;
|
|
2720
2709
|
region?: string | null | undefined;
|
|
@@ -2725,7 +2714,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2725
2714
|
range_type?: string | null | undefined;
|
|
2726
2715
|
date_range_type?: string | null | undefined;
|
|
2727
2716
|
min_range?: number | null | undefined;
|
|
2728
|
-
gtin?: string | null | undefined;
|
|
2729
2717
|
priceConditionDescription?: string | null | undefined;
|
|
2730
2718
|
priceUnitQuantity?: number | null | undefined;
|
|
2731
2719
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2734,8 +2722,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2734
2722
|
currency: string;
|
|
2735
2723
|
qualifier: string;
|
|
2736
2724
|
id?: number | null | undefined;
|
|
2737
|
-
|
|
2725
|
+
gtin?: string | null | undefined;
|
|
2738
2726
|
iteminfoid?: number | null | undefined;
|
|
2727
|
+
priceDivision?: string | null | undefined;
|
|
2739
2728
|
startdate?: string | null | undefined;
|
|
2740
2729
|
enddate?: string | null | undefined;
|
|
2741
2730
|
region?: string | null | undefined;
|
|
@@ -2746,7 +2735,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2746
2735
|
range_type?: string | null | undefined;
|
|
2747
2736
|
date_range_type?: string | null | undefined;
|
|
2748
2737
|
min_range?: number | null | undefined;
|
|
2749
|
-
gtin?: string | null | undefined;
|
|
2750
2738
|
priceConditionDescription?: string | null | undefined;
|
|
2751
2739
|
priceUnitQuantity?: number | null | undefined;
|
|
2752
2740
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2821,9 +2809,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2821
2809
|
medianame: string;
|
|
2822
2810
|
filename: string;
|
|
2823
2811
|
mediatype: string;
|
|
2812
|
+
description?: string | null | undefined;
|
|
2824
2813
|
height?: number | null | undefined;
|
|
2825
2814
|
mediafilename?: string | null | undefined;
|
|
2826
|
-
description?: string | null | undefined;
|
|
2827
2815
|
filesize?: number | null | undefined;
|
|
2828
2816
|
format?: string | null | undefined;
|
|
2829
2817
|
orientation?: string | null | undefined;
|
|
@@ -2839,9 +2827,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2839
2827
|
medianame: string;
|
|
2840
2828
|
filename: string;
|
|
2841
2829
|
mediatype: string;
|
|
2830
|
+
description?: string | null | undefined;
|
|
2842
2831
|
height?: number | null | undefined;
|
|
2843
2832
|
mediafilename?: string | null | undefined;
|
|
2844
|
-
description?: string | null | undefined;
|
|
2845
2833
|
filesize?: number | null | undefined;
|
|
2846
2834
|
format?: string | null | undefined;
|
|
2847
2835
|
orientation?: string | null | undefined;
|
|
@@ -2881,8 +2869,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2881
2869
|
currency: string;
|
|
2882
2870
|
qualifier: string;
|
|
2883
2871
|
id?: number | null | undefined;
|
|
2884
|
-
|
|
2872
|
+
gtin?: string | null | undefined;
|
|
2885
2873
|
iteminfoid?: number | null | undefined;
|
|
2874
|
+
priceDivision?: string | null | undefined;
|
|
2886
2875
|
startdate?: string | null | undefined;
|
|
2887
2876
|
enddate?: string | null | undefined;
|
|
2888
2877
|
region?: string | null | undefined;
|
|
@@ -2893,7 +2882,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2893
2882
|
range_type?: string | null | undefined;
|
|
2894
2883
|
date_range_type?: string | null | undefined;
|
|
2895
2884
|
min_range?: number | null | undefined;
|
|
2896
|
-
gtin?: string | null | undefined;
|
|
2897
2885
|
priceConditionDescription?: string | null | undefined;
|
|
2898
2886
|
priceUnitQuantity?: number | null | undefined;
|
|
2899
2887
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2902,8 +2890,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2902
2890
|
currency: string;
|
|
2903
2891
|
qualifier: string;
|
|
2904
2892
|
id?: number | null | undefined;
|
|
2905
|
-
|
|
2893
|
+
gtin?: string | null | undefined;
|
|
2906
2894
|
iteminfoid?: number | null | undefined;
|
|
2895
|
+
priceDivision?: string | null | undefined;
|
|
2907
2896
|
startdate?: string | null | undefined;
|
|
2908
2897
|
enddate?: string | null | undefined;
|
|
2909
2898
|
region?: string | null | undefined;
|
|
@@ -2914,7 +2903,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2914
2903
|
range_type?: string | null | undefined;
|
|
2915
2904
|
date_range_type?: string | null | undefined;
|
|
2916
2905
|
min_range?: number | null | undefined;
|
|
2917
|
-
gtin?: string | null | undefined;
|
|
2918
2906
|
priceConditionDescription?: string | null | undefined;
|
|
2919
2907
|
priceUnitQuantity?: number | null | undefined;
|
|
2920
2908
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2926,8 +2914,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2926
2914
|
currency: string;
|
|
2927
2915
|
qualifier: string;
|
|
2928
2916
|
id?: number | null | undefined;
|
|
2929
|
-
|
|
2917
|
+
gtin?: string | null | undefined;
|
|
2930
2918
|
iteminfoid?: number | null | undefined;
|
|
2919
|
+
priceDivision?: string | null | undefined;
|
|
2931
2920
|
startdate?: string | null | undefined;
|
|
2932
2921
|
enddate?: string | null | undefined;
|
|
2933
2922
|
region?: string | null | undefined;
|
|
@@ -2938,7 +2927,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2938
2927
|
range_type?: string | null | undefined;
|
|
2939
2928
|
date_range_type?: string | null | undefined;
|
|
2940
2929
|
min_range?: number | null | undefined;
|
|
2941
|
-
gtin?: string | null | undefined;
|
|
2942
2930
|
priceConditionDescription?: string | null | undefined;
|
|
2943
2931
|
priceUnitQuantity?: number | null | undefined;
|
|
2944
2932
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2951,8 +2939,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2951
2939
|
currency: string;
|
|
2952
2940
|
qualifier: string;
|
|
2953
2941
|
id?: number | null | undefined;
|
|
2954
|
-
|
|
2942
|
+
gtin?: string | null | undefined;
|
|
2955
2943
|
iteminfoid?: number | null | undefined;
|
|
2944
|
+
priceDivision?: string | null | undefined;
|
|
2956
2945
|
startdate?: string | null | undefined;
|
|
2957
2946
|
enddate?: string | null | undefined;
|
|
2958
2947
|
region?: string | null | undefined;
|
|
@@ -2963,7 +2952,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2963
2952
|
range_type?: string | null | undefined;
|
|
2964
2953
|
date_range_type?: string | null | undefined;
|
|
2965
2954
|
min_range?: number | null | undefined;
|
|
2966
|
-
gtin?: string | null | undefined;
|
|
2967
2955
|
priceConditionDescription?: string | null | undefined;
|
|
2968
2956
|
priceUnitQuantity?: number | null | undefined;
|
|
2969
2957
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2977,8 +2965,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2977
2965
|
currency: string;
|
|
2978
2966
|
qualifier: string;
|
|
2979
2967
|
id?: number | null | undefined;
|
|
2980
|
-
|
|
2968
|
+
gtin?: string | null | undefined;
|
|
2981
2969
|
iteminfoid?: number | null | undefined;
|
|
2970
|
+
priceDivision?: string | null | undefined;
|
|
2982
2971
|
startdate?: string | null | undefined;
|
|
2983
2972
|
enddate?: string | null | undefined;
|
|
2984
2973
|
region?: string | null | undefined;
|
|
@@ -2989,7 +2978,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2989
2978
|
range_type?: string | null | undefined;
|
|
2990
2979
|
date_range_type?: string | null | undefined;
|
|
2991
2980
|
min_range?: number | null | undefined;
|
|
2992
|
-
gtin?: string | null | undefined;
|
|
2993
2981
|
priceConditionDescription?: string | null | undefined;
|
|
2994
2982
|
priceUnitQuantity?: number | null | undefined;
|
|
2995
2983
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -3019,9 +3007,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3019
3007
|
medianame: string;
|
|
3020
3008
|
filename: string;
|
|
3021
3009
|
mediatype: string;
|
|
3010
|
+
description?: string | null | undefined;
|
|
3022
3011
|
height?: number | null | undefined;
|
|
3023
3012
|
mediafilename?: string | null | undefined;
|
|
3024
|
-
description?: string | null | undefined;
|
|
3025
3013
|
filesize?: number | null | undefined;
|
|
3026
3014
|
format?: string | null | undefined;
|
|
3027
3015
|
orientation?: string | null | undefined;
|
|
@@ -3039,8 +3027,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3039
3027
|
currency: string;
|
|
3040
3028
|
qualifier: string;
|
|
3041
3029
|
id?: number | null | undefined;
|
|
3042
|
-
|
|
3030
|
+
gtin?: string | null | undefined;
|
|
3043
3031
|
iteminfoid?: number | null | undefined;
|
|
3032
|
+
priceDivision?: string | null | undefined;
|
|
3044
3033
|
startdate?: string | null | undefined;
|
|
3045
3034
|
enddate?: string | null | undefined;
|
|
3046
3035
|
region?: string | null | undefined;
|
|
@@ -3051,7 +3040,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3051
3040
|
range_type?: string | null | undefined;
|
|
3052
3041
|
date_range_type?: string | null | undefined;
|
|
3053
3042
|
min_range?: number | null | undefined;
|
|
3054
|
-
gtin?: string | null | undefined;
|
|
3055
3043
|
priceConditionDescription?: string | null | undefined;
|
|
3056
3044
|
priceUnitQuantity?: number | null | undefined;
|
|
3057
3045
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -3065,8 +3053,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3065
3053
|
currency: string;
|
|
3066
3054
|
qualifier: string;
|
|
3067
3055
|
id?: number | null | undefined;
|
|
3068
|
-
|
|
3056
|
+
gtin?: string | null | undefined;
|
|
3069
3057
|
iteminfoid?: number | null | undefined;
|
|
3058
|
+
priceDivision?: string | null | undefined;
|
|
3070
3059
|
startdate?: string | null | undefined;
|
|
3071
3060
|
enddate?: string | null | undefined;
|
|
3072
3061
|
region?: string | null | undefined;
|
|
@@ -3077,7 +3066,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3077
3066
|
range_type?: string | null | undefined;
|
|
3078
3067
|
date_range_type?: string | null | undefined;
|
|
3079
3068
|
min_range?: number | null | undefined;
|
|
3080
|
-
gtin?: string | null | undefined;
|
|
3081
3069
|
priceConditionDescription?: string | null | undefined;
|
|
3082
3070
|
priceUnitQuantity?: number | null | undefined;
|
|
3083
3071
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -3107,9 +3095,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3107
3095
|
medianame: string;
|
|
3108
3096
|
filename: string;
|
|
3109
3097
|
mediatype: string;
|
|
3098
|
+
description?: string | null | undefined;
|
|
3110
3099
|
height?: number | null | undefined;
|
|
3111
3100
|
mediafilename?: string | null | undefined;
|
|
3112
|
-
description?: string | null | undefined;
|
|
3113
3101
|
filesize?: number | null | undefined;
|
|
3114
3102
|
format?: string | null | undefined;
|
|
3115
3103
|
orientation?: string | null | undefined;
|
|
@@ -3127,8 +3115,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3127
3115
|
currency: string;
|
|
3128
3116
|
qualifier: string;
|
|
3129
3117
|
id?: number | null | undefined;
|
|
3130
|
-
|
|
3118
|
+
gtin?: string | null | undefined;
|
|
3131
3119
|
iteminfoid?: number | null | undefined;
|
|
3120
|
+
priceDivision?: string | null | undefined;
|
|
3132
3121
|
startdate?: string | null | undefined;
|
|
3133
3122
|
enddate?: string | null | undefined;
|
|
3134
3123
|
region?: string | null | undefined;
|
|
@@ -3139,7 +3128,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3139
3128
|
range_type?: string | null | undefined;
|
|
3140
3129
|
date_range_type?: string | null | undefined;
|
|
3141
3130
|
min_range?: number | null | undefined;
|
|
3142
|
-
gtin?: string | null | undefined;
|
|
3143
3131
|
priceConditionDescription?: string | null | undefined;
|
|
3144
3132
|
priceUnitQuantity?: number | null | undefined;
|
|
3145
3133
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -3173,9 +3161,9 @@ declare const mediaItemSchema: z.ZodObject<{
|
|
|
3173
3161
|
medianame: string;
|
|
3174
3162
|
filename: string;
|
|
3175
3163
|
mediatype: string;
|
|
3164
|
+
description?: string | null | undefined;
|
|
3176
3165
|
height?: number | null | undefined;
|
|
3177
3166
|
mediafilename?: string | null | undefined;
|
|
3178
|
-
description?: string | null | undefined;
|
|
3179
3167
|
filesize?: number | null | undefined;
|
|
3180
3168
|
format?: string | null | undefined;
|
|
3181
3169
|
orientation?: string | null | undefined;
|
|
@@ -3191,9 +3179,9 @@ declare const mediaItemSchema: z.ZodObject<{
|
|
|
3191
3179
|
medianame: string;
|
|
3192
3180
|
filename: string;
|
|
3193
3181
|
mediatype: string;
|
|
3182
|
+
description?: string | null | undefined;
|
|
3194
3183
|
height?: number | null | undefined;
|
|
3195
3184
|
mediafilename?: string | null | undefined;
|
|
3196
|
-
description?: string | null | undefined;
|
|
3197
3185
|
filesize?: number | null | undefined;
|
|
3198
3186
|
format?: string | null | undefined;
|
|
3199
3187
|
orientation?: string | null | undefined;
|
|
@@ -3270,4 +3258,4 @@ declare const itemErrorDetailsSchema: z.ZodObject<{
|
|
|
3270
3258
|
}>;
|
|
3271
3259
|
type ItemErrorDetails = z.infer<typeof itemErrorDetailsSchema>;
|
|
3272
3260
|
|
|
3273
|
-
export {
|
|
3261
|
+
export { itemCategorySchema as $, type AttributeSummary as A, type ItemPrice as B, type Connection as C, type DownLoadItemsParams as D, type ExportDayOfWeek as E, type PackComponentDetails as F, type GenerateImportTemplateParams as G, type HierarchyCategory as H, type ItemPartner as I, type Bulb as J, type PackComponent as K, type RepeatableGroup as L, type MediaItem as M, type PackComponentItemInfo as N, type ItemErrorDetails as O, type PhaseEnum as P, importDetailSchema as Q, type RegisteredService as R, type SpsItemIdResponse as S, type TradingPartnerStage as T, importErrorSchema as U, importStatusEnumSchema as V, generateImportTemplateParamsSchema as W, exportDayOfWeekEnum as X, exportFrequencyEnum as Y, exportTypeEnum as Z, downLoadItemsParamsSchema as _, type ItemHierarchyResponse as a, itemHierarchyResponseSchema as a0, attrDatatypeNameEnumSchema as a1, attributeGroupSchema as a2, attributeSummarySchema as a3, itemHeaderSchema as a4, itemMapSchema as a5, itemTableSchema as a6, phaseEnumSchema as a7, tradingPartnerStageSchema as a8, bulbSchema as a9, itemPriceSchema as aa, mediaItemSchema as ab, itemDetailSchema as ac, groupedItemSchema as ad, categoryEnumSchema as ae, packComponentSchema as af, attributeDetailSchema as ag, repeatableGroupSchema as ah, componentDetailsSchema as ai, hierarchyDetailsSchema as aj, groupedAttributesSchema as ak, hierarchyCategorySchema as al, groupedAttributeListSchema as am, packComponentDetailsSchema as an, packComponentItemInfoSchema as ao, spsItemIdResponseSchema as ap, spreadsheetTemplateCompanySchema as aq, connectionSchema as ar, itemPartnerSchema as as, identityServiceDatetimePreferencesSchema as at, identityServiceOrganizationMetadataSchema as au, identityServiceOrganizationSchema as av, identityServicePreferencesSchema as aw, identityServiceUserSchema as ax, registeredServiceSchema as ay, itemErrorDetailsSchema as az, type ItemDetail as b, type ImportDetails as c, type ImportError as d, type ImportStatusEnum as e, type ExportFrequency as f, type ExportType as g, type ItemCategory as h, type AttrDatatypeNameEnum as i, type AttributeGroup as j, type SpreadsheetTemplateCompany as k, type IdentityServiceOrganizationMetadata as l, type IdentityServiceDatetimePreferences as m, type IdentityServiceOrganization as n, type IdentityServicePreferences as o, type IdentityServiceUser as p, type ItemHeader as q, type ItemMap as r, type ItemTable as s, type AttributeDetail as t, type CategoryEnum as u, type ComponentDetails as v, type GroupedAttributeList as w, type GroupedAttributes as x, type GroupedItem as y, type HierarchyDetails as z };
|