@spscommerce/asst-api 0.2.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-eea5479d.d.ts → CompanyBriefByOrg-HsKxilwl.d.ts} +140 -140
- package/dist/{chunk-VICSFYTR.js → chunk-6FFDMMN5.js} +430 -199
- package/dist/{chunk-HBDHFANT.js → chunk-C2N5RQWG.js} +95 -50
- package/dist/{index-ba0dd228.d.ts → index-wuCGfJSu.d.ts} +5 -2
- package/dist/index.cjs +590 -237
- package/dist/index.d.cts +617 -0
- package/dist/index.d.ts +325 -10
- package/dist/index.js +81 -3
- package/dist/msw.cjs +569 -299
- package/dist/msw.d.cts +833 -0
- package/dist/msw.d.ts +40 -28
- package/dist/msw.js +111 -89
- package/dist/{zod-5a9153f1.d.ts → zod-9pZn6tpQ.d.ts} +206 -248
- package/dist/zod.cjs +430 -201
- package/dist/zod.d.cts +5 -0
- package/dist/zod.d.ts +2 -2
- package/dist/zod.js +1 -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<{
|
|
@@ -142,51 +142,6 @@ declare const itemPartnerSchema: z.ZodObject<{
|
|
|
142
142
|
}>;
|
|
143
143
|
type ItemPartner = z.infer<typeof itemPartnerSchema>;
|
|
144
144
|
|
|
145
|
-
declare const baseHierarchySchema: z.ZodObject<{
|
|
146
|
-
id: z.ZodString;
|
|
147
|
-
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
148
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
149
|
-
type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
150
|
-
}, "strip", z.ZodTypeAny, {
|
|
151
|
-
id: string;
|
|
152
|
-
name?: string | null | undefined;
|
|
153
|
-
description?: string | null | undefined;
|
|
154
|
-
type?: string | null | undefined;
|
|
155
|
-
}, {
|
|
156
|
-
id: string;
|
|
157
|
-
name?: string | null | undefined;
|
|
158
|
-
description?: string | null | undefined;
|
|
159
|
-
type?: string | null | undefined;
|
|
160
|
-
}>;
|
|
161
|
-
type Hierarchy = z.infer<typeof baseHierarchySchema> & {
|
|
162
|
-
child: Hierarchy | null;
|
|
163
|
-
};
|
|
164
|
-
declare const hierarchySchema: z.ZodType<Hierarchy>;
|
|
165
|
-
|
|
166
|
-
declare const itemHierarchyResponseSchema: z.ZodObject<{
|
|
167
|
-
itemHierarchies: z.ZodArray<z.ZodObject<{
|
|
168
|
-
itemId: z.ZodString;
|
|
169
|
-
hierarchies: z.ZodArray<z.ZodType<Hierarchy, z.ZodTypeDef, Hierarchy>, "many">;
|
|
170
|
-
}, "strip", z.ZodTypeAny, {
|
|
171
|
-
itemId: string;
|
|
172
|
-
hierarchies: Hierarchy[];
|
|
173
|
-
}, {
|
|
174
|
-
itemId: string;
|
|
175
|
-
hierarchies: Hierarchy[];
|
|
176
|
-
}>, "many">;
|
|
177
|
-
}, "strip", z.ZodTypeAny, {
|
|
178
|
-
itemHierarchies: {
|
|
179
|
-
itemId: string;
|
|
180
|
-
hierarchies: Hierarchy[];
|
|
181
|
-
}[];
|
|
182
|
-
}, {
|
|
183
|
-
itemHierarchies: {
|
|
184
|
-
itemId: string;
|
|
185
|
-
hierarchies: Hierarchy[];
|
|
186
|
-
}[];
|
|
187
|
-
}>;
|
|
188
|
-
type ItemHierarchyResponse = z.infer<typeof itemHierarchyResponseSchema>;
|
|
189
|
-
|
|
190
145
|
declare const itemCategorySchema: z.ZodObject<{
|
|
191
146
|
categoryid: z.ZodNumber;
|
|
192
147
|
encodedCategoryId: z.ZodString;
|
|
@@ -208,10 +163,10 @@ declare const itemCategorySchema: z.ZodObject<{
|
|
|
208
163
|
categoryid: number;
|
|
209
164
|
encodedCategoryId: string;
|
|
210
165
|
typeId: number;
|
|
166
|
+
description?: string | null | undefined;
|
|
211
167
|
createdDate?: number | null | undefined;
|
|
212
168
|
categorytimestamp?: number | null | undefined;
|
|
213
169
|
categorykey?: string | null | undefined;
|
|
214
|
-
description?: string | null | undefined;
|
|
215
170
|
categoryCatalogName?: string | null | undefined;
|
|
216
171
|
}, {
|
|
217
172
|
type: string;
|
|
@@ -221,25 +176,28 @@ declare const itemCategorySchema: z.ZodObject<{
|
|
|
221
176
|
categoryid: number;
|
|
222
177
|
encodedCategoryId: string;
|
|
223
178
|
typeId: number;
|
|
179
|
+
description?: string | null | undefined;
|
|
224
180
|
createdDate?: number | null | undefined;
|
|
225
181
|
categorytimestamp?: number | null | undefined;
|
|
226
182
|
categorykey?: string | null | undefined;
|
|
227
|
-
description?: string | null | undefined;
|
|
228
183
|
categoryCatalogName?: string | null | undefined;
|
|
229
184
|
}>;
|
|
230
185
|
type ItemCategory = z.infer<typeof itemCategorySchema>;
|
|
231
186
|
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
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>;
|
|
243
201
|
|
|
244
202
|
declare const attributeSummarySchema: z.ZodObject<{
|
|
245
203
|
attributeId: z.ZodNumber;
|
|
@@ -386,9 +344,9 @@ declare const identityServiceOrganizationSchema: z.ZodObject<{
|
|
|
386
344
|
}>>;
|
|
387
345
|
}, "strip", z.ZodTypeAny, {
|
|
388
346
|
id: string;
|
|
347
|
+
namespace?: string | undefined;
|
|
389
348
|
organization_name?: string | undefined;
|
|
390
349
|
organization_site?: string | undefined;
|
|
391
|
-
namespace?: string | undefined;
|
|
392
350
|
permissions?: string[] | undefined;
|
|
393
351
|
metadata?: {
|
|
394
352
|
value: string;
|
|
@@ -397,9 +355,9 @@ declare const identityServiceOrganizationSchema: z.ZodObject<{
|
|
|
397
355
|
} | undefined;
|
|
398
356
|
}, {
|
|
399
357
|
id: string;
|
|
358
|
+
namespace?: string | undefined;
|
|
400
359
|
organization_name?: string | undefined;
|
|
401
360
|
organization_site?: string | undefined;
|
|
402
|
-
namespace?: string | undefined;
|
|
403
361
|
permissions?: string[] | undefined;
|
|
404
362
|
metadata?: {
|
|
405
363
|
value: string;
|
|
@@ -577,9 +535,9 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
577
535
|
}>>;
|
|
578
536
|
}, "strip", z.ZodTypeAny, {
|
|
579
537
|
id: string;
|
|
538
|
+
namespace?: string | undefined;
|
|
580
539
|
organization_name?: string | undefined;
|
|
581
540
|
organization_site?: string | undefined;
|
|
582
|
-
namespace?: string | undefined;
|
|
583
541
|
permissions?: string[] | undefined;
|
|
584
542
|
metadata?: {
|
|
585
543
|
value: string;
|
|
@@ -588,9 +546,9 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
588
546
|
} | undefined;
|
|
589
547
|
}, {
|
|
590
548
|
id: string;
|
|
549
|
+
namespace?: string | undefined;
|
|
591
550
|
organization_name?: string | undefined;
|
|
592
551
|
organization_site?: string | undefined;
|
|
593
|
-
namespace?: string | undefined;
|
|
594
552
|
permissions?: string[] | undefined;
|
|
595
553
|
metadata?: {
|
|
596
554
|
value: string;
|
|
@@ -606,9 +564,9 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
606
564
|
roles: string[];
|
|
607
565
|
organization: {
|
|
608
566
|
id: string;
|
|
567
|
+
namespace?: string | undefined;
|
|
609
568
|
organization_name?: string | undefined;
|
|
610
569
|
organization_site?: string | undefined;
|
|
611
|
-
namespace?: string | undefined;
|
|
612
570
|
permissions?: string[] | undefined;
|
|
613
571
|
metadata?: {
|
|
614
572
|
value: string;
|
|
@@ -618,6 +576,7 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
618
576
|
};
|
|
619
577
|
password: string;
|
|
620
578
|
verified: boolean;
|
|
579
|
+
description?: string | undefined;
|
|
621
580
|
email?: string | undefined;
|
|
622
581
|
first_name?: string | undefined;
|
|
623
582
|
last_name?: string | undefined;
|
|
@@ -635,7 +594,6 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
635
594
|
phone_number?: string | undefined;
|
|
636
595
|
twitter_handle?: string | undefined;
|
|
637
596
|
linkedin_url?: string | undefined;
|
|
638
|
-
description?: string | undefined;
|
|
639
597
|
preferences?: {
|
|
640
598
|
locale: string;
|
|
641
599
|
timezone: string;
|
|
@@ -656,9 +614,9 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
656
614
|
roles: string[];
|
|
657
615
|
organization: {
|
|
658
616
|
id: string;
|
|
617
|
+
namespace?: string | undefined;
|
|
659
618
|
organization_name?: string | undefined;
|
|
660
619
|
organization_site?: string | undefined;
|
|
661
|
-
namespace?: string | undefined;
|
|
662
620
|
permissions?: string[] | undefined;
|
|
663
621
|
metadata?: {
|
|
664
622
|
value: string;
|
|
@@ -668,6 +626,7 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
668
626
|
};
|
|
669
627
|
password: string;
|
|
670
628
|
verified: boolean;
|
|
629
|
+
description?: string | undefined;
|
|
671
630
|
email?: string | undefined;
|
|
672
631
|
first_name?: string | undefined;
|
|
673
632
|
last_name?: string | undefined;
|
|
@@ -685,7 +644,6 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
685
644
|
phone_number?: string | undefined;
|
|
686
645
|
twitter_handle?: string | undefined;
|
|
687
646
|
linkedin_url?: string | undefined;
|
|
688
|
-
description?: string | undefined;
|
|
689
647
|
preferences?: {
|
|
690
648
|
locale: string;
|
|
691
649
|
timezone: string;
|
|
@@ -1152,14 +1110,14 @@ declare const attributeDetailSchema: z.ZodObject<{
|
|
|
1152
1110
|
group: z.ZodString;
|
|
1153
1111
|
orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
1154
1112
|
}, "strip", z.ZodTypeAny, {
|
|
1155
|
-
value:
|
|
1113
|
+
value: string | number | string[] | number[] | null;
|
|
1156
1114
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1157
1115
|
name: string;
|
|
1158
1116
|
label: string;
|
|
1159
1117
|
group: string;
|
|
1160
1118
|
orderBy?: string | number | null | undefined;
|
|
1161
1119
|
}, {
|
|
1162
|
-
value:
|
|
1120
|
+
value: string | number | string[] | number[] | null;
|
|
1163
1121
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1164
1122
|
name: string;
|
|
1165
1123
|
label: string;
|
|
@@ -1168,12 +1126,12 @@ declare const attributeDetailSchema: z.ZodObject<{
|
|
|
1168
1126
|
}>;
|
|
1169
1127
|
type AttributeDetail = z.infer<typeof attributeDetailSchema>;
|
|
1170
1128
|
|
|
1171
|
-
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"]>;
|
|
1172
1130
|
type CategoryEnum = z.infer<typeof categoryEnumSchema>;
|
|
1173
1131
|
|
|
1174
1132
|
declare const componentDetailsSchema: z.ZodObject<{
|
|
1175
1133
|
itemInfoId: z.ZodNumber;
|
|
1176
|
-
description: z.ZodString
|
|
1134
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1177
1135
|
saleable: z.ZodBoolean;
|
|
1178
1136
|
valid: z.ZodBoolean;
|
|
1179
1137
|
uniqueCriteria: z.ZodArray<z.ZodObject<{
|
|
@@ -1188,22 +1146,22 @@ declare const componentDetailsSchema: z.ZodObject<{
|
|
|
1188
1146
|
}>, "many">;
|
|
1189
1147
|
}, "strip", z.ZodTypeAny, {
|
|
1190
1148
|
valid: boolean;
|
|
1191
|
-
description: string;
|
|
1192
1149
|
itemInfoId: number;
|
|
1193
1150
|
saleable: boolean;
|
|
1194
1151
|
uniqueCriteria: {
|
|
1195
1152
|
value: string;
|
|
1196
1153
|
name: string;
|
|
1197
1154
|
}[];
|
|
1155
|
+
description?: string | null | undefined;
|
|
1198
1156
|
}, {
|
|
1199
1157
|
valid: boolean;
|
|
1200
|
-
description: string;
|
|
1201
1158
|
itemInfoId: number;
|
|
1202
1159
|
saleable: boolean;
|
|
1203
1160
|
uniqueCriteria: {
|
|
1204
1161
|
value: string;
|
|
1205
1162
|
name: string;
|
|
1206
1163
|
}[];
|
|
1164
|
+
description?: string | null | undefined;
|
|
1207
1165
|
}>;
|
|
1208
1166
|
type ComponentDetails = z.infer<typeof componentDetailsSchema>;
|
|
1209
1167
|
|
|
@@ -1217,14 +1175,14 @@ declare const groupedAttributeListSchema: z.ZodObject<{
|
|
|
1217
1175
|
group: z.ZodString;
|
|
1218
1176
|
orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
1219
1177
|
}, "strip", z.ZodTypeAny, {
|
|
1220
|
-
value:
|
|
1178
|
+
value: string | number | string[] | number[] | null;
|
|
1221
1179
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1222
1180
|
name: string;
|
|
1223
1181
|
label: string;
|
|
1224
1182
|
group: string;
|
|
1225
1183
|
orderBy?: string | number | null | undefined;
|
|
1226
1184
|
}, {
|
|
1227
|
-
value:
|
|
1185
|
+
value: string | number | string[] | number[] | null;
|
|
1228
1186
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1229
1187
|
name: string;
|
|
1230
1188
|
label: string;
|
|
@@ -1244,7 +1202,7 @@ declare const groupedAttributeListSchema: z.ZodObject<{
|
|
|
1244
1202
|
}, "strip", z.ZodTypeAny, {
|
|
1245
1203
|
type: string;
|
|
1246
1204
|
rows: {
|
|
1247
|
-
value:
|
|
1205
|
+
value: string | number | string[] | number[] | null;
|
|
1248
1206
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1249
1207
|
name: string;
|
|
1250
1208
|
label: string;
|
|
@@ -1258,7 +1216,7 @@ declare const groupedAttributeListSchema: z.ZodObject<{
|
|
|
1258
1216
|
}, {
|
|
1259
1217
|
type: string;
|
|
1260
1218
|
rows: {
|
|
1261
|
-
value:
|
|
1219
|
+
value: string | number | string[] | number[] | null;
|
|
1262
1220
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1263
1221
|
name: string;
|
|
1264
1222
|
label: string;
|
|
@@ -1282,14 +1240,14 @@ declare const groupedAttributesSchema: z.ZodObject<{
|
|
|
1282
1240
|
group: z.ZodString;
|
|
1283
1241
|
orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
1284
1242
|
}, "strip", z.ZodTypeAny, {
|
|
1285
|
-
value:
|
|
1243
|
+
value: string | number | string[] | number[] | null;
|
|
1286
1244
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1287
1245
|
name: string;
|
|
1288
1246
|
label: string;
|
|
1289
1247
|
group: string;
|
|
1290
1248
|
orderBy?: string | number | null | undefined;
|
|
1291
1249
|
}, {
|
|
1292
|
-
value:
|
|
1250
|
+
value: string | number | string[] | number[] | null;
|
|
1293
1251
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1294
1252
|
name: string;
|
|
1295
1253
|
label: string;
|
|
@@ -1306,14 +1264,14 @@ declare const groupedAttributesSchema: z.ZodObject<{
|
|
|
1306
1264
|
group: z.ZodString;
|
|
1307
1265
|
orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
1308
1266
|
}, "strip", z.ZodTypeAny, {
|
|
1309
|
-
value:
|
|
1267
|
+
value: string | number | string[] | number[] | null;
|
|
1310
1268
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1311
1269
|
name: string;
|
|
1312
1270
|
label: string;
|
|
1313
1271
|
group: string;
|
|
1314
1272
|
orderBy?: string | number | null | undefined;
|
|
1315
1273
|
}, {
|
|
1316
|
-
value:
|
|
1274
|
+
value: string | number | string[] | number[] | null;
|
|
1317
1275
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1318
1276
|
name: string;
|
|
1319
1277
|
label: string;
|
|
@@ -1333,7 +1291,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
|
|
|
1333
1291
|
}, "strip", z.ZodTypeAny, {
|
|
1334
1292
|
type: string;
|
|
1335
1293
|
rows: {
|
|
1336
|
-
value:
|
|
1294
|
+
value: string | number | string[] | number[] | null;
|
|
1337
1295
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1338
1296
|
name: string;
|
|
1339
1297
|
label: string;
|
|
@@ -1347,7 +1305,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
|
|
|
1347
1305
|
}, {
|
|
1348
1306
|
type: string;
|
|
1349
1307
|
rows: {
|
|
1350
|
-
value:
|
|
1308
|
+
value: string | number | string[] | number[] | null;
|
|
1351
1309
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1352
1310
|
name: string;
|
|
1353
1311
|
label: string;
|
|
@@ -1362,7 +1320,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
|
|
|
1362
1320
|
}, "strip", z.ZodTypeAny, {
|
|
1363
1321
|
type: string;
|
|
1364
1322
|
attributes: {
|
|
1365
|
-
value:
|
|
1323
|
+
value: string | number | string[] | number[] | null;
|
|
1366
1324
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1367
1325
|
name: string;
|
|
1368
1326
|
label: string;
|
|
@@ -1372,7 +1330,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
|
|
|
1372
1330
|
attributeGroups: {
|
|
1373
1331
|
type: string;
|
|
1374
1332
|
rows: {
|
|
1375
|
-
value:
|
|
1333
|
+
value: string | number | string[] | number[] | null;
|
|
1376
1334
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1377
1335
|
name: string;
|
|
1378
1336
|
label: string;
|
|
@@ -1387,7 +1345,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
|
|
|
1387
1345
|
}, {
|
|
1388
1346
|
type: string;
|
|
1389
1347
|
attributes: {
|
|
1390
|
-
value:
|
|
1348
|
+
value: string | number | string[] | number[] | null;
|
|
1391
1349
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1392
1350
|
name: string;
|
|
1393
1351
|
label: string;
|
|
@@ -1397,7 +1355,7 @@ declare const groupedAttributesSchema: z.ZodObject<{
|
|
|
1397
1355
|
attributeGroups: {
|
|
1398
1356
|
type: string;
|
|
1399
1357
|
rows: {
|
|
1400
|
-
value:
|
|
1358
|
+
value: string | number | string[] | number[] | null;
|
|
1401
1359
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1402
1360
|
name: string;
|
|
1403
1361
|
label: string;
|
|
@@ -1424,102 +1382,102 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1424
1382
|
name: z.ZodString;
|
|
1425
1383
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1426
1384
|
id: z.ZodNumber;
|
|
1427
|
-
companyId: z.ZodNumber
|
|
1428
|
-
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"]>;
|
|
1429
1387
|
}, "strip", z.ZodTypeAny, {
|
|
1430
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1388
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1431
1389
|
name: string;
|
|
1432
|
-
companyId: number;
|
|
1433
1390
|
id: number;
|
|
1434
1391
|
description?: string | null | undefined;
|
|
1392
|
+
companyId?: number | null | undefined;
|
|
1435
1393
|
}, {
|
|
1436
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1394
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1437
1395
|
name: string;
|
|
1438
|
-
companyId: number;
|
|
1439
1396
|
id: number;
|
|
1440
1397
|
description?: string | null | undefined;
|
|
1398
|
+
companyId?: number | null | undefined;
|
|
1441
1399
|
}>, "many">;
|
|
1442
1400
|
selectionCodes: z.ZodArray<z.ZodObject<{
|
|
1443
1401
|
name: z.ZodString;
|
|
1444
1402
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1445
1403
|
id: z.ZodNumber;
|
|
1446
|
-
companyId: z.ZodNumber
|
|
1447
|
-
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"]>;
|
|
1448
1406
|
}, "strip", z.ZodTypeAny, {
|
|
1449
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1407
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1450
1408
|
name: string;
|
|
1451
|
-
companyId: number;
|
|
1452
1409
|
id: number;
|
|
1453
1410
|
description?: string | null | undefined;
|
|
1411
|
+
companyId?: number | null | undefined;
|
|
1454
1412
|
}, {
|
|
1455
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1413
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1456
1414
|
name: string;
|
|
1457
|
-
companyId: number;
|
|
1458
1415
|
id: number;
|
|
1459
1416
|
description?: string | null | undefined;
|
|
1417
|
+
companyId?: number | null | undefined;
|
|
1460
1418
|
}>, "many">;
|
|
1461
1419
|
productCodes: z.ZodArray<z.ZodObject<{
|
|
1462
1420
|
name: z.ZodString;
|
|
1463
1421
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1464
1422
|
id: z.ZodNumber;
|
|
1465
|
-
companyId: z.ZodNumber
|
|
1466
|
-
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"]>;
|
|
1467
1425
|
}, "strip", z.ZodTypeAny, {
|
|
1468
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1426
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1469
1427
|
name: string;
|
|
1470
|
-
companyId: number;
|
|
1471
1428
|
id: number;
|
|
1472
1429
|
description?: string | null | undefined;
|
|
1430
|
+
companyId?: number | null | undefined;
|
|
1473
1431
|
}, {
|
|
1474
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1432
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1475
1433
|
name: string;
|
|
1476
|
-
companyId: number;
|
|
1477
1434
|
id: number;
|
|
1478
1435
|
description?: string | null | undefined;
|
|
1436
|
+
companyId?: number | null | undefined;
|
|
1479
1437
|
}>, "many">;
|
|
1480
1438
|
}, "strip", z.ZodTypeAny, {
|
|
1481
1439
|
catalogs: {
|
|
1482
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1440
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1483
1441
|
name: string;
|
|
1484
|
-
companyId: number;
|
|
1485
1442
|
id: number;
|
|
1486
1443
|
description?: string | null | undefined;
|
|
1444
|
+
companyId?: number | null | undefined;
|
|
1487
1445
|
}[];
|
|
1488
1446
|
selectionCodes: {
|
|
1489
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1447
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1490
1448
|
name: string;
|
|
1491
|
-
companyId: number;
|
|
1492
1449
|
id: number;
|
|
1493
1450
|
description?: string | null | undefined;
|
|
1451
|
+
companyId?: number | null | undefined;
|
|
1494
1452
|
}[];
|
|
1495
1453
|
productCodes: {
|
|
1496
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1454
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1497
1455
|
name: string;
|
|
1498
|
-
companyId: number;
|
|
1499
1456
|
id: number;
|
|
1500
1457
|
description?: string | null | undefined;
|
|
1458
|
+
companyId?: number | null | undefined;
|
|
1501
1459
|
}[];
|
|
1502
1460
|
}, {
|
|
1503
1461
|
catalogs: {
|
|
1504
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1462
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1505
1463
|
name: string;
|
|
1506
|
-
companyId: number;
|
|
1507
1464
|
id: number;
|
|
1508
1465
|
description?: string | null | undefined;
|
|
1466
|
+
companyId?: number | null | undefined;
|
|
1509
1467
|
}[];
|
|
1510
1468
|
selectionCodes: {
|
|
1511
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1469
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1512
1470
|
name: string;
|
|
1513
|
-
companyId: number;
|
|
1514
1471
|
id: number;
|
|
1515
1472
|
description?: string | null | undefined;
|
|
1473
|
+
companyId?: number | null | undefined;
|
|
1516
1474
|
}[];
|
|
1517
1475
|
productCodes: {
|
|
1518
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1476
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1519
1477
|
name: string;
|
|
1520
|
-
companyId: number;
|
|
1521
1478
|
id: number;
|
|
1522
1479
|
description?: string | null | undefined;
|
|
1480
|
+
companyId?: number | null | undefined;
|
|
1523
1481
|
}[];
|
|
1524
1482
|
}>;
|
|
1525
1483
|
groupedAttributes: z.ZodArray<z.ZodObject<{
|
|
@@ -1532,14 +1490,14 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1532
1490
|
group: z.ZodString;
|
|
1533
1491
|
orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
1534
1492
|
}, "strip", z.ZodTypeAny, {
|
|
1535
|
-
value:
|
|
1493
|
+
value: string | number | string[] | number[] | null;
|
|
1536
1494
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1537
1495
|
name: string;
|
|
1538
1496
|
label: string;
|
|
1539
1497
|
group: string;
|
|
1540
1498
|
orderBy?: string | number | null | undefined;
|
|
1541
1499
|
}, {
|
|
1542
|
-
value:
|
|
1500
|
+
value: string | number | string[] | number[] | null;
|
|
1543
1501
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1544
1502
|
name: string;
|
|
1545
1503
|
label: string;
|
|
@@ -1556,14 +1514,14 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1556
1514
|
group: z.ZodString;
|
|
1557
1515
|
orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
1558
1516
|
}, "strip", z.ZodTypeAny, {
|
|
1559
|
-
value:
|
|
1517
|
+
value: string | number | string[] | number[] | null;
|
|
1560
1518
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1561
1519
|
name: string;
|
|
1562
1520
|
label: string;
|
|
1563
1521
|
group: string;
|
|
1564
1522
|
orderBy?: string | number | null | undefined;
|
|
1565
1523
|
}, {
|
|
1566
|
-
value:
|
|
1524
|
+
value: string | number | string[] | number[] | null;
|
|
1567
1525
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1568
1526
|
name: string;
|
|
1569
1527
|
label: string;
|
|
@@ -1583,7 +1541,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1583
1541
|
}, "strip", z.ZodTypeAny, {
|
|
1584
1542
|
type: string;
|
|
1585
1543
|
rows: {
|
|
1586
|
-
value:
|
|
1544
|
+
value: string | number | string[] | number[] | null;
|
|
1587
1545
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1588
1546
|
name: string;
|
|
1589
1547
|
label: string;
|
|
@@ -1597,7 +1555,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1597
1555
|
}, {
|
|
1598
1556
|
type: string;
|
|
1599
1557
|
rows: {
|
|
1600
|
-
value:
|
|
1558
|
+
value: string | number | string[] | number[] | null;
|
|
1601
1559
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1602
1560
|
name: string;
|
|
1603
1561
|
label: string;
|
|
@@ -1612,7 +1570,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1612
1570
|
}, "strip", z.ZodTypeAny, {
|
|
1613
1571
|
type: string;
|
|
1614
1572
|
attributes: {
|
|
1615
|
-
value:
|
|
1573
|
+
value: string | number | string[] | number[] | null;
|
|
1616
1574
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1617
1575
|
name: string;
|
|
1618
1576
|
label: string;
|
|
@@ -1622,7 +1580,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1622
1580
|
attributeGroups: {
|
|
1623
1581
|
type: string;
|
|
1624
1582
|
rows: {
|
|
1625
|
-
value:
|
|
1583
|
+
value: string | number | string[] | number[] | null;
|
|
1626
1584
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1627
1585
|
name: string;
|
|
1628
1586
|
label: string;
|
|
@@ -1637,7 +1595,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1637
1595
|
}, {
|
|
1638
1596
|
type: string;
|
|
1639
1597
|
attributes: {
|
|
1640
|
-
value:
|
|
1598
|
+
value: string | number | string[] | number[] | null;
|
|
1641
1599
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1642
1600
|
name: string;
|
|
1643
1601
|
label: string;
|
|
@@ -1647,7 +1605,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1647
1605
|
attributeGroups: {
|
|
1648
1606
|
type: string;
|
|
1649
1607
|
rows: {
|
|
1650
|
-
value:
|
|
1608
|
+
value: string | number | string[] | number[] | null;
|
|
1651
1609
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1652
1610
|
name: string;
|
|
1653
1611
|
label: string;
|
|
@@ -1721,8 +1679,9 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1721
1679
|
currency: string;
|
|
1722
1680
|
qualifier: string;
|
|
1723
1681
|
id?: number | null | undefined;
|
|
1724
|
-
|
|
1682
|
+
gtin?: string | null | undefined;
|
|
1725
1683
|
iteminfoid?: number | null | undefined;
|
|
1684
|
+
priceDivision?: string | null | undefined;
|
|
1726
1685
|
startdate?: string | null | undefined;
|
|
1727
1686
|
enddate?: string | null | undefined;
|
|
1728
1687
|
region?: string | null | undefined;
|
|
@@ -1733,7 +1692,6 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1733
1692
|
range_type?: string | null | undefined;
|
|
1734
1693
|
date_range_type?: string | null | undefined;
|
|
1735
1694
|
min_range?: number | null | undefined;
|
|
1736
|
-
gtin?: string | null | undefined;
|
|
1737
1695
|
priceConditionDescription?: string | null | undefined;
|
|
1738
1696
|
priceUnitQuantity?: number | null | undefined;
|
|
1739
1697
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -1742,8 +1700,9 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1742
1700
|
currency: string;
|
|
1743
1701
|
qualifier: string;
|
|
1744
1702
|
id?: number | null | undefined;
|
|
1745
|
-
|
|
1703
|
+
gtin?: string | null | undefined;
|
|
1746
1704
|
iteminfoid?: number | null | undefined;
|
|
1705
|
+
priceDivision?: string | null | undefined;
|
|
1747
1706
|
startdate?: string | null | undefined;
|
|
1748
1707
|
enddate?: string | null | undefined;
|
|
1749
1708
|
region?: string | null | undefined;
|
|
@@ -1754,7 +1713,6 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1754
1713
|
range_type?: string | null | undefined;
|
|
1755
1714
|
date_range_type?: string | null | undefined;
|
|
1756
1715
|
min_range?: number | null | undefined;
|
|
1757
|
-
gtin?: string | null | undefined;
|
|
1758
1716
|
priceConditionDescription?: string | null | undefined;
|
|
1759
1717
|
priceUnitQuantity?: number | null | undefined;
|
|
1760
1718
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -1777,8 +1735,9 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1777
1735
|
currency: string;
|
|
1778
1736
|
qualifier: string;
|
|
1779
1737
|
id?: number | null | undefined;
|
|
1780
|
-
|
|
1738
|
+
gtin?: string | null | undefined;
|
|
1781
1739
|
iteminfoid?: number | null | undefined;
|
|
1740
|
+
priceDivision?: string | null | undefined;
|
|
1782
1741
|
startdate?: string | null | undefined;
|
|
1783
1742
|
enddate?: string | null | undefined;
|
|
1784
1743
|
region?: string | null | undefined;
|
|
@@ -1789,7 +1748,6 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1789
1748
|
range_type?: string | null | undefined;
|
|
1790
1749
|
date_range_type?: string | null | undefined;
|
|
1791
1750
|
min_range?: number | null | undefined;
|
|
1792
|
-
gtin?: string | null | undefined;
|
|
1793
1751
|
priceConditionDescription?: string | null | undefined;
|
|
1794
1752
|
priceUnitQuantity?: number | null | undefined;
|
|
1795
1753
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -1812,8 +1770,9 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1812
1770
|
currency: string;
|
|
1813
1771
|
qualifier: string;
|
|
1814
1772
|
id?: number | null | undefined;
|
|
1815
|
-
|
|
1773
|
+
gtin?: string | null | undefined;
|
|
1816
1774
|
iteminfoid?: number | null | undefined;
|
|
1775
|
+
priceDivision?: string | null | undefined;
|
|
1817
1776
|
startdate?: string | null | undefined;
|
|
1818
1777
|
enddate?: string | null | undefined;
|
|
1819
1778
|
region?: string | null | undefined;
|
|
@@ -1824,7 +1783,6 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1824
1783
|
range_type?: string | null | undefined;
|
|
1825
1784
|
date_range_type?: string | null | undefined;
|
|
1826
1785
|
min_range?: number | null | undefined;
|
|
1827
|
-
gtin?: string | null | undefined;
|
|
1828
1786
|
priceConditionDescription?: string | null | undefined;
|
|
1829
1787
|
priceUnitQuantity?: number | null | undefined;
|
|
1830
1788
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -1832,7 +1790,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1832
1790
|
}>, "many">;
|
|
1833
1791
|
childComponentDetails: z.ZodArray<z.ZodObject<{
|
|
1834
1792
|
itemInfoId: z.ZodNumber;
|
|
1835
|
-
description: z.ZodString
|
|
1793
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1836
1794
|
saleable: z.ZodBoolean;
|
|
1837
1795
|
valid: z.ZodBoolean;
|
|
1838
1796
|
uniqueCriteria: z.ZodArray<z.ZodObject<{
|
|
@@ -1847,26 +1805,26 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1847
1805
|
}>, "many">;
|
|
1848
1806
|
}, "strip", z.ZodTypeAny, {
|
|
1849
1807
|
valid: boolean;
|
|
1850
|
-
description: string;
|
|
1851
1808
|
itemInfoId: number;
|
|
1852
1809
|
saleable: boolean;
|
|
1853
1810
|
uniqueCriteria: {
|
|
1854
1811
|
value: string;
|
|
1855
1812
|
name: string;
|
|
1856
1813
|
}[];
|
|
1814
|
+
description?: string | null | undefined;
|
|
1857
1815
|
}, {
|
|
1858
1816
|
valid: boolean;
|
|
1859
|
-
description: string;
|
|
1860
1817
|
itemInfoId: number;
|
|
1861
1818
|
saleable: boolean;
|
|
1862
1819
|
uniqueCriteria: {
|
|
1863
1820
|
value: string;
|
|
1864
1821
|
name: string;
|
|
1865
1822
|
}[];
|
|
1823
|
+
description?: string | null | undefined;
|
|
1866
1824
|
}>, "many">;
|
|
1867
1825
|
parentComponentDetails: z.ZodArray<z.ZodObject<{
|
|
1868
1826
|
itemInfoId: z.ZodNumber;
|
|
1869
|
-
description: z.ZodString
|
|
1827
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1870
1828
|
saleable: z.ZodBoolean;
|
|
1871
1829
|
valid: z.ZodBoolean;
|
|
1872
1830
|
uniqueCriteria: z.ZodArray<z.ZodObject<{
|
|
@@ -1881,22 +1839,22 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1881
1839
|
}>, "many">;
|
|
1882
1840
|
}, "strip", z.ZodTypeAny, {
|
|
1883
1841
|
valid: boolean;
|
|
1884
|
-
description: string;
|
|
1885
1842
|
itemInfoId: number;
|
|
1886
1843
|
saleable: boolean;
|
|
1887
1844
|
uniqueCriteria: {
|
|
1888
1845
|
value: string;
|
|
1889
1846
|
name: string;
|
|
1890
1847
|
}[];
|
|
1848
|
+
description?: string | null | undefined;
|
|
1891
1849
|
}, {
|
|
1892
1850
|
valid: boolean;
|
|
1893
|
-
description: string;
|
|
1894
1851
|
itemInfoId: number;
|
|
1895
1852
|
saleable: boolean;
|
|
1896
1853
|
uniqueCriteria: {
|
|
1897
1854
|
value: string;
|
|
1898
1855
|
name: string;
|
|
1899
1856
|
}[];
|
|
1857
|
+
description?: string | null | undefined;
|
|
1900
1858
|
}>, "many">;
|
|
1901
1859
|
locales: z.ZodArray<z.ZodString, "many">;
|
|
1902
1860
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1908,31 +1866,31 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1908
1866
|
identifiers: Record<string, any>;
|
|
1909
1867
|
hierarchyDetails: {
|
|
1910
1868
|
catalogs: {
|
|
1911
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1869
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1912
1870
|
name: string;
|
|
1913
|
-
companyId: number;
|
|
1914
1871
|
id: number;
|
|
1915
1872
|
description?: string | null | undefined;
|
|
1873
|
+
companyId?: number | null | undefined;
|
|
1916
1874
|
}[];
|
|
1917
1875
|
selectionCodes: {
|
|
1918
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1876
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1919
1877
|
name: string;
|
|
1920
|
-
companyId: number;
|
|
1921
1878
|
id: number;
|
|
1922
1879
|
description?: string | null | undefined;
|
|
1880
|
+
companyId?: number | null | undefined;
|
|
1923
1881
|
}[];
|
|
1924
1882
|
productCodes: {
|
|
1925
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1883
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
1926
1884
|
name: string;
|
|
1927
|
-
companyId: number;
|
|
1928
1885
|
id: number;
|
|
1929
1886
|
description?: string | null | undefined;
|
|
1887
|
+
companyId?: number | null | undefined;
|
|
1930
1888
|
}[];
|
|
1931
1889
|
};
|
|
1932
1890
|
groupedAttributes: {
|
|
1933
1891
|
type: string;
|
|
1934
1892
|
attributes: {
|
|
1935
|
-
value:
|
|
1893
|
+
value: string | number | string[] | number[] | null;
|
|
1936
1894
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1937
1895
|
name: string;
|
|
1938
1896
|
label: string;
|
|
@@ -1942,7 +1900,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1942
1900
|
attributeGroups: {
|
|
1943
1901
|
type: string;
|
|
1944
1902
|
rows: {
|
|
1945
|
-
value:
|
|
1903
|
+
value: string | number | string[] | number[] | null;
|
|
1946
1904
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
1947
1905
|
name: string;
|
|
1948
1906
|
label: string;
|
|
@@ -1973,8 +1931,9 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1973
1931
|
currency: string;
|
|
1974
1932
|
qualifier: string;
|
|
1975
1933
|
id?: number | null | undefined;
|
|
1976
|
-
|
|
1934
|
+
gtin?: string | null | undefined;
|
|
1977
1935
|
iteminfoid?: number | null | undefined;
|
|
1936
|
+
priceDivision?: string | null | undefined;
|
|
1978
1937
|
startdate?: string | null | undefined;
|
|
1979
1938
|
enddate?: string | null | undefined;
|
|
1980
1939
|
region?: string | null | undefined;
|
|
@@ -1985,7 +1944,6 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1985
1944
|
range_type?: string | null | undefined;
|
|
1986
1945
|
date_range_type?: string | null | undefined;
|
|
1987
1946
|
min_range?: number | null | undefined;
|
|
1988
|
-
gtin?: string | null | undefined;
|
|
1989
1947
|
priceConditionDescription?: string | null | undefined;
|
|
1990
1948
|
priceUnitQuantity?: number | null | undefined;
|
|
1991
1949
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -1993,23 +1951,23 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
1993
1951
|
}[];
|
|
1994
1952
|
childComponentDetails: {
|
|
1995
1953
|
valid: boolean;
|
|
1996
|
-
description: string;
|
|
1997
1954
|
itemInfoId: number;
|
|
1998
1955
|
saleable: boolean;
|
|
1999
1956
|
uniqueCriteria: {
|
|
2000
1957
|
value: string;
|
|
2001
1958
|
name: string;
|
|
2002
1959
|
}[];
|
|
1960
|
+
description?: string | null | undefined;
|
|
2003
1961
|
}[];
|
|
2004
1962
|
parentComponentDetails: {
|
|
2005
1963
|
valid: boolean;
|
|
2006
|
-
description: string;
|
|
2007
1964
|
itemInfoId: number;
|
|
2008
1965
|
saleable: boolean;
|
|
2009
1966
|
uniqueCriteria: {
|
|
2010
1967
|
value: string;
|
|
2011
1968
|
name: string;
|
|
2012
1969
|
}[];
|
|
1970
|
+
description?: string | null | undefined;
|
|
2013
1971
|
}[];
|
|
2014
1972
|
locales: string[];
|
|
2015
1973
|
}, {
|
|
@@ -2021,31 +1979,31 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
2021
1979
|
identifiers: Record<string, any>;
|
|
2022
1980
|
hierarchyDetails: {
|
|
2023
1981
|
catalogs: {
|
|
2024
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1982
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2025
1983
|
name: string;
|
|
2026
|
-
companyId: number;
|
|
2027
1984
|
id: number;
|
|
2028
1985
|
description?: string | null | undefined;
|
|
1986
|
+
companyId?: number | null | undefined;
|
|
2029
1987
|
}[];
|
|
2030
1988
|
selectionCodes: {
|
|
2031
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1989
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2032
1990
|
name: string;
|
|
2033
|
-
companyId: number;
|
|
2034
1991
|
id: number;
|
|
2035
1992
|
description?: string | null | undefined;
|
|
1993
|
+
companyId?: number | null | undefined;
|
|
2036
1994
|
}[];
|
|
2037
1995
|
productCodes: {
|
|
2038
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
1996
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2039
1997
|
name: string;
|
|
2040
|
-
companyId: number;
|
|
2041
1998
|
id: number;
|
|
2042
1999
|
description?: string | null | undefined;
|
|
2000
|
+
companyId?: number | null | undefined;
|
|
2043
2001
|
}[];
|
|
2044
2002
|
};
|
|
2045
2003
|
groupedAttributes: {
|
|
2046
2004
|
type: string;
|
|
2047
2005
|
attributes: {
|
|
2048
|
-
value:
|
|
2006
|
+
value: string | number | string[] | number[] | null;
|
|
2049
2007
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2050
2008
|
name: string;
|
|
2051
2009
|
label: string;
|
|
@@ -2055,7 +2013,7 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
2055
2013
|
attributeGroups: {
|
|
2056
2014
|
type: string;
|
|
2057
2015
|
rows: {
|
|
2058
|
-
value:
|
|
2016
|
+
value: string | number | string[] | number[] | null;
|
|
2059
2017
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2060
2018
|
name: string;
|
|
2061
2019
|
label: string;
|
|
@@ -2086,8 +2044,9 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
2086
2044
|
currency: string;
|
|
2087
2045
|
qualifier: string;
|
|
2088
2046
|
id?: number | null | undefined;
|
|
2089
|
-
|
|
2047
|
+
gtin?: string | null | undefined;
|
|
2090
2048
|
iteminfoid?: number | null | undefined;
|
|
2049
|
+
priceDivision?: string | null | undefined;
|
|
2091
2050
|
startdate?: string | null | undefined;
|
|
2092
2051
|
enddate?: string | null | undefined;
|
|
2093
2052
|
region?: string | null | undefined;
|
|
@@ -2098,7 +2057,6 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
2098
2057
|
range_type?: string | null | undefined;
|
|
2099
2058
|
date_range_type?: string | null | undefined;
|
|
2100
2059
|
min_range?: number | null | undefined;
|
|
2101
|
-
gtin?: string | null | undefined;
|
|
2102
2060
|
priceConditionDescription?: string | null | undefined;
|
|
2103
2061
|
priceUnitQuantity?: number | null | undefined;
|
|
2104
2062
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2106,23 +2064,23 @@ declare const groupedItemSchema: z.ZodObject<{
|
|
|
2106
2064
|
}[];
|
|
2107
2065
|
childComponentDetails: {
|
|
2108
2066
|
valid: boolean;
|
|
2109
|
-
description: string;
|
|
2110
2067
|
itemInfoId: number;
|
|
2111
2068
|
saleable: boolean;
|
|
2112
2069
|
uniqueCriteria: {
|
|
2113
2070
|
value: string;
|
|
2114
2071
|
name: string;
|
|
2115
2072
|
}[];
|
|
2073
|
+
description?: string | null | undefined;
|
|
2116
2074
|
}[];
|
|
2117
2075
|
parentComponentDetails: {
|
|
2118
2076
|
valid: boolean;
|
|
2119
|
-
description: string;
|
|
2120
2077
|
itemInfoId: number;
|
|
2121
2078
|
saleable: boolean;
|
|
2122
2079
|
uniqueCriteria: {
|
|
2123
2080
|
value: string;
|
|
2124
2081
|
name: string;
|
|
2125
2082
|
}[];
|
|
2083
|
+
description?: string | null | undefined;
|
|
2126
2084
|
}[];
|
|
2127
2085
|
locales: string[];
|
|
2128
2086
|
}>;
|
|
@@ -2132,20 +2090,20 @@ declare const hierarchyCategorySchema: z.ZodObject<{
|
|
|
2132
2090
|
name: z.ZodString;
|
|
2133
2091
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2134
2092
|
id: z.ZodNumber;
|
|
2135
|
-
companyId: z.ZodNumber
|
|
2136
|
-
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"]>;
|
|
2137
2095
|
}, "strip", z.ZodTypeAny, {
|
|
2138
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2096
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2139
2097
|
name: string;
|
|
2140
|
-
companyId: number;
|
|
2141
2098
|
id: number;
|
|
2142
2099
|
description?: string | null | undefined;
|
|
2100
|
+
companyId?: number | null | undefined;
|
|
2143
2101
|
}, {
|
|
2144
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2102
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2145
2103
|
name: string;
|
|
2146
|
-
companyId: number;
|
|
2147
2104
|
id: number;
|
|
2148
2105
|
description?: string | null | undefined;
|
|
2106
|
+
companyId?: number | null | undefined;
|
|
2149
2107
|
}>;
|
|
2150
2108
|
type HierarchyCategory = z.infer<typeof hierarchyCategorySchema>;
|
|
2151
2109
|
|
|
@@ -2154,102 +2112,102 @@ declare const hierarchyDetailsSchema: z.ZodObject<{
|
|
|
2154
2112
|
name: z.ZodString;
|
|
2155
2113
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2156
2114
|
id: z.ZodNumber;
|
|
2157
|
-
companyId: z.ZodNumber
|
|
2158
|
-
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"]>;
|
|
2159
2117
|
}, "strip", z.ZodTypeAny, {
|
|
2160
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2118
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2161
2119
|
name: string;
|
|
2162
|
-
companyId: number;
|
|
2163
2120
|
id: number;
|
|
2164
2121
|
description?: string | null | undefined;
|
|
2122
|
+
companyId?: number | null | undefined;
|
|
2165
2123
|
}, {
|
|
2166
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2124
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2167
2125
|
name: string;
|
|
2168
|
-
companyId: number;
|
|
2169
2126
|
id: number;
|
|
2170
2127
|
description?: string | null | undefined;
|
|
2128
|
+
companyId?: number | null | undefined;
|
|
2171
2129
|
}>, "many">;
|
|
2172
2130
|
selectionCodes: z.ZodArray<z.ZodObject<{
|
|
2173
2131
|
name: z.ZodString;
|
|
2174
2132
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2175
2133
|
id: z.ZodNumber;
|
|
2176
|
-
companyId: z.ZodNumber
|
|
2177
|
-
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"]>;
|
|
2178
2136
|
}, "strip", z.ZodTypeAny, {
|
|
2179
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2137
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2180
2138
|
name: string;
|
|
2181
|
-
companyId: number;
|
|
2182
2139
|
id: number;
|
|
2183
2140
|
description?: string | null | undefined;
|
|
2141
|
+
companyId?: number | null | undefined;
|
|
2184
2142
|
}, {
|
|
2185
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2143
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2186
2144
|
name: string;
|
|
2187
|
-
companyId: number;
|
|
2188
2145
|
id: number;
|
|
2189
2146
|
description?: string | null | undefined;
|
|
2147
|
+
companyId?: number | null | undefined;
|
|
2190
2148
|
}>, "many">;
|
|
2191
2149
|
productCodes: z.ZodArray<z.ZodObject<{
|
|
2192
2150
|
name: z.ZodString;
|
|
2193
2151
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2194
2152
|
id: z.ZodNumber;
|
|
2195
|
-
companyId: z.ZodNumber
|
|
2196
|
-
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"]>;
|
|
2197
2155
|
}, "strip", z.ZodTypeAny, {
|
|
2198
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2156
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2199
2157
|
name: string;
|
|
2200
|
-
companyId: number;
|
|
2201
2158
|
id: number;
|
|
2202
2159
|
description?: string | null | undefined;
|
|
2160
|
+
companyId?: number | null | undefined;
|
|
2203
2161
|
}, {
|
|
2204
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2162
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2205
2163
|
name: string;
|
|
2206
|
-
companyId: number;
|
|
2207
2164
|
id: number;
|
|
2208
2165
|
description?: string | null | undefined;
|
|
2166
|
+
companyId?: number | null | undefined;
|
|
2209
2167
|
}>, "many">;
|
|
2210
2168
|
}, "strip", z.ZodTypeAny, {
|
|
2211
2169
|
catalogs: {
|
|
2212
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2170
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2213
2171
|
name: string;
|
|
2214
|
-
companyId: number;
|
|
2215
2172
|
id: number;
|
|
2216
2173
|
description?: string | null | undefined;
|
|
2174
|
+
companyId?: number | null | undefined;
|
|
2217
2175
|
}[];
|
|
2218
2176
|
selectionCodes: {
|
|
2219
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2177
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2220
2178
|
name: string;
|
|
2221
|
-
companyId: number;
|
|
2222
2179
|
id: number;
|
|
2223
2180
|
description?: string | null | undefined;
|
|
2181
|
+
companyId?: number | null | undefined;
|
|
2224
2182
|
}[];
|
|
2225
2183
|
productCodes: {
|
|
2226
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2184
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2227
2185
|
name: string;
|
|
2228
|
-
companyId: number;
|
|
2229
2186
|
id: number;
|
|
2230
2187
|
description?: string | null | undefined;
|
|
2188
|
+
companyId?: number | null | undefined;
|
|
2231
2189
|
}[];
|
|
2232
2190
|
}, {
|
|
2233
2191
|
catalogs: {
|
|
2234
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2192
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2235
2193
|
name: string;
|
|
2236
|
-
companyId: number;
|
|
2237
2194
|
id: number;
|
|
2238
2195
|
description?: string | null | undefined;
|
|
2196
|
+
companyId?: number | null | undefined;
|
|
2239
2197
|
}[];
|
|
2240
2198
|
selectionCodes: {
|
|
2241
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2199
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2242
2200
|
name: string;
|
|
2243
|
-
companyId: number;
|
|
2244
2201
|
id: number;
|
|
2245
2202
|
description?: string | null | undefined;
|
|
2203
|
+
companyId?: number | null | undefined;
|
|
2246
2204
|
}[];
|
|
2247
2205
|
productCodes: {
|
|
2248
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2206
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2249
2207
|
name: string;
|
|
2250
|
-
companyId: number;
|
|
2251
2208
|
id: number;
|
|
2252
2209
|
description?: string | null | undefined;
|
|
2210
|
+
companyId?: number | null | undefined;
|
|
2253
2211
|
}[];
|
|
2254
2212
|
}>;
|
|
2255
2213
|
type HierarchyDetails = z.infer<typeof hierarchyDetailsSchema>;
|
|
@@ -2280,8 +2238,9 @@ declare const itemPriceSchema: z.ZodObject<{
|
|
|
2280
2238
|
currency: string;
|
|
2281
2239
|
qualifier: string;
|
|
2282
2240
|
id?: number | null | undefined;
|
|
2283
|
-
|
|
2241
|
+
gtin?: string | null | undefined;
|
|
2284
2242
|
iteminfoid?: number | null | undefined;
|
|
2243
|
+
priceDivision?: string | null | undefined;
|
|
2285
2244
|
startdate?: string | null | undefined;
|
|
2286
2245
|
enddate?: string | null | undefined;
|
|
2287
2246
|
region?: string | null | undefined;
|
|
@@ -2292,7 +2251,6 @@ declare const itemPriceSchema: z.ZodObject<{
|
|
|
2292
2251
|
range_type?: string | null | undefined;
|
|
2293
2252
|
date_range_type?: string | null | undefined;
|
|
2294
2253
|
min_range?: number | null | undefined;
|
|
2295
|
-
gtin?: string | null | undefined;
|
|
2296
2254
|
priceConditionDescription?: string | null | undefined;
|
|
2297
2255
|
priceUnitQuantity?: number | null | undefined;
|
|
2298
2256
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2301,8 +2259,9 @@ declare const itemPriceSchema: z.ZodObject<{
|
|
|
2301
2259
|
currency: string;
|
|
2302
2260
|
qualifier: string;
|
|
2303
2261
|
id?: number | null | undefined;
|
|
2304
|
-
|
|
2262
|
+
gtin?: string | null | undefined;
|
|
2305
2263
|
iteminfoid?: number | null | undefined;
|
|
2264
|
+
priceDivision?: string | null | undefined;
|
|
2306
2265
|
startdate?: string | null | undefined;
|
|
2307
2266
|
enddate?: string | null | undefined;
|
|
2308
2267
|
region?: string | null | undefined;
|
|
@@ -2313,7 +2272,6 @@ declare const itemPriceSchema: z.ZodObject<{
|
|
|
2313
2272
|
range_type?: string | null | undefined;
|
|
2314
2273
|
date_range_type?: string | null | undefined;
|
|
2315
2274
|
min_range?: number | null | undefined;
|
|
2316
|
-
gtin?: string | null | undefined;
|
|
2317
2275
|
priceConditionDescription?: string | null | undefined;
|
|
2318
2276
|
priceUnitQuantity?: number | null | undefined;
|
|
2319
2277
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2381,8 +2339,9 @@ declare const packComponentDetailsSchema: z.ZodObject<{
|
|
|
2381
2339
|
currency: string;
|
|
2382
2340
|
qualifier: string;
|
|
2383
2341
|
id?: number | null | undefined;
|
|
2384
|
-
|
|
2342
|
+
gtin?: string | null | undefined;
|
|
2385
2343
|
iteminfoid?: number | null | undefined;
|
|
2344
|
+
priceDivision?: string | null | undefined;
|
|
2386
2345
|
startdate?: string | null | undefined;
|
|
2387
2346
|
enddate?: string | null | undefined;
|
|
2388
2347
|
region?: string | null | undefined;
|
|
@@ -2393,7 +2352,6 @@ declare const packComponentDetailsSchema: z.ZodObject<{
|
|
|
2393
2352
|
range_type?: string | null | undefined;
|
|
2394
2353
|
date_range_type?: string | null | undefined;
|
|
2395
2354
|
min_range?: number | null | undefined;
|
|
2396
|
-
gtin?: string | null | undefined;
|
|
2397
2355
|
priceConditionDescription?: string | null | undefined;
|
|
2398
2356
|
priceUnitQuantity?: number | null | undefined;
|
|
2399
2357
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2402,8 +2360,9 @@ declare const packComponentDetailsSchema: z.ZodObject<{
|
|
|
2402
2360
|
currency: string;
|
|
2403
2361
|
qualifier: string;
|
|
2404
2362
|
id?: number | null | undefined;
|
|
2405
|
-
|
|
2363
|
+
gtin?: string | null | undefined;
|
|
2406
2364
|
iteminfoid?: number | null | undefined;
|
|
2365
|
+
priceDivision?: string | null | undefined;
|
|
2407
2366
|
startdate?: string | null | undefined;
|
|
2408
2367
|
enddate?: string | null | undefined;
|
|
2409
2368
|
region?: string | null | undefined;
|
|
@@ -2414,7 +2373,6 @@ declare const packComponentDetailsSchema: z.ZodObject<{
|
|
|
2414
2373
|
range_type?: string | null | undefined;
|
|
2415
2374
|
date_range_type?: string | null | undefined;
|
|
2416
2375
|
min_range?: number | null | undefined;
|
|
2417
|
-
gtin?: string | null | undefined;
|
|
2418
2376
|
priceConditionDescription?: string | null | undefined;
|
|
2419
2377
|
priceUnitQuantity?: number | null | undefined;
|
|
2420
2378
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2437,8 +2395,9 @@ declare const packComponentDetailsSchema: z.ZodObject<{
|
|
|
2437
2395
|
currency: string;
|
|
2438
2396
|
qualifier: string;
|
|
2439
2397
|
id?: number | null | undefined;
|
|
2440
|
-
|
|
2398
|
+
gtin?: string | null | undefined;
|
|
2441
2399
|
iteminfoid?: number | null | undefined;
|
|
2400
|
+
priceDivision?: string | null | undefined;
|
|
2442
2401
|
startdate?: string | null | undefined;
|
|
2443
2402
|
enddate?: string | null | undefined;
|
|
2444
2403
|
region?: string | null | undefined;
|
|
@@ -2449,7 +2408,6 @@ declare const packComponentDetailsSchema: z.ZodObject<{
|
|
|
2449
2408
|
range_type?: string | null | undefined;
|
|
2450
2409
|
date_range_type?: string | null | undefined;
|
|
2451
2410
|
min_range?: number | null | undefined;
|
|
2452
|
-
gtin?: string | null | undefined;
|
|
2453
2411
|
priceConditionDescription?: string | null | undefined;
|
|
2454
2412
|
priceUnitQuantity?: number | null | undefined;
|
|
2455
2413
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2472,8 +2430,9 @@ declare const packComponentDetailsSchema: z.ZodObject<{
|
|
|
2472
2430
|
currency: string;
|
|
2473
2431
|
qualifier: string;
|
|
2474
2432
|
id?: number | null | undefined;
|
|
2475
|
-
|
|
2433
|
+
gtin?: string | null | undefined;
|
|
2476
2434
|
iteminfoid?: number | null | undefined;
|
|
2435
|
+
priceDivision?: string | null | undefined;
|
|
2477
2436
|
startdate?: string | null | undefined;
|
|
2478
2437
|
enddate?: string | null | undefined;
|
|
2479
2438
|
region?: string | null | undefined;
|
|
@@ -2484,7 +2443,6 @@ declare const packComponentDetailsSchema: z.ZodObject<{
|
|
|
2484
2443
|
range_type?: string | null | undefined;
|
|
2485
2444
|
date_range_type?: string | null | undefined;
|
|
2486
2445
|
min_range?: number | null | undefined;
|
|
2487
|
-
gtin?: string | null | undefined;
|
|
2488
2446
|
priceConditionDescription?: string | null | undefined;
|
|
2489
2447
|
priceUnitQuantity?: number | null | undefined;
|
|
2490
2448
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2605,8 +2563,9 @@ declare const packComponentSchema: z.ZodObject<{
|
|
|
2605
2563
|
currency: string;
|
|
2606
2564
|
qualifier: string;
|
|
2607
2565
|
id?: number | null | undefined;
|
|
2608
|
-
|
|
2566
|
+
gtin?: string | null | undefined;
|
|
2609
2567
|
iteminfoid?: number | null | undefined;
|
|
2568
|
+
priceDivision?: string | null | undefined;
|
|
2610
2569
|
startdate?: string | null | undefined;
|
|
2611
2570
|
enddate?: string | null | undefined;
|
|
2612
2571
|
region?: string | null | undefined;
|
|
@@ -2617,7 +2576,6 @@ declare const packComponentSchema: z.ZodObject<{
|
|
|
2617
2576
|
range_type?: string | null | undefined;
|
|
2618
2577
|
date_range_type?: string | null | undefined;
|
|
2619
2578
|
min_range?: number | null | undefined;
|
|
2620
|
-
gtin?: string | null | undefined;
|
|
2621
2579
|
priceConditionDescription?: string | null | undefined;
|
|
2622
2580
|
priceUnitQuantity?: number | null | undefined;
|
|
2623
2581
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2626,8 +2584,9 @@ declare const packComponentSchema: z.ZodObject<{
|
|
|
2626
2584
|
currency: string;
|
|
2627
2585
|
qualifier: string;
|
|
2628
2586
|
id?: number | null | undefined;
|
|
2629
|
-
|
|
2587
|
+
gtin?: string | null | undefined;
|
|
2630
2588
|
iteminfoid?: number | null | undefined;
|
|
2589
|
+
priceDivision?: string | null | undefined;
|
|
2631
2590
|
startdate?: string | null | undefined;
|
|
2632
2591
|
enddate?: string | null | undefined;
|
|
2633
2592
|
region?: string | null | undefined;
|
|
@@ -2638,7 +2597,6 @@ declare const packComponentSchema: z.ZodObject<{
|
|
|
2638
2597
|
range_type?: string | null | undefined;
|
|
2639
2598
|
date_range_type?: string | null | undefined;
|
|
2640
2599
|
min_range?: number | null | undefined;
|
|
2641
|
-
gtin?: string | null | undefined;
|
|
2642
2600
|
priceConditionDescription?: string | null | undefined;
|
|
2643
2601
|
priceUnitQuantity?: number | null | undefined;
|
|
2644
2602
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2650,8 +2608,9 @@ declare const packComponentSchema: z.ZodObject<{
|
|
|
2650
2608
|
currency: string;
|
|
2651
2609
|
qualifier: string;
|
|
2652
2610
|
id?: number | null | undefined;
|
|
2653
|
-
|
|
2611
|
+
gtin?: string | null | undefined;
|
|
2654
2612
|
iteminfoid?: number | null | undefined;
|
|
2613
|
+
priceDivision?: string | null | undefined;
|
|
2655
2614
|
startdate?: string | null | undefined;
|
|
2656
2615
|
enddate?: string | null | undefined;
|
|
2657
2616
|
region?: string | null | undefined;
|
|
@@ -2662,7 +2621,6 @@ declare const packComponentSchema: z.ZodObject<{
|
|
|
2662
2621
|
range_type?: string | null | undefined;
|
|
2663
2622
|
date_range_type?: string | null | undefined;
|
|
2664
2623
|
min_range?: number | null | undefined;
|
|
2665
|
-
gtin?: string | null | undefined;
|
|
2666
2624
|
priceConditionDescription?: string | null | undefined;
|
|
2667
2625
|
priceUnitQuantity?: number | null | undefined;
|
|
2668
2626
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2675,8 +2633,9 @@ declare const packComponentSchema: z.ZodObject<{
|
|
|
2675
2633
|
currency: string;
|
|
2676
2634
|
qualifier: string;
|
|
2677
2635
|
id?: number | null | undefined;
|
|
2678
|
-
|
|
2636
|
+
gtin?: string | null | undefined;
|
|
2679
2637
|
iteminfoid?: number | null | undefined;
|
|
2638
|
+
priceDivision?: string | null | undefined;
|
|
2680
2639
|
startdate?: string | null | undefined;
|
|
2681
2640
|
enddate?: string | null | undefined;
|
|
2682
2641
|
region?: string | null | undefined;
|
|
@@ -2687,7 +2646,6 @@ declare const packComponentSchema: z.ZodObject<{
|
|
|
2687
2646
|
range_type?: string | null | undefined;
|
|
2688
2647
|
date_range_type?: string | null | undefined;
|
|
2689
2648
|
min_range?: number | null | undefined;
|
|
2690
|
-
gtin?: string | null | undefined;
|
|
2691
2649
|
priceConditionDescription?: string | null | undefined;
|
|
2692
2650
|
priceUnitQuantity?: number | null | undefined;
|
|
2693
2651
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2743,8 +2701,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2743
2701
|
currency: string;
|
|
2744
2702
|
qualifier: string;
|
|
2745
2703
|
id?: number | null | undefined;
|
|
2746
|
-
|
|
2704
|
+
gtin?: string | null | undefined;
|
|
2747
2705
|
iteminfoid?: number | null | undefined;
|
|
2706
|
+
priceDivision?: string | null | undefined;
|
|
2748
2707
|
startdate?: string | null | undefined;
|
|
2749
2708
|
enddate?: string | null | undefined;
|
|
2750
2709
|
region?: string | null | undefined;
|
|
@@ -2755,7 +2714,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2755
2714
|
range_type?: string | null | undefined;
|
|
2756
2715
|
date_range_type?: string | null | undefined;
|
|
2757
2716
|
min_range?: number | null | undefined;
|
|
2758
|
-
gtin?: string | null | undefined;
|
|
2759
2717
|
priceConditionDescription?: string | null | undefined;
|
|
2760
2718
|
priceUnitQuantity?: number | null | undefined;
|
|
2761
2719
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2764,8 +2722,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2764
2722
|
currency: string;
|
|
2765
2723
|
qualifier: string;
|
|
2766
2724
|
id?: number | null | undefined;
|
|
2767
|
-
|
|
2725
|
+
gtin?: string | null | undefined;
|
|
2768
2726
|
iteminfoid?: number | null | undefined;
|
|
2727
|
+
priceDivision?: string | null | undefined;
|
|
2769
2728
|
startdate?: string | null | undefined;
|
|
2770
2729
|
enddate?: string | null | undefined;
|
|
2771
2730
|
region?: string | null | undefined;
|
|
@@ -2776,7 +2735,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2776
2735
|
range_type?: string | null | undefined;
|
|
2777
2736
|
date_range_type?: string | null | undefined;
|
|
2778
2737
|
min_range?: number | null | undefined;
|
|
2779
|
-
gtin?: string | null | undefined;
|
|
2780
2738
|
priceConditionDescription?: string | null | undefined;
|
|
2781
2739
|
priceUnitQuantity?: number | null | undefined;
|
|
2782
2740
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2851,9 +2809,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2851
2809
|
medianame: string;
|
|
2852
2810
|
filename: string;
|
|
2853
2811
|
mediatype: string;
|
|
2812
|
+
description?: string | null | undefined;
|
|
2854
2813
|
height?: number | null | undefined;
|
|
2855
2814
|
mediafilename?: string | null | undefined;
|
|
2856
|
-
description?: string | null | undefined;
|
|
2857
2815
|
filesize?: number | null | undefined;
|
|
2858
2816
|
format?: string | null | undefined;
|
|
2859
2817
|
orientation?: string | null | undefined;
|
|
@@ -2869,9 +2827,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2869
2827
|
medianame: string;
|
|
2870
2828
|
filename: string;
|
|
2871
2829
|
mediatype: string;
|
|
2830
|
+
description?: string | null | undefined;
|
|
2872
2831
|
height?: number | null | undefined;
|
|
2873
2832
|
mediafilename?: string | null | undefined;
|
|
2874
|
-
description?: string | null | undefined;
|
|
2875
2833
|
filesize?: number | null | undefined;
|
|
2876
2834
|
format?: string | null | undefined;
|
|
2877
2835
|
orientation?: string | null | undefined;
|
|
@@ -2911,8 +2869,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2911
2869
|
currency: string;
|
|
2912
2870
|
qualifier: string;
|
|
2913
2871
|
id?: number | null | undefined;
|
|
2914
|
-
|
|
2872
|
+
gtin?: string | null | undefined;
|
|
2915
2873
|
iteminfoid?: number | null | undefined;
|
|
2874
|
+
priceDivision?: string | null | undefined;
|
|
2916
2875
|
startdate?: string | null | undefined;
|
|
2917
2876
|
enddate?: string | null | undefined;
|
|
2918
2877
|
region?: string | null | undefined;
|
|
@@ -2923,7 +2882,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2923
2882
|
range_type?: string | null | undefined;
|
|
2924
2883
|
date_range_type?: string | null | undefined;
|
|
2925
2884
|
min_range?: number | null | undefined;
|
|
2926
|
-
gtin?: string | null | undefined;
|
|
2927
2885
|
priceConditionDescription?: string | null | undefined;
|
|
2928
2886
|
priceUnitQuantity?: number | null | undefined;
|
|
2929
2887
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2932,8 +2890,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2932
2890
|
currency: string;
|
|
2933
2891
|
qualifier: string;
|
|
2934
2892
|
id?: number | null | undefined;
|
|
2935
|
-
|
|
2893
|
+
gtin?: string | null | undefined;
|
|
2936
2894
|
iteminfoid?: number | null | undefined;
|
|
2895
|
+
priceDivision?: string | null | undefined;
|
|
2937
2896
|
startdate?: string | null | undefined;
|
|
2938
2897
|
enddate?: string | null | undefined;
|
|
2939
2898
|
region?: string | null | undefined;
|
|
@@ -2944,7 +2903,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2944
2903
|
range_type?: string | null | undefined;
|
|
2945
2904
|
date_range_type?: string | null | undefined;
|
|
2946
2905
|
min_range?: number | null | undefined;
|
|
2947
|
-
gtin?: string | null | undefined;
|
|
2948
2906
|
priceConditionDescription?: string | null | undefined;
|
|
2949
2907
|
priceUnitQuantity?: number | null | undefined;
|
|
2950
2908
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2956,8 +2914,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2956
2914
|
currency: string;
|
|
2957
2915
|
qualifier: string;
|
|
2958
2916
|
id?: number | null | undefined;
|
|
2959
|
-
|
|
2917
|
+
gtin?: string | null | undefined;
|
|
2960
2918
|
iteminfoid?: number | null | undefined;
|
|
2919
|
+
priceDivision?: string | null | undefined;
|
|
2961
2920
|
startdate?: string | null | undefined;
|
|
2962
2921
|
enddate?: string | null | undefined;
|
|
2963
2922
|
region?: string | null | undefined;
|
|
@@ -2968,7 +2927,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2968
2927
|
range_type?: string | null | undefined;
|
|
2969
2928
|
date_range_type?: string | null | undefined;
|
|
2970
2929
|
min_range?: number | null | undefined;
|
|
2971
|
-
gtin?: string | null | undefined;
|
|
2972
2930
|
priceConditionDescription?: string | null | undefined;
|
|
2973
2931
|
priceUnitQuantity?: number | null | undefined;
|
|
2974
2932
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2981,8 +2939,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2981
2939
|
currency: string;
|
|
2982
2940
|
qualifier: string;
|
|
2983
2941
|
id?: number | null | undefined;
|
|
2984
|
-
|
|
2942
|
+
gtin?: string | null | undefined;
|
|
2985
2943
|
iteminfoid?: number | null | undefined;
|
|
2944
|
+
priceDivision?: string | null | undefined;
|
|
2986
2945
|
startdate?: string | null | undefined;
|
|
2987
2946
|
enddate?: string | null | undefined;
|
|
2988
2947
|
region?: string | null | undefined;
|
|
@@ -2993,7 +2952,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2993
2952
|
range_type?: string | null | undefined;
|
|
2994
2953
|
date_range_type?: string | null | undefined;
|
|
2995
2954
|
min_range?: number | null | undefined;
|
|
2996
|
-
gtin?: string | null | undefined;
|
|
2997
2955
|
priceConditionDescription?: string | null | undefined;
|
|
2998
2956
|
priceUnitQuantity?: number | null | undefined;
|
|
2999
2957
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -3007,8 +2965,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3007
2965
|
currency: string;
|
|
3008
2966
|
qualifier: string;
|
|
3009
2967
|
id?: number | null | undefined;
|
|
3010
|
-
|
|
2968
|
+
gtin?: string | null | undefined;
|
|
3011
2969
|
iteminfoid?: number | null | undefined;
|
|
2970
|
+
priceDivision?: string | null | undefined;
|
|
3012
2971
|
startdate?: string | null | undefined;
|
|
3013
2972
|
enddate?: string | null | undefined;
|
|
3014
2973
|
region?: string | null | undefined;
|
|
@@ -3019,7 +2978,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3019
2978
|
range_type?: string | null | undefined;
|
|
3020
2979
|
date_range_type?: string | null | undefined;
|
|
3021
2980
|
min_range?: number | null | undefined;
|
|
3022
|
-
gtin?: string | null | undefined;
|
|
3023
2981
|
priceConditionDescription?: string | null | undefined;
|
|
3024
2982
|
priceUnitQuantity?: number | null | undefined;
|
|
3025
2983
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -3049,9 +3007,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3049
3007
|
medianame: string;
|
|
3050
3008
|
filename: string;
|
|
3051
3009
|
mediatype: string;
|
|
3010
|
+
description?: string | null | undefined;
|
|
3052
3011
|
height?: number | null | undefined;
|
|
3053
3012
|
mediafilename?: string | null | undefined;
|
|
3054
|
-
description?: string | null | undefined;
|
|
3055
3013
|
filesize?: number | null | undefined;
|
|
3056
3014
|
format?: string | null | undefined;
|
|
3057
3015
|
orientation?: string | null | undefined;
|
|
@@ -3069,8 +3027,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3069
3027
|
currency: string;
|
|
3070
3028
|
qualifier: string;
|
|
3071
3029
|
id?: number | null | undefined;
|
|
3072
|
-
|
|
3030
|
+
gtin?: string | null | undefined;
|
|
3073
3031
|
iteminfoid?: number | null | undefined;
|
|
3032
|
+
priceDivision?: string | null | undefined;
|
|
3074
3033
|
startdate?: string | null | undefined;
|
|
3075
3034
|
enddate?: string | null | undefined;
|
|
3076
3035
|
region?: string | null | undefined;
|
|
@@ -3081,7 +3040,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3081
3040
|
range_type?: string | null | undefined;
|
|
3082
3041
|
date_range_type?: string | null | undefined;
|
|
3083
3042
|
min_range?: number | null | undefined;
|
|
3084
|
-
gtin?: string | null | undefined;
|
|
3085
3043
|
priceConditionDescription?: string | null | undefined;
|
|
3086
3044
|
priceUnitQuantity?: number | null | undefined;
|
|
3087
3045
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -3095,8 +3053,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3095
3053
|
currency: string;
|
|
3096
3054
|
qualifier: string;
|
|
3097
3055
|
id?: number | null | undefined;
|
|
3098
|
-
|
|
3056
|
+
gtin?: string | null | undefined;
|
|
3099
3057
|
iteminfoid?: number | null | undefined;
|
|
3058
|
+
priceDivision?: string | null | undefined;
|
|
3100
3059
|
startdate?: string | null | undefined;
|
|
3101
3060
|
enddate?: string | null | undefined;
|
|
3102
3061
|
region?: string | null | undefined;
|
|
@@ -3107,7 +3066,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3107
3066
|
range_type?: string | null | undefined;
|
|
3108
3067
|
date_range_type?: string | null | undefined;
|
|
3109
3068
|
min_range?: number | null | undefined;
|
|
3110
|
-
gtin?: string | null | undefined;
|
|
3111
3069
|
priceConditionDescription?: string | null | undefined;
|
|
3112
3070
|
priceUnitQuantity?: number | null | undefined;
|
|
3113
3071
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -3137,9 +3095,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3137
3095
|
medianame: string;
|
|
3138
3096
|
filename: string;
|
|
3139
3097
|
mediatype: string;
|
|
3098
|
+
description?: string | null | undefined;
|
|
3140
3099
|
height?: number | null | undefined;
|
|
3141
3100
|
mediafilename?: string | null | undefined;
|
|
3142
|
-
description?: string | null | undefined;
|
|
3143
3101
|
filesize?: number | null | undefined;
|
|
3144
3102
|
format?: string | null | undefined;
|
|
3145
3103
|
orientation?: string | null | undefined;
|
|
@@ -3157,8 +3115,9 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3157
3115
|
currency: string;
|
|
3158
3116
|
qualifier: string;
|
|
3159
3117
|
id?: number | null | undefined;
|
|
3160
|
-
|
|
3118
|
+
gtin?: string | null | undefined;
|
|
3161
3119
|
iteminfoid?: number | null | undefined;
|
|
3120
|
+
priceDivision?: string | null | undefined;
|
|
3162
3121
|
startdate?: string | null | undefined;
|
|
3163
3122
|
enddate?: string | null | undefined;
|
|
3164
3123
|
region?: string | null | undefined;
|
|
@@ -3169,7 +3128,6 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
3169
3128
|
range_type?: string | null | undefined;
|
|
3170
3129
|
date_range_type?: string | null | undefined;
|
|
3171
3130
|
min_range?: number | null | undefined;
|
|
3172
|
-
gtin?: string | null | undefined;
|
|
3173
3131
|
priceConditionDescription?: string | null | undefined;
|
|
3174
3132
|
priceUnitQuantity?: number | null | undefined;
|
|
3175
3133
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -3203,9 +3161,9 @@ declare const mediaItemSchema: z.ZodObject<{
|
|
|
3203
3161
|
medianame: string;
|
|
3204
3162
|
filename: string;
|
|
3205
3163
|
mediatype: string;
|
|
3164
|
+
description?: string | null | undefined;
|
|
3206
3165
|
height?: number | null | undefined;
|
|
3207
3166
|
mediafilename?: string | null | undefined;
|
|
3208
|
-
description?: string | null | undefined;
|
|
3209
3167
|
filesize?: number | null | undefined;
|
|
3210
3168
|
format?: string | null | undefined;
|
|
3211
3169
|
orientation?: string | null | undefined;
|
|
@@ -3221,9 +3179,9 @@ declare const mediaItemSchema: z.ZodObject<{
|
|
|
3221
3179
|
medianame: string;
|
|
3222
3180
|
filename: string;
|
|
3223
3181
|
mediatype: string;
|
|
3182
|
+
description?: string | null | undefined;
|
|
3224
3183
|
height?: number | null | undefined;
|
|
3225
3184
|
mediafilename?: string | null | undefined;
|
|
3226
|
-
description?: string | null | undefined;
|
|
3227
3185
|
filesize?: number | null | undefined;
|
|
3228
3186
|
format?: string | null | undefined;
|
|
3229
3187
|
orientation?: string | null | undefined;
|
|
@@ -3300,4 +3258,4 @@ declare const itemErrorDetailsSchema: z.ZodObject<{
|
|
|
3300
3258
|
}>;
|
|
3301
3259
|
type ItemErrorDetails = z.infer<typeof itemErrorDetailsSchema>;
|
|
3302
3260
|
|
|
3303
|
-
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 };
|