@spscommerce/asst-api 0.0.1-beta.8 → 0.0.1

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.
@@ -297,19 +297,22 @@ declare const tradingPartnerAccessByCompanyIdSchema: z.ZodObject<{
297
297
  count: z.ZodNumber;
298
298
  connections: z.ZodArray<z.ZodObject<{
299
299
  catalog_id: z.ZodNumber;
300
- catalog_name: z.ZodString;
300
+ catalog_name: z.ZodNullable<z.ZodString>;
301
301
  partner_company_name: z.ZodString;
302
302
  partner_company_id: z.ZodNumber;
303
+ partner_org_id: z.ZodString;
303
304
  }, "strip", z.ZodTypeAny, {
304
305
  catalog_id: number;
305
- catalog_name: string;
306
+ catalog_name: string | null;
306
307
  partner_company_name: string;
307
308
  partner_company_id: number;
309
+ partner_org_id: string;
308
310
  }, {
309
311
  catalog_id: number;
310
- catalog_name: string;
312
+ catalog_name: string | null;
311
313
  partner_company_name: string;
312
314
  partner_company_id: number;
315
+ partner_org_id: string;
313
316
  }>, "many">;
314
317
  }, "strip", z.ZodTypeAny, {
315
318
  count: number;
@@ -319,9 +322,10 @@ declare const tradingPartnerAccessByCompanyIdSchema: z.ZodObject<{
319
322
  companyName: string;
320
323
  connections: {
321
324
  catalog_id: number;
322
- catalog_name: string;
325
+ catalog_name: string | null;
323
326
  partner_company_name: string;
324
327
  partner_company_id: number;
328
+ partner_org_id: string;
325
329
  }[];
326
330
  }, {
327
331
  count: number;
@@ -331,9 +335,10 @@ declare const tradingPartnerAccessByCompanyIdSchema: z.ZodObject<{
331
335
  companyName: string;
332
336
  connections: {
333
337
  catalog_id: number;
334
- catalog_name: string;
338
+ catalog_name: string | null;
335
339
  partner_company_name: string;
336
340
  partner_company_id: number;
341
+ partner_org_id: string;
337
342
  }[];
338
343
  }>;
339
344
  type TradingPartnerAccessByCompanyId = z.infer<typeof tradingPartnerAccessByCompanyIdSchema>;
@@ -342,6 +347,7 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
342
347
  count: z.ZodNumber;
343
348
  data: z.ZodArray<z.ZodObject<{
344
349
  categoryid: z.ZodNumber;
350
+ encodedCategoryId: z.ZodString;
345
351
  companyId: z.ZodNumber;
346
352
  name: z.ZodString;
347
353
  isActive: z.ZodNumber;
@@ -358,6 +364,7 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
358
364
  isActive: number;
359
365
  companyId: number;
360
366
  categoryid: number;
367
+ encodedCategoryId: string;
361
368
  typeId: number;
362
369
  createdDate?: number | null | undefined;
363
370
  categorytimestamp?: number | null | undefined;
@@ -370,6 +377,7 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
370
377
  isActive: number;
371
378
  companyId: number;
372
379
  categoryid: number;
380
+ encodedCategoryId: string;
373
381
  typeId: number;
374
382
  createdDate?: number | null | undefined;
375
383
  categorytimestamp?: number | null | undefined;
@@ -384,6 +392,7 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
384
392
  isActive: number;
385
393
  companyId: number;
386
394
  categoryid: number;
395
+ encodedCategoryId: string;
387
396
  typeId: number;
388
397
  createdDate?: number | null | undefined;
389
398
  categorytimestamp?: number | null | undefined;
@@ -399,6 +408,7 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
399
408
  isActive: number;
400
409
  companyId: number;
401
410
  categoryid: number;
411
+ encodedCategoryId: string;
402
412
  typeId: number;
403
413
  createdDate?: number | null | undefined;
404
414
  categorytimestamp?: number | null | undefined;
@@ -1274,26 +1284,26 @@ type SpreadsheetTemplate = z.infer<typeof spreadsheetTemplateSchema>;
1274
1284
  declare const userAccountSchema: z.ZodObject<{
1275
1285
  identityUser: z.ZodObject<{
1276
1286
  id: z.ZodString;
1277
- email: z.ZodString;
1278
- first_name: z.ZodString;
1279
- last_name: z.ZodString;
1280
- job_title: z.ZodString;
1281
- externally_managed: z.ZodBoolean;
1282
- city: z.ZodString;
1287
+ email: z.ZodOptional<z.ZodString>;
1288
+ first_name: z.ZodOptional<z.ZodString>;
1289
+ last_name: z.ZodOptional<z.ZodString>;
1290
+ job_title: z.ZodOptional<z.ZodString>;
1291
+ externally_managed: z.ZodOptional<z.ZodBoolean>;
1292
+ city: z.ZodOptional<z.ZodString>;
1283
1293
  name: z.ZodString;
1284
- state: z.ZodString;
1285
- country: z.ZodString;
1286
- user_type: z.ZodString;
1287
- token_type: z.ZodString;
1288
- avatar_image_id: z.ZodString;
1289
- avatar_image_url: z.ZodString;
1290
- origin_avatar_image_id: z.ZodString;
1291
- bio: z.ZodString;
1292
- phone_number: z.ZodString;
1293
- twitter_handle: z.ZodString;
1294
- linkedin_url: z.ZodString;
1294
+ state: z.ZodOptional<z.ZodString>;
1295
+ country: z.ZodOptional<z.ZodString>;
1296
+ user_type: z.ZodOptional<z.ZodString>;
1297
+ token_type: z.ZodOptional<z.ZodString>;
1298
+ avatar_image_id: z.ZodOptional<z.ZodString>;
1299
+ avatar_image_url: z.ZodOptional<z.ZodString>;
1300
+ origin_avatar_image_id: z.ZodOptional<z.ZodString>;
1301
+ bio: z.ZodOptional<z.ZodString>;
1302
+ phone_number: z.ZodOptional<z.ZodString>;
1303
+ twitter_handle: z.ZodOptional<z.ZodString>;
1304
+ linkedin_url: z.ZodOptional<z.ZodString>;
1295
1305
  description: z.ZodOptional<z.ZodString>;
1296
- preferences: z.ZodObject<{
1306
+ preferences: z.ZodOptional<z.ZodObject<{
1297
1307
  locale: z.ZodString;
1298
1308
  timezone: z.ZodString;
1299
1309
  cpUpgrade: z.ZodOptional<z.ZodString>;
@@ -1346,12 +1356,12 @@ declare const userAccountSchema: z.ZodObject<{
1346
1356
  LONG_TIME: string;
1347
1357
  };
1348
1358
  cpUpgrade?: string | undefined;
1349
- }>;
1359
+ }>>;
1350
1360
  roles: z.ZodArray<z.ZodString, "many">;
1351
1361
  organization: z.ZodObject<{
1352
- organization_name: z.ZodString;
1353
- organization_site: z.ZodString;
1354
- namespace: z.ZodString;
1362
+ organization_name: z.ZodOptional<z.ZodString>;
1363
+ organization_site: z.ZodOptional<z.ZodString>;
1364
+ namespace: z.ZodOptional<z.ZodString>;
1355
1365
  id: z.ZodString;
1356
1366
  permissions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1357
1367
  metadata: z.ZodOptional<z.ZodObject<{
@@ -1369,9 +1379,9 @@ declare const userAccountSchema: z.ZodObject<{
1369
1379
  }>>;
1370
1380
  }, "strip", z.ZodTypeAny, {
1371
1381
  id: string;
1372
- namespace: string;
1373
- organization_name: string;
1374
- organization_site: string;
1382
+ organization_name?: string | undefined;
1383
+ organization_site?: string | undefined;
1384
+ namespace?: string | undefined;
1375
1385
  permissions?: string[] | undefined;
1376
1386
  metadata?: {
1377
1387
  value: string;
@@ -1380,9 +1390,9 @@ declare const userAccountSchema: z.ZodObject<{
1380
1390
  } | undefined;
1381
1391
  }, {
1382
1392
  id: string;
1383
- namespace: string;
1384
- organization_name: string;
1385
- organization_site: string;
1393
+ organization_name?: string | undefined;
1394
+ organization_site?: string | undefined;
1395
+ namespace?: string | undefined;
1386
1396
  permissions?: string[] | undefined;
1387
1397
  metadata?: {
1388
1398
  value: string;
@@ -1395,43 +1405,12 @@ declare const userAccountSchema: z.ZodObject<{
1395
1405
  }, "strip", z.ZodTypeAny, {
1396
1406
  name: string;
1397
1407
  id: string;
1398
- email: string;
1399
- first_name: string;
1400
- last_name: string;
1401
- job_title: string;
1402
- externally_managed: boolean;
1403
- city: string;
1404
- state: string;
1405
- country: string;
1406
- user_type: string;
1407
- token_type: string;
1408
- avatar_image_id: string;
1409
- avatar_image_url: string;
1410
- origin_avatar_image_id: string;
1411
- bio: string;
1412
- phone_number: string;
1413
- twitter_handle: string;
1414
- linkedin_url: string;
1415
- preferences: {
1416
- locale: string;
1417
- timezone: string;
1418
- language: string[];
1419
- datetime: {
1420
- DATE: string;
1421
- DATE_TIME: string;
1422
- TIME: string;
1423
- SHORT_DATE: string;
1424
- LONG_DATETIME: string;
1425
- LONG_TIME: string;
1426
- };
1427
- cpUpgrade?: string | undefined;
1428
- };
1429
1408
  roles: string[];
1430
1409
  organization: {
1431
1410
  id: string;
1432
- namespace: string;
1433
- organization_name: string;
1434
- organization_site: string;
1411
+ organization_name?: string | undefined;
1412
+ organization_site?: string | undefined;
1413
+ namespace?: string | undefined;
1435
1414
  permissions?: string[] | undefined;
1436
1415
  metadata?: {
1437
1416
  value: string;
@@ -1441,28 +1420,25 @@ declare const userAccountSchema: z.ZodObject<{
1441
1420
  };
1442
1421
  password: string;
1443
1422
  verified: boolean;
1423
+ email?: string | undefined;
1424
+ first_name?: string | undefined;
1425
+ last_name?: string | undefined;
1426
+ job_title?: string | undefined;
1427
+ externally_managed?: boolean | undefined;
1428
+ city?: string | undefined;
1429
+ state?: string | undefined;
1430
+ country?: string | undefined;
1431
+ user_type?: string | undefined;
1432
+ token_type?: string | undefined;
1433
+ avatar_image_id?: string | undefined;
1434
+ avatar_image_url?: string | undefined;
1435
+ origin_avatar_image_id?: string | undefined;
1436
+ bio?: string | undefined;
1437
+ phone_number?: string | undefined;
1438
+ twitter_handle?: string | undefined;
1439
+ linkedin_url?: string | undefined;
1444
1440
  description?: string | undefined;
1445
- }, {
1446
- name: string;
1447
- id: string;
1448
- email: string;
1449
- first_name: string;
1450
- last_name: string;
1451
- job_title: string;
1452
- externally_managed: boolean;
1453
- city: string;
1454
- state: string;
1455
- country: string;
1456
- user_type: string;
1457
- token_type: string;
1458
- avatar_image_id: string;
1459
- avatar_image_url: string;
1460
- origin_avatar_image_id: string;
1461
- bio: string;
1462
- phone_number: string;
1463
- twitter_handle: string;
1464
- linkedin_url: string;
1465
- preferences: {
1441
+ preferences?: {
1466
1442
  locale: string;
1467
1443
  timezone: string;
1468
1444
  language: string[];
@@ -1475,13 +1451,16 @@ declare const userAccountSchema: z.ZodObject<{
1475
1451
  LONG_TIME: string;
1476
1452
  };
1477
1453
  cpUpgrade?: string | undefined;
1478
- };
1454
+ } | undefined;
1455
+ }, {
1456
+ name: string;
1457
+ id: string;
1479
1458
  roles: string[];
1480
1459
  organization: {
1481
1460
  id: string;
1482
- namespace: string;
1483
- organization_name: string;
1484
- organization_site: string;
1461
+ organization_name?: string | undefined;
1462
+ organization_site?: string | undefined;
1463
+ namespace?: string | undefined;
1485
1464
  permissions?: string[] | undefined;
1486
1465
  metadata?: {
1487
1466
  value: string;
@@ -1491,7 +1470,38 @@ declare const userAccountSchema: z.ZodObject<{
1491
1470
  };
1492
1471
  password: string;
1493
1472
  verified: boolean;
1473
+ email?: string | undefined;
1474
+ first_name?: string | undefined;
1475
+ last_name?: string | undefined;
1476
+ job_title?: string | undefined;
1477
+ externally_managed?: boolean | undefined;
1478
+ city?: string | undefined;
1479
+ state?: string | undefined;
1480
+ country?: string | undefined;
1481
+ user_type?: string | undefined;
1482
+ token_type?: string | undefined;
1483
+ avatar_image_id?: string | undefined;
1484
+ avatar_image_url?: string | undefined;
1485
+ origin_avatar_image_id?: string | undefined;
1486
+ bio?: string | undefined;
1487
+ phone_number?: string | undefined;
1488
+ twitter_handle?: string | undefined;
1489
+ linkedin_url?: string | undefined;
1494
1490
  description?: string | undefined;
1491
+ preferences?: {
1492
+ locale: string;
1493
+ timezone: string;
1494
+ language: string[];
1495
+ datetime: {
1496
+ DATE: string;
1497
+ DATE_TIME: string;
1498
+ TIME: string;
1499
+ SHORT_DATE: string;
1500
+ LONG_DATETIME: string;
1501
+ LONG_TIME: string;
1502
+ };
1503
+ cpUpgrade?: string | undefined;
1504
+ } | undefined;
1495
1505
  }>;
1496
1506
  companyId: z.ZodNumber;
1497
1507
  companyName: z.ZodString;
@@ -1530,43 +1540,12 @@ declare const userAccountSchema: z.ZodObject<{
1530
1540
  identityUser: {
1531
1541
  name: string;
1532
1542
  id: string;
1533
- email: string;
1534
- first_name: string;
1535
- last_name: string;
1536
- job_title: string;
1537
- externally_managed: boolean;
1538
- city: string;
1539
- state: string;
1540
- country: string;
1541
- user_type: string;
1542
- token_type: string;
1543
- avatar_image_id: string;
1544
- avatar_image_url: string;
1545
- origin_avatar_image_id: string;
1546
- bio: string;
1547
- phone_number: string;
1548
- twitter_handle: string;
1549
- linkedin_url: string;
1550
- preferences: {
1551
- locale: string;
1552
- timezone: string;
1553
- language: string[];
1554
- datetime: {
1555
- DATE: string;
1556
- DATE_TIME: string;
1557
- TIME: string;
1558
- SHORT_DATE: string;
1559
- LONG_DATETIME: string;
1560
- LONG_TIME: string;
1561
- };
1562
- cpUpgrade?: string | undefined;
1563
- };
1564
1543
  roles: string[];
1565
1544
  organization: {
1566
1545
  id: string;
1567
- namespace: string;
1568
- organization_name: string;
1569
- organization_site: string;
1546
+ organization_name?: string | undefined;
1547
+ organization_site?: string | undefined;
1548
+ namespace?: string | undefined;
1570
1549
  permissions?: string[] | undefined;
1571
1550
  metadata?: {
1572
1551
  value: string;
@@ -1576,7 +1555,38 @@ declare const userAccountSchema: z.ZodObject<{
1576
1555
  };
1577
1556
  password: string;
1578
1557
  verified: boolean;
1558
+ email?: string | undefined;
1559
+ first_name?: string | undefined;
1560
+ last_name?: string | undefined;
1561
+ job_title?: string | undefined;
1562
+ externally_managed?: boolean | undefined;
1563
+ city?: string | undefined;
1564
+ state?: string | undefined;
1565
+ country?: string | undefined;
1566
+ user_type?: string | undefined;
1567
+ token_type?: string | undefined;
1568
+ avatar_image_id?: string | undefined;
1569
+ avatar_image_url?: string | undefined;
1570
+ origin_avatar_image_id?: string | undefined;
1571
+ bio?: string | undefined;
1572
+ phone_number?: string | undefined;
1573
+ twitter_handle?: string | undefined;
1574
+ linkedin_url?: string | undefined;
1579
1575
  description?: string | undefined;
1576
+ preferences?: {
1577
+ locale: string;
1578
+ timezone: string;
1579
+ language: string[];
1580
+ datetime: {
1581
+ DATE: string;
1582
+ DATE_TIME: string;
1583
+ TIME: string;
1584
+ SHORT_DATE: string;
1585
+ LONG_DATETIME: string;
1586
+ LONG_TIME: string;
1587
+ };
1588
+ cpUpgrade?: string | undefined;
1589
+ } | undefined;
1580
1590
  };
1581
1591
  retailer: boolean;
1582
1592
  supplier: boolean;
@@ -1602,43 +1612,12 @@ declare const userAccountSchema: z.ZodObject<{
1602
1612
  identityUser: {
1603
1613
  name: string;
1604
1614
  id: string;
1605
- email: string;
1606
- first_name: string;
1607
- last_name: string;
1608
- job_title: string;
1609
- externally_managed: boolean;
1610
- city: string;
1611
- state: string;
1612
- country: string;
1613
- user_type: string;
1614
- token_type: string;
1615
- avatar_image_id: string;
1616
- avatar_image_url: string;
1617
- origin_avatar_image_id: string;
1618
- bio: string;
1619
- phone_number: string;
1620
- twitter_handle: string;
1621
- linkedin_url: string;
1622
- preferences: {
1623
- locale: string;
1624
- timezone: string;
1625
- language: string[];
1626
- datetime: {
1627
- DATE: string;
1628
- DATE_TIME: string;
1629
- TIME: string;
1630
- SHORT_DATE: string;
1631
- LONG_DATETIME: string;
1632
- LONG_TIME: string;
1633
- };
1634
- cpUpgrade?: string | undefined;
1635
- };
1636
1615
  roles: string[];
1637
1616
  organization: {
1638
1617
  id: string;
1639
- namespace: string;
1640
- organization_name: string;
1641
- organization_site: string;
1618
+ organization_name?: string | undefined;
1619
+ organization_site?: string | undefined;
1620
+ namespace?: string | undefined;
1642
1621
  permissions?: string[] | undefined;
1643
1622
  metadata?: {
1644
1623
  value: string;
@@ -1648,7 +1627,38 @@ declare const userAccountSchema: z.ZodObject<{
1648
1627
  };
1649
1628
  password: string;
1650
1629
  verified: boolean;
1630
+ email?: string | undefined;
1631
+ first_name?: string | undefined;
1632
+ last_name?: string | undefined;
1633
+ job_title?: string | undefined;
1634
+ externally_managed?: boolean | undefined;
1635
+ city?: string | undefined;
1636
+ state?: string | undefined;
1637
+ country?: string | undefined;
1638
+ user_type?: string | undefined;
1639
+ token_type?: string | undefined;
1640
+ avatar_image_id?: string | undefined;
1641
+ avatar_image_url?: string | undefined;
1642
+ origin_avatar_image_id?: string | undefined;
1643
+ bio?: string | undefined;
1644
+ phone_number?: string | undefined;
1645
+ twitter_handle?: string | undefined;
1646
+ linkedin_url?: string | undefined;
1651
1647
  description?: string | undefined;
1648
+ preferences?: {
1649
+ locale: string;
1650
+ timezone: string;
1651
+ language: string[];
1652
+ datetime: {
1653
+ DATE: string;
1654
+ DATE_TIME: string;
1655
+ TIME: string;
1656
+ SHORT_DATE: string;
1657
+ LONG_DATETIME: string;
1658
+ LONG_TIME: string;
1659
+ };
1660
+ cpUpgrade?: string | undefined;
1661
+ } | undefined;
1652
1662
  };
1653
1663
  retailer: boolean;
1654
1664
  supplier: boolean;
@@ -1744,60 +1754,80 @@ declare const itemSearchViewSchema: z.ZodObject<{
1744
1754
  consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1745
1755
  status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1746
1756
  nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1747
- nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1757
+ nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1748
1758
  productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1749
1759
  productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1750
- }, "strip", z.ZodTypeAny, {
1751
- iteminfoid: string;
1752
- rn?: number | undefined;
1753
- tradingPartnerStages?: {
1760
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1761
+ rn: z.ZodOptional<z.ZodNumber>;
1762
+ iteminfoid: z.ZodString;
1763
+ tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1764
+ companyId: z.ZodNumber;
1765
+ companyName: z.ZodString;
1766
+ stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
1767
+ isValid: z.ZodBoolean;
1768
+ }, "strip", z.ZodTypeAny, {
1754
1769
  companyId: number;
1755
1770
  companyName: string;
1756
1771
  stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1757
1772
  isValid: boolean;
1758
- }[] | undefined;
1759
- gtin?: string | null | undefined;
1760
- catalogname?: string | null | undefined;
1761
- isbn?: string | null | undefined;
1762
- lastupdateddatestring?: string | null | undefined;
1763
- upc?: string | null | undefined;
1764
- productcodename?: string | null | undefined;
1765
- ean?: string | null | undefined;
1766
- selectioncodename?: string | null | undefined;
1767
- createddatestring?: string | null | undefined;
1768
- partnumber?: string | null | undefined;
1769
- consumeravailabledatestring?: string | null | undefined;
1770
- status?: string | null | undefined;
1771
- nrfcolorcode?: string[] | null | undefined;
1772
- nrfsizecode?: string | null | undefined;
1773
- productcolordescription?: string[] | null | undefined;
1774
- productsizedescription?: string[] | null | undefined;
1775
- }, {
1776
- iteminfoid: string;
1777
- rn?: number | undefined;
1778
- tradingPartnerStages?: {
1773
+ }, {
1779
1774
  companyId: number;
1780
1775
  companyName: string;
1781
1776
  stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1782
1777
  isValid: boolean;
1783
- }[] | undefined;
1784
- gtin?: string | null | undefined;
1785
- catalogname?: string | null | undefined;
1786
- isbn?: string | null | undefined;
1787
- lastupdateddatestring?: string | null | undefined;
1788
- upc?: string | null | undefined;
1789
- productcodename?: string | null | undefined;
1790
- ean?: string | null | undefined;
1791
- selectioncodename?: string | null | undefined;
1792
- createddatestring?: string | null | undefined;
1793
- partnumber?: string | null | undefined;
1794
- consumeravailabledatestring?: string | null | undefined;
1795
- status?: string | null | undefined;
1796
- nrfcolorcode?: string[] | null | undefined;
1797
- nrfsizecode?: string | null | undefined;
1798
- productcolordescription?: string[] | null | undefined;
1799
- productsizedescription?: string[] | null | undefined;
1800
- }>, "many">;
1778
+ }>, "many">>;
1779
+ gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1780
+ catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1781
+ isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1782
+ lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1783
+ upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1784
+ productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1785
+ ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1786
+ selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1787
+ createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1788
+ partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1789
+ consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1790
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1791
+ nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1792
+ nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1793
+ productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1794
+ productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1795
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1796
+ rn: z.ZodOptional<z.ZodNumber>;
1797
+ iteminfoid: z.ZodString;
1798
+ tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1799
+ companyId: z.ZodNumber;
1800
+ companyName: z.ZodString;
1801
+ stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
1802
+ isValid: z.ZodBoolean;
1803
+ }, "strip", z.ZodTypeAny, {
1804
+ companyId: number;
1805
+ companyName: string;
1806
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1807
+ isValid: boolean;
1808
+ }, {
1809
+ companyId: number;
1810
+ companyName: string;
1811
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1812
+ isValid: boolean;
1813
+ }>, "many">>;
1814
+ gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1815
+ catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1816
+ isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1817
+ lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1818
+ upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1819
+ productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1820
+ ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1821
+ selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1822
+ createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1823
+ partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1824
+ consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1825
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1826
+ nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1827
+ nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1828
+ productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1829
+ productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1830
+ }, z.ZodTypeAny, "passthrough">>, "many">;
1801
1831
  }, "strip", z.ZodTypeAny, {
1802
1832
  headers: {
1803
1833
  companyId: string;
@@ -1813,32 +1843,42 @@ declare const itemSearchViewSchema: z.ZodObject<{
1813
1843
  itemInfoId: string;
1814
1844
  status?: string | undefined;
1815
1845
  };
1816
- itemMaps: {
1817
- iteminfoid: string;
1818
- rn?: number | undefined;
1819
- tradingPartnerStages?: {
1846
+ itemMaps: z.objectOutputType<{
1847
+ rn: z.ZodOptional<z.ZodNumber>;
1848
+ iteminfoid: z.ZodString;
1849
+ tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1850
+ companyId: z.ZodNumber;
1851
+ companyName: z.ZodString;
1852
+ stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
1853
+ isValid: z.ZodBoolean;
1854
+ }, "strip", z.ZodTypeAny, {
1820
1855
  companyId: number;
1821
1856
  companyName: string;
1822
1857
  stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1823
1858
  isValid: boolean;
1824
- }[] | undefined;
1825
- gtin?: string | null | undefined;
1826
- catalogname?: string | null | undefined;
1827
- isbn?: string | null | undefined;
1828
- lastupdateddatestring?: string | null | undefined;
1829
- upc?: string | null | undefined;
1830
- productcodename?: string | null | undefined;
1831
- ean?: string | null | undefined;
1832
- selectioncodename?: string | null | undefined;
1833
- createddatestring?: string | null | undefined;
1834
- partnumber?: string | null | undefined;
1835
- consumeravailabledatestring?: string | null | undefined;
1836
- status?: string | null | undefined;
1837
- nrfcolorcode?: string[] | null | undefined;
1838
- nrfsizecode?: string | null | undefined;
1839
- productcolordescription?: string[] | null | undefined;
1840
- productsizedescription?: string[] | null | undefined;
1841
- }[];
1859
+ }, {
1860
+ companyId: number;
1861
+ companyName: string;
1862
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1863
+ isValid: boolean;
1864
+ }>, "many">>;
1865
+ gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1866
+ catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1867
+ isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1868
+ lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1869
+ upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1870
+ productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1871
+ ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1872
+ selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1873
+ createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1874
+ partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1875
+ consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1876
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1877
+ nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1878
+ nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1879
+ productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1880
+ productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1881
+ }, z.ZodTypeAny, "passthrough">[];
1842
1882
  }, {
1843
1883
  headers: {
1844
1884
  companyId: string;
@@ -1854,32 +1894,42 @@ declare const itemSearchViewSchema: z.ZodObject<{
1854
1894
  itemInfoId: string;
1855
1895
  status?: string | undefined;
1856
1896
  };
1857
- itemMaps: {
1858
- iteminfoid: string;
1859
- rn?: number | undefined;
1860
- tradingPartnerStages?: {
1897
+ itemMaps: z.objectInputType<{
1898
+ rn: z.ZodOptional<z.ZodNumber>;
1899
+ iteminfoid: z.ZodString;
1900
+ tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1901
+ companyId: z.ZodNumber;
1902
+ companyName: z.ZodString;
1903
+ stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
1904
+ isValid: z.ZodBoolean;
1905
+ }, "strip", z.ZodTypeAny, {
1861
1906
  companyId: number;
1862
1907
  companyName: string;
1863
1908
  stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1864
1909
  isValid: boolean;
1865
- }[] | undefined;
1866
- gtin?: string | null | undefined;
1867
- catalogname?: string | null | undefined;
1868
- isbn?: string | null | undefined;
1869
- lastupdateddatestring?: string | null | undefined;
1870
- upc?: string | null | undefined;
1871
- productcodename?: string | null | undefined;
1872
- ean?: string | null | undefined;
1873
- selectioncodename?: string | null | undefined;
1874
- createddatestring?: string | null | undefined;
1875
- partnumber?: string | null | undefined;
1876
- consumeravailabledatestring?: string | null | undefined;
1877
- status?: string | null | undefined;
1878
- nrfcolorcode?: string[] | null | undefined;
1879
- nrfsizecode?: string | null | undefined;
1880
- productcolordescription?: string[] | null | undefined;
1881
- productsizedescription?: string[] | null | undefined;
1882
- }[];
1910
+ }, {
1911
+ companyId: number;
1912
+ companyName: string;
1913
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1914
+ isValid: boolean;
1915
+ }>, "many">>;
1916
+ gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1917
+ catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1918
+ isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1919
+ lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1920
+ upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1921
+ productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1922
+ ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1923
+ selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1924
+ createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1925
+ partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1926
+ consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1927
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1928
+ nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1929
+ nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1930
+ productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1931
+ productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1932
+ }, z.ZodTypeAny, "passthrough">[];
1883
1933
  }>;
1884
1934
  hasNext: z.ZodBoolean;
1885
1935
  count: z.ZodNumber;
@@ -1901,32 +1951,42 @@ declare const itemSearchViewSchema: z.ZodObject<{
1901
1951
  itemInfoId: string;
1902
1952
  status?: string | undefined;
1903
1953
  };
1904
- itemMaps: {
1905
- iteminfoid: string;
1906
- rn?: number | undefined;
1907
- tradingPartnerStages?: {
1954
+ itemMaps: z.objectOutputType<{
1955
+ rn: z.ZodOptional<z.ZodNumber>;
1956
+ iteminfoid: z.ZodString;
1957
+ tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1958
+ companyId: z.ZodNumber;
1959
+ companyName: z.ZodString;
1960
+ stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
1961
+ isValid: z.ZodBoolean;
1962
+ }, "strip", z.ZodTypeAny, {
1908
1963
  companyId: number;
1909
1964
  companyName: string;
1910
1965
  stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1911
1966
  isValid: boolean;
1912
- }[] | undefined;
1913
- gtin?: string | null | undefined;
1914
- catalogname?: string | null | undefined;
1915
- isbn?: string | null | undefined;
1916
- lastupdateddatestring?: string | null | undefined;
1917
- upc?: string | null | undefined;
1918
- productcodename?: string | null | undefined;
1919
- ean?: string | null | undefined;
1920
- selectioncodename?: string | null | undefined;
1921
- createddatestring?: string | null | undefined;
1922
- partnumber?: string | null | undefined;
1923
- consumeravailabledatestring?: string | null | undefined;
1924
- status?: string | null | undefined;
1925
- nrfcolorcode?: string[] | null | undefined;
1926
- nrfsizecode?: string | null | undefined;
1927
- productcolordescription?: string[] | null | undefined;
1928
- productsizedescription?: string[] | null | undefined;
1929
- }[];
1967
+ }, {
1968
+ companyId: number;
1969
+ companyName: string;
1970
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1971
+ isValid: boolean;
1972
+ }>, "many">>;
1973
+ gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1974
+ catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1975
+ isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1976
+ lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1977
+ upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1978
+ productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1979
+ ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1980
+ selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1981
+ createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1982
+ partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1983
+ consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1984
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1985
+ nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1986
+ nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1987
+ productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1988
+ productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1989
+ }, z.ZodTypeAny, "passthrough">[];
1930
1990
  };
1931
1991
  }, {
1932
1992
  count: number;
@@ -1946,32 +2006,42 @@ declare const itemSearchViewSchema: z.ZodObject<{
1946
2006
  itemInfoId: string;
1947
2007
  status?: string | undefined;
1948
2008
  };
1949
- itemMaps: {
1950
- iteminfoid: string;
1951
- rn?: number | undefined;
1952
- tradingPartnerStages?: {
2009
+ itemMaps: z.objectInputType<{
2010
+ rn: z.ZodOptional<z.ZodNumber>;
2011
+ iteminfoid: z.ZodString;
2012
+ tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
2013
+ companyId: z.ZodNumber;
2014
+ companyName: z.ZodString;
2015
+ stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
2016
+ isValid: z.ZodBoolean;
2017
+ }, "strip", z.ZodTypeAny, {
1953
2018
  companyId: number;
1954
2019
  companyName: string;
1955
2020
  stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1956
2021
  isValid: boolean;
1957
- }[] | undefined;
1958
- gtin?: string | null | undefined;
1959
- catalogname?: string | null | undefined;
1960
- isbn?: string | null | undefined;
1961
- lastupdateddatestring?: string | null | undefined;
1962
- upc?: string | null | undefined;
1963
- productcodename?: string | null | undefined;
1964
- ean?: string | null | undefined;
1965
- selectioncodename?: string | null | undefined;
1966
- createddatestring?: string | null | undefined;
1967
- partnumber?: string | null | undefined;
1968
- consumeravailabledatestring?: string | null | undefined;
1969
- status?: string | null | undefined;
1970
- nrfcolorcode?: string[] | null | undefined;
1971
- nrfsizecode?: string | null | undefined;
1972
- productcolordescription?: string[] | null | undefined;
1973
- productsizedescription?: string[] | null | undefined;
1974
- }[];
2022
+ }, {
2023
+ companyId: number;
2024
+ companyName: string;
2025
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
2026
+ isValid: boolean;
2027
+ }>, "many">>;
2028
+ gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2029
+ catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2030
+ isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2031
+ lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2032
+ upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2033
+ productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2034
+ ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2035
+ selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2036
+ createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2037
+ partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2038
+ consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2039
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2040
+ nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
2041
+ nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
2042
+ productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
2043
+ productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
2044
+ }, z.ZodTypeAny, "passthrough">[];
1975
2045
  };
1976
2046
  }>;
1977
2047
  type ItemSearchView = z.infer<typeof itemSearchViewSchema>;
@@ -2934,7 +3004,7 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
2934
3004
  itemName: z.ZodNullable<z.ZodString>;
2935
3005
  itemErrorDetails: z.ZodArray<z.ZodObject<{
2936
3006
  errorMessage: z.ZodString;
2937
- attributeName: z.ZodString;
3007
+ attributeName: z.ZodNullable<z.ZodString>;
2938
3008
  tradingPartnerNames: z.ZodArray<z.ZodString, "many">;
2939
3009
  phases: z.ZodArray<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>, "many">;
2940
3010
  attributeDbNames: z.ZodArray<z.ZodString, "many">;
@@ -2956,7 +3026,7 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
2956
3026
  }>, "many">;
2957
3027
  repeatableGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2958
3028
  }, "strip", z.ZodTypeAny, {
2959
- attributeName: string;
3029
+ attributeName: string | null;
2960
3030
  tradingPartnerStages: {
2961
3031
  companyId: number;
2962
3032
  companyName: string;
@@ -2969,7 +3039,7 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
2969
3039
  attributeDbNames: string[];
2970
3040
  repeatableGroupId?: string | null | undefined;
2971
3041
  }, {
2972
- attributeName: string;
3042
+ attributeName: string | null;
2973
3043
  tradingPartnerStages: {
2974
3044
  companyId: number;
2975
3045
  companyName: string;
@@ -2986,7 +3056,7 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
2986
3056
  itemInfoId: number;
2987
3057
  itemName: string | null;
2988
3058
  itemErrorDetails: {
2989
- attributeName: string;
3059
+ attributeName: string | null;
2990
3060
  tradingPartnerStages: {
2991
3061
  companyId: number;
2992
3062
  companyName: string;
@@ -3008,7 +3078,7 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
3008
3078
  itemInfoId: number;
3009
3079
  itemName: string | null;
3010
3080
  itemErrorDetails: {
3011
- attributeName: string;
3081
+ attributeName: string | null;
3012
3082
  tradingPartnerStages: {
3013
3083
  companyId: number;
3014
3084
  companyName: string;
@@ -3029,4 +3099,4 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
3029
3099
  }>;
3030
3100
  type ItemErrorDetailsResult = z.infer<typeof itemErrorDetailsResultSchema>;
3031
3101
 
3032
- export { AsstClient as A, BASE_URLS as B, itemSearchViewSchema as C, itemDetailViewSchema as D, Export as E, localeSchema as F, spreadsheetTemplateSchema as G, tradingPartnerAccessByCompanyIdSchema as H, Import as I, userAccountSchema as J, itemErrorDetailsResultSchema as K, Locale as L, SpreadsheetTemplate as S, TradingPartnerAccessByCompanyId as T, UserAccount as U, VendorPartnerAttGroups as V, ImportsStatus as a, AttrProdType as b, ItemCategoriesSearch as c, AttributeMetaData as d, AttributesByCompany as e, AttributeDefinition as f, AttributeValidValues as g, ItemSearchView as h, ItemDetailView as i, ItemErrorDetailsResult as j, AsstClientOptions as k, AsstUrl as l, Env as m, ImportErrors as n, attrProdTypeSchema as o, envSchema as p, importErrorsSchema as q, importSchema as r, importsStatusSchema as s, exportSchema as t, itemCategoriesSearchSchema as u, vendorPartnerAttGroupsSchema as v, attributeDefinitionSchema as w, attributeMetaDataSchema as x, attributesByCompanySchema as y, attributeValidValuesSchema as z };
3102
+ export { AsstClient as A, BASE_URLS as B, itemSearchViewSchema as C, itemDetailViewSchema as D, Export as E, localeSchema as F, spreadsheetTemplateSchema as G, tradingPartnerAccessByCompanyIdSchema as H, ImportErrors as I, userAccountSchema as J, itemErrorDetailsResultSchema as K, Locale as L, SpreadsheetTemplate as S, TradingPartnerAccessByCompanyId as T, UserAccount as U, VendorPartnerAttGroups as V, Import as a, ImportsStatus as b, ItemCategoriesSearch as c, attrProdTypeSchema as d, ItemErrorDetailsResult as e, ItemSearchView as f, ItemDetailView as g, AttributeMetaData as h, AttributesByCompany as i, AttributeDefinition as j, AttributeValidValues as k, AttrProdType as l, AsstClientOptions as m, AsstUrl as n, Env as o, envSchema as p, importErrorsSchema as q, importSchema as r, importsStatusSchema as s, exportSchema as t, itemCategoriesSearchSchema as u, vendorPartnerAttGroupsSchema as v, attributeDefinitionSchema as w, attributeMetaDataSchema as x, attributesByCompanySchema as y, attributeValidValuesSchema as z };