@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
|
@@ -156,20 +156,20 @@ declare const importsStatusSchema: z.ZodObject<{
|
|
|
156
156
|
status: "QUEUED_FOR_IMPORT" | "IN_PROGRESS" | "DOC_FAILED" | "VALIDATION_FAILED" | "COMPLETED";
|
|
157
157
|
importId: number;
|
|
158
158
|
completedAt?: string | null | undefined;
|
|
159
|
-
docInEventId?: string | null | undefined;
|
|
160
159
|
errorCount?: number | null | undefined;
|
|
161
|
-
invalidItemCount?: number | null | undefined;
|
|
162
160
|
name?: string | null | undefined;
|
|
161
|
+
docInEventId?: string | null | undefined;
|
|
162
|
+
invalidItemCount?: number | null | undefined;
|
|
163
163
|
totalItemCount?: number | null | undefined;
|
|
164
164
|
validItemCount?: number | null | undefined;
|
|
165
165
|
}, {
|
|
166
166
|
status: "QUEUED_FOR_IMPORT" | "IN_PROGRESS" | "DOC_FAILED" | "VALIDATION_FAILED" | "COMPLETED";
|
|
167
167
|
importId: number;
|
|
168
168
|
completedAt?: string | null | undefined;
|
|
169
|
-
docInEventId?: string | null | undefined;
|
|
170
169
|
errorCount?: number | null | undefined;
|
|
171
|
-
invalidItemCount?: number | null | undefined;
|
|
172
170
|
name?: string | null | undefined;
|
|
171
|
+
docInEventId?: string | null | undefined;
|
|
172
|
+
invalidItemCount?: number | null | undefined;
|
|
173
173
|
totalItemCount?: number | null | undefined;
|
|
174
174
|
validItemCount?: number | null | undefined;
|
|
175
175
|
}>;
|
|
@@ -218,11 +218,11 @@ declare const exportSchema: z.ZodObject<{
|
|
|
218
218
|
isActive: boolean;
|
|
219
219
|
exportType: "ALL" | "UPDATES" | "DELTAS_UPDATE" | "NO_BUYER_PART_NUMBER";
|
|
220
220
|
exportFrequency: "IMMEDIATE" | "ONETIME" | "DAILY" | "WEEKLY" | "MONTHLY";
|
|
221
|
+
date?: string | undefined;
|
|
221
222
|
includeValidAttributes?: boolean | undefined;
|
|
222
223
|
dayOfMonth?: number | undefined;
|
|
223
224
|
dayOfWeek?: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN" | undefined;
|
|
224
225
|
hourOfDay?: number | undefined;
|
|
225
|
-
date?: string | undefined;
|
|
226
226
|
catalogIds?: number[] | undefined;
|
|
227
227
|
itemInfoIds?: number[] | undefined;
|
|
228
228
|
excludeItemInfoIds?: number[] | undefined;
|
|
@@ -240,11 +240,11 @@ declare const exportSchema: z.ZodObject<{
|
|
|
240
240
|
isActive: boolean;
|
|
241
241
|
exportType: "ALL" | "UPDATES" | "DELTAS_UPDATE" | "NO_BUYER_PART_NUMBER";
|
|
242
242
|
exportFrequency: "IMMEDIATE" | "ONETIME" | "DAILY" | "WEEKLY" | "MONTHLY";
|
|
243
|
+
date?: string | undefined;
|
|
243
244
|
includeValidAttributes?: boolean | undefined;
|
|
244
245
|
dayOfMonth?: number | undefined;
|
|
245
246
|
dayOfWeek?: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN" | undefined;
|
|
246
247
|
hourOfDay?: number | undefined;
|
|
247
|
-
date?: string | undefined;
|
|
248
248
|
catalogIds?: number[] | undefined;
|
|
249
249
|
itemInfoIds?: number[] | undefined;
|
|
250
250
|
excludeItemInfoIds?: number[] | undefined;
|
|
@@ -289,6 +289,27 @@ declare const attrProdTypeSchema: z.ZodObject<{
|
|
|
289
289
|
}>;
|
|
290
290
|
type AttrProdType = z.infer<typeof attrProdTypeSchema>;
|
|
291
291
|
|
|
292
|
+
declare const companyRelationshipUpsertBodySchema: z.ZodObject<{
|
|
293
|
+
supplierId: z.ZodNumber;
|
|
294
|
+
retailerId: z.ZodNumber;
|
|
295
|
+
catalogId: z.ZodNumber;
|
|
296
|
+
active: z.ZodBoolean;
|
|
297
|
+
applicationType: z.ZodDefault<z.ZodArray<z.ZodEnum<["ASSORTMENT", "ITEM-XREF"]>, "many">>;
|
|
298
|
+
}, "strip", z.ZodTypeAny, {
|
|
299
|
+
retailerId: number;
|
|
300
|
+
supplierId: number;
|
|
301
|
+
catalogId: number;
|
|
302
|
+
active: boolean;
|
|
303
|
+
applicationType: ("ASSORTMENT" | "ITEM-XREF")[];
|
|
304
|
+
}, {
|
|
305
|
+
retailerId: number;
|
|
306
|
+
supplierId: number;
|
|
307
|
+
catalogId: number;
|
|
308
|
+
active: boolean;
|
|
309
|
+
applicationType?: ("ASSORTMENT" | "ITEM-XREF")[] | undefined;
|
|
310
|
+
}>;
|
|
311
|
+
type CompanyRelationshipUpsertBody = z.infer<typeof companyRelationshipUpsertBodySchema>;
|
|
312
|
+
|
|
292
313
|
declare const tradingPartnerAccessByCompanyIdSchema: z.ZodObject<{
|
|
293
314
|
companyId: z.ZodNumber;
|
|
294
315
|
companyType: z.ZodString;
|
|
@@ -366,10 +387,10 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
|
|
|
366
387
|
categoryid: number;
|
|
367
388
|
encodedCategoryId: string;
|
|
368
389
|
typeId: number;
|
|
390
|
+
description?: string | null | undefined;
|
|
369
391
|
createdDate?: number | null | undefined;
|
|
370
392
|
categorytimestamp?: number | null | undefined;
|
|
371
393
|
categorykey?: string | null | undefined;
|
|
372
|
-
description?: string | null | undefined;
|
|
373
394
|
categoryCatalogName?: string | null | undefined;
|
|
374
395
|
}, {
|
|
375
396
|
type: string;
|
|
@@ -379,13 +400,14 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
|
|
|
379
400
|
categoryid: number;
|
|
380
401
|
encodedCategoryId: string;
|
|
381
402
|
typeId: number;
|
|
403
|
+
description?: string | null | undefined;
|
|
382
404
|
createdDate?: number | null | undefined;
|
|
383
405
|
categorytimestamp?: number | null | undefined;
|
|
384
406
|
categorykey?: string | null | undefined;
|
|
385
|
-
description?: string | null | undefined;
|
|
386
407
|
categoryCatalogName?: string | null | undefined;
|
|
387
408
|
}>, "many">;
|
|
388
409
|
}, "strip", z.ZodTypeAny, {
|
|
410
|
+
count: number;
|
|
389
411
|
data: {
|
|
390
412
|
type: string;
|
|
391
413
|
name: string;
|
|
@@ -394,14 +416,14 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
|
|
|
394
416
|
categoryid: number;
|
|
395
417
|
encodedCategoryId: string;
|
|
396
418
|
typeId: number;
|
|
419
|
+
description?: string | null | undefined;
|
|
397
420
|
createdDate?: number | null | undefined;
|
|
398
421
|
categorytimestamp?: number | null | undefined;
|
|
399
422
|
categorykey?: string | null | undefined;
|
|
400
|
-
description?: string | null | undefined;
|
|
401
423
|
categoryCatalogName?: string | null | undefined;
|
|
402
424
|
}[];
|
|
403
|
-
count: number;
|
|
404
425
|
}, {
|
|
426
|
+
count: number;
|
|
405
427
|
data: {
|
|
406
428
|
type: string;
|
|
407
429
|
name: string;
|
|
@@ -410,13 +432,12 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
|
|
|
410
432
|
categoryid: number;
|
|
411
433
|
encodedCategoryId: string;
|
|
412
434
|
typeId: number;
|
|
435
|
+
description?: string | null | undefined;
|
|
413
436
|
createdDate?: number | null | undefined;
|
|
414
437
|
categorytimestamp?: number | null | undefined;
|
|
415
438
|
categorykey?: string | null | undefined;
|
|
416
|
-
description?: string | null | undefined;
|
|
417
439
|
categoryCatalogName?: string | null | undefined;
|
|
418
440
|
}[];
|
|
419
|
-
count: number;
|
|
420
441
|
}>;
|
|
421
442
|
type ItemCategoriesSearch = z.infer<typeof itemCategoriesSearchSchema>;
|
|
422
443
|
|
|
@@ -988,6 +1009,9 @@ declare const attributeDefinitionSchema: z.ZodObject<{
|
|
|
988
1009
|
attrStorageId: number;
|
|
989
1010
|
storageName: string;
|
|
990
1011
|
};
|
|
1012
|
+
description?: string | undefined;
|
|
1013
|
+
orderWeight?: number | undefined;
|
|
1014
|
+
parentAttributeId?: number | undefined;
|
|
991
1015
|
attrRestrictions?: {
|
|
992
1016
|
repeatable: boolean;
|
|
993
1017
|
isDefault: boolean;
|
|
@@ -1006,8 +1030,6 @@ declare const attributeDefinitionSchema: z.ZodObject<{
|
|
|
1006
1030
|
attrKeyPair: string;
|
|
1007
1031
|
attrValueId?: number | undefined;
|
|
1008
1032
|
}[] | undefined;
|
|
1009
|
-
description?: string | undefined;
|
|
1010
|
-
orderWeight?: number | undefined;
|
|
1011
1033
|
parentAttribute?: {
|
|
1012
1034
|
createdDate: number;
|
|
1013
1035
|
createdBy: string;
|
|
@@ -1056,7 +1078,6 @@ declare const attributeDefinitionSchema: z.ZodObject<{
|
|
|
1056
1078
|
description?: string | undefined;
|
|
1057
1079
|
parentAttributeId?: number | undefined;
|
|
1058
1080
|
} | undefined;
|
|
1059
|
-
parentAttributeId?: number | undefined;
|
|
1060
1081
|
}, {
|
|
1061
1082
|
createdDate: number;
|
|
1062
1083
|
createdBy: string;
|
|
@@ -1105,6 +1126,9 @@ declare const attributeDefinitionSchema: z.ZodObject<{
|
|
|
1105
1126
|
attrStorageId: number;
|
|
1106
1127
|
storageName: string;
|
|
1107
1128
|
};
|
|
1129
|
+
description?: string | undefined;
|
|
1130
|
+
orderWeight?: number | undefined;
|
|
1131
|
+
parentAttributeId?: number | undefined;
|
|
1108
1132
|
attrRestrictions?: {
|
|
1109
1133
|
repeatable: boolean;
|
|
1110
1134
|
isDefault: boolean;
|
|
@@ -1123,8 +1147,6 @@ declare const attributeDefinitionSchema: z.ZodObject<{
|
|
|
1123
1147
|
attrKeyPair: string;
|
|
1124
1148
|
attrValueId?: number | undefined;
|
|
1125
1149
|
}[] | undefined;
|
|
1126
|
-
description?: string | undefined;
|
|
1127
|
-
orderWeight?: number | undefined;
|
|
1128
1150
|
parentAttribute?: {
|
|
1129
1151
|
createdDate: number;
|
|
1130
1152
|
createdBy: string;
|
|
@@ -1173,7 +1195,6 @@ declare const attributeDefinitionSchema: z.ZodObject<{
|
|
|
1173
1195
|
description?: string | undefined;
|
|
1174
1196
|
parentAttributeId?: number | undefined;
|
|
1175
1197
|
} | undefined;
|
|
1176
|
-
parentAttributeId?: number | undefined;
|
|
1177
1198
|
}>;
|
|
1178
1199
|
type AttributeDefinition = z.infer<typeof attributeDefinitionSchema>;
|
|
1179
1200
|
|
|
@@ -1260,8 +1281,8 @@ declare const spreadsheetTemplateSchema: z.ZodObject<{
|
|
|
1260
1281
|
createdAt: number;
|
|
1261
1282
|
}[];
|
|
1262
1283
|
createdBy?: string | null | undefined;
|
|
1263
|
-
createdAt?: number | null | undefined;
|
|
1264
1284
|
modifiedBy?: string | null | undefined;
|
|
1285
|
+
createdAt?: number | null | undefined;
|
|
1265
1286
|
modifiedAt?: number | null | undefined;
|
|
1266
1287
|
}, {
|
|
1267
1288
|
name: string;
|
|
@@ -1275,8 +1296,8 @@ declare const spreadsheetTemplateSchema: z.ZodObject<{
|
|
|
1275
1296
|
createdAt: number;
|
|
1276
1297
|
}[];
|
|
1277
1298
|
createdBy?: string | null | undefined;
|
|
1278
|
-
createdAt?: number | null | undefined;
|
|
1279
1299
|
modifiedBy?: string | null | undefined;
|
|
1300
|
+
createdAt?: number | null | undefined;
|
|
1280
1301
|
modifiedAt?: number | null | undefined;
|
|
1281
1302
|
}>;
|
|
1282
1303
|
type SpreadsheetTemplate = z.infer<typeof spreadsheetTemplateSchema>;
|
|
@@ -1379,9 +1400,9 @@ declare const userAccountSchema: z.ZodObject<{
|
|
|
1379
1400
|
}>>;
|
|
1380
1401
|
}, "strip", z.ZodTypeAny, {
|
|
1381
1402
|
id: string;
|
|
1403
|
+
namespace?: string | undefined;
|
|
1382
1404
|
organization_name?: string | undefined;
|
|
1383
1405
|
organization_site?: string | undefined;
|
|
1384
|
-
namespace?: string | undefined;
|
|
1385
1406
|
permissions?: string[] | undefined;
|
|
1386
1407
|
metadata?: {
|
|
1387
1408
|
value: string;
|
|
@@ -1390,9 +1411,9 @@ declare const userAccountSchema: z.ZodObject<{
|
|
|
1390
1411
|
} | undefined;
|
|
1391
1412
|
}, {
|
|
1392
1413
|
id: string;
|
|
1414
|
+
namespace?: string | undefined;
|
|
1393
1415
|
organization_name?: string | undefined;
|
|
1394
1416
|
organization_site?: string | undefined;
|
|
1395
|
-
namespace?: string | undefined;
|
|
1396
1417
|
permissions?: string[] | undefined;
|
|
1397
1418
|
metadata?: {
|
|
1398
1419
|
value: string;
|
|
@@ -1408,9 +1429,9 @@ declare const userAccountSchema: z.ZodObject<{
|
|
|
1408
1429
|
roles: string[];
|
|
1409
1430
|
organization: {
|
|
1410
1431
|
id: string;
|
|
1432
|
+
namespace?: string | undefined;
|
|
1411
1433
|
organization_name?: string | undefined;
|
|
1412
1434
|
organization_site?: string | undefined;
|
|
1413
|
-
namespace?: string | undefined;
|
|
1414
1435
|
permissions?: string[] | undefined;
|
|
1415
1436
|
metadata?: {
|
|
1416
1437
|
value: string;
|
|
@@ -1420,6 +1441,7 @@ declare const userAccountSchema: z.ZodObject<{
|
|
|
1420
1441
|
};
|
|
1421
1442
|
password: string;
|
|
1422
1443
|
verified: boolean;
|
|
1444
|
+
description?: string | undefined;
|
|
1423
1445
|
email?: string | undefined;
|
|
1424
1446
|
first_name?: string | undefined;
|
|
1425
1447
|
last_name?: string | undefined;
|
|
@@ -1437,7 +1459,6 @@ declare const userAccountSchema: z.ZodObject<{
|
|
|
1437
1459
|
phone_number?: string | undefined;
|
|
1438
1460
|
twitter_handle?: string | undefined;
|
|
1439
1461
|
linkedin_url?: string | undefined;
|
|
1440
|
-
description?: string | undefined;
|
|
1441
1462
|
preferences?: {
|
|
1442
1463
|
locale: string;
|
|
1443
1464
|
timezone: string;
|
|
@@ -1458,9 +1479,9 @@ declare const userAccountSchema: z.ZodObject<{
|
|
|
1458
1479
|
roles: string[];
|
|
1459
1480
|
organization: {
|
|
1460
1481
|
id: string;
|
|
1482
|
+
namespace?: string | undefined;
|
|
1461
1483
|
organization_name?: string | undefined;
|
|
1462
1484
|
organization_site?: string | undefined;
|
|
1463
|
-
namespace?: string | undefined;
|
|
1464
1485
|
permissions?: string[] | undefined;
|
|
1465
1486
|
metadata?: {
|
|
1466
1487
|
value: string;
|
|
@@ -1470,6 +1491,7 @@ declare const userAccountSchema: z.ZodObject<{
|
|
|
1470
1491
|
};
|
|
1471
1492
|
password: string;
|
|
1472
1493
|
verified: boolean;
|
|
1494
|
+
description?: string | undefined;
|
|
1473
1495
|
email?: string | undefined;
|
|
1474
1496
|
first_name?: string | undefined;
|
|
1475
1497
|
last_name?: string | undefined;
|
|
@@ -1487,7 +1509,6 @@ declare const userAccountSchema: z.ZodObject<{
|
|
|
1487
1509
|
phone_number?: string | undefined;
|
|
1488
1510
|
twitter_handle?: string | undefined;
|
|
1489
1511
|
linkedin_url?: string | undefined;
|
|
1490
|
-
description?: string | undefined;
|
|
1491
1512
|
preferences?: {
|
|
1492
1513
|
locale: string;
|
|
1493
1514
|
timezone: string;
|
|
@@ -1543,9 +1564,9 @@ declare const userAccountSchema: z.ZodObject<{
|
|
|
1543
1564
|
roles: string[];
|
|
1544
1565
|
organization: {
|
|
1545
1566
|
id: string;
|
|
1567
|
+
namespace?: string | undefined;
|
|
1546
1568
|
organization_name?: string | undefined;
|
|
1547
1569
|
organization_site?: string | undefined;
|
|
1548
|
-
namespace?: string | undefined;
|
|
1549
1570
|
permissions?: string[] | undefined;
|
|
1550
1571
|
metadata?: {
|
|
1551
1572
|
value: string;
|
|
@@ -1555,6 +1576,7 @@ declare const userAccountSchema: z.ZodObject<{
|
|
|
1555
1576
|
};
|
|
1556
1577
|
password: string;
|
|
1557
1578
|
verified: boolean;
|
|
1579
|
+
description?: string | undefined;
|
|
1558
1580
|
email?: string | undefined;
|
|
1559
1581
|
first_name?: string | undefined;
|
|
1560
1582
|
last_name?: string | undefined;
|
|
@@ -1572,7 +1594,6 @@ declare const userAccountSchema: z.ZodObject<{
|
|
|
1572
1594
|
phone_number?: string | undefined;
|
|
1573
1595
|
twitter_handle?: string | undefined;
|
|
1574
1596
|
linkedin_url?: string | undefined;
|
|
1575
|
-
description?: string | undefined;
|
|
1576
1597
|
preferences?: {
|
|
1577
1598
|
locale: string;
|
|
1578
1599
|
timezone: string;
|
|
@@ -1615,9 +1636,9 @@ declare const userAccountSchema: z.ZodObject<{
|
|
|
1615
1636
|
roles: string[];
|
|
1616
1637
|
organization: {
|
|
1617
1638
|
id: string;
|
|
1639
|
+
namespace?: string | undefined;
|
|
1618
1640
|
organization_name?: string | undefined;
|
|
1619
1641
|
organization_site?: string | undefined;
|
|
1620
|
-
namespace?: string | undefined;
|
|
1621
1642
|
permissions?: string[] | undefined;
|
|
1622
1643
|
metadata?: {
|
|
1623
1644
|
value: string;
|
|
@@ -1627,6 +1648,7 @@ declare const userAccountSchema: z.ZodObject<{
|
|
|
1627
1648
|
};
|
|
1628
1649
|
password: string;
|
|
1629
1650
|
verified: boolean;
|
|
1651
|
+
description?: string | undefined;
|
|
1630
1652
|
email?: string | undefined;
|
|
1631
1653
|
first_name?: string | undefined;
|
|
1632
1654
|
last_name?: string | undefined;
|
|
@@ -1644,7 +1666,6 @@ declare const userAccountSchema: z.ZodObject<{
|
|
|
1644
1666
|
phone_number?: string | undefined;
|
|
1645
1667
|
twitter_handle?: string | undefined;
|
|
1646
1668
|
linkedin_url?: string | undefined;
|
|
1647
|
-
description?: string | undefined;
|
|
1648
1669
|
preferences?: {
|
|
1649
1670
|
locale: string;
|
|
1650
1671
|
timezone: string;
|
|
@@ -2059,102 +2080,102 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2059
2080
|
name: z.ZodString;
|
|
2060
2081
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2061
2082
|
id: z.ZodNumber;
|
|
2062
|
-
companyId: z.ZodNumber
|
|
2063
|
-
type: z.ZodEnum<["
|
|
2083
|
+
companyId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2084
|
+
type: z.ZodEnum<["ALIAS", "CATALOG", "EXPORT", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAG", "TAXONOMY_ROOT"]>;
|
|
2064
2085
|
}, "strip", z.ZodTypeAny, {
|
|
2065
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2086
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2066
2087
|
name: string;
|
|
2067
|
-
companyId: number;
|
|
2068
2088
|
id: number;
|
|
2069
2089
|
description?: string | null | undefined;
|
|
2090
|
+
companyId?: number | null | undefined;
|
|
2070
2091
|
}, {
|
|
2071
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2092
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2072
2093
|
name: string;
|
|
2073
|
-
companyId: number;
|
|
2074
2094
|
id: number;
|
|
2075
2095
|
description?: string | null | undefined;
|
|
2096
|
+
companyId?: number | null | undefined;
|
|
2076
2097
|
}>, "many">;
|
|
2077
2098
|
selectionCodes: z.ZodArray<z.ZodObject<{
|
|
2078
2099
|
name: z.ZodString;
|
|
2079
2100
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2080
2101
|
id: z.ZodNumber;
|
|
2081
|
-
companyId: z.ZodNumber
|
|
2082
|
-
type: z.ZodEnum<["
|
|
2102
|
+
companyId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2103
|
+
type: z.ZodEnum<["ALIAS", "CATALOG", "EXPORT", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAG", "TAXONOMY_ROOT"]>;
|
|
2083
2104
|
}, "strip", z.ZodTypeAny, {
|
|
2084
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2105
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2085
2106
|
name: string;
|
|
2086
|
-
companyId: number;
|
|
2087
2107
|
id: number;
|
|
2088
2108
|
description?: string | null | undefined;
|
|
2109
|
+
companyId?: number | null | undefined;
|
|
2089
2110
|
}, {
|
|
2090
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2111
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2091
2112
|
name: string;
|
|
2092
|
-
companyId: number;
|
|
2093
2113
|
id: number;
|
|
2094
2114
|
description?: string | null | undefined;
|
|
2115
|
+
companyId?: number | null | undefined;
|
|
2095
2116
|
}>, "many">;
|
|
2096
2117
|
productCodes: z.ZodArray<z.ZodObject<{
|
|
2097
2118
|
name: z.ZodString;
|
|
2098
2119
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2099
2120
|
id: z.ZodNumber;
|
|
2100
|
-
companyId: z.ZodNumber
|
|
2101
|
-
type: z.ZodEnum<["
|
|
2121
|
+
companyId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2122
|
+
type: z.ZodEnum<["ALIAS", "CATALOG", "EXPORT", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAG", "TAXONOMY_ROOT"]>;
|
|
2102
2123
|
}, "strip", z.ZodTypeAny, {
|
|
2103
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2124
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2104
2125
|
name: string;
|
|
2105
|
-
companyId: number;
|
|
2106
2126
|
id: number;
|
|
2107
2127
|
description?: string | null | undefined;
|
|
2128
|
+
companyId?: number | null | undefined;
|
|
2108
2129
|
}, {
|
|
2109
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2130
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2110
2131
|
name: string;
|
|
2111
|
-
companyId: number;
|
|
2112
2132
|
id: number;
|
|
2113
2133
|
description?: string | null | undefined;
|
|
2134
|
+
companyId?: number | null | undefined;
|
|
2114
2135
|
}>, "many">;
|
|
2115
2136
|
}, "strip", z.ZodTypeAny, {
|
|
2116
2137
|
catalogs: {
|
|
2117
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2138
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2118
2139
|
name: string;
|
|
2119
|
-
companyId: number;
|
|
2120
2140
|
id: number;
|
|
2121
2141
|
description?: string | null | undefined;
|
|
2142
|
+
companyId?: number | null | undefined;
|
|
2122
2143
|
}[];
|
|
2123
2144
|
selectionCodes: {
|
|
2124
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2145
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2125
2146
|
name: string;
|
|
2126
|
-
companyId: number;
|
|
2127
2147
|
id: number;
|
|
2128
2148
|
description?: string | null | undefined;
|
|
2149
|
+
companyId?: number | null | undefined;
|
|
2129
2150
|
}[];
|
|
2130
2151
|
productCodes: {
|
|
2131
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2152
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2132
2153
|
name: string;
|
|
2133
|
-
companyId: number;
|
|
2134
2154
|
id: number;
|
|
2135
2155
|
description?: string | null | undefined;
|
|
2156
|
+
companyId?: number | null | undefined;
|
|
2136
2157
|
}[];
|
|
2137
2158
|
}, {
|
|
2138
2159
|
catalogs: {
|
|
2139
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2160
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2140
2161
|
name: string;
|
|
2141
|
-
companyId: number;
|
|
2142
2162
|
id: number;
|
|
2143
2163
|
description?: string | null | undefined;
|
|
2164
|
+
companyId?: number | null | undefined;
|
|
2144
2165
|
}[];
|
|
2145
2166
|
selectionCodes: {
|
|
2146
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2167
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2147
2168
|
name: string;
|
|
2148
|
-
companyId: number;
|
|
2149
2169
|
id: number;
|
|
2150
2170
|
description?: string | null | undefined;
|
|
2171
|
+
companyId?: number | null | undefined;
|
|
2151
2172
|
}[];
|
|
2152
2173
|
productCodes: {
|
|
2153
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2174
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2154
2175
|
name: string;
|
|
2155
|
-
companyId: number;
|
|
2156
2176
|
id: number;
|
|
2157
2177
|
description?: string | null | undefined;
|
|
2178
|
+
companyId?: number | null | undefined;
|
|
2158
2179
|
}[];
|
|
2159
2180
|
}>;
|
|
2160
2181
|
groupedAttributes: z.ZodArray<z.ZodObject<{
|
|
@@ -2167,14 +2188,14 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2167
2188
|
group: z.ZodString;
|
|
2168
2189
|
orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
2169
2190
|
}, "strip", z.ZodTypeAny, {
|
|
2170
|
-
value:
|
|
2191
|
+
value: string | number | string[] | number[] | null;
|
|
2171
2192
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2172
2193
|
name: string;
|
|
2173
2194
|
label: string;
|
|
2174
2195
|
group: string;
|
|
2175
2196
|
orderBy?: string | number | null | undefined;
|
|
2176
2197
|
}, {
|
|
2177
|
-
value:
|
|
2198
|
+
value: string | number | string[] | number[] | null;
|
|
2178
2199
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2179
2200
|
name: string;
|
|
2180
2201
|
label: string;
|
|
@@ -2191,14 +2212,14 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2191
2212
|
group: z.ZodString;
|
|
2192
2213
|
orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
2193
2214
|
}, "strip", z.ZodTypeAny, {
|
|
2194
|
-
value:
|
|
2215
|
+
value: string | number | string[] | number[] | null;
|
|
2195
2216
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2196
2217
|
name: string;
|
|
2197
2218
|
label: string;
|
|
2198
2219
|
group: string;
|
|
2199
2220
|
orderBy?: string | number | null | undefined;
|
|
2200
2221
|
}, {
|
|
2201
|
-
value:
|
|
2222
|
+
value: string | number | string[] | number[] | null;
|
|
2202
2223
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2203
2224
|
name: string;
|
|
2204
2225
|
label: string;
|
|
@@ -2218,7 +2239,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2218
2239
|
}, "strip", z.ZodTypeAny, {
|
|
2219
2240
|
type: string;
|
|
2220
2241
|
rows: {
|
|
2221
|
-
value:
|
|
2242
|
+
value: string | number | string[] | number[] | null;
|
|
2222
2243
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2223
2244
|
name: string;
|
|
2224
2245
|
label: string;
|
|
@@ -2232,7 +2253,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2232
2253
|
}, {
|
|
2233
2254
|
type: string;
|
|
2234
2255
|
rows: {
|
|
2235
|
-
value:
|
|
2256
|
+
value: string | number | string[] | number[] | null;
|
|
2236
2257
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2237
2258
|
name: string;
|
|
2238
2259
|
label: string;
|
|
@@ -2247,7 +2268,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2247
2268
|
}, "strip", z.ZodTypeAny, {
|
|
2248
2269
|
type: string;
|
|
2249
2270
|
attributes: {
|
|
2250
|
-
value:
|
|
2271
|
+
value: string | number | string[] | number[] | null;
|
|
2251
2272
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2252
2273
|
name: string;
|
|
2253
2274
|
label: string;
|
|
@@ -2257,7 +2278,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2257
2278
|
attributeGroups: {
|
|
2258
2279
|
type: string;
|
|
2259
2280
|
rows: {
|
|
2260
|
-
value:
|
|
2281
|
+
value: string | number | string[] | number[] | null;
|
|
2261
2282
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2262
2283
|
name: string;
|
|
2263
2284
|
label: string;
|
|
@@ -2272,7 +2293,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2272
2293
|
}, {
|
|
2273
2294
|
type: string;
|
|
2274
2295
|
attributes: {
|
|
2275
|
-
value:
|
|
2296
|
+
value: string | number | string[] | number[] | null;
|
|
2276
2297
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2277
2298
|
name: string;
|
|
2278
2299
|
label: string;
|
|
@@ -2282,7 +2303,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2282
2303
|
attributeGroups: {
|
|
2283
2304
|
type: string;
|
|
2284
2305
|
rows: {
|
|
2285
|
-
value:
|
|
2306
|
+
value: string | number | string[] | number[] | null;
|
|
2286
2307
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2287
2308
|
name: string;
|
|
2288
2309
|
label: string;
|
|
@@ -2356,8 +2377,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2356
2377
|
currency: string;
|
|
2357
2378
|
qualifier: string;
|
|
2358
2379
|
id?: number | null | undefined;
|
|
2359
|
-
|
|
2380
|
+
gtin?: string | null | undefined;
|
|
2360
2381
|
iteminfoid?: number | null | undefined;
|
|
2382
|
+
priceDivision?: string | null | undefined;
|
|
2361
2383
|
startdate?: string | null | undefined;
|
|
2362
2384
|
enddate?: string | null | undefined;
|
|
2363
2385
|
region?: string | null | undefined;
|
|
@@ -2368,7 +2390,6 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2368
2390
|
range_type?: string | null | undefined;
|
|
2369
2391
|
date_range_type?: string | null | undefined;
|
|
2370
2392
|
min_range?: number | null | undefined;
|
|
2371
|
-
gtin?: string | null | undefined;
|
|
2372
2393
|
priceConditionDescription?: string | null | undefined;
|
|
2373
2394
|
priceUnitQuantity?: number | null | undefined;
|
|
2374
2395
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2377,8 +2398,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2377
2398
|
currency: string;
|
|
2378
2399
|
qualifier: string;
|
|
2379
2400
|
id?: number | null | undefined;
|
|
2380
|
-
|
|
2401
|
+
gtin?: string | null | undefined;
|
|
2381
2402
|
iteminfoid?: number | null | undefined;
|
|
2403
|
+
priceDivision?: string | null | undefined;
|
|
2382
2404
|
startdate?: string | null | undefined;
|
|
2383
2405
|
enddate?: string | null | undefined;
|
|
2384
2406
|
region?: string | null | undefined;
|
|
@@ -2389,7 +2411,6 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2389
2411
|
range_type?: string | null | undefined;
|
|
2390
2412
|
date_range_type?: string | null | undefined;
|
|
2391
2413
|
min_range?: number | null | undefined;
|
|
2392
|
-
gtin?: string | null | undefined;
|
|
2393
2414
|
priceConditionDescription?: string | null | undefined;
|
|
2394
2415
|
priceUnitQuantity?: number | null | undefined;
|
|
2395
2416
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2412,8 +2433,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2412
2433
|
currency: string;
|
|
2413
2434
|
qualifier: string;
|
|
2414
2435
|
id?: number | null | undefined;
|
|
2415
|
-
|
|
2436
|
+
gtin?: string | null | undefined;
|
|
2416
2437
|
iteminfoid?: number | null | undefined;
|
|
2438
|
+
priceDivision?: string | null | undefined;
|
|
2417
2439
|
startdate?: string | null | undefined;
|
|
2418
2440
|
enddate?: string | null | undefined;
|
|
2419
2441
|
region?: string | null | undefined;
|
|
@@ -2424,7 +2446,6 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2424
2446
|
range_type?: string | null | undefined;
|
|
2425
2447
|
date_range_type?: string | null | undefined;
|
|
2426
2448
|
min_range?: number | null | undefined;
|
|
2427
|
-
gtin?: string | null | undefined;
|
|
2428
2449
|
priceConditionDescription?: string | null | undefined;
|
|
2429
2450
|
priceUnitQuantity?: number | null | undefined;
|
|
2430
2451
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2447,8 +2468,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2447
2468
|
currency: string;
|
|
2448
2469
|
qualifier: string;
|
|
2449
2470
|
id?: number | null | undefined;
|
|
2450
|
-
|
|
2471
|
+
gtin?: string | null | undefined;
|
|
2451
2472
|
iteminfoid?: number | null | undefined;
|
|
2473
|
+
priceDivision?: string | null | undefined;
|
|
2452
2474
|
startdate?: string | null | undefined;
|
|
2453
2475
|
enddate?: string | null | undefined;
|
|
2454
2476
|
region?: string | null | undefined;
|
|
@@ -2459,7 +2481,6 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2459
2481
|
range_type?: string | null | undefined;
|
|
2460
2482
|
date_range_type?: string | null | undefined;
|
|
2461
2483
|
min_range?: number | null | undefined;
|
|
2462
|
-
gtin?: string | null | undefined;
|
|
2463
2484
|
priceConditionDescription?: string | null | undefined;
|
|
2464
2485
|
priceUnitQuantity?: number | null | undefined;
|
|
2465
2486
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2467,7 +2488,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2467
2488
|
}>, "many">;
|
|
2468
2489
|
childComponentDetails: z.ZodArray<z.ZodObject<{
|
|
2469
2490
|
itemInfoId: z.ZodNumber;
|
|
2470
|
-
description: z.ZodString
|
|
2491
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2471
2492
|
saleable: z.ZodBoolean;
|
|
2472
2493
|
valid: z.ZodBoolean;
|
|
2473
2494
|
uniqueCriteria: z.ZodArray<z.ZodObject<{
|
|
@@ -2482,26 +2503,26 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2482
2503
|
}>, "many">;
|
|
2483
2504
|
}, "strip", z.ZodTypeAny, {
|
|
2484
2505
|
valid: boolean;
|
|
2485
|
-
description: string;
|
|
2486
2506
|
itemInfoId: number;
|
|
2487
2507
|
saleable: boolean;
|
|
2488
2508
|
uniqueCriteria: {
|
|
2489
2509
|
value: string;
|
|
2490
2510
|
name: string;
|
|
2491
2511
|
}[];
|
|
2512
|
+
description?: string | null | undefined;
|
|
2492
2513
|
}, {
|
|
2493
2514
|
valid: boolean;
|
|
2494
|
-
description: string;
|
|
2495
2515
|
itemInfoId: number;
|
|
2496
2516
|
saleable: boolean;
|
|
2497
2517
|
uniqueCriteria: {
|
|
2498
2518
|
value: string;
|
|
2499
2519
|
name: string;
|
|
2500
2520
|
}[];
|
|
2521
|
+
description?: string | null | undefined;
|
|
2501
2522
|
}>, "many">;
|
|
2502
2523
|
parentComponentDetails: z.ZodArray<z.ZodObject<{
|
|
2503
2524
|
itemInfoId: z.ZodNumber;
|
|
2504
|
-
description: z.ZodString
|
|
2525
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2505
2526
|
saleable: z.ZodBoolean;
|
|
2506
2527
|
valid: z.ZodBoolean;
|
|
2507
2528
|
uniqueCriteria: z.ZodArray<z.ZodObject<{
|
|
@@ -2516,22 +2537,22 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2516
2537
|
}>, "many">;
|
|
2517
2538
|
}, "strip", z.ZodTypeAny, {
|
|
2518
2539
|
valid: boolean;
|
|
2519
|
-
description: string;
|
|
2520
2540
|
itemInfoId: number;
|
|
2521
2541
|
saleable: boolean;
|
|
2522
2542
|
uniqueCriteria: {
|
|
2523
2543
|
value: string;
|
|
2524
2544
|
name: string;
|
|
2525
2545
|
}[];
|
|
2546
|
+
description?: string | null | undefined;
|
|
2526
2547
|
}, {
|
|
2527
2548
|
valid: boolean;
|
|
2528
|
-
description: string;
|
|
2529
2549
|
itemInfoId: number;
|
|
2530
2550
|
saleable: boolean;
|
|
2531
2551
|
uniqueCriteria: {
|
|
2532
2552
|
value: string;
|
|
2533
2553
|
name: string;
|
|
2534
2554
|
}[];
|
|
2555
|
+
description?: string | null | undefined;
|
|
2535
2556
|
}>, "many">;
|
|
2536
2557
|
locales: z.ZodArray<z.ZodString, "many">;
|
|
2537
2558
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2543,31 +2564,31 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2543
2564
|
identifiers: Record<string, any>;
|
|
2544
2565
|
hierarchyDetails: {
|
|
2545
2566
|
catalogs: {
|
|
2546
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2567
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2547
2568
|
name: string;
|
|
2548
|
-
companyId: number;
|
|
2549
2569
|
id: number;
|
|
2550
2570
|
description?: string | null | undefined;
|
|
2571
|
+
companyId?: number | null | undefined;
|
|
2551
2572
|
}[];
|
|
2552
2573
|
selectionCodes: {
|
|
2553
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2574
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2554
2575
|
name: string;
|
|
2555
|
-
companyId: number;
|
|
2556
2576
|
id: number;
|
|
2557
2577
|
description?: string | null | undefined;
|
|
2578
|
+
companyId?: number | null | undefined;
|
|
2558
2579
|
}[];
|
|
2559
2580
|
productCodes: {
|
|
2560
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2581
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2561
2582
|
name: string;
|
|
2562
|
-
companyId: number;
|
|
2563
2583
|
id: number;
|
|
2564
2584
|
description?: string | null | undefined;
|
|
2585
|
+
companyId?: number | null | undefined;
|
|
2565
2586
|
}[];
|
|
2566
2587
|
};
|
|
2567
2588
|
groupedAttributes: {
|
|
2568
2589
|
type: string;
|
|
2569
2590
|
attributes: {
|
|
2570
|
-
value:
|
|
2591
|
+
value: string | number | string[] | number[] | null;
|
|
2571
2592
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2572
2593
|
name: string;
|
|
2573
2594
|
label: string;
|
|
@@ -2577,7 +2598,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2577
2598
|
attributeGroups: {
|
|
2578
2599
|
type: string;
|
|
2579
2600
|
rows: {
|
|
2580
|
-
value:
|
|
2601
|
+
value: string | number | string[] | number[] | null;
|
|
2581
2602
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2582
2603
|
name: string;
|
|
2583
2604
|
label: string;
|
|
@@ -2608,8 +2629,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2608
2629
|
currency: string;
|
|
2609
2630
|
qualifier: string;
|
|
2610
2631
|
id?: number | null | undefined;
|
|
2611
|
-
|
|
2632
|
+
gtin?: string | null | undefined;
|
|
2612
2633
|
iteminfoid?: number | null | undefined;
|
|
2634
|
+
priceDivision?: string | null | undefined;
|
|
2613
2635
|
startdate?: string | null | undefined;
|
|
2614
2636
|
enddate?: string | null | undefined;
|
|
2615
2637
|
region?: string | null | undefined;
|
|
@@ -2620,7 +2642,6 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2620
2642
|
range_type?: string | null | undefined;
|
|
2621
2643
|
date_range_type?: string | null | undefined;
|
|
2622
2644
|
min_range?: number | null | undefined;
|
|
2623
|
-
gtin?: string | null | undefined;
|
|
2624
2645
|
priceConditionDescription?: string | null | undefined;
|
|
2625
2646
|
priceUnitQuantity?: number | null | undefined;
|
|
2626
2647
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2628,23 +2649,23 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2628
2649
|
}[];
|
|
2629
2650
|
childComponentDetails: {
|
|
2630
2651
|
valid: boolean;
|
|
2631
|
-
description: string;
|
|
2632
2652
|
itemInfoId: number;
|
|
2633
2653
|
saleable: boolean;
|
|
2634
2654
|
uniqueCriteria: {
|
|
2635
2655
|
value: string;
|
|
2636
2656
|
name: string;
|
|
2637
2657
|
}[];
|
|
2658
|
+
description?: string | null | undefined;
|
|
2638
2659
|
}[];
|
|
2639
2660
|
parentComponentDetails: {
|
|
2640
2661
|
valid: boolean;
|
|
2641
|
-
description: string;
|
|
2642
2662
|
itemInfoId: number;
|
|
2643
2663
|
saleable: boolean;
|
|
2644
2664
|
uniqueCriteria: {
|
|
2645
2665
|
value: string;
|
|
2646
2666
|
name: string;
|
|
2647
2667
|
}[];
|
|
2668
|
+
description?: string | null | undefined;
|
|
2648
2669
|
}[];
|
|
2649
2670
|
locales: string[];
|
|
2650
2671
|
}, {
|
|
@@ -2656,31 +2677,31 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2656
2677
|
identifiers: Record<string, any>;
|
|
2657
2678
|
hierarchyDetails: {
|
|
2658
2679
|
catalogs: {
|
|
2659
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2680
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2660
2681
|
name: string;
|
|
2661
|
-
companyId: number;
|
|
2662
2682
|
id: number;
|
|
2663
2683
|
description?: string | null | undefined;
|
|
2684
|
+
companyId?: number | null | undefined;
|
|
2664
2685
|
}[];
|
|
2665
2686
|
selectionCodes: {
|
|
2666
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2687
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2667
2688
|
name: string;
|
|
2668
|
-
companyId: number;
|
|
2669
2689
|
id: number;
|
|
2670
2690
|
description?: string | null | undefined;
|
|
2691
|
+
companyId?: number | null | undefined;
|
|
2671
2692
|
}[];
|
|
2672
2693
|
productCodes: {
|
|
2673
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2694
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2674
2695
|
name: string;
|
|
2675
|
-
companyId: number;
|
|
2676
2696
|
id: number;
|
|
2677
2697
|
description?: string | null | undefined;
|
|
2698
|
+
companyId?: number | null | undefined;
|
|
2678
2699
|
}[];
|
|
2679
2700
|
};
|
|
2680
2701
|
groupedAttributes: {
|
|
2681
2702
|
type: string;
|
|
2682
2703
|
attributes: {
|
|
2683
|
-
value:
|
|
2704
|
+
value: string | number | string[] | number[] | null;
|
|
2684
2705
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2685
2706
|
name: string;
|
|
2686
2707
|
label: string;
|
|
@@ -2690,7 +2711,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2690
2711
|
attributeGroups: {
|
|
2691
2712
|
type: string;
|
|
2692
2713
|
rows: {
|
|
2693
|
-
value:
|
|
2714
|
+
value: string | number | string[] | number[] | null;
|
|
2694
2715
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2695
2716
|
name: string;
|
|
2696
2717
|
label: string;
|
|
@@ -2721,8 +2742,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2721
2742
|
currency: string;
|
|
2722
2743
|
qualifier: string;
|
|
2723
2744
|
id?: number | null | undefined;
|
|
2724
|
-
|
|
2745
|
+
gtin?: string | null | undefined;
|
|
2725
2746
|
iteminfoid?: number | null | undefined;
|
|
2747
|
+
priceDivision?: string | null | undefined;
|
|
2726
2748
|
startdate?: string | null | undefined;
|
|
2727
2749
|
enddate?: string | null | undefined;
|
|
2728
2750
|
region?: string | null | undefined;
|
|
@@ -2733,7 +2755,6 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2733
2755
|
range_type?: string | null | undefined;
|
|
2734
2756
|
date_range_type?: string | null | undefined;
|
|
2735
2757
|
min_range?: number | null | undefined;
|
|
2736
|
-
gtin?: string | null | undefined;
|
|
2737
2758
|
priceConditionDescription?: string | null | undefined;
|
|
2738
2759
|
priceUnitQuantity?: number | null | undefined;
|
|
2739
2760
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2741,23 +2762,23 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2741
2762
|
}[];
|
|
2742
2763
|
childComponentDetails: {
|
|
2743
2764
|
valid: boolean;
|
|
2744
|
-
description: string;
|
|
2745
2765
|
itemInfoId: number;
|
|
2746
2766
|
saleable: boolean;
|
|
2747
2767
|
uniqueCriteria: {
|
|
2748
2768
|
value: string;
|
|
2749
2769
|
name: string;
|
|
2750
2770
|
}[];
|
|
2771
|
+
description?: string | null | undefined;
|
|
2751
2772
|
}[];
|
|
2752
2773
|
parentComponentDetails: {
|
|
2753
2774
|
valid: boolean;
|
|
2754
|
-
description: string;
|
|
2755
2775
|
itemInfoId: number;
|
|
2756
2776
|
saleable: boolean;
|
|
2757
2777
|
uniqueCriteria: {
|
|
2758
2778
|
value: string;
|
|
2759
2779
|
name: string;
|
|
2760
2780
|
}[];
|
|
2781
|
+
description?: string | null | undefined;
|
|
2761
2782
|
}[];
|
|
2762
2783
|
locales: string[];
|
|
2763
2784
|
}>;
|
|
@@ -2771,31 +2792,31 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2771
2792
|
identifiers: Record<string, any>;
|
|
2772
2793
|
hierarchyDetails: {
|
|
2773
2794
|
catalogs: {
|
|
2774
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2795
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2775
2796
|
name: string;
|
|
2776
|
-
companyId: number;
|
|
2777
2797
|
id: number;
|
|
2778
2798
|
description?: string | null | undefined;
|
|
2799
|
+
companyId?: number | null | undefined;
|
|
2779
2800
|
}[];
|
|
2780
2801
|
selectionCodes: {
|
|
2781
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2802
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2782
2803
|
name: string;
|
|
2783
|
-
companyId: number;
|
|
2784
2804
|
id: number;
|
|
2785
2805
|
description?: string | null | undefined;
|
|
2806
|
+
companyId?: number | null | undefined;
|
|
2786
2807
|
}[];
|
|
2787
2808
|
productCodes: {
|
|
2788
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2809
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2789
2810
|
name: string;
|
|
2790
|
-
companyId: number;
|
|
2791
2811
|
id: number;
|
|
2792
2812
|
description?: string | null | undefined;
|
|
2813
|
+
companyId?: number | null | undefined;
|
|
2793
2814
|
}[];
|
|
2794
2815
|
};
|
|
2795
2816
|
groupedAttributes: {
|
|
2796
2817
|
type: string;
|
|
2797
2818
|
attributes: {
|
|
2798
|
-
value:
|
|
2819
|
+
value: string | number | string[] | number[] | null;
|
|
2799
2820
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2800
2821
|
name: string;
|
|
2801
2822
|
label: string;
|
|
@@ -2805,7 +2826,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2805
2826
|
attributeGroups: {
|
|
2806
2827
|
type: string;
|
|
2807
2828
|
rows: {
|
|
2808
|
-
value:
|
|
2829
|
+
value: string | number | string[] | number[] | null;
|
|
2809
2830
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2810
2831
|
name: string;
|
|
2811
2832
|
label: string;
|
|
@@ -2836,8 +2857,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2836
2857
|
currency: string;
|
|
2837
2858
|
qualifier: string;
|
|
2838
2859
|
id?: number | null | undefined;
|
|
2839
|
-
|
|
2860
|
+
gtin?: string | null | undefined;
|
|
2840
2861
|
iteminfoid?: number | null | undefined;
|
|
2862
|
+
priceDivision?: string | null | undefined;
|
|
2841
2863
|
startdate?: string | null | undefined;
|
|
2842
2864
|
enddate?: string | null | undefined;
|
|
2843
2865
|
region?: string | null | undefined;
|
|
@@ -2848,7 +2870,6 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2848
2870
|
range_type?: string | null | undefined;
|
|
2849
2871
|
date_range_type?: string | null | undefined;
|
|
2850
2872
|
min_range?: number | null | undefined;
|
|
2851
|
-
gtin?: string | null | undefined;
|
|
2852
2873
|
priceConditionDescription?: string | null | undefined;
|
|
2853
2874
|
priceUnitQuantity?: number | null | undefined;
|
|
2854
2875
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2856,23 +2877,23 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2856
2877
|
}[];
|
|
2857
2878
|
childComponentDetails: {
|
|
2858
2879
|
valid: boolean;
|
|
2859
|
-
description: string;
|
|
2860
2880
|
itemInfoId: number;
|
|
2861
2881
|
saleable: boolean;
|
|
2862
2882
|
uniqueCriteria: {
|
|
2863
2883
|
value: string;
|
|
2864
2884
|
name: string;
|
|
2865
2885
|
}[];
|
|
2886
|
+
description?: string | null | undefined;
|
|
2866
2887
|
}[];
|
|
2867
2888
|
parentComponentDetails: {
|
|
2868
2889
|
valid: boolean;
|
|
2869
|
-
description: string;
|
|
2870
2890
|
itemInfoId: number;
|
|
2871
2891
|
saleable: boolean;
|
|
2872
2892
|
uniqueCriteria: {
|
|
2873
2893
|
value: string;
|
|
2874
2894
|
name: string;
|
|
2875
2895
|
}[];
|
|
2896
|
+
description?: string | null | undefined;
|
|
2876
2897
|
}[];
|
|
2877
2898
|
locales: string[];
|
|
2878
2899
|
};
|
|
@@ -2886,31 +2907,31 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2886
2907
|
identifiers: Record<string, any>;
|
|
2887
2908
|
hierarchyDetails: {
|
|
2888
2909
|
catalogs: {
|
|
2889
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2910
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2890
2911
|
name: string;
|
|
2891
|
-
companyId: number;
|
|
2892
2912
|
id: number;
|
|
2893
2913
|
description?: string | null | undefined;
|
|
2914
|
+
companyId?: number | null | undefined;
|
|
2894
2915
|
}[];
|
|
2895
2916
|
selectionCodes: {
|
|
2896
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2917
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2897
2918
|
name: string;
|
|
2898
|
-
companyId: number;
|
|
2899
2919
|
id: number;
|
|
2900
2920
|
description?: string | null | undefined;
|
|
2921
|
+
companyId?: number | null | undefined;
|
|
2901
2922
|
}[];
|
|
2902
2923
|
productCodes: {
|
|
2903
|
-
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "
|
|
2924
|
+
type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
|
|
2904
2925
|
name: string;
|
|
2905
|
-
companyId: number;
|
|
2906
2926
|
id: number;
|
|
2907
2927
|
description?: string | null | undefined;
|
|
2928
|
+
companyId?: number | null | undefined;
|
|
2908
2929
|
}[];
|
|
2909
2930
|
};
|
|
2910
2931
|
groupedAttributes: {
|
|
2911
2932
|
type: string;
|
|
2912
2933
|
attributes: {
|
|
2913
|
-
value:
|
|
2934
|
+
value: string | number | string[] | number[] | null;
|
|
2914
2935
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2915
2936
|
name: string;
|
|
2916
2937
|
label: string;
|
|
@@ -2920,7 +2941,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2920
2941
|
attributeGroups: {
|
|
2921
2942
|
type: string;
|
|
2922
2943
|
rows: {
|
|
2923
|
-
value:
|
|
2944
|
+
value: string | number | string[] | number[] | null;
|
|
2924
2945
|
type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
|
|
2925
2946
|
name: string;
|
|
2926
2947
|
label: string;
|
|
@@ -2951,8 +2972,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2951
2972
|
currency: string;
|
|
2952
2973
|
qualifier: string;
|
|
2953
2974
|
id?: number | null | undefined;
|
|
2954
|
-
|
|
2975
|
+
gtin?: string | null | undefined;
|
|
2955
2976
|
iteminfoid?: number | null | undefined;
|
|
2977
|
+
priceDivision?: string | null | undefined;
|
|
2956
2978
|
startdate?: string | null | undefined;
|
|
2957
2979
|
enddate?: string | null | undefined;
|
|
2958
2980
|
region?: string | null | undefined;
|
|
@@ -2963,7 +2985,6 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2963
2985
|
range_type?: string | null | undefined;
|
|
2964
2986
|
date_range_type?: string | null | undefined;
|
|
2965
2987
|
min_range?: number | null | undefined;
|
|
2966
|
-
gtin?: string | null | undefined;
|
|
2967
2988
|
priceConditionDescription?: string | null | undefined;
|
|
2968
2989
|
priceUnitQuantity?: number | null | undefined;
|
|
2969
2990
|
priceUnitQuantityUOM?: string | null | undefined;
|
|
@@ -2971,23 +2992,23 @@ declare const itemDetailViewSchema: z.ZodObject<{
|
|
|
2971
2992
|
}[];
|
|
2972
2993
|
childComponentDetails: {
|
|
2973
2994
|
valid: boolean;
|
|
2974
|
-
description: string;
|
|
2975
2995
|
itemInfoId: number;
|
|
2976
2996
|
saleable: boolean;
|
|
2977
2997
|
uniqueCriteria: {
|
|
2978
2998
|
value: string;
|
|
2979
2999
|
name: string;
|
|
2980
3000
|
}[];
|
|
3001
|
+
description?: string | null | undefined;
|
|
2981
3002
|
}[];
|
|
2982
3003
|
parentComponentDetails: {
|
|
2983
3004
|
valid: boolean;
|
|
2984
|
-
description: string;
|
|
2985
3005
|
itemInfoId: number;
|
|
2986
3006
|
saleable: boolean;
|
|
2987
3007
|
uniqueCriteria: {
|
|
2988
3008
|
value: string;
|
|
2989
3009
|
name: string;
|
|
2990
3010
|
}[];
|
|
3011
|
+
description?: string | null | undefined;
|
|
2991
3012
|
}[];
|
|
2992
3013
|
locales: string[];
|
|
2993
3014
|
};
|
|
@@ -3069,11 +3090,11 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
|
|
|
3069
3090
|
attributeDbNames: string[];
|
|
3070
3091
|
repeatableGroupId?: string | null | undefined;
|
|
3071
3092
|
}[];
|
|
3093
|
+
gtin?: string | null | undefined;
|
|
3072
3094
|
upc?: string | null | undefined;
|
|
3095
|
+
ean?: string | null | undefined;
|
|
3073
3096
|
isbn?: string | null | undefined;
|
|
3074
|
-
gtin?: string | null | undefined;
|
|
3075
3097
|
partnumber?: string | null | undefined;
|
|
3076
|
-
ean?: string | null | undefined;
|
|
3077
3098
|
}, {
|
|
3078
3099
|
itemInfoId: number;
|
|
3079
3100
|
itemName: string | null;
|
|
@@ -3091,11 +3112,11 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
|
|
|
3091
3112
|
attributeDbNames: string[];
|
|
3092
3113
|
repeatableGroupId?: string | null | undefined;
|
|
3093
3114
|
}[];
|
|
3115
|
+
gtin?: string | null | undefined;
|
|
3094
3116
|
upc?: string | null | undefined;
|
|
3117
|
+
ean?: string | null | undefined;
|
|
3095
3118
|
isbn?: string | null | undefined;
|
|
3096
|
-
gtin?: string | null | undefined;
|
|
3097
3119
|
partnumber?: string | null | undefined;
|
|
3098
|
-
ean?: string | null | undefined;
|
|
3099
3120
|
}>;
|
|
3100
3121
|
type ItemErrorDetailsResult = z.infer<typeof itemErrorDetailsResultSchema>;
|
|
3101
3122
|
|
|
@@ -3135,4 +3156,4 @@ declare const companyBriefByOrgSchema: z.ZodObject<{
|
|
|
3135
3156
|
}>;
|
|
3136
3157
|
type CompanyBriefByOrg = z.infer<typeof companyBriefByOrgSchema>;
|
|
3137
3158
|
|
|
3138
|
-
export { AsstClient as A, BASE_URLS as B, CompanyBriefByOrg as C,
|
|
3159
|
+
export { AsstClient as A, BASE_URLS as B, type CompanyBriefByOrg as C, attributeValidValuesSchema as D, type Export as E, itemSearchViewSchema as F, itemDetailViewSchema as G, localeSchema as H, type ImportErrors as I, spreadsheetTemplateSchema as J, tradingPartnerAccessByCompanyIdSchema as K, type Locale as L, companyRelationshipUpsertBodySchema as M, userAccountSchema as N, itemErrorDetailsResultSchema as O, companyBriefByOrgSchema as P, type SpreadsheetTemplate as S, type TradingPartnerAccessByCompanyId as T, type UserAccount as U, type VendorPartnerAttGroups as V, type Import as a, type ImportsStatus as b, type ItemCategoriesSearch as c, attrProdTypeSchema as d, type CompanyRelationshipUpsertBody as e, type ItemErrorDetailsResult as f, type ItemSearchView as g, type ItemDetailView as h, type AttributeMetaData as i, type AttributesByCompany as j, type AttributeDefinition as k, type AttributeValidValues as l, type AttrProdType as m, envSchema as n, type AsstClientOptions as o, type AsstUrl as p, type Env as q, importErrorsSchema as r, importSchema as s, importsStatusSchema as t, exportSchema as u, vendorPartnerAttGroupsSchema as v, itemCategoriesSearchSchema as w, attributeDefinitionSchema as x, attributeMetaDataSchema as y, attributesByCompanySchema as z };
|