@spscommerce/asst-api 0.2.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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;
@@ -293,19 +293,19 @@ declare const companyRelationshipUpsertBodySchema: z.ZodObject<{
293
293
  supplierId: z.ZodNumber;
294
294
  retailerId: z.ZodNumber;
295
295
  catalogId: z.ZodNumber;
296
- isActive: z.ZodBoolean;
296
+ active: z.ZodBoolean;
297
297
  applicationType: z.ZodDefault<z.ZodArray<z.ZodEnum<["ASSORTMENT", "ITEM-XREF"]>, "many">>;
298
298
  }, "strip", z.ZodTypeAny, {
299
- isActive: boolean;
300
299
  retailerId: number;
301
300
  supplierId: number;
302
301
  catalogId: number;
302
+ active: boolean;
303
303
  applicationType: ("ASSORTMENT" | "ITEM-XREF")[];
304
304
  }, {
305
- isActive: boolean;
306
305
  retailerId: number;
307
306
  supplierId: number;
308
307
  catalogId: number;
308
+ active: boolean;
309
309
  applicationType?: ("ASSORTMENT" | "ITEM-XREF")[] | undefined;
310
310
  }>;
311
311
  type CompanyRelationshipUpsertBody = z.infer<typeof companyRelationshipUpsertBodySchema>;
@@ -387,10 +387,10 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
387
387
  categoryid: number;
388
388
  encodedCategoryId: string;
389
389
  typeId: number;
390
+ description?: string | null | undefined;
390
391
  createdDate?: number | null | undefined;
391
392
  categorytimestamp?: number | null | undefined;
392
393
  categorykey?: string | null | undefined;
393
- description?: string | null | undefined;
394
394
  categoryCatalogName?: string | null | undefined;
395
395
  }, {
396
396
  type: string;
@@ -400,13 +400,14 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
400
400
  categoryid: number;
401
401
  encodedCategoryId: string;
402
402
  typeId: number;
403
+ description?: string | null | undefined;
403
404
  createdDate?: number | null | undefined;
404
405
  categorytimestamp?: number | null | undefined;
405
406
  categorykey?: string | null | undefined;
406
- description?: string | null | undefined;
407
407
  categoryCatalogName?: string | null | undefined;
408
408
  }>, "many">;
409
409
  }, "strip", z.ZodTypeAny, {
410
+ count: number;
410
411
  data: {
411
412
  type: string;
412
413
  name: string;
@@ -415,14 +416,14 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
415
416
  categoryid: number;
416
417
  encodedCategoryId: string;
417
418
  typeId: number;
419
+ description?: string | null | undefined;
418
420
  createdDate?: number | null | undefined;
419
421
  categorytimestamp?: number | null | undefined;
420
422
  categorykey?: string | null | undefined;
421
- description?: string | null | undefined;
422
423
  categoryCatalogName?: string | null | undefined;
423
424
  }[];
424
- count: number;
425
425
  }, {
426
+ count: number;
426
427
  data: {
427
428
  type: string;
428
429
  name: string;
@@ -431,13 +432,12 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
431
432
  categoryid: number;
432
433
  encodedCategoryId: string;
433
434
  typeId: number;
435
+ description?: string | null | undefined;
434
436
  createdDate?: number | null | undefined;
435
437
  categorytimestamp?: number | null | undefined;
436
438
  categorykey?: string | null | undefined;
437
- description?: string | null | undefined;
438
439
  categoryCatalogName?: string | null | undefined;
439
440
  }[];
440
- count: number;
441
441
  }>;
442
442
  type ItemCategoriesSearch = z.infer<typeof itemCategoriesSearchSchema>;
443
443
 
@@ -1009,6 +1009,9 @@ declare const attributeDefinitionSchema: z.ZodObject<{
1009
1009
  attrStorageId: number;
1010
1010
  storageName: string;
1011
1011
  };
