@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.
- package/dist/{ItemErrorDetailsResult-c12c4eac.d.ts → ItemErrorDetailsResult-317fbe3e.d.ts} +368 -298
- package/dist/ItemStatusResponse-7f871d5a.d.ts +91 -0
- package/dist/{chunk-3JRE7YYE.js → chunk-HEFVXX2V.js} +86 -27
- package/dist/{chunk-OVOZIZA2.js → chunk-HG7MCO42.js} +81 -18
- package/dist/index.cjs +156 -42
- package/dist/index.d.ts +119 -6
- package/dist/index.js +4 -2
- package/dist/msw.cjs +162 -33
- package/dist/msw.d.ts +118 -61
- package/dist/msw.js +82 -11
- package/dist/{ItemErrorDetails-1614b511.d.ts → zod-1c4396f8.d.ts} +377 -241
- package/dist/zod.cjs +88 -26
- package/dist/zod.d.ts +2 -2
- package/dist/zod.js +9 -1
- package/package.json +1 -1
|
@@ -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
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
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
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
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
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
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
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
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
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
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
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
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
|
-
}, "
|
|
1751
|
-
|
|
1752
|
-
|
|
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
|
-
}
|
|
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
|
-
}
|
|
1784
|
-
gtin
|
|
1785
|
-
catalogname
|
|
1786
|
-
isbn
|
|
1787
|
-
lastupdateddatestring
|
|
1788
|
-
upc
|
|
1789
|
-
productcodename
|
|
1790
|
-
ean
|
|
1791
|
-
selectioncodename
|
|
1792
|
-
createddatestring
|
|
1793
|
-
partnumber
|
|
1794
|
-
consumeravailabledatestring
|
|
1795
|
-
status
|
|
1796
|
-
nrfcolorcode
|
|
1797
|
-
nrfsizecode
|
|
1798
|
-
productcolordescription
|
|
1799
|
-
productsizedescription
|
|
1800
|
-
}
|
|
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
|
-
|
|
1818
|
-
|
|
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
|
-
}
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
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
|
-
|
|
1859
|
-
|
|
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
|
-
}
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
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
|
-
|
|
1906
|
-
|
|
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
|
-
}
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
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
|
-
|
|
1951
|
-
|
|
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
|
-
}
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
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,
|
|
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 };
|