1012
+ description?: string | undefined;
1013
+ orderWeight?: number | undefined;
1014
+ parentAttributeId?: number | undefined;
1012
1015
  attrRestrictions?: {
1013
1016
  repeatable: boolean;
1014
1017
  isDefault: boolean;
@@ -1027,8 +1030,6 @@ declare const attributeDefinitionSchema: z.ZodObject<{
1027
1030
  attrKeyPair: string;
1028
1031
  attrValueId?: number | undefined;
1029
1032
  }[] | undefined;
1030
- description?: string | undefined;
1031
- orderWeight?: number | undefined;
1032
1033
  parentAttribute?: {
1033
1034
  createdDate: number;
1034
1035
  createdBy: string;
@@ -1077,7 +1078,6 @@ declare const attributeDefinitionSchema: z.ZodObject<{
1077
1078
  description?: string | undefined;
1078
1079
  parentAttributeId?: number | undefined;
1079
1080
  } | undefined;
1080
- parentAttributeId?: number | undefined;
1081
1081
  }, {
1082
1082
  createdDate: number;
1083
1083
  createdBy: string;
@@ -1126,6 +1126,9 @@ declare const attributeDefinitionSchema: z.ZodObject<{
1126
1126
  attrStorageId: number;
1127
1127
  storageName: string;
1128
1128
  };
1129
+ description?: string | undefined;
1130
+ orderWeight?: number | undefined;
1131
+ parentAttributeId?: number | undefined;
1129
1132
  attrRestrictions?: {
1130
1133
  repeatable: boolean;
1131
1134
  isDefault: boolean;
@@ -1144,8 +1147,6 @@ declare const attributeDefinitionSchema: z.ZodObject<{
1144
1147
  attrKeyPair: string;
1145
1148
  attrValueId?: number | undefined;
1146
1149
  }[] | undefined;
1147
- description?: string | undefined;
1148
- orderWeight?: number | undefined;
1149
1150
  parentAttribute?: {
1150
1151
  createdDate: number;
1151
1152
  createdBy: string;
@@ -1194,7 +1195,6 @@ declare const attributeDefinitionSchema: z.ZodObject<{
1194
1195
  description?: string | undefined;
1195
1196
  parentAttributeId?: number | undefined;
1196
1197
  } | undefined;
1197
- parentAttributeId?: number | undefined;
1198
1198
  }>;
1199
1199
  type AttributeDefinition = z.infer<typeof attributeDefinitionSchema>;
1200
1200
 
@@ -1281,8 +1281,8 @@ declare const spreadsheetTemplateSchema: z.ZodObject<{
1281
1281
  createdAt: number;
1282
1282
  }[];
1283
1283
  createdBy?: string | null | undefined;
1284
- createdAt?: number | null | undefined;
1285
1284
  modifiedBy?: string | null | undefined;
1285
+ createdAt?: number | null | undefined;
1286
1286
  modifiedAt?: number | null | undefined;
1287
1287
  }, {
1288
1288
  name: string;
@@ -1296,8 +1296,8 @@ declare const spreadsheetTemplateSchema: z.ZodObject<{
1296
1296
  createdAt: number;
1297
1297
  }[];
1298
1298
  createdBy?: string | null | undefined;
1299
- createdAt?: number | null | undefined;
1300
1299
  modifiedBy?: string | null | undefined;
1300
+ createdAt?: number | null | undefined;
1301
1301
  modifiedAt?: number | null | undefined;
1302
1302
  }>;
1303
1303
  type SpreadsheetTemplate = z.infer<typeof spreadsheetTemplateSchema>;
@@ -1400,9 +1400,9 @@ declare const userAccountSchema: z.ZodObject<{
1400
1400
  }>>;
1401
1401
  }, "strip", z.ZodTypeAny, {
1402
1402
  id: string;
1403
+ namespace?: string | undefined;
1403
1404
  organization_name?: string | undefined;
1404
1405
  organization_site?: string | undefined;
1405
- namespace?: string | undefined;
1406
1406
  permissions?: string[] | undefined;
1407
1407
  metadata?: {
1408
1408
  value: string;
@@ -1411,9 +1411,9 @@ declare const userAccountSchema: z.ZodObject<{
1411
1411
  } | undefined;
1412
1412
  }, {
1413
1413
  id: string;
1414
+ namespace?: string | undefined;
1414
1415
  organization_name?: string | undefined;
1415
1416
  organization_site?: string | undefined;
1416
- namespace?: string | undefined;
1417
1417
  permissions?: string[] | undefined;
1418
1418
  metadata?: {
1419
1419
  value: string;
@@ -1429,9 +1429,9 @@ declare const userAccountSchema: z.ZodObject<{
1429
1429
  roles: string[];
1430
1430
  organization: {
1431
1431
  id: string;
1432
+ namespace?: string | undefined;
1432
1433
  organization_name?: string | undefined;
1433
1434
  organization_site?: string | undefined;
1434
- namespace?: string | undefined;
1435
1435
  permissions?: string[] | undefined;
1436
1436
  metadata?: {
1437
1437
  value: string;
@@ -1441,6 +1441,7 @@ declare const userAccountSchema: z.ZodObject<{
1441
1441
  };
1442
1442
  password: string;
1443
1443
  verified: boolean;
1444
+ description?: string | undefined;
1444
1445
  email?: string | undefined;
1445
1446
  first_name?: string | undefined;
1446
1447
  last_name?: string | undefined;
@@ -1458,7 +1459,6 @@ declare const userAccountSchema: z.ZodObject<{
1458
1459
  phone_number?: string | undefined;
1459
1460
  twitter_handle?: string | undefined;
1460
1461
  linkedin_url?: string | undefined;
1461
- description?: string | undefined;
1462
1462
  preferences?: {
1463
1463
  locale: string;
1464
1464
  timezone: string;
@@ -1479,9 +1479,9 @@ declare const userAccountSchema: z.ZodObject<{
1479
1479
  roles: string[];
1480
1480
  organization: {
1481
1481
  id: string;
1482
+ namespace?: string | undefined;
1482
1483
  organization_name?: string | undefined;
1483
1484
  organization_site?: string | undefined;
1484
- namespace?: string | undefined;
1485
1485
  permissions?: string[] | undefined;
1486
1486
  metadata?: {
1487
1487
  value: string;
@@ -1491,6 +1491,7 @@ declare const userAccountSchema: z.ZodObject<{
1491
1491
  };
1492
1492
  password: string;
1493
1493
  verified: boolean;
1494
+ description?: string | undefined;
1494
1495
  email?: string | undefined;
1495
1496
  first_name?: string | undefined;
1496
1497
  last_name?: string | undefined;
@@ -1508,7 +1509,6 @@ declare const userAccountSchema: z.ZodObject<{
1508
1509
  phone_number?: string | undefined;
1509
1510
  twitter_handle?: string | undefined;
1510
1511
  linkedin_url?: string | undefined;
1511
- description?: string | undefined;
1512
1512
  preferences?: {
1513
1513
  locale: string;
1514
1514
  timezone: string;
@@ -1564,9 +1564,9 @@ declare const userAccountSchema: z.ZodObject<{
1564
1564
  roles: string[];
1565
1565
  organization: {
1566
1566
  id: string;
1567
+ namespace?: string | undefined;
1567
1568
  organization_name?: string | undefined;
1568
1569
  organization_site?: string | undefined;
1569
- namespace?: string | undefined;
1570
1570
  permissions?: string[] | undefined;
1571
1571
  metadata?: {
1572
1572
  value: string;
@@ -1576,6 +1576,7 @@ declare const userAccountSchema: z.ZodObject<{
1576
1576
  };
1577
1577
  password: string;
1578
1578
  verified: boolean;
1579
+ description?: string | undefined;
1579
1580
  email?: string | undefined;
1580
1581
  first_name?: string | undefined;
1581
1582
  last_name?: string | undefined;
@@ -1593,7 +1594,6 @@ declare const userAccountSchema: z.ZodObject<{
1593
1594
  phone_number?: string | undefined;
1594
1595
  twitter_handle?: string | undefined;
1595
1596
  linkedin_url?: string | undefined;
1596
- description?: string | undefined;
1597
1597
  preferences?: {
1598
1598
  locale: string;
1599
1599
  timezone: string;
@@ -1636,9 +1636,9 @@ declare const userAccountSchema: z.ZodObject<{
1636
1636
  roles: string[];
1637
1637
  organization: {
1638
1638
  id: string;
1639
+ namespace?: string | undefined;
1639
1640
  organization_name?: string | undefined;
1640
1641
  organization_site?: string | undefined;
1641
- namespace?: string | undefined;
1642
1642
  permissions?: string[] | undefined;
1643
1643
  metadata?: {
1644
1644
  value: string;
@@ -1648,6 +1648,7 @@ declare const userAccountSchema: z.ZodObject<{
1648
1648
  };
1649
1649
  password: string;
1650
1650
  verified: boolean;
1651
+ description?: string | undefined;
1651
1652
  email?: string | undefined;
1652
1653
  first_name?: string | undefined;
1653
1654
  last_name?: string | undefined;
@@ -1665,7 +1666,6 @@ declare const userAccountSchema: z.ZodObject<{
1665
1666
  phone_number?: string | undefined;
1666
1667
  twitter_handle?: string | undefined;
1667
1668
  linkedin_url?: string | undefined;
1668
- description?: string | undefined;
1669
1669
  preferences?: {
1670
1670
  locale: string;
1671
1671
  timezone: string;
@@ -2080,102 +2080,102 @@ declare const itemDetailViewSchema: z.ZodObject<{
2080
2080
  name: z.ZodString;
2081
2081
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2082
2082
  id: z.ZodNumber;
2083
- companyId: z.ZodNumber;
2084
- type: z.ZodEnum<["AKA", "CATALOG", "EXPORT", "LABEL", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAXONOMY_ROOT"]>;
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"]>;
2085
2085
  }, "strip", z.ZodTypeAny, {
2086
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2086
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2087
2087
  name: string;
2088
- companyId: number;
2089
2088
  id: number;
2090
2089
  description?: string | null | undefined;
2090
+ companyId?: number | null | undefined;
2091
2091
  }, {
2092
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2092
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2093
2093
  name: string;
2094
- companyId: number;
2095
2094
  id: number;
2096
2095
  description?: string | null | undefined;
2096
+ companyId?: number | null | undefined;
2097
2097
  }>, "many">;
2098
2098
  selectionCodes: z.ZodArray<z.ZodObject<{
2099
2099
  name: z.ZodString;
2100
2100
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2101
2101
  id: z.ZodNumber;
2102
- companyId: z.ZodNumber;
2103
- type: z.ZodEnum<["AKA", "CATALOG", "EXPORT", "LABEL", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAXONOMY_ROOT"]>;
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"]>;
2104
2104
  }, "strip", z.ZodTypeAny, {
2105
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2105
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2106
2106
  name: string;
2107
- companyId: number;
2108
2107
  id: number;
2109
2108
  description?: string | null | undefined;
2109
+ companyId?: number | null | undefined;
2110
2110
  }, {
2111
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2111
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2112
2112
  name: string;
2113
- companyId: number;
2114
2113
  id: number;
2115
2114
  description?: string | null | undefined;
2115
+ companyId?: number | null | undefined;
2116
2116
  }>, "many">;
2117
2117
  productCodes: z.ZodArray<z.ZodObject<{
2118
2118
  name: z.ZodString;
2119
2119
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2120
2120
  id: z.ZodNumber;
2121
- companyId: z.ZodNumber;
2122
- type: z.ZodEnum<["AKA", "CATALOG", "EXPORT", "LABEL", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAXONOMY_ROOT"]>;
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"]>;
2123
2123
  }, "strip", z.ZodTypeAny, {
2124
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2124
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2125
2125
  name: string;
2126
- companyId: number;
2127
2126
  id: number;
2128
2127
  description?: string | null | undefined;
2128
+ companyId?: number | null | undefined;
2129
2129
  }, {
2130
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2130
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2131
2131
  name: string;
2132
- companyId: number;
2133
2132
  id: number;
2134
2133
  description?: string | null | undefined;
2134
+ companyId?: number | null | undefined;
2135
2135
  }>, "many">;
2136
2136
  }, "strip", z.ZodTypeAny, {
2137
2137
  catalogs: {
2138
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2138
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2139
2139
  name: string;
2140
- companyId: number;
2141
2140
  id: number;
2142
2141
  description?: string | null | undefined;
2142
+ companyId?: number | null | undefined;
2143
2143
  }[];
2144
2144
  selectionCodes: {
2145
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2145
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2146
2146
  name: string;
2147
- companyId: number;
2148
2147
  id: number;
2149
2148
  description?: string | null | undefined;
2149
+ companyId?: number | null | undefined;
2150
2150
  }[];
2151
2151
  productCodes: {
2152
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2152
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2153
2153
  name: string;
2154
- companyId: number;
2155
2154
  id: number;
2156
2155
  description?: string | null | undefined;
2156
+ companyId?: number | null | undefined;
2157
2157
  }[];
2158
2158
  }, {
2159
2159
  catalogs: {
2160
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2160
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2161
2161
  name: string;
2162
- companyId: number;
2163
2162
  id: number;
2164
2163
  description?: string | null | undefined;
2164
+ companyId?: number | null | undefined;
2165
2165
  }[];
2166
2166
  selectionCodes: {
2167
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2167
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2168
2168
  name: string;
2169
- companyId: number;
2170
2169
  id: number;
2171
2170
  description?: string | null | undefined;
2171
+ companyId?: number | null | undefined;
2172
2172
  }[];
2173
2173
  productCodes: {
2174
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2174
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2175
2175
  name: string;
2176
- companyId: number;
2177
2176
  id: number;
2178
2177
  description?: string | null | undefined;
2178
+ companyId?: number | null | undefined;
2179
2179
  }[];
2180
2180
  }>;
2181
2181
  groupedAttributes: z.ZodArray<z.ZodObject<{
@@ -2188,14 +2188,14 @@ declare const itemDetailViewSchema: z.ZodObject<{
2188
2188
  group: z.ZodString;
2189
2189
  orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
2190
2190
  }, "strip", z.ZodTypeAny, {
2191
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2191
+ value: string | number | string[] | number[] | null;
2192
2192
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2193
2193
  name: string;
2194
2194
  label: string;
2195
2195
  group: string;
2196
2196
  orderBy?: string | number | null | undefined;
2197
2197
  }, {
2198
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2198
+ value: string | number | string[] | number[] | null;
2199
2199
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2200
2200
  name: string;
2201
2201
  label: string;
@@ -2212,14 +2212,14 @@ declare const itemDetailViewSchema: z.ZodObject<{
2212
2212
  group: z.ZodString;
2213
2213
  orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
2214
2214
  }, "strip", z.ZodTypeAny, {
2215
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2215
+ value: string | number | string[] | number[] | null;
2216
2216
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2217
2217
  name: string;
2218
2218
  label: string;
2219
2219
  group: string;
2220
2220
  orderBy?: string | number | null | undefined;
2221
2221
  }, {
2222
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2222
+ value: string | number | string[] | number[] | null;
2223
2223
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2224
2224
  name: string;
2225
2225
  label: string;
@@ -2239,7 +2239,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
2239
2239
  }, "strip", z.ZodTypeAny, {
2240
2240
  type: string;
2241
2241
  rows: {
2242
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2242
+ value: string | number | string[] | number[] | null;
2243
2243
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2244
2244
  name: string;
2245
2245
  label: string;
@@ -2253,7 +2253,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
2253
2253
  }, {
2254
2254
  type: string;
2255
2255
  rows: {
2256
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2256
+ value: string | number | string[] | number[] | null;
2257
2257
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2258
2258
  name: string;
2259
2259
  label: string;
@@ -2268,7 +2268,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
2268
2268
  }, "strip", z.ZodTypeAny, {
2269
2269
  type: string;
2270
2270
  attributes: {
2271
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2271
+ value: string | number | string[] | number[] | null;
2272
2272
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2273
2273
  name: string;
2274
2274
  label: string;
@@ -2278,7 +2278,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
2278
2278
  attributeGroups: {
2279
2279
  type: string;
2280
2280
  rows: {
2281
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2281
+ value: string | number | string[] | number[] | null;
2282
2282
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2283
2283
  name: string;
2284
2284
  label: string;
@@ -2293,7 +2293,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
2293
2293
  }, {
2294
2294
  type: string;
2295
2295
  attributes: {
2296
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2296
+ value: string | number | string[] | number[] | null;
2297
2297
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2298
2298
  name: string;
2299
2299
  label: string;
@@ -2303,7 +2303,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
2303
2303
  attributeGroups: {
2304
2304
  type: string;
2305
2305
  rows: {
2306
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2306
+ value: string | number | string[] | number[] | null;
2307
2307
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2308
2308
  name: string;
2309
2309
  label: string;
@@ -2377,8 +2377,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
2377
2377
  currency: string;
2378
2378
  qualifier: string;
2379
2379
  id?: number | null | undefined;
2380
- priceDivision?: string | null | undefined;
2380
+ gtin?: string | null | undefined;
2381
2381
  iteminfoid?: number | null | undefined;
2382
+ priceDivision?: string | null | undefined;
2382
2383
  startdate?: string | null | undefined;
2383
2384
  enddate?: string | null | undefined;
2384
2385
  region?: string | null | undefined;
@@ -2389,7 +2390,6 @@ declare const itemDetailViewSchema: z.ZodObject<{
2389
2390
  range_type?: string | null | undefined;
2390
2391
  date_range_type?: string | null | undefined;
2391
2392
  min_range?: number | null | undefined;
2392
- gtin?: string | null | undefined;
2393
2393
  priceConditionDescription?: string | null | undefined;
2394
2394
  priceUnitQuantity?: number | null | undefined;
2395
2395
  priceUnitQuantityUOM?: string | null | undefined;
@@ -2398,8 +2398,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
2398
2398
  currency: string;
2399
2399
  qualifier: string;
2400
2400
  id?: number | null | undefined;
2401
- priceDivision?: string | null | undefined;
2401
+ gtin?: string | null | undefined;
2402
2402
  iteminfoid?: number | null | undefined;
2403
+ priceDivision?: string | null | undefined;
2403
2404
  startdate?: string | null | undefined;
2404
2405
  enddate?: string | null | undefined;
2405
2406
  region?: string | null | undefined;
@@ -2410,7 +2411,6 @@ declare const itemDetailViewSchema: z.ZodObject<{
2410
2411
  range_type?: string | null | undefined;
2411
2412
  date_range_type?: string | null | undefined;
2412
2413
  min_range?: number | null | undefined;
2413
- gtin?: string | null | undefined;
2414
2414
  priceConditionDescription?: string | null | undefined;
2415
2415
  priceUnitQuantity?: number | null | undefined;
2416
2416
  priceUnitQuantityUOM?: string | null | undefined;
@@ -2433,8 +2433,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
2433
2433
  currency: string;
2434
2434
  qualifier: string;
2435
2435
  id?: number | null | undefined;
2436
- priceDivision?: string | null | undefined;
2436
+ gtin?: string | null | undefined;
2437
2437
  iteminfoid?: number | null | undefined;
2438
+ priceDivision?: string | null | undefined;
2438
2439
  startdate?: string | null | undefined;
2439
2440
  enddate?: string | null | undefined;
2440
2441
  region?: string | null | undefined;
@@ -2445,7 +2446,6 @@ declare const itemDetailViewSchema: z.ZodObject<{
2445
2446
  range_type?: string | null | undefined;
2446
2447
  date_range_type?: string | null | undefined;
2447
2448
  min_range?: number | null | undefined;
2448
- gtin?: string | null | undefined;
2449
2449
  priceConditionDescription?: string | null | undefined;
2450
2450
  priceUnitQuantity?: number | null | undefined;
2451
2451
  priceUnitQuantityUOM?: string | null | undefined;
@@ -2468,8 +2468,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
2468
2468
  currency: string;
2469
2469
  qualifier: string;
2470
2470
  id?: number | null | undefined;
2471
- priceDivision?: string | null | undefined;
2471
+ gtin?: string | null | undefined;
2472
2472
  iteminfoid?: number | null | undefined;
2473
+ priceDivision?: string | null | undefined;
2473
2474
  startdate?: string | null | undefined;
2474
2475
  enddate?: string | null | undefined;
2475
2476
  region?: string | null | undefined;
@@ -2480,7 +2481,6 @@ declare const itemDetailViewSchema: z.ZodObject<{
2480
2481
  range_type?: string | null | undefined;
2481
2482
  date_range_type?: string | null | undefined;
2482
2483
  min_range?: number | null | undefined;
2483
- gtin?: string | null | undefined;
2484
2484
  priceConditionDescription?: string | null | undefined;
2485
2485
  priceUnitQuantity?: number | null | undefined;
2486
2486
  priceUnitQuantityUOM?: string | null | undefined;
@@ -2488,7 +2488,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
2488
2488
  }>, "many">;
2489
2489
  childComponentDetails: z.ZodArray<z.ZodObject<{
2490
2490
  itemInfoId: z.ZodNumber;
2491
- description: z.ZodString;
2491
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2492
2492
  saleable: z.ZodBoolean;
2493
2493
  valid: z.ZodBoolean;
2494
2494
  uniqueCriteria: z.ZodArray<z.ZodObject<{
@@ -2503,26 +2503,26 @@ declare const itemDetailViewSchema: z.ZodObject<{
2503
2503
  }>, "many">;
2504
2504
  }, "strip", z.ZodTypeAny, {
2505
2505
  valid: boolean;
2506
- description: string;
2507
2506
  itemInfoId: number;
2508
2507
  saleable: boolean;
2509
2508
  uniqueCriteria: {
2510
2509
  value: string;
2511
2510
  name: string;
2512
2511
  }[];
2512
+ description?: string | null | undefined;
2513
2513
  }, {
2514
2514
  valid: boolean;
2515
- description: string;
2516
2515
  itemInfoId: number;
2517
2516
  saleable: boolean;
2518
2517
  uniqueCriteria: {
2519
2518
  value: string;
2520
2519
  name: string;
2521
2520
  }[];
2521
+ description?: string | null | undefined;
2522
2522
  }>, "many">;
2523
2523
  parentComponentDetails: z.ZodArray<z.ZodObject<{
2524
2524
  itemInfoId: z.ZodNumber;
2525
- description: z.ZodString;
2525
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2526
2526
  saleable: z.ZodBoolean;
2527
2527
  valid: z.ZodBoolean;
2528
2528
  uniqueCriteria: z.ZodArray<z.ZodObject<{
@@ -2537,22 +2537,22 @@ declare const itemDetailViewSchema: z.ZodObject<{
2537
2537
  }>, "many">;
2538
2538
  }, "strip", z.ZodTypeAny, {
2539
2539
  valid: boolean;
2540
- description: string;
2541
2540
  itemInfoId: number;
2542
2541
  saleable: boolean;
2543
2542
  uniqueCriteria: {
2544
2543
  value: string;
2545
2544
  name: string;
2546
2545
  }[];
2546
+ description?: string | null | undefined;
2547
2547
  }, {
2548
2548
  valid: boolean;
2549
- description: string;
2550
2549
  itemInfoId: number;
2551
2550
  saleable: boolean;
2552
2551
  uniqueCriteria: {
2553
2552
  value: string;
2554
2553
  name: string;
2555
2554
  }[];
2555
+ description?: string | null | undefined;
2556
2556
  }>, "many">;
2557
2557
  locales: z.ZodArray<z.ZodString, "many">;
2558
2558
  }, "strip", z.ZodTypeAny, {
@@ -2564,31 +2564,31 @@ declare const itemDetailViewSchema: z.ZodObject<{
2564
2564
  identifiers: Record<string, any>;
2565
2565
  hierarchyDetails: {
2566
2566
  catalogs: {
2567
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2567
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2568
2568
  name: string;
2569
- companyId: number;
2570
2569
  id: number;
2571
2570
  description?: string | null | undefined;
2571
+ companyId?: number | null | undefined;
2572
2572
  }[];
2573
2573
  selectionCodes: {
2574
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2574
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2575
2575
  name: string;
2576
- companyId: number;
2577
2576
  id: number;
2578
2577
  description?: string | null | undefined;
2578
+ companyId?: number | null | undefined;
2579
2579
  }[];
2580
2580
  productCodes: {
2581
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2581
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2582
2582
  name: string;
2583
- companyId: number;
2584
2583
  id: number;
2585
2584
  description?: string | null | undefined;
2585
+ companyId?: number | null | undefined;
2586
2586
  }[];
2587
2587
  };
2588
2588
  groupedAttributes: {
2589
2589
  type: string;
2590
2590
  attributes: {
2591
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2591
+ value: string | number | string[] | number[] | null;
2592
2592
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2593
2593
  name: string;
2594
2594
  label: string;
@@ -2598,7 +2598,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
2598
2598
  attributeGroups: {
2599
2599
  type: string;
2600
2600
  rows: {
2601
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2601
+ value: string | number | string[] | number[] | null;
2602
2602
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2603
2603
  name: string;
2604
2604
  label: string;
@@ -2629,8 +2629,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
2629
2629
  currency: string;
2630
2630
  qualifier: string;
2631
2631
  id?: number | null | undefined;
2632
- priceDivision?: string | null | undefined;
2632
+ gtin?: string | null | undefined;
2633
2633
  iteminfoid?: number | null | undefined;
2634
+ priceDivision?: string | null | undefined;
2634
2635
  startdate?: string | null | undefined;
2635
2636
  enddate?: string | null | undefined;
2636
2637
  region?: string | null | undefined;
@@ -2641,7 +2642,6 @@ declare const itemDetailViewSchema: z.ZodObject<{
2641
2642
  range_type?: string | null | undefined;
2642
2643
  date_range_type?: string | null | undefined;
2643
2644
  min_range?: number | null | undefined;
2644
- gtin?: string | null | undefined;
2645
2645
  priceConditionDescription?: string | null | undefined;
2646
2646
  priceUnitQuantity?: number | null | undefined;
2647
2647
  priceUnitQuantityUOM?: string | null | undefined;
@@ -2649,23 +2649,23 @@ declare const itemDetailViewSchema: z.ZodObject<{
2649
2649
  }[];
2650
2650
  childComponentDetails: {
2651
2651
  valid: boolean;
2652
- description: string;
2653
2652
  itemInfoId: number;
2654
2653
  saleable: boolean;
2655
2654
  uniqueCriteria: {
2656
2655
  value: string;
2657
2656
  name: string;
2658
2657
  }[];
2658
+ description?: string | null | undefined;
2659
2659
  }[];
2660
2660
  parentComponentDetails: {
2661
2661
  valid: boolean;
2662
- description: string;
2663
2662
  itemInfoId: number;
2664
2663
  saleable: boolean;
2665
2664
  uniqueCriteria: {
2666
2665
  value: string;
2667
2666
  name: string;
2668
2667
  }[];
2668
+ description?: string | null | undefined;
2669
2669
  }[];
2670
2670
  locales: string[];
2671
2671
  }, {
@@ -2677,31 +2677,31 @@ declare const itemDetailViewSchema: z.ZodObject<{
2677
2677
  identifiers: Record<string, any>;
2678
2678
  hierarchyDetails: {
2679
2679
  catalogs: {
2680
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2680
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2681
2681
  name: string;
2682
- companyId: number;
2683
2682
  id: number;
2684
2683
  description?: string | null | undefined;
2684
+ companyId?: number | null | undefined;
2685
2685
  }[];
2686
2686
  selectionCodes: {
2687
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2687
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2688
2688
  name: string;
2689
- companyId: number;
2690
2689
  id: number;
2691
2690
  description?: string | null | undefined;
2691
+ companyId?: number | null | undefined;
2692
2692
  }[];
2693
2693
  productCodes: {
2694
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2694
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2695
2695
  name: string;
2696
- companyId: number;
2697
2696
  id: number;
2698
2697
  description?: string | null | undefined;
2698
+ companyId?: number | null | undefined;
2699
2699
  }[];
2700
2700
  };
2701
2701
  groupedAttributes: {
2702
2702
  type: string;
2703
2703
  attributes: {
2704
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2704
+ value: string | number | string[] | number[] | null;
2705
2705
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2706
2706
  name: string;
2707
2707
  label: string;
@@ -2711,7 +2711,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
2711
2711
  attributeGroups: {
2712
2712
  type: string;
2713
2713
  rows: {
2714
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2714
+ value: string | number | string[] | number[] | null;
2715
2715
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2716
2716
  name: string;
2717
2717
  label: string;
@@ -2742,8 +2742,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
2742
2742
  currency: string;
2743
2743
  qualifier: string;
2744
2744
  id?: number | null | undefined;
2745
- priceDivision?: string | null | undefined;
2745
+ gtin?: string | null | undefined;
2746
2746
  iteminfoid?: number | null | undefined;
2747
+ priceDivision?: string | null | undefined;
2747
2748
  startdate?: string | null | undefined;
2748
2749
  enddate?: string | null | undefined;
2749
2750
  region?: string | null | undefined;
@@ -2754,7 +2755,6 @@ declare const itemDetailViewSchema: z.ZodObject<{
2754
2755
  range_type?: string | null | undefined;
2755
2756
  date_range_type?: string | null | undefined;
2756
2757
  min_range?: number | null | undefined;
2757
- gtin?: string | null | undefined;
2758
2758
  priceConditionDescription?: string | null | undefined;
2759
2759
  priceUnitQuantity?: number | null | undefined;
2760
2760
  priceUnitQuantityUOM?: string | null | undefined;
@@ -2762,23 +2762,23 @@ declare const itemDetailViewSchema: z.ZodObject<{
2762
2762
  }[];
2763
2763
  childComponentDetails: {
2764
2764
  valid: boolean;
2765
- description: string;
2766
2765
  itemInfoId: number;
2767
2766
  saleable: boolean;
2768
2767
  uniqueCriteria: {
2769
2768
  value: string;
2770
2769
  name: string;
2771
2770
  }[];
2771
+ description?: string | null | undefined;
2772
2772
  }[];
2773
2773
  parentComponentDetails: {
2774
2774
  valid: boolean;
2775
- description: string;
2776
2775
  itemInfoId: number;
2777
2776
  saleable: boolean;
2778
2777
  uniqueCriteria: {
2779
2778
  value: string;
2780
2779
  name: string;
2781
2780
  }[];
2781
+ description?: string | null | undefined;
2782
2782
  }[];
2783
2783
  locales: string[];
2784
2784
  }>;
@@ -2792,31 +2792,31 @@ declare const itemDetailViewSchema: z.ZodObject<{
2792
2792
  identifiers: Record<string, any>;
2793
2793
  hierarchyDetails: {
2794
2794
  catalogs: {
2795
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2795
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2796
2796
  name: string;
2797
- companyId: number;
2798
2797
  id: number;
2799
2798
  description?: string | null | undefined;
2799
+ companyId?: number | null | undefined;
2800
2800
  }[];
2801
2801
  selectionCodes: {
2802
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2802
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2803
2803
  name: string;
2804
- companyId: number;
2805
2804
  id: number;
2806
2805
  description?: string | null | undefined;
2806
+ companyId?: number | null | undefined;
2807
2807
  }[];
2808
2808
  productCodes: {
2809
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2809
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2810
2810
  name: string;
2811
- companyId: number;
2812
2811
  id: number;
2813
2812
  description?: string | null | undefined;
2813
+ companyId?: number | null | undefined;
2814
2814
  }[];
2815
2815
  };
2816
2816
  groupedAttributes: {
2817
2817
  type: string;
2818
2818
  attributes: {
2819
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2819
+ value: string | number | string[] | number[] | null;
2820
2820
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2821
2821
  name: string;
2822
2822
  label: string;
@@ -2826,7 +2826,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
2826
2826
  attributeGroups: {
2827
2827
  type: string;
2828
2828
  rows: {
2829
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2829
+ value: string | number | string[] | number[] | null;
2830
2830
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2831
2831
  name: string;
2832
2832
  label: string;
@@ -2857,8 +2857,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
2857
2857
  currency: string;
2858
2858
  qualifier: string;
2859
2859
  id?: number | null | undefined;
2860
- priceDivision?: string | null | undefined;
2860
+ gtin?: string | null | undefined;
2861
2861
  iteminfoid?: number | null | undefined;
2862
+ priceDivision?: string | null | undefined;
2862
2863
  startdate?: string | null | undefined;
2863
2864
  enddate?: string | null | undefined;
2864
2865
  region?: string | null | undefined;
@@ -2869,7 +2870,6 @@ declare const itemDetailViewSchema: z.ZodObject<{
2869
2870
  range_type?: string | null | undefined;
2870
2871
  date_range_type?: string | null | undefined;
2871
2872
  min_range?: number | null | undefined;
2872
- gtin?: string | null | undefined;
2873
2873
  priceConditionDescription?: string | null | undefined;
2874
2874
  priceUnitQuantity?: number | null | undefined;
2875
2875
  priceUnitQuantityUOM?: string | null | undefined;
@@ -2877,23 +2877,23 @@ declare const itemDetailViewSchema: z.ZodObject<{
2877
2877
  }[];
2878
2878
  childComponentDetails: {
2879
2879
  valid: boolean;
2880
- description: string;
2881
2880
  itemInfoId: number;
2882
2881
  saleable: boolean;
2883
2882
  uniqueCriteria: {
2884
2883
  value: string;
2885
2884
  name: string;
2886
2885
  }[];
2886
+ description?: string | null | undefined;
2887
2887
  }[];
2888
2888
  parentComponentDetails: {
2889
2889
  valid: boolean;
2890
- description: string;
2891
2890
  itemInfoId: number;
2892
2891
  saleable: boolean;
2893
2892
  uniqueCriteria: {
2894
2893
  value: string;
2895
2894
  name: string;
2896
2895
  }[];
2896
+ description?: string | null | undefined;
2897
2897
  }[];
2898
2898
  locales: string[];
2899
2899
  };
@@ -2907,31 +2907,31 @@ declare const itemDetailViewSchema: z.ZodObject<{
2907
2907
  identifiers: Record<string, any>;
2908
2908
  hierarchyDetails: {
2909
2909
  catalogs: {
2910
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2910
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2911
2911
  name: string;
2912
- companyId: number;
2913
2912
  id: number;
2914
2913
  description?: string | null | undefined;
2914
+ companyId?: number | null | undefined;
2915
2915
  }[];
2916
2916
  selectionCodes: {
2917
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2917
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2918
2918
  name: string;
2919
- companyId: number;
2920
2919
  id: number;
2921
2920
  description?: string | null | undefined;
2921
+ companyId?: number | null | undefined;
2922
2922
  }[];
2923
2923
  productCodes: {
2924
- type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2924
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "ALIAS" | "EXPORT" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAG" | "TAXONOMY_ROOT";
2925
2925
  name: string;
2926
- companyId: number;
2927
2926
  id: number;
2928
2927
  description?: string | null | undefined;
2928
+ companyId?: number | null | undefined;
2929
2929
  }[];
2930
2930
  };
2931
2931
  groupedAttributes: {
2932
2932
  type: string;
2933
2933
  attributes: {
2934
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2934
+ value: string | number | string[] | number[] | null;
2935
2935
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2936
2936
  name: string;
2937
2937
  label: string;
@@ -2941,7 +2941,7 @@ declare const itemDetailViewSchema: z.ZodObject<{
2941
2941
  attributeGroups: {
2942
2942
  type: string;
2943
2943
  rows: {
2944
- value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2944
+ value: string | number | string[] | number[] | null;
2945
2945
  type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2946
2946
  name: string;
2947
2947
  label: string;
@@ -2972,8 +2972,9 @@ declare const itemDetailViewSchema: z.ZodObject<{
2972
2972
  currency: string;
2973
2973
  qualifier: string;
2974
2974
  id?: number | null | undefined;
2975
- priceDivision?: string | null | undefined;
2975
+ gtin?: string | null | undefined;
2976
2976
  iteminfoid?: number | null | undefined;
2977
+ priceDivision?: string | null | undefined;
2977
2978
  startdate?: string | null | undefined;
2978
2979
  enddate?: string | null | undefined;
2979
2980
  region?: string | null | undefined;
@@ -2984,7 +2985,6 @@ declare const itemDetailViewSchema: z.ZodObject<{
2984
2985
  range_type?: string | null | undefined;
2985
2986
  date_range_type?: string | null | undefined;
2986
2987
  min_range?: number | null | undefined;
2987
- gtin?: string | null | undefined;
2988
2988
  priceConditionDescription?: string | null | undefined;
2989
2989
  priceUnitQuantity?: number | null | undefined;
2990
2990
  priceUnitQuantityUOM?: string | null | undefined;
@@ -2992,23 +2992,23 @@ declare const itemDetailViewSchema: z.ZodObject<{
2992
2992
  }[];
2993
2993
  childComponentDetails: {
2994
2994
  valid: boolean;
2995
- description: string;
2996
2995
  itemInfoId: number;
2997
2996
  saleable: boolean;
2998
2997
  uniqueCriteria: {
2999
2998
  value: string;
3000
2999
  name: string;
3001
3000
  }[];
3001
+ description?: string | null | undefined;
3002
3002
  }[];
3003
3003
  parentComponentDetails: {
3004
3004
  valid: boolean;
3005
- description: string;
3006
3005
  itemInfoId: number;
3007
3006
  saleable: boolean;
3008
3007
  uniqueCriteria: {
3009
3008
  value: string;
3010
3009
  name: string;
3011
3010
  }[];
3011
+ description?: string | null | undefined;
3012
3012
  }[];
3013
3013
  locales: string[];
3014
3014
  };
@@ -3090,11 +3090,11 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
3090
3090
  attributeDbNames: string[];
3091
3091
  repeatableGroupId?: string | null | undefined;
3092
3092
  }[];
3093
+ gtin?: string | null | undefined;
3093
3094
  upc?: string | null | undefined;
3095
+ ean?: string | null | undefined;
3094
3096
  isbn?: string | null | undefined;
3095
- gtin?: string | null | undefined;
3096
3097
  partnumber?: string | null | undefined;
3097
- ean?: string | null | undefined;
3098
3098
  }, {
3099
3099
  itemInfoId: number;
3100
3100
  itemName: string | null;
@@ -3112,11 +3112,11 @@ declare const itemErrorDetailsResultSchema: z.ZodObject<{
3112
3112
  attributeDbNames: string[];
3113
3113
  repeatableGroupId?: string | null | undefined;
3114
3114
  }[];
3115
+ gtin?: string | null | undefined;
3115
3116
  upc?: string | null | undefined;
3117
+ ean?: string | null | undefined;
3116
3118
  isbn?: string | null | undefined;
3117
- gtin?: string | null | undefined;
3118
3119
  partnumber?: string | null | undefined;
3119
- ean?: string | null | undefined;
3120
3120
  }>;
3121
3121
  type ItemErrorDetailsResult = z.infer<typeof itemErrorDetailsResultSchema>;
3122
3122
 
@@ -3156,4 +3156,4 @@ declare const companyBriefByOrgSchema: z.ZodObject<{
3156
3156
  }>;
3157
3157
  type CompanyBriefByOrg = z.infer<typeof companyBriefByOrgSchema>;
3158
3158
 
3159
- export { AsstClient as A, BASE_URLS as B, CompanyBriefByOrg as C, attributeValidValuesSchema as D, Export as E, itemSearchViewSchema as F, itemDetailViewSchema as G, localeSchema as H, ImportErrors as I, spreadsheetTemplateSchema as J, tradingPartnerAccessByCompanyIdSchema as K, Locale as L, companyRelationshipUpsertBodySchema as M, userAccountSchema as N, itemErrorDetailsResultSchema as O, companyBriefByOrgSchema as P, SpreadsheetTemplate as S, TradingPartnerAccessByCompanyId as T, UserAccount as U, VendorPartnerAttGroups as V, Import as a, ImportsStatus as b, ItemCategoriesSearch as c, attrProdTypeSchema as d, CompanyRelationshipUpsertBody as e, ItemErrorDetailsResult as f, ItemSearchView as g, ItemDetailView as h, AttributeMetaData as i, AttributesByCompany as j, AttributeDefinition as k, AttributeValidValues as l, AttrProdType as m, envSchema as n, AsstClientOptions as o, AsstUrl as p, 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 };
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 };