@spscommerce/asst-api 0.0.1-beta.1 → 0.0.1-beta.11

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.
Files changed (65) hide show
  1. package/dist/ItemCategoriesSearch-44b87663.d.ts +318 -0
  2. package/dist/ItemCategoriesSearch-e0870a34.d.ts +318 -0
  3. package/dist/ItemCategoriesSearch-e3298650.d.ts +319 -0
  4. package/dist/ItemCategoriesSearch-ec43591f.d.ts +319 -0
  5. package/dist/ItemCategory-14816deb.d.ts +99 -0
  6. package/dist/ItemErrorDetails-0eed9761.d.ts +3200 -0
  7. package/dist/ItemErrorDetails-1614b511.d.ts +3137 -0
  8. package/dist/ItemErrorDetails-1bd2821e.d.ts +3137 -0
  9. package/dist/ItemErrorDetails-b2c79d10.d.ts +3197 -0
  10. package/dist/ItemErrorDetails-ba155b70.d.ts +3269 -0
  11. package/dist/ItemErrorDetails-bc465036.d.ts +3200 -0
  12. package/dist/ItemErrorDetails-e6e400aa.d.ts +3197 -0
  13. package/dist/ItemErrorDetailsResult-0b4a628c.d.ts +3032 -0
  14. package/dist/ItemErrorDetailsResult-8317ab6e.d.ts +3092 -0
  15. package/dist/ItemErrorDetailsResult-859368da.d.ts +3032 -0
  16. package/dist/ItemErrorDetailsResult-9ac97c24.d.ts +3032 -0
  17. package/dist/ItemErrorDetailsResult-ae90f329.d.ts +3097 -0
  18. package/dist/ItemErrorDetailsResult-c12c4eac.d.ts +3032 -0
  19. package/dist/ItemErrorDetailsResult-c62caeae.d.ts +3092 -0
  20. package/dist/ItemErrorDetailsResult-fbc33a43.d.ts +3097 -0
  21. package/dist/ItemStatusResponse-7f871d5a.d.ts +91 -0
  22. package/dist/TradingPartnerAccessByCompanyId-29866586.d.ts +97 -0
  23. package/dist/TradingPartnerAccessByCompanyId-43f83fb6.d.ts +130 -0
  24. package/dist/TradingPartnerAccessByCompanyId-53b868a8.d.ts +125 -0
  25. package/dist/TradingPartnerAccessByCompanyId-b227f0c5.d.ts +125 -0
  26. package/dist/TradingPartnerAccessByCompanyId-e7a1d443.d.ts +129 -0
  27. package/dist/chunk-3CJG5LDN.js +360 -0
  28. package/dist/chunk-3FMMM7IS.js +80 -0
  29. package/dist/chunk-3JRE7YYE.js +4576 -0
  30. package/dist/chunk-4HWZ3JEH.js +328 -0
  31. package/dist/chunk-4WER3ZLX.js +4576 -0
  32. package/dist/chunk-5YWAQNT6.js +4634 -0
  33. package/dist/chunk-6ZNFOWTV.js +78 -0
  34. package/dist/chunk-CB3PVPHS.js +344 -0
  35. package/dist/chunk-ETURPA7W.js +326 -0
  36. package/dist/chunk-F3KCLICG.js +77 -0
  37. package/dist/chunk-FS6LHGAR.js +87 -0
  38. package/dist/chunk-G36FM5OA.js +327 -0
  39. package/dist/chunk-GDFX3WTX.js +78 -0
  40. package/dist/chunk-GSUSBCHT.js +4576 -0
  41. package/dist/chunk-IHIEBLQV.js +4576 -0
  42. package/dist/chunk-ITWMRXLD.js +328 -0
  43. package/dist/chunk-J3A66IGS.js +389 -0
  44. package/dist/chunk-LYMGZWSR.js +80 -0
  45. package/dist/chunk-N2OYWNHF.js +80 -0
  46. package/dist/chunk-OA6PO3QG.js +78 -0
  47. package/dist/chunk-OBXZRDPY.js +77 -0
  48. package/dist/chunk-OI47EFQH.js +82 -0
  49. package/dist/chunk-OVOZIZA2.js +326 -0
  50. package/dist/chunk-RRGAJ4ZS.js +4576 -0
  51. package/dist/chunk-T3UCSW2B.js +81 -0
  52. package/dist/chunk-VNFU2PUV.js +4577 -0
  53. package/dist/chunk-WN2FPUF3.js +4577 -0
  54. package/dist/chunk-XMNYZGXF.js +84 -0
  55. package/dist/chunk-YCQUK6KV.js +85 -0
  56. package/dist/index.cjs +1001 -84
  57. package/dist/index.d.ts +197 -46
  58. package/dist/index.js +23 -56
  59. package/dist/msw.cjs +1056 -65
  60. package/dist/msw.d.ts +638 -76
  61. package/dist/msw.js +317 -54
  62. package/dist/zod.cjs +812 -17
  63. package/dist/zod.d.ts +4 -2
  64. package/dist/zod.js +112 -52
  65. package/package.json +2 -3
@@ -0,0 +1,3092 @@
1
+ import * as ky_universal from 'ky-universal';
2
+ import { Options } from 'ky';
3
+ import { z } from 'zod';
4
+
5
+ declare const baseUrlsSchema: z.ZodObject<{
6
+ local: z.ZodLiteral<"https://localhost:8443">;
7
+ test: z.ZodLiteral<"https://integration.api.spscommerce.com/assortment/gateway">;
8
+ prod: z.ZodLiteral<"https://api.spscommerce.com/assortment/gateway">;
9
+ }, "strip", z.ZodTypeAny, {
10
+ local: "https://localhost:8443";
11
+ test: "https://integration.api.spscommerce.com/assortment/gateway";
12
+ prod: "https://api.spscommerce.com/assortment/gateway";
13
+ }, {
14
+ local: "https://localhost:8443";
15
+ test: "https://integration.api.spscommerce.com/assortment/gateway";
16
+ prod: "https://api.spscommerce.com/assortment/gateway";
17
+ }>;
18
+ type BaseUrls = z.infer<typeof baseUrlsSchema>;
19
+ declare const BASE_URLS: BaseUrls;
20
+ declare const envSchema: z.ZodEnum<["local", "test", "prod"]>;
21
+ type Env = z.infer<typeof envSchema>;
22
+ type AsstUrl = BaseUrls[Env];
23
+ interface AsstClientOptions extends Options {
24
+ prefixUrl?: AsstUrl;
25
+ }
26
+ type Input = string | URL | Request;
27
+ type Listener = (config: AsstClientOptions) => void;
28
+ declare class AsstClient {
29
+ #private;
30
+ constructor(options?: AsstClientOptions);
31
+ updateConfig(options: AsstClientOptions): void;
32
+ getBaseUrl(): AsstUrl;
33
+ /**
34
+ * Subscribe to config changes. The callback will be immediately invoked with the current config.
35
+ * @param subscriptionCallback Function that will be called with the new config every time it is changed
36
+ * @returns Function to unsubscribe to config changes
37
+ */
38
+ subscribeToConfigChange(listener: Listener): () => boolean;
39
+ get(url: Input, options?: AsstClientOptions): ky_universal.ResponsePromise;
40
+ post(url: Input, options?: AsstClientOptions): ky_universal.ResponsePromise;
41
+ put(url: Input, options?: AsstClientOptions): ky_universal.ResponsePromise;
42
+ patch(url: Input, options?: AsstClientOptions): ky_universal.ResponsePromise;
43
+ head(url: Input, options?: AsstClientOptions): ky_universal.ResponsePromise;
44
+ delete(url: Input, options?: AsstClientOptions): ky_universal.ResponsePromise;
45
+ }
46
+
47
+ declare const importSchema: z.ZodObject<{
48
+ count: z.ZodNumber;
49
+ imports: z.ZodArray<z.ZodObject<{
50
+ completedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
51
+ errorCount: z.ZodNumber;
52
+ importId: z.ZodNumber;
53
+ name: z.ZodString;
54
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
55
+ status: z.ZodString;
56
+ uploadedAt: z.ZodString;
57
+ }, "strip", z.ZodTypeAny, {
58
+ status: string;
59
+ errorCount: number;
60
+ importId: number;
61
+ name: string;
62
+ uploadedAt: string;
63
+ completedAt?: number | null | undefined;
64
+ startedAt?: string | null | undefined;
65
+ }, {
66
+ status: string;
67
+ errorCount: number;
68
+ importId: number;
69
+ name: string;
70
+ uploadedAt: string;
71
+ completedAt?: number | null | undefined;
72
+ startedAt?: string | null | undefined;
73
+ }>, "many">;
74
+ }, "strip", z.ZodTypeAny, {
75
+ count: number;
76
+ imports: {
77
+ status: string;
78
+ errorCount: number;
79
+ importId: number;
80
+ name: string;
81
+ uploadedAt: string;
82
+ completedAt?: number | null | undefined;
83
+ startedAt?: string | null | undefined;
84
+ }[];
85
+ }, {
86
+ count: number;
87
+ imports: {
88
+ status: string;
89
+ errorCount: number;
90
+ importId: number;
91
+ name: string;
92
+ uploadedAt: string;
93
+ completedAt?: number | null | undefined;
94
+ startedAt?: string | null | undefined;
95
+ }[];
96
+ }>;
97
+ type Import = z.infer<typeof importSchema>;
98
+
99
+ declare const importErrorsSchema: z.ZodObject<{
100
+ count: z.ZodNumber;
101
+ errors: z.ZodArray<z.ZodObject<{
102
+ attribute: z.ZodOptional<z.ZodNullable<z.ZodString>>;
103
+ description: z.ZodString;
104
+ importErrorId: z.ZodNumber;
105
+ row: z.ZodNumber;
106
+ }, "strip", z.ZodTypeAny, {
107
+ description: string;
108
+ importErrorId: number;
109
+ row: number;
110
+ attribute?: string | null | undefined;
111
+ }, {
112
+ description: string;
113
+ importErrorId: number;
114
+ row: number;
115
+ attribute?: string | null | undefined;
116
+ }>, "many">;
117
+ hasNext: z.ZodBoolean;
118
+ importId: z.ZodNumber;
119
+ totalCount: z.ZodNumber;
120
+ }, "strip", z.ZodTypeAny, {
121
+ importId: number;
122
+ count: number;
123
+ errors: {
124
+ description: string;
125
+ importErrorId: number;
126
+ row: number;
127
+ attribute?: string | null | undefined;
128
+ }[];
129
+ hasNext: boolean;
130
+ totalCount: number;
131
+ }, {
132
+ importId: number;
133
+ count: number;
134
+ errors: {
135
+ description: string;
136
+ importErrorId: number;
137
+ row: number;
138
+ attribute?: string | null | undefined;
139
+ }[];
140
+ hasNext: boolean;
141
+ totalCount: number;
142
+ }>;
143
+ type ImportErrors = z.infer<typeof importErrorsSchema>;
144
+
145
+ declare const importsStatusSchema: z.ZodObject<{
146
+ completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
147
+ docInEventId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
148
+ errorCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
149
+ importId: z.ZodNumber;
150
+ invalidItemCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
151
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
152
+ status: z.ZodEnum<["QUEUED_FOR_IMPORT", "IN_PROGRESS", "DOC_FAILED", "VALIDATION_FAILED", "COMPLETED"]>;
153
+ totalItemCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
154
+ validItemCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
155
+ }, "strip", z.ZodTypeAny, {
156
+ status: "QUEUED_FOR_IMPORT" | "IN_PROGRESS" | "DOC_FAILED" | "VALIDATION_FAILED" | "COMPLETED";
157
+ importId: number;
158
+ completedAt?: string | null | undefined;
159
+ docInEventId?: string | null | undefined;
160
+ errorCount?: number | null | undefined;
161
+ invalidItemCount?: number | null | undefined;
162
+ name?: string | null | undefined;
163
+ totalItemCount?: number | null | undefined;
164
+ validItemCount?: number | null | undefined;
165
+ }, {
166
+ status: "QUEUED_FOR_IMPORT" | "IN_PROGRESS" | "DOC_FAILED" | "VALIDATION_FAILED" | "COMPLETED";
167
+ importId: number;
168
+ completedAt?: string | null | undefined;
169
+ docInEventId?: string | null | undefined;
170
+ errorCount?: number | null | undefined;
171
+ invalidItemCount?: number | null | undefined;
172
+ name?: string | null | undefined;
173
+ totalItemCount?: number | null | undefined;
174
+ validItemCount?: number | null | undefined;
175
+ }>;
176
+ type ImportsStatus = z.infer<typeof importsStatusSchema>;
177
+
178
+ declare const vendorPartnerAttGroupsSchema: z.ZodObject<{
179
+ partnerCompanyId: z.ZodNumber;
180
+ partnerCompanyName: z.ZodString;
181
+ partnerAttributeGroups: z.ZodArray<z.ZodNumber, "many">;
182
+ }, "strip", z.ZodTypeAny, {
183
+ partnerCompanyId: number;
184
+ partnerCompanyName: string;
185
+ partnerAttributeGroups: number[];
186
+ }, {
187
+ partnerCompanyId: number;
188
+ partnerCompanyName: string;
189
+ partnerAttributeGroups: number[];
190
+ }>;
191
+ type VendorPartnerAttGroups = z.infer<typeof vendorPartnerAttGroupsSchema>;
192
+
193
+ declare const exportSchema: z.ZodObject<{
194
+ exportName: z.ZodString;
195
+ exportDescription: z.ZodString;
196
+ isActive: z.ZodBoolean;
197
+ exportType: z.ZodEnum<["ALL", "UPDATES", "DELTAS_UPDATE", "NO_BUYER_PART_NUMBER"]>;
198
+ exportFrequency: z.ZodEnum<["IMMEDIATE", "ONETIME", "DAILY", "WEEKLY", "MONTHLY"]>;
199
+ includeValidAttributes: z.ZodOptional<z.ZodBoolean>;
200
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
201
+ dayOfWeek: z.ZodOptional<z.ZodEnum<["MON", "TUE", "WED", "THU", "FRI", "SAT", "SUN"]>>;
202
+ hourOfDay: z.ZodOptional<z.ZodNumber>;
203
+ date: z.ZodOptional<z.ZodString>;
204
+ catalogIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
205
+ itemInfoIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
206
+ excludeItemInfoIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
207
+ selectionCodeIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
208
+ productCodeIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
209
+ productTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
210
+ deliveryType: z.ZodOptional<z.ZodString>;
211
+ spreadsheetTemplateId: z.ZodOptional<z.ZodNumber>;
212
+ emailAddresses: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
213
+ subjectLine: z.ZodOptional<z.ZodString>;
214
+ additionalLocales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
215
+ }, "strip", z.ZodTypeAny, {
216
+ exportName: string;
217
+ exportDescription: string;
218
+ isActive: boolean;
219
+ exportType: "ALL" | "UPDATES" | "DELTAS_UPDATE" | "NO_BUYER_PART_NUMBER";
220
+ exportFrequency: "IMMEDIATE" | "ONETIME" | "DAILY" | "WEEKLY" | "MONTHLY";
221
+ includeValidAttributes?: boolean | undefined;
222
+ dayOfMonth?: number | undefined;
223
+ dayOfWeek?: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN" | undefined;
224
+ hourOfDay?: number | undefined;
225
+ date?: string | undefined;
226
+ catalogIds?: number[] | undefined;
227
+ itemInfoIds?: number[] | undefined;
228
+ excludeItemInfoIds?: number[] | undefined;
229
+ selectionCodeIds?: number[] | undefined;
230
+ productCodeIds?: number[] | undefined;
231
+ productTypes?: string[] | undefined;
232
+ deliveryType?: string | undefined;
233
+ spreadsheetTemplateId?: number | undefined;
234
+ emailAddresses?: string[] | undefined;
235
+ subjectLine?: string | undefined;
236
+ additionalLocales?: string[] | undefined;
237
+ }, {
238
+ exportName: string;
239
+ exportDescription: string;
240
+ isActive: boolean;
241
+ exportType: "ALL" | "UPDATES" | "DELTAS_UPDATE" | "NO_BUYER_PART_NUMBER";
242
+ exportFrequency: "IMMEDIATE" | "ONETIME" | "DAILY" | "WEEKLY" | "MONTHLY";
243
+ includeValidAttributes?: boolean | undefined;
244
+ dayOfMonth?: number | undefined;
245
+ dayOfWeek?: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN" | undefined;
246
+ hourOfDay?: number | undefined;
247
+ date?: string | undefined;
248
+ catalogIds?: number[] | undefined;
249
+ itemInfoIds?: number[] | undefined;
250
+ excludeItemInfoIds?: number[] | undefined;
251
+ selectionCodeIds?: number[] | undefined;
252
+ productCodeIds?: number[] | undefined;
253
+ productTypes?: string[] | undefined;
254
+ deliveryType?: string | undefined;
255
+ spreadsheetTemplateId?: number | undefined;
256
+ emailAddresses?: string[] | undefined;
257
+ subjectLine?: string | undefined;
258
+ additionalLocales?: string[] | undefined;
259
+ }>;
260
+ type Export = z.infer<typeof exportSchema>;
261
+
262
+ declare const attrProdTypeSchema: z.ZodObject<{
263
+ attrProdTypeId: z.ZodNumber;
264
+ productType: z.ZodString;
265
+ description: z.ZodString;
266
+ createdDate: z.ZodNumber;
267
+ createdBy: z.ZodString;
268
+ modifiedDate: z.ZodOptional<z.ZodNumber>;
269
+ modifiedBy: z.ZodOptional<z.ZodString>;
270
+ retailerId: z.ZodOptional<z.ZodNumber>;
271
+ }, "strip", z.ZodTypeAny, {
272
+ description: string;
273
+ attrProdTypeId: number;
274
+ productType: string;
275
+ createdDate: number;
276
+ createdBy: string;
277
+ modifiedDate?: number | undefined;
278
+ modifiedBy?: string | undefined;
279
+ retailerId?: number | undefined;
280
+ }, {
281
+ description: string;
282
+ attrProdTypeId: number;
283
+ productType: string;
284
+ createdDate: number;
285
+ createdBy: string;
286
+ modifiedDate?: number | undefined;
287
+ modifiedBy?: string | undefined;
288
+ retailerId?: number | undefined;
289
+ }>;
290
+ type AttrProdType = z.infer<typeof attrProdTypeSchema>;
291
+
292
+ declare const tradingPartnerAccessByCompanyIdSchema: z.ZodObject<{
293
+ companyId: z.ZodNumber;
294
+ companyType: z.ZodString;
295
+ identityOrgId: z.ZodString;
296
+ companyName: z.ZodString;
297
+ count: z.ZodNumber;
298
+ connections: z.ZodArray<z.ZodObject<{
299
+ catalog_id: z.ZodNumber;
300
+ catalog_name: z.ZodNullable<z.ZodString>;
301
+ partner_company_name: z.ZodString;
302
+ partner_company_id: z.ZodNumber;
303
+ }, "strip", z.ZodTypeAny, {
304
+ catalog_id: number;
305
+ catalog_name: string | null;
306
+ partner_company_name: string;
307
+ partner_company_id: number;
308
+ }, {
309
+ catalog_id: number;
310
+ catalog_name: string | null;
311
+ partner_company_name: string;
312
+ partner_company_id: number;
313
+ }>, "many">;
314
+ }, "strip", z.ZodTypeAny, {
315
+ count: number;
316
+ companyId: number;
317
+ companyType: string;
318
+ identityOrgId: string;
319
+ companyName: string;
320
+ connections: {
321
+ catalog_id: number;
322
+ catalog_name: string | null;
323
+ partner_company_name: string;
324
+ partner_company_id: number;
325
+ }[];
326
+ }, {
327
+ count: number;
328
+ companyId: number;
329
+ companyType: string;
330
+ identityOrgId: string;
331
+ companyName: string;
332
+ connections: {
333
+ catalog_id: number;
334
+ catalog_name: string | null;
335
+ partner_company_name: string;
336
+ partner_company_id: number;
337
+ }[];
338
+ }>;
339
+ type TradingPartnerAccessByCompanyId = z.infer<typeof tradingPartnerAccessByCompanyIdSchema>;
340
+
341
+ declare const itemCategoriesSearchSchema: z.ZodObject<{
342
+ count: z.ZodNumber;
343
+ data: z.ZodArray<z.ZodObject<{
344
+ categoryid: z.ZodNumber;
345
+ companyId: z.ZodNumber;
346
+ name: z.ZodString;
347
+ isActive: z.ZodNumber;
348
+ createdDate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
349
+ categorytimestamp: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
350
+ typeId: z.ZodNumber;
351
+ type: z.ZodString;
352
+ categorykey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
353
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
354
+ categoryCatalogName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
355
+ }, "strip", z.ZodTypeAny, {
356
+ type: string;
357
+ name: string;
358
+ isActive: number;
359
+ companyId: number;
360
+ categoryid: number;
361
+ typeId: number;
362
+ createdDate?: number | null | undefined;
363
+ categorytimestamp?: number | null | undefined;
364
+ categorykey?: string | null | undefined;
365
+ description?: string | null | undefined;
366
+ categoryCatalogName?: string | null | undefined;
367
+ }, {
368
+ type: string;
369
+ name: string;
370
+ isActive: number;
371
+ companyId: number;
372
+ categoryid: number;
373
+ typeId: number;
374
+ createdDate?: number | null | undefined;
375
+ categorytimestamp?: number | null | undefined;
376
+ categorykey?: string | null | undefined;
377
+ description?: string | null | undefined;
378
+ categoryCatalogName?: string | null | undefined;
379
+ }>, "many">;
380
+ }, "strip", z.ZodTypeAny, {
381
+ data: {
382
+ type: string;
383
+ name: string;
384
+ isActive: number;
385
+ companyId: number;
386
+ categoryid: number;
387
+ typeId: number;
388
+ createdDate?: number | null | undefined;
389
+ categorytimestamp?: number | null | undefined;
390
+ categorykey?: string | null | undefined;
391
+ description?: string | null | undefined;
392
+ categoryCatalogName?: string | null | undefined;
393
+ }[];
394
+ count: number;
395
+ }, {
396
+ data: {
397
+ type: string;
398
+ name: string;
399
+ isActive: number;
400
+ companyId: number;
401
+ categoryid: number;
402
+ typeId: number;
403
+ createdDate?: number | null | undefined;
404
+ categorytimestamp?: number | null | undefined;
405
+ categorykey?: string | null | undefined;
406
+ description?: string | null | undefined;
407
+ categoryCatalogName?: string | null | undefined;
408
+ }[];
409
+ count: number;
410
+ }>;
411
+ type ItemCategoriesSearch = z.infer<typeof itemCategoriesSearchSchema>;
412
+
413
+ declare const attributeMetaDataSchema: z.ZodObject<{
414
+ dbName: z.ZodString;
415
+ label: z.ZodString;
416
+ group: z.ZodString;
417
+ aliases: z.ZodArray<z.ZodString, "many">;
418
+ orderBy: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
419
+ type: z.ZodString;
420
+ storageType: z.ZodString;
421
+ rsxPath: z.ZodString;
422
+ indexed: z.ZodBoolean;
423
+ repeatable: z.ZodBoolean;
424
+ extended: z.ZodBoolean;
425
+ hybrid: z.ZodBoolean;
426
+ userVisible: z.ZodBoolean;
427
+ retailerOwnedId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
428
+ }, "strip", z.ZodTypeAny, {
429
+ type: string;
430
+ label: string;
431
+ dbName: string;
432
+ group: string;
433
+ aliases: string[];
434
+ orderBy: string | number;
435
+ storageType: string;
436
+ rsxPath: string;
437
+ indexed: boolean;
438
+ repeatable: boolean;
439
+ extended: boolean;
440
+ hybrid: boolean;
441
+ userVisible: boolean;
442
+ retailerOwnedId?: number | null | undefined;
443
+ }, {
444
+ type: string;
445
+ label: string;
446
+ dbName: string;
447
+ group: string;
448
+ aliases: string[];
449
+ orderBy: string | number;
450
+ storageType: string;
451
+ rsxPath: string;
452
+ indexed: boolean;
453
+ repeatable: boolean;
454
+ extended: boolean;
455
+ hybrid: boolean;
456
+ userVisible: boolean;
457
+ retailerOwnedId?: number | null | undefined;
458
+ }>;
459
+ type AttributeMetaData = z.infer<typeof attributeMetaDataSchema>;
460
+
461
+ declare const attributesByCompanySchema: z.ZodObject<{
462
+ next: z.ZodOptional<z.ZodNullable<z.ZodString>>;
463
+ previous: z.ZodOptional<z.ZodNullable<z.ZodString>>;
464
+ count: z.ZodNumber;
465
+ results: z.ZodArray<z.ZodObject<{
466
+ attributeId: z.ZodNumber;
467
+ attributeName: z.ZodString;
468
+ displayName: z.ZodString;
469
+ modifiedBy: z.ZodString;
470
+ modifiedDate: z.ZodNumber;
471
+ retailerOwnedId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
472
+ clusterAttrGroupId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
473
+ attributeType: z.ZodString;
474
+ }, "strip", z.ZodTypeAny, {
475
+ modifiedDate: number;
476
+ modifiedBy: string;
477
+ attributeId: number;
478
+ attributeName: string;
479
+ displayName: string;
480
+ attributeType: string;
481
+ retailerOwnedId?: number | null | undefined;
482
+ clusterAttrGroupId?: number | null | undefined;
483
+ }, {
484
+ modifiedDate: number;
485
+ modifiedBy: string;
486
+ attributeId: number;
487
+ attributeName: string;
488
+ displayName: string;
489
+ attributeType: string;
490
+ retailerOwnedId?: number | null | undefined;
491
+ clusterAttrGroupId?: number | null | undefined;
492
+ }>, "many">;
493
+ }, "strip", z.ZodTypeAny, {
494
+ count: number;
495
+ results: {
496
+ modifiedDate: number;
497
+ modifiedBy: string;
498
+ attributeId: number;
499
+ attributeName: string;
500
+ displayName: string;
501
+ attributeType: string;
502
+ retailerOwnedId?: number | null | undefined;
503
+ clusterAttrGroupId?: number | null | undefined;
504
+ }[];
505
+ next?: string | null | undefined;
506
+ previous?: string | null | undefined;
507
+ }, {
508
+ count: number;
509
+ results: {
510
+ modifiedDate: number;
511
+ modifiedBy: string;
512
+ attributeId: number;
513
+ attributeName: string;
514
+ displayName: string;
515
+ attributeType: string;
516
+ retailerOwnedId?: number | null | undefined;
517
+ clusterAttrGroupId?: number | null | undefined;
518
+ }[];
519
+ next?: string | null | undefined;
520
+ previous?: string | null | undefined;
521
+ }>;
522
+ type AttributesByCompany = z.infer<typeof attributesByCompanySchema>;
523
+
524
+ declare const attributeDefinitionSchema: z.ZodObject<{
525
+ attrDataTypeId: z.ZodNumber;
526
+ attrDatatype: z.ZodObject<{
527
+ attrDatatypeId: z.ZodNumber;
528
+ datatypeName: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "STRING", "REAL"]>;
529
+ displayOnly: z.ZodBoolean;
530
+ }, "strip", z.ZodTypeAny, {
531
+ attrDatatypeId: number;
532
+ datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
533
+ displayOnly: boolean;
534
+ }, {
535
+ attrDatatypeId: number;
536
+ datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
537
+ displayOnly: boolean;
538
+ }>;
539
+ attrGroupId: z.ZodNumber;
540
+ attrGroups: z.ZodArray<z.ZodObject<{
541
+ attrGroupId: z.ZodNumber;
542
+ attrGroupType: z.ZodObject<{
543
+ attrGroupTypeId: z.ZodNumber;
544
+ groupTypeName: z.ZodString;
545
+ primary: z.ZodBoolean;
546
+ restricted: z.ZodBoolean;
547
+ }, "strip", z.ZodTypeAny, {
548
+ attrGroupTypeId: number;
549
+ groupTypeName: string;
550
+ primary: boolean;
551
+ restricted: boolean;
552
+ }, {
553
+ attrGroupTypeId: number;
554
+ groupTypeName: string;
555
+ primary: boolean;
556
+ restricted: boolean;
557
+ }>;
558
+ attrGroupTypeId: z.ZodNumber;
559
+ groupName: z.ZodString;
560
+ isDefault: z.ZodBoolean;
561
+ orderWeight: z.ZodNumber;
562
+ primary: z.ZodBoolean;
563
+ }, "strip", z.ZodTypeAny, {
564
+ attrGroupId: number;
565
+ attrGroupType: {
566
+ attrGroupTypeId: number;
567
+ groupTypeName: string;
568
+ primary: boolean;
569
+ restricted: boolean;
570
+ };
571
+ attrGroupTypeId: number;
572
+ primary: boolean;
573
+ groupName: string;
574
+ isDefault: boolean;
575
+ orderWeight: number;
576
+ }, {
577
+ attrGroupId: number;
578
+ attrGroupType: {
579
+ attrGroupTypeId: number;
580
+ groupTypeName: string;
581
+ primary: boolean;
582
+ restricted: boolean;
583
+ };
584
+ attrGroupTypeId: number;
585
+ primary: boolean;
586
+ groupName: string;
587
+ isDefault: boolean;
588
+ orderWeight: number;
589
+ }>, "many">;
590
+ attrRestrictions: z.ZodOptional<z.ZodArray<z.ZodObject<{
591
+ attrRestrictId: z.ZodNumber;
592
+ ignoreGlobal: z.ZodOptional<z.ZodBoolean>;
593
+ isDefault: z.ZodBoolean;
594
+ isEssential: z.ZodBoolean;
595
+ locale: z.ZodString;
596
+ mandatory: z.ZodBoolean;
597
+ repeatable: z.ZodBoolean;
598
+ minLength: z.ZodOptional<z.ZodNumber>;
599
+ maxLength: z.ZodOptional<z.ZodNumber>;
600
+ }, "strip", z.ZodTypeAny, {
601
+ repeatable: boolean;
602
+ isDefault: boolean;
603
+ attrRestrictId: number;
604
+ isEssential: boolean;
605
+ locale: string;
606
+ mandatory: boolean;
607
+ ignoreGlobal?: boolean | undefined;
608
+ minLength?: number | undefined;
609
+ maxLength?: number | undefined;
610
+ }, {
611
+ repeatable: boolean;
612
+ isDefault: boolean;
613
+ attrRestrictId: number;
614
+ isEssential: boolean;
615
+ locale: string;
616
+ mandatory: boolean;
617
+ ignoreGlobal?: boolean | undefined;
618
+ minLength?: number | undefined;
619
+ maxLength?: number | undefined;
620
+ }>, "many">>;
621
+ attrRoundId: z.ZodNumber;
622
+ attrStorage: z.ZodObject<{
623
+ attrStorageId: z.ZodNumber;
624
+ storageName: z.ZodString;
625
+ }, "strip", z.ZodTypeAny, {
626
+ attrStorageId: number;
627
+ storageName: string;
628
+ }, {
629
+ attrStorageId: number;
630
+ storageName: string;
631
+ }>;
632
+ attrStorageId: z.ZodNumber;
633
+ attrValues: z.ZodOptional<z.ZodArray<z.ZodObject<{
634
+ attrKeyPair: z.ZodString;
635
+ attrValueId: z.ZodOptional<z.ZodNumber>;
636
+ isDefault: z.ZodBoolean;
637
+ locale: z.ZodString;
638
+ value: z.ZodString;
639
+ }, "strip", z.ZodTypeAny, {
640
+ value: string;
641
+ isDefault: boolean;
642
+ locale: string;
643
+ attrKeyPair: string;
644
+ attrValueId?: number | undefined;
645
+ }, {
646
+ value: string;
647
+ isDefault: boolean;
648
+ locale: string;
649
+ attrKeyPair: string;
650
+ attrValueId?: number | undefined;
651
+ }>, "many">>;
652
+ attributeId: z.ZodNumber;
653
+ attributeName: z.ZodString;
654
+ createdBy: z.ZodString;
655
+ createdDate: z.ZodNumber;
656
+ description: z.ZodOptional<z.ZodString>;
657
+ displayName: z.ZodString;
658
+ modifiedDate: z.ZodNumber;
659
+ orderWeight: z.ZodOptional<z.ZodNumber>;
660
+ parentAttribute: z.ZodOptional<z.ZodObject<{
661
+ attrDataTypeId: z.ZodNumber;
662
+ attrDatatype: z.ZodObject<{
663
+ attrDatatypeId: z.ZodNumber;
664
+ datatypeName: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "STRING", "REAL"]>;
665
+ displayOnly: z.ZodBoolean;
666
+ }, "strip", z.ZodTypeAny, {
667
+ attrDatatypeId: number;
668
+ datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
669
+ displayOnly: boolean;
670
+ }, {
671
+ attrDatatypeId: number;
672
+ datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
673
+ displayOnly: boolean;
674
+ }>;
675
+ attrGroupId: z.ZodNumber;
676
+ attrGroups: z.ZodArray<z.ZodObject<{
677
+ attrGroupId: z.ZodNumber;
678
+ attrGroupType: z.ZodObject<{
679
+ attrGroupTypeId: z.ZodNumber;
680
+ groupTypeName: z.ZodString;
681
+ primary: z.ZodBoolean;
682
+ restricted: z.ZodBoolean;
683
+ }, "strip", z.ZodTypeAny, {
684
+ attrGroupTypeId: number;
685
+ groupTypeName: string;
686
+ primary: boolean;
687
+ restricted: boolean;
688
+ }, {
689
+ attrGroupTypeId: number;
690
+ groupTypeName: string;
691
+ primary: boolean;
692
+ restricted: boolean;
693
+ }>;
694
+ attrGroupTypeId: z.ZodNumber;
695
+ groupName: z.ZodString;
696
+ isDefault: z.ZodBoolean;
697
+ orderWeight: z.ZodNumber;
698
+ primary: z.ZodBoolean;
699
+ }, "strip", z.ZodTypeAny, {
700
+ attrGroupId: number;
701
+ attrGroupType: {
702
+ attrGroupTypeId: number;
703
+ groupTypeName: string;
704
+ primary: boolean;
705
+ restricted: boolean;
706
+ };
707
+ attrGroupTypeId: number;
708
+ primary: boolean;
709
+ groupName: string;
710
+ isDefault: boolean;
711
+ orderWeight: number;
712
+ }, {
713
+ attrGroupId: number;
714
+ attrGroupType: {
715
+ attrGroupTypeId: number;
716
+ groupTypeName: string;
717
+ primary: boolean;
718
+ restricted: boolean;
719
+ };
720
+ attrGroupTypeId: number;
721
+ primary: boolean;
722
+ groupName: string;
723
+ isDefault: boolean;
724
+ orderWeight: number;
725
+ }>, "many">;
726
+ attrRoundId: z.ZodNumber;
727
+ attrStorageId: z.ZodNumber;
728
+ attributeId: z.ZodNumber;
729
+ attributeName: z.ZodString;
730
+ createdBy: z.ZodString;
731
+ createdDate: z.ZodNumber;
732
+ description: z.ZodOptional<z.ZodString>;
733
+ displayName: z.ZodString;
734
+ modifiedDate: z.ZodNumber;
735
+ orderWeight: z.ZodNumber;
736
+ parentAttributeId: z.ZodOptional<z.ZodNumber>;
737
+ primaryAttrGroup: z.ZodObject<{
738
+ attrGroupId: z.ZodNumber;
739
+ attrGroupType: z.ZodObject<{
740
+ attrGroupTypeId: z.ZodNumber;
741
+ groupTypeName: z.ZodString;
742
+ primary: z.ZodBoolean;
743
+ restricted: z.ZodBoolean;
744
+ }, "strip", z.ZodTypeAny, {
745
+ attrGroupTypeId: number;
746
+ groupTypeName: string;
747
+ primary: boolean;
748
+ restricted: boolean;
749
+ }, {
750
+ attrGroupTypeId: number;
751
+ groupTypeName: string;
752
+ primary: boolean;
753
+ restricted: boolean;
754
+ }>;
755
+ attrGroupTypeId: z.ZodNumber;
756
+ groupName: z.ZodString;
757
+ isDefault: z.ZodBoolean;
758
+ orderWeight: z.ZodNumber;
759
+ primary: z.ZodBoolean;
760
+ }, "strip", z.ZodTypeAny, {
761
+ attrGroupId: number;
762
+ attrGroupType: {
763
+ attrGroupTypeId: number;
764
+ groupTypeName: string;
765
+ primary: boolean;
766
+ restricted: boolean;
767
+ };
768
+ attrGroupTypeId: number;
769
+ primary: boolean;
770
+ groupName: string;
771
+ isDefault: boolean;
772
+ orderWeight: number;
773
+ }, {
774
+ attrGroupId: number;
775
+ attrGroupType: {
776
+ attrGroupTypeId: number;
777
+ groupTypeName: string;
778
+ primary: boolean;
779
+ restricted: boolean;
780
+ };
781
+ attrGroupTypeId: number;
782
+ primary: boolean;
783
+ groupName: string;
784
+ isDefault: boolean;
785
+ orderWeight: number;
786
+ }>;
787
+ }, "strip", z.ZodTypeAny, {
788
+ createdDate: number;
789
+ createdBy: string;
790
+ modifiedDate: number;
791
+ attributeId: number;
792
+ attributeName: string;
793
+ displayName: string;
794
+ attrGroupId: number;
795
+ orderWeight: number;
796
+ attrDataTypeId: number;
797
+ attrDatatype: {
798
+ attrDatatypeId: number;
799
+ datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
800
+ displayOnly: boolean;
801
+ };
802
+ attrGroups: {
803
+ attrGroupId: number;
804
+ attrGroupType: {
805
+ attrGroupTypeId: number;
806
+ groupTypeName: string;
807
+ primary: boolean;
808
+ restricted: boolean;
809
+ };
810
+ attrGroupTypeId: number;
811
+ primary: boolean;
812
+ groupName: string;
813
+ isDefault: boolean;
814
+ orderWeight: number;
815
+ }[];
816
+ attrRoundId: number;
817
+ attrStorageId: number;
818
+ primaryAttrGroup: {
819
+ attrGroupId: number;
820
+ attrGroupType: {
821
+ attrGroupTypeId: number;
822
+ groupTypeName: string;
823
+ primary: boolean;
824
+ restricted: boolean;
825
+ };
826
+ attrGroupTypeId: number;
827
+ primary: boolean;
828
+ groupName: string;
829
+ isDefault: boolean;
830
+ orderWeight: number;
831
+ };
832
+ description?: string | undefined;
833
+ parentAttributeId?: number | undefined;
834
+ }, {
835
+ createdDate: number;
836
+ createdBy: string;
837
+ modifiedDate: number;
838
+ attributeId: number;
839
+ attributeName: string;
840
+ displayName: string;
841
+ attrGroupId: number;
842
+ orderWeight: number;
843
+ attrDataTypeId: number;
844
+ attrDatatype: {
845
+ attrDatatypeId: number;
846
+ datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
847
+ displayOnly: boolean;
848
+ };
849
+ attrGroups: {
850
+ attrGroupId: number;
851
+ attrGroupType: {
852
+ attrGroupTypeId: number;
853
+ groupTypeName: string;
854
+ primary: boolean;
855
+ restricted: boolean;
856
+ };
857
+ attrGroupTypeId: number;
858
+ primary: boolean;
859
+ groupName: string;
860
+ isDefault: boolean;
861
+ orderWeight: number;
862
+ }[];
863
+ attrRoundId: number;
864
+ attrStorageId: number;
865
+ primaryAttrGroup: {
866
+ attrGroupId: number;
867
+ attrGroupType: {
868
+ attrGroupTypeId: number;
869
+ groupTypeName: string;
870
+ primary: boolean;
871
+ restricted: boolean;
872
+ };
873
+ attrGroupTypeId: number;
874
+ primary: boolean;
875
+ groupName: string;
876
+ isDefault: boolean;
877
+ orderWeight: number;
878
+ };
879
+ description?: string | undefined;
880
+ parentAttributeId?: number | undefined;
881
+ }>>;
882
+ parentAttributeId: z.ZodOptional<z.ZodNumber>;
883
+ primaryAttrGroup: z.ZodObject<{
884
+ attrGroupId: z.ZodNumber;
885
+ attrGroupType: z.ZodObject<{
886
+ attrGroupTypeId: z.ZodNumber;
887
+ groupTypeName: z.ZodString;
888
+ primary: z.ZodBoolean;
889
+ restricted: z.ZodBoolean;
890
+ }, "strip", z.ZodTypeAny, {
891
+ attrGroupTypeId: number;
892
+ groupTypeName: string;
893
+ primary: boolean;
894
+ restricted: boolean;
895
+ }, {
896
+ attrGroupTypeId: number;
897
+ groupTypeName: string;
898
+ primary: boolean;
899
+ restricted: boolean;
900
+ }>;
901
+ attrGroupTypeId: z.ZodNumber;
902
+ groupName: z.ZodString;
903
+ isDefault: z.ZodBoolean;
904
+ orderWeight: z.ZodNumber;
905
+ primary: z.ZodBoolean;
906
+ }, "strip", z.ZodTypeAny, {
907
+ attrGroupId: number;
908
+ attrGroupType: {
909
+ attrGroupTypeId: number;
910
+ groupTypeName: string;
911
+ primary: boolean;
912
+ restricted: boolean;
913
+ };
914
+ attrGroupTypeId: number;
915
+ primary: boolean;
916
+ groupName: string;
917
+ isDefault: boolean;
918
+ orderWeight: number;
919
+ }, {
920
+ attrGroupId: number;
921
+ attrGroupType: {
922
+ attrGroupTypeId: number;
923
+ groupTypeName: string;
924
+ primary: boolean;
925
+ restricted: boolean;
926
+ };
927
+ attrGroupTypeId: number;
928
+ primary: boolean;
929
+ groupName: string;
930
+ isDefault: boolean;
931
+ orderWeight: number;
932
+ }>;
933
+ }, "strip", z.ZodTypeAny, {
934
+ createdDate: number;
935
+ createdBy: string;
936
+ modifiedDate: number;
937
+ attributeId: number;
938
+ attributeName: string;
939
+ displayName: string;
940
+ attrGroupId: number;
941
+ attrDataTypeId: number;
942
+ attrDatatype: {
943
+ attrDatatypeId: number;
944
+ datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
945
+ displayOnly: boolean;
946
+ };
947
+ attrGroups: {
948
+ attrGroupId: number;
949
+ attrGroupType: {
950
+ attrGroupTypeId: number;
951
+ groupTypeName: string;
952
+ primary: boolean;
953
+ restricted: boolean;
954
+ };
955
+ attrGroupTypeId: number;
956
+ primary: boolean;
957
+ groupName: string;
958
+ isDefault: boolean;
959
+ orderWeight: number;
960
+ }[];
961
+ attrRoundId: number;
962
+ attrStorageId: number;
963
+ primaryAttrGroup: {
964
+ attrGroupId: number;
965
+ attrGroupType: {
966
+ attrGroupTypeId: number;
967
+ groupTypeName: string;
968
+ primary: boolean;
969
+ restricted: boolean;
970
+ };
971
+ attrGroupTypeId: number;
972
+ primary: boolean;
973
+ groupName: string;
974
+ isDefault: boolean;
975
+ orderWeight: number;
976
+ };
977
+ attrStorage: {
978
+ attrStorageId: number;
979
+ storageName: string;
980
+ };
981
+ attrRestrictions?: {
982
+ repeatable: boolean;
983
+ isDefault: boolean;
984
+ attrRestrictId: number;
985
+ isEssential: boolean;
986
+ locale: string;
987
+ mandatory: boolean;
988
+ ignoreGlobal?: boolean | undefined;
989
+ minLength?: number | undefined;
990
+ maxLength?: number | undefined;
991
+ }[] | undefined;
992
+ attrValues?: {
993
+ value: string;
994
+ isDefault: boolean;
995
+ locale: string;
996
+ attrKeyPair: string;
997
+ attrValueId?: number | undefined;
998
+ }[] | undefined;
999
+ description?: string | undefined;
1000
+ orderWeight?: number | undefined;
1001
+ parentAttribute?: {
1002
+ createdDate: number;
1003
+ createdBy: string;
1004
+ modifiedDate: number;
1005
+ attributeId: number;
1006
+ attributeName: string;
1007
+ displayName: string;
1008
+ attrGroupId: number;
1009
+ orderWeight: number;
1010
+ attrDataTypeId: number;
1011
+ attrDatatype: {
1012
+ attrDatatypeId: number;
1013
+ datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
1014
+ displayOnly: boolean;
1015
+ };
1016
+ attrGroups: {
1017
+ attrGroupId: number;
1018
+ attrGroupType: {
1019
+ attrGroupTypeId: number;
1020
+ groupTypeName: string;
1021
+ primary: boolean;
1022
+ restricted: boolean;
1023
+ };
1024
+ attrGroupTypeId: number;
1025
+ primary: boolean;
1026
+ groupName: string;
1027
+ isDefault: boolean;
1028
+ orderWeight: number;
1029
+ }[];
1030
+ attrRoundId: number;
1031
+ attrStorageId: number;
1032
+ primaryAttrGroup: {
1033
+ attrGroupId: number;
1034
+ attrGroupType: {
1035
+ attrGroupTypeId: number;
1036
+ groupTypeName: string;
1037
+ primary: boolean;
1038
+ restricted: boolean;
1039
+ };
1040
+ attrGroupTypeId: number;
1041
+ primary: boolean;
1042
+ groupName: string;
1043
+ isDefault: boolean;
1044
+ orderWeight: number;
1045
+ };
1046
+ description?: string | undefined;
1047
+ parentAttributeId?: number | undefined;
1048
+ } | undefined;
1049
+ parentAttributeId?: number | undefined;
1050
+ }, {
1051
+ createdDate: number;
1052
+ createdBy: string;
1053
+ modifiedDate: number;
1054
+ attributeId: number;
1055
+ attributeName: string;
1056
+ displayName: string;
1057
+ attrGroupId: number;
1058
+ attrDataTypeId: number;
1059
+ attrDatatype: {
1060
+ attrDatatypeId: number;
1061
+ datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
1062
+ displayOnly: boolean;
1063
+ };
1064
+ attrGroups: {
1065
+ attrGroupId: number;
1066
+ attrGroupType: {
1067
+ attrGroupTypeId: number;
1068
+ groupTypeName: string;
1069
+ primary: boolean;
1070
+ restricted: boolean;
1071
+ };
1072
+ attrGroupTypeId: number;
1073
+ primary: boolean;
1074
+ groupName: string;
1075
+ isDefault: boolean;
1076
+ orderWeight: number;
1077
+ }[];
1078
+ attrRoundId: number;
1079
+ attrStorageId: number;
1080
+ primaryAttrGroup: {
1081
+ attrGroupId: number;
1082
+ attrGroupType: {
1083
+ attrGroupTypeId: number;
1084
+ groupTypeName: string;
1085
+ primary: boolean;
1086
+ restricted: boolean;
1087
+ };
1088
+ attrGroupTypeId: number;
1089
+ primary: boolean;
1090
+ groupName: string;
1091
+ isDefault: boolean;
1092
+ orderWeight: number;
1093
+ };
1094
+ attrStorage: {
1095
+ attrStorageId: number;
1096
+ storageName: string;
1097
+ };
1098
+ attrRestrictions?: {
1099
+ repeatable: boolean;
1100
+ isDefault: boolean;
1101
+ attrRestrictId: number;
1102
+ isEssential: boolean;
1103
+ locale: string;
1104
+ mandatory: boolean;
1105
+ ignoreGlobal?: boolean | undefined;
1106
+ minLength?: number | undefined;
1107
+ maxLength?: number | undefined;
1108
+ }[] | undefined;
1109
+ attrValues?: {
1110
+ value: string;
1111
+ isDefault: boolean;
1112
+ locale: string;
1113
+ attrKeyPair: string;
1114
+ attrValueId?: number | undefined;
1115
+ }[] | undefined;
1116
+ description?: string | undefined;
1117
+ orderWeight?: number | undefined;
1118
+ parentAttribute?: {
1119
+ createdDate: number;
1120
+ createdBy: string;
1121
+ modifiedDate: number;
1122
+ attributeId: number;
1123
+ attributeName: string;
1124
+ displayName: string;
1125
+ attrGroupId: number;
1126
+ orderWeight: number;
1127
+ attrDataTypeId: number;
1128
+ attrDatatype: {
1129
+ attrDatatypeId: number;
1130
+ datatypeName: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
1131
+ displayOnly: boolean;
1132
+ };
1133
+ attrGroups: {
1134
+ attrGroupId: number;
1135
+ attrGroupType: {
1136
+ attrGroupTypeId: number;
1137
+ groupTypeName: string;
1138
+ primary: boolean;
1139
+ restricted: boolean;
1140
+ };
1141
+ attrGroupTypeId: number;
1142
+ primary: boolean;
1143
+ groupName: string;
1144
+ isDefault: boolean;
1145
+ orderWeight: number;
1146
+ }[];
1147
+ attrRoundId: number;
1148
+ attrStorageId: number;
1149
+ primaryAttrGroup: {
1150
+ attrGroupId: number;
1151
+ attrGroupType: {
1152
+ attrGroupTypeId: number;
1153
+ groupTypeName: string;
1154
+ primary: boolean;
1155
+ restricted: boolean;
1156
+ };
1157
+ attrGroupTypeId: number;
1158
+ primary: boolean;
1159
+ groupName: string;
1160
+ isDefault: boolean;
1161
+ orderWeight: number;
1162
+ };
1163
+ description?: string | undefined;
1164
+ parentAttributeId?: number | undefined;
1165
+ } | undefined;
1166
+ parentAttributeId?: number | undefined;
1167
+ }>;
1168
+ type AttributeDefinition = z.infer<typeof attributeDefinitionSchema>;
1169
+
1170
+ declare const attributeValidValuesSchema: z.ZodObject<{
1171
+ value: z.ZodString;
1172
+ isDefault: z.ZodBoolean;
1173
+ locale: z.ZodString;
1174
+ createdBy: z.ZodString;
1175
+ createdDate: z.ZodNumber;
1176
+ modifiedDate: z.ZodNumber;
1177
+ modifiedBy: z.ZodString;
1178
+ attributeId: z.ZodNumber;
1179
+ attrValueId: z.ZodNumber;
1180
+ attrKeyPair: z.ZodString;
1181
+ }, "strip", z.ZodTypeAny, {
1182
+ value: string;
1183
+ createdDate: number;
1184
+ createdBy: string;
1185
+ modifiedDate: number;
1186
+ modifiedBy: string;
1187
+ attributeId: number;
1188
+ isDefault: boolean;
1189
+ locale: string;
1190
+ attrKeyPair: string;
1191
+ attrValueId: number;
1192
+ }, {
1193
+ value: string;
1194
+ createdDate: number;
1195
+ createdBy: string;
1196
+ modifiedDate: number;
1197
+ modifiedBy: string;
1198
+ attributeId: number;
1199
+ isDefault: boolean;
1200
+ locale: string;
1201
+ attrKeyPair: string;
1202
+ attrValueId: number;
1203
+ }>;
1204
+ type AttributeValidValues = z.infer<typeof attributeValidValuesSchema>;
1205
+
1206
+ declare const localeSchema: z.ZodObject<{
1207
+ localeCode: z.ZodString;
1208
+ localeDescription: z.ZodString;
1209
+ }, "strip", z.ZodTypeAny, {
1210
+ localeCode: string;
1211
+ localeDescription: string;
1212
+ }, {
1213
+ localeCode: string;
1214
+ localeDescription: string;
1215
+ }>;
1216
+ type Locale = z.infer<typeof localeSchema>;
1217
+
1218
+ declare const spreadsheetTemplateSchema: z.ZodObject<{
1219
+ id: z.ZodNumber;
1220
+ fileLocation: z.ZodString;
1221
+ name: z.ZodString;
1222
+ templateType: z.ZodString;
1223
+ maxItemsPerDoc: z.ZodNumber;
1224
+ companies: z.ZodArray<z.ZodObject<{
1225
+ companyName: z.ZodString;
1226
+ companyId: z.ZodNumber;
1227
+ createdAt: z.ZodNumber;
1228
+ }, "strip", z.ZodTypeAny, {
1229
+ companyId: number;
1230
+ companyName: string;
1231
+ createdAt: number;
1232
+ }, {
1233
+ companyId: number;
1234
+ companyName: string;
1235
+ createdAt: number;
1236
+ }>, "many">;
1237
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1238
+ createdAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1239
+ modifiedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1240
+ modifiedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1241
+ }, "strip", z.ZodTypeAny, {
1242
+ name: string;
1243
+ id: number;
1244
+ fileLocation: string;
1245
+ templateType: string;
1246
+ maxItemsPerDoc: number;
1247
+ companies: {
1248
+ companyId: number;
1249
+ companyName: string;
1250
+ createdAt: number;
1251
+ }[];
1252
+ createdBy?: string | null | undefined;
1253
+ createdAt?: number | null | undefined;
1254
+ modifiedBy?: string | null | undefined;
1255
+ modifiedAt?: number | null | undefined;
1256
+ }, {
1257
+ name: string;
1258
+ id: number;
1259
+ fileLocation: string;
1260
+ templateType: string;
1261
+ maxItemsPerDoc: number;
1262
+ companies: {
1263
+ companyId: number;
1264
+ companyName: string;
1265
+ createdAt: number;
1266
+ }[];
1267
+ createdBy?: string | null | undefined;
1268
+ createdAt?: number | null | undefined;
1269
+ modifiedBy?: string | null | undefined;
1270
+ modifiedAt?: number | null | undefined;
1271
+ }>;
1272
+ type SpreadsheetTemplate = z.infer<typeof spreadsheetTemplateSchema>;
1273
+
1274
+ declare const userAccountSchema: z.ZodObject<{
1275
+ identityUser: z.ZodObject<{
1276
+ id: z.ZodString;
1277
+ email: z.ZodOptional<z.ZodString>;
1278
+ first_name: z.ZodOptional<z.ZodString>;
1279
+ last_name: z.ZodOptional<z.ZodString>;
1280
+ job_title: z.ZodOptional<z.ZodString>;
1281
+ externally_managed: z.ZodOptional<z.ZodBoolean>;
1282
+ city: z.ZodOptional<z.ZodString>;
1283
+ name: z.ZodString;
1284
+ state: z.ZodOptional<z.ZodString>;
1285
+ country: z.ZodOptional<z.ZodString>;
1286
+ user_type: z.ZodOptional<z.ZodString>;
1287
+ token_type: z.ZodOptional<z.ZodString>;
1288
+ avatar_image_id: z.ZodOptional<z.ZodString>;
1289
+ avatar_image_url: z.ZodOptional<z.ZodString>;
1290
+ origin_avatar_image_id: z.ZodOptional<z.ZodString>;
1291
+ bio: z.ZodOptional<z.ZodString>;
1292
+ phone_number: z.ZodOptional<z.ZodString>;
1293
+ twitter_handle: z.ZodOptional<z.ZodString>;
1294
+ linkedin_url: z.ZodOptional<z.ZodString>;
1295
+ description: z.ZodOptional<z.ZodString>;
1296
+ preferences: z.ZodOptional<z.ZodObject<{
1297
+ locale: z.ZodString;
1298
+ timezone: z.ZodString;
1299
+ cpUpgrade: z.ZodOptional<z.ZodString>;
1300
+ language: z.ZodArray<z.ZodString, "many">;
1301
+ datetime: z.ZodObject<{
1302
+ DATE_TIME: z.ZodString;
1303
+ TIME: z.ZodString;
1304
+ SHORT_DATE: z.ZodString;
1305
+ LONG_DATETIME: z.ZodString;
1306
+ LONG_TIME: z.ZodString;
1307
+ DATE: z.ZodString;
1308
+ }, "strip", z.ZodTypeAny, {
1309
+ DATE: string;
1310
+ DATE_TIME: string;
1311
+ TIME: string;
1312
+ SHORT_DATE: string;
1313
+ LONG_DATETIME: string;
1314
+ LONG_TIME: string;
1315
+ }, {
1316
+ DATE: string;
1317
+ DATE_TIME: string;
1318
+ TIME: string;
1319
+ SHORT_DATE: string;
1320
+ LONG_DATETIME: string;
1321
+ LONG_TIME: string;
1322
+ }>;
1323
+ }, "strip", z.ZodTypeAny, {
1324
+ locale: string;
1325
+ timezone: string;
1326
+ language: string[];
1327
+ datetime: {
1328
+ DATE: string;
1329
+ DATE_TIME: string;
1330
+ TIME: string;
1331
+ SHORT_DATE: string;
1332
+ LONG_DATETIME: string;
1333
+ LONG_TIME: string;
1334
+ };
1335
+ cpUpgrade?: string | undefined;
1336
+ }, {
1337
+ locale: string;
1338
+ timezone: string;
1339
+ language: string[];
1340
+ datetime: {
1341
+ DATE: string;
1342
+ DATE_TIME: string;
1343
+ TIME: string;
1344
+ SHORT_DATE: string;
1345
+ LONG_DATETIME: string;
1346
+ LONG_TIME: string;
1347
+ };
1348
+ cpUpgrade?: string | undefined;
1349
+ }>>;
1350
+ roles: z.ZodArray<z.ZodString, "many">;
1351
+ organization: z.ZodObject<{
1352
+ organization_name: z.ZodOptional<z.ZodString>;
1353
+ organization_site: z.ZodOptional<z.ZodString>;
1354
+ namespace: z.ZodOptional<z.ZodString>;
1355
+ id: z.ZodString;
1356
+ permissions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1357
+ metadata: z.ZodOptional<z.ZodObject<{
1358
+ namespace: z.ZodString;
1359
+ key: z.ZodString;
1360
+ value: z.ZodString;
1361
+ }, "strip", z.ZodTypeAny, {
1362
+ value: string;
1363
+ namespace: string;
1364
+ key: string;
1365
+ }, {
1366
+ value: string;
1367
+ namespace: string;
1368
+ key: string;
1369
+ }>>;
1370
+ }, "strip", z.ZodTypeAny, {
1371
+ id: string;
1372
+ organization_name?: string | undefined;
1373
+ organization_site?: string | undefined;
1374
+ namespace?: string | undefined;
1375
+ permissions?: string[] | undefined;
1376
+ metadata?: {
1377
+ value: string;
1378
+ namespace: string;
1379
+ key: string;
1380
+ } | undefined;
1381
+ }, {
1382
+ id: string;
1383
+ organization_name?: string | undefined;
1384
+ organization_site?: string | undefined;
1385
+ namespace?: string | undefined;
1386
+ permissions?: string[] | undefined;
1387
+ metadata?: {
1388
+ value: string;
1389
+ namespace: string;
1390
+ key: string;
1391
+ } | undefined;
1392
+ }>;
1393
+ password: z.ZodString;
1394
+ verified: z.ZodBoolean;
1395
+ }, "strip", z.ZodTypeAny, {
1396
+ name: string;
1397
+ id: string;
1398
+ roles: string[];
1399
+ organization: {
1400
+ id: string;
1401
+ organization_name?: string | undefined;
1402
+ organization_site?: string | undefined;
1403
+ namespace?: string | undefined;
1404
+ permissions?: string[] | undefined;
1405
+ metadata?: {
1406
+ value: string;
1407
+ namespace: string;
1408
+ key: string;
1409
+ } | undefined;
1410
+ };
1411
+ password: string;
1412
+ verified: boolean;
1413
+ email?: string | undefined;
1414
+ first_name?: string | undefined;
1415
+ last_name?: string | undefined;
1416
+ job_title?: string | undefined;
1417
+ externally_managed?: boolean | undefined;
1418
+ city?: string | undefined;
1419
+ state?: string | undefined;
1420
+ country?: string | undefined;
1421
+ user_type?: string | undefined;
1422
+ token_type?: string | undefined;
1423
+ avatar_image_id?: string | undefined;
1424
+ avatar_image_url?: string | undefined;
1425
+ origin_avatar_image_id?: string | undefined;
1426
+ bio?: string | undefined;
1427
+ phone_number?: string | undefined;
1428
+ twitter_handle?: string | undefined;
1429
+ linkedin_url?: string | undefined;
1430
+ description?: string | undefined;
1431
+ preferences?: {
1432
+ locale: string;
1433
+ timezone: string;
1434
+ language: string[];
1435
+ datetime: {
1436
+ DATE: string;
1437
+ DATE_TIME: string;
1438
+ TIME: string;
1439
+ SHORT_DATE: string;
1440
+ LONG_DATETIME: string;
1441
+ LONG_TIME: string;
1442
+ };
1443
+ cpUpgrade?: string | undefined;
1444
+ } | undefined;
1445
+ }, {
1446
+ name: string;
1447
+ id: string;
1448
+ roles: string[];
1449
+ organization: {
1450
+ id: string;
1451
+ organization_name?: string | undefined;
1452
+ organization_site?: string | undefined;
1453
+ namespace?: string | undefined;
1454
+ permissions?: string[] | undefined;
1455
+ metadata?: {
1456
+ value: string;
1457
+ namespace: string;
1458
+ key: string;
1459
+ } | undefined;
1460
+ };
1461
+ password: string;
1462
+ verified: boolean;
1463
+ email?: string | undefined;
1464
+ first_name?: string | undefined;
1465
+ last_name?: string | undefined;
1466
+ job_title?: string | undefined;
1467
+ externally_managed?: boolean | undefined;
1468
+ city?: string | undefined;
1469
+ state?: string | undefined;
1470
+ country?: string | undefined;
1471
+ user_type?: string | undefined;
1472
+ token_type?: string | undefined;
1473
+ avatar_image_id?: string | undefined;
1474
+ avatar_image_url?: string | undefined;
1475
+ origin_avatar_image_id?: string | undefined;
1476
+ bio?: string | undefined;
1477
+ phone_number?: string | undefined;
1478
+ twitter_handle?: string | undefined;
1479
+ linkedin_url?: string | undefined;
1480
+ description?: string | undefined;
1481
+ preferences?: {
1482
+ locale: string;
1483
+ timezone: string;
1484
+ language: string[];
1485
+ datetime: {
1486
+ DATE: string;
1487
+ DATE_TIME: string;
1488
+ TIME: string;
1489
+ SHORT_DATE: string;
1490
+ LONG_DATETIME: string;
1491
+ LONG_TIME: string;
1492
+ };
1493
+ cpUpgrade?: string | undefined;
1494
+ } | undefined;
1495
+ }>;
1496
+ companyId: z.ZodNumber;
1497
+ companyName: z.ZodString;
1498
+ name: z.ZodString;
1499
+ assortmentPartnerCompanyId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1500
+ retailer: z.ZodBoolean;
1501
+ supplier: z.ZodBoolean;
1502
+ registeredService: z.ZodObject<{
1503
+ serviceId: z.ZodNumber;
1504
+ identityServiceId: z.ZodNumber;
1505
+ name: z.ZodString;
1506
+ isActive: z.ZodBoolean;
1507
+ }, "strip", z.ZodTypeAny, {
1508
+ name: string;
1509
+ isActive: boolean;
1510
+ serviceId: number;
1511
+ identityServiceId: number;
1512
+ }, {
1513
+ name: string;
1514
+ isActive: boolean;
1515
+ serviceId: number;
1516
+ identityServiceId: number;
1517
+ }>;
1518
+ uniqueAttributes: z.ZodArray<z.ZodString, "many">;
1519
+ admin: z.ZodBoolean;
1520
+ adminToolUser: z.ZodBoolean;
1521
+ attributeRegistryAdmin: z.ZodBoolean;
1522
+ attributeRegistryDev: z.ZodBoolean;
1523
+ attributeRegistryRsx: z.ZodBoolean;
1524
+ attributeRegistryUser: z.ZodBoolean;
1525
+ attributeRegistryViewer: z.ZodBoolean;
1526
+ }, "strip", z.ZodTypeAny, {
1527
+ name: string;
1528
+ companyId: number;
1529
+ companyName: string;
1530
+ identityUser: {
1531
+ name: string;
1532
+ id: string;
1533
+ roles: string[];
1534
+ organization: {
1535
+ id: string;
1536
+ organization_name?: string | undefined;
1537
+ organization_site?: string | undefined;
1538
+ namespace?: string | undefined;
1539
+ permissions?: string[] | undefined;
1540
+ metadata?: {
1541
+ value: string;
1542
+ namespace: string;
1543
+ key: string;
1544
+ } | undefined;
1545
+ };
1546
+ password: string;
1547
+ verified: boolean;
1548
+ email?: string | undefined;
1549
+ first_name?: string | undefined;
1550
+ last_name?: string | undefined;
1551
+ job_title?: string | undefined;
1552
+ externally_managed?: boolean | undefined;
1553
+ city?: string | undefined;
1554
+ state?: string | undefined;
1555
+ country?: string | undefined;
1556
+ user_type?: string | undefined;
1557
+ token_type?: string | undefined;
1558
+ avatar_image_id?: string | undefined;
1559
+ avatar_image_url?: string | undefined;
1560
+ origin_avatar_image_id?: string | undefined;
1561
+ bio?: string | undefined;
1562
+ phone_number?: string | undefined;
1563
+ twitter_handle?: string | undefined;
1564
+ linkedin_url?: string | undefined;
1565
+ description?: string | undefined;
1566
+ preferences?: {
1567
+ locale: string;
1568
+ timezone: string;
1569
+ language: string[];
1570
+ datetime: {
1571
+ DATE: string;
1572
+ DATE_TIME: string;
1573
+ TIME: string;
1574
+ SHORT_DATE: string;
1575
+ LONG_DATETIME: string;
1576
+ LONG_TIME: string;
1577
+ };
1578
+ cpUpgrade?: string | undefined;
1579
+ } | undefined;
1580
+ };
1581
+ retailer: boolean;
1582
+ supplier: boolean;
1583
+ registeredService: {
1584
+ name: string;
1585
+ isActive: boolean;
1586
+ serviceId: number;
1587
+ identityServiceId: number;
1588
+ };
1589
+ uniqueAttributes: string[];
1590
+ admin: boolean;
1591
+ adminToolUser: boolean;
1592
+ attributeRegistryAdmin: boolean;
1593
+ attributeRegistryDev: boolean;
1594
+ attributeRegistryRsx: boolean;
1595
+ attributeRegistryUser: boolean;
1596
+ attributeRegistryViewer: boolean;
1597
+ assortmentPartnerCompanyId?: number | null | undefined;
1598
+ }, {
1599
+ name: string;
1600
+ companyId: number;
1601
+ companyName: string;
1602
+ identityUser: {
1603
+ name: string;
1604
+ id: string;
1605
+ roles: string[];
1606
+ organization: {
1607
+ id: string;
1608
+ organization_name?: string | undefined;
1609
+ organization_site?: string | undefined;
1610
+ namespace?: string | undefined;
1611
+ permissions?: string[] | undefined;
1612
+ metadata?: {
1613
+ value: string;
1614
+ namespace: string;
1615
+ key: string;
1616
+ } | undefined;
1617
+ };
1618
+ password: string;
1619
+ verified: boolean;
1620
+ email?: string | undefined;
1621
+ first_name?: string | undefined;
1622
+ last_name?: string | undefined;
1623
+ job_title?: string | undefined;
1624
+ externally_managed?: boolean | undefined;
1625
+ city?: string | undefined;
1626
+ state?: string | undefined;
1627
+ country?: string | undefined;
1628
+ user_type?: string | undefined;
1629
+ token_type?: string | undefined;
1630
+ avatar_image_id?: string | undefined;
1631
+ avatar_image_url?: string | undefined;
1632
+ origin_avatar_image_id?: string | undefined;
1633
+ bio?: string | undefined;
1634
+ phone_number?: string | undefined;
1635
+ twitter_handle?: string | undefined;
1636
+ linkedin_url?: string | undefined;
1637
+ description?: string | undefined;
1638
+ preferences?: {
1639
+ locale: string;
1640
+ timezone: string;
1641
+ language: string[];
1642
+ datetime: {
1643
+ DATE: string;
1644
+ DATE_TIME: string;
1645
+ TIME: string;
1646
+ SHORT_DATE: string;
1647
+ LONG_DATETIME: string;
1648
+ LONG_TIME: string;
1649
+ };
1650
+ cpUpgrade?: string | undefined;
1651
+ } | undefined;
1652
+ };
1653
+ retailer: boolean;
1654
+ supplier: boolean;
1655
+ registeredService: {
1656
+ name: string;
1657
+ isActive: boolean;
1658
+ serviceId: number;
1659
+ identityServiceId: number;
1660
+ };
1661
+ uniqueAttributes: string[];
1662
+ admin: boolean;
1663
+ adminToolUser: boolean;
1664
+ attributeRegistryAdmin: boolean;
1665
+ attributeRegistryDev: boolean;
1666
+ attributeRegistryRsx: boolean;
1667
+ attributeRegistryUser: boolean;
1668
+ attributeRegistryViewer: boolean;
1669
+ assortmentPartnerCompanyId?: number | null | undefined;
1670
+ }>;
1671
+ type UserAccount = z.infer<typeof userAccountSchema>;
1672
+
1673
+ declare const itemSearchViewSchema: z.ZodObject<{
1674
+ itemTable: z.ZodObject<{
1675
+ headers: z.ZodObject<{
1676
+ status: z.ZodOptional<z.ZodString>;
1677
+ catalogName: z.ZodString;
1678
+ productCodeName: z.ZodString;
1679
+ selectionCodeName: z.ZodString;
1680
+ gtin: z.ZodString;
1681
+ upc: z.ZodString;
1682
+ ean: z.ZodString;
1683
+ isbn: z.ZodString;
1684
+ partNumber: z.ZodString;
1685
+ lastUpdatedDateString: z.ZodString;
1686
+ companyId: z.ZodString;
1687
+ itemInfoId: z.ZodString;
1688
+ }, "strip", z.ZodTypeAny, {
1689
+ companyId: string;
1690
+ catalogName: string;
1691
+ productCodeName: string;
1692
+ selectionCodeName: string;
1693
+ gtin: string;
1694
+ upc: string;
1695
+ ean: string;
1696
+ isbn: string;
1697
+ partNumber: string;
1698
+ lastUpdatedDateString: string;
1699
+ itemInfoId: string;
1700
+ status?: string | undefined;
1701
+ }, {
1702
+ companyId: string;
1703
+ catalogName: string;
1704
+ productCodeName: string;
1705
+ selectionCodeName: string;
1706
+ gtin: string;
1707
+ upc: string;
1708
+ ean: string;
1709
+ isbn: string;
1710
+ partNumber: string;
1711
+ lastUpdatedDateString: string;
1712
+ itemInfoId: string;
1713
+ status?: string | undefined;
1714
+ }>;
1715
+ itemMaps: z.ZodArray<z.ZodObject<{
1716
+ rn: z.ZodOptional<z.ZodNumber>;
1717
+ iteminfoid: z.ZodString;
1718
+ tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1719
+ companyId: z.ZodNumber;
1720
+ companyName: z.ZodString;
1721
+ stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
1722
+ isValid: z.ZodBoolean;
1723
+ }, "strip", z.ZodTypeAny, {
1724
+ companyId: number;
1725
+ companyName: string;
1726
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1727
+ isValid: boolean;
1728
+ }, {
1729
+ companyId: number;
1730
+ companyName: string;
1731
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1732
+ isValid: boolean;
1733
+ }>, "many">>;
1734
+ gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1735
+ catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1736
+ isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1737
+ lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1738
+ upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1739
+ productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1740
+ ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1741
+ selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1742
+ createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1743
+ partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1744
+ consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1745
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1746
+ nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1747
+ nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1748
+ productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1749
+ productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1750
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1751
+ rn: z.ZodOptional<z.ZodNumber>;
1752
+ iteminfoid: z.ZodString;
1753
+ tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1754
+ companyId: z.ZodNumber;
1755
+ companyName: z.ZodString;
1756
+ stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
1757
+ isValid: z.ZodBoolean;
1758
+ }, "strip", z.ZodTypeAny, {
1759
+ companyId: number;
1760
+ companyName: string;
1761
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1762
+ isValid: boolean;
1763
+ }, {
1764
+ companyId: number;
1765
+ companyName: string;
1766
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1767
+ isValid: boolean;
1768
+ }>, "many">>;
1769
+ gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1770
+ catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1771
+ isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1772
+ lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1773
+ upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1774
+ productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1775
+ ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1776
+ selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1777
+ createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1778
+ partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1779
+ consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1780
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1781
+ nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1782
+ nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1783
+ productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1784
+ productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1785
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1786
+ rn: z.ZodOptional<z.ZodNumber>;
1787
+ iteminfoid: z.ZodString;
1788
+ tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1789
+ companyId: z.ZodNumber;
1790
+ companyName: z.ZodString;
1791
+ stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
1792
+ isValid: z.ZodBoolean;
1793
+ }, "strip", z.ZodTypeAny, {
1794
+ companyId: number;
1795
+ companyName: string;
1796
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1797
+ isValid: boolean;
1798
+ }, {
1799
+ companyId: number;
1800
+ companyName: string;
1801
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1802
+ isValid: boolean;
1803
+ }>, "many">>;
1804
+ gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1805
+ catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1806
+ isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1807
+ lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1808
+ upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1809
+ productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1810
+ ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1811
+ selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1812
+ createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1813
+ partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1814
+ consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1815
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1816
+ nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1817
+ nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1818
+ productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1819
+ productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1820
+ }, z.ZodTypeAny, "passthrough">>, "many">;
1821
+ }, "strip", z.ZodTypeAny, {
1822
+ headers: {
1823
+ companyId: string;
1824
+ catalogName: string;
1825
+ productCodeName: string;
1826
+ selectionCodeName: string;
1827
+ gtin: string;
1828
+ upc: string;
1829
+ ean: string;
1830
+ isbn: string;
1831
+ partNumber: string;
1832
+ lastUpdatedDateString: string;
1833
+ itemInfoId: string;
1834
+ status?: string | undefined;
1835
+ };
1836
+ itemMaps: z.objectOutputType<{
1837
+ rn: z.ZodOptional<z.ZodNumber>;
1838
+ iteminfoid: z.ZodString;
1839
+ tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1840
+ companyId: z.ZodNumber;
1841
+ companyName: z.ZodString;
1842
+ stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
1843
+ isValid: z.ZodBoolean;
1844
+ }, "strip", z.ZodTypeAny, {
1845
+ companyId: number;
1846
+ companyName: string;
1847
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1848
+ isValid: boolean;
1849
+ }, {
1850
+ companyId: number;
1851
+ companyName: string;
1852
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1853
+ isValid: boolean;
1854
+ }>, "many">>;
1855
+ gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1856
+ catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1857
+ isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1858
+ lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1859
+ upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1860
+ productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1861
+ ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1862
+ selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1863
+ createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1864
+ partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1865
+ consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1866
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1867
+ nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1868
+ nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1869
+ productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1870
+ productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1871
+ }, z.ZodTypeAny, "passthrough">[];
1872
+ }, {
1873
+ headers: {
1874
+ companyId: string;
1875
+ catalogName: string;
1876
+ productCodeName: string;
1877
+ selectionCodeName: string;
1878
+ gtin: string;
1879
+ upc: string;
1880
+ ean: string;
1881
+ isbn: string;
1882
+ partNumber: string;
1883
+ lastUpdatedDateString: string;
1884
+ itemInfoId: string;
1885
+ status?: string | undefined;
1886
+ };
1887
+ itemMaps: z.objectInputType<{
1888
+ rn: z.ZodOptional<z.ZodNumber>;
1889
+ iteminfoid: z.ZodString;
1890
+ tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1891
+ companyId: z.ZodNumber;
1892
+ companyName: z.ZodString;
1893
+ stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
1894
+ isValid: z.ZodBoolean;
1895
+ }, "strip", z.ZodTypeAny, {
1896
+ companyId: number;
1897
+ companyName: string;
1898
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1899
+ isValid: boolean;
1900
+ }, {
1901
+ companyId: number;
1902
+ companyName: string;
1903
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1904
+ isValid: boolean;
1905
+ }>, "many">>;
1906
+ gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1907
+ catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1908
+ isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1909
+ lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1910
+ upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1911
+ productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1912
+ ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1913
+ selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1914
+ createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1915
+ partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1916
+ consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1917
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1918
+ nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1919
+ nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1920
+ productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1921
+ productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1922
+ }, z.ZodTypeAny, "passthrough">[];
1923
+ }>;
1924
+ hasNext: z.ZodBoolean;
1925
+ count: z.ZodNumber;
1926
+ }, "strip", z.ZodTypeAny, {
1927
+ count: number;
1928
+ hasNext: boolean;
1929
+ itemTable: {
1930
+ headers: {
1931
+ companyId: string;
1932
+ catalogName: string;
1933
+ productCodeName: string;
1934
+ selectionCodeName: string;
1935
+ gtin: string;
1936
+ upc: string;
1937
+ ean: string;
1938
+ isbn: string;
1939
+ partNumber: string;
1940
+ lastUpdatedDateString: string;
1941
+ itemInfoId: string;
1942
+ status?: string | undefined;
1943
+ };
1944
+ itemMaps: z.objectOutputType<{
1945
+ rn: z.ZodOptional<z.ZodNumber>;
1946
+ iteminfoid: z.ZodString;
1947
+ tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1948
+ companyId: z.ZodNumber;
1949
+ companyName: z.ZodString;
1950
+ stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
1951
+ isValid: z.ZodBoolean;
1952
+ }, "strip", z.ZodTypeAny, {
1953
+ companyId: number;
1954
+ companyName: string;
1955
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1956
+ isValid: boolean;
1957
+ }, {
1958
+ companyId: number;
1959
+ companyName: string;
1960
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
1961
+ isValid: boolean;
1962
+ }>, "many">>;
1963
+ gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1964
+ catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1965
+ isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1966
+ lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1967
+ upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1968
+ productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1969
+ ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1970
+ selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1971
+ createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1972
+ partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1973
+ consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1974
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1975
+ nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1976
+ nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1977
+ productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1978
+ productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1979
+ }, z.ZodTypeAny, "passthrough">[];
1980
+ };
1981
+ }, {
1982
+ count: number;
1983
+ hasNext: boolean;
1984
+ itemTable: {
1985
+ headers: {
1986
+ companyId: string;
1987
+ catalogName: string;
1988
+ productCodeName: string;
1989
+ selectionCodeName: string;
1990
+ gtin: string;
1991
+ upc: string;
1992
+ ean: string;
1993
+ isbn: string;
1994
+ partNumber: string;
1995
+ lastUpdatedDateString: string;
1996
+ itemInfoId: string;
1997
+ status?: string | undefined;
1998
+ };
1999
+ itemMaps: z.objectInputType<{
2000
+ rn: z.ZodOptional<z.ZodNumber>;
2001
+ iteminfoid: z.ZodString;
2002
+ tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
2003
+ companyId: z.ZodNumber;
2004
+ companyName: z.ZodString;
2005
+ stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
2006
+ isValid: z.ZodBoolean;
2007
+ }, "strip", z.ZodTypeAny, {
2008
+ companyId: number;
2009
+ companyName: string;
2010
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
2011
+ isValid: boolean;
2012
+ }, {
2013
+ companyId: number;
2014
+ companyName: string;
2015
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
2016
+ isValid: boolean;
2017
+ }>, "many">>;
2018
+ gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2019
+ catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2020
+ isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2021
+ lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2022
+ upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2023
+ productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2024
+ ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2025
+ selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2026
+ createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2027
+ partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2028
+ consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2029
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2030
+ nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
2031
+ nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
2032
+ productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
2033
+ productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
2034
+ }, z.ZodTypeAny, "passthrough">[];
2035
+ };
2036
+ }>;
2037
+ type ItemSearchView = z.infer<typeof itemSearchViewSchema>;
2038
+
2039
+ declare const itemDetailViewSchema: z.ZodObject<{
2040
+ item: z.ZodObject<{
2041
+ iteminfoid: z.ZodNumber;
2042
+ companyid: z.ZodNumber;
2043
+ status: z.ZodString;
2044
+ createdDate: z.ZodString;
2045
+ lastUpdatedDate: z.ZodString;
2046
+ identifiers: z.ZodRecord<z.ZodString, z.ZodAny>;
2047
+ hierarchyDetails: z.ZodObject<{
2048
+ catalogs: z.ZodArray<z.ZodObject<{
2049
+ name: z.ZodString;
2050
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2051
+ id: z.ZodNumber;
2052
+ companyId: z.ZodNumber;
2053
+ type: z.ZodEnum<["AKA", "CATALOG", "EXPORT", "LABEL", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAXONOMY_ROOT"]>;
2054
+ }, "strip", z.ZodTypeAny, {
2055
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2056
+ name: string;
2057
+ companyId: number;
2058
+ id: number;
2059
+ description?: string | null | undefined;
2060
+ }, {
2061
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2062
+ name: string;
2063
+ companyId: number;
2064
+ id: number;
2065
+ description?: string | null | undefined;
2066
+ }>, "many">;
2067
+ selectionCodes: z.ZodArray<z.ZodObject<{
2068
+ name: z.ZodString;
2069
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2070
+ id: z.ZodNumber;
2071
+ companyId: z.ZodNumber;
2072
+ type: z.ZodEnum<["AKA", "CATALOG", "EXPORT", "LABEL", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAXONOMY_ROOT"]>;
2073
+ }, "strip", z.ZodTypeAny, {
2074
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2075
+ name: string;
2076
+ companyId: number;
2077
+ id: number;
2078
+ description?: string | null | undefined;
2079
+ }, {
2080
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2081
+ name: string;
2082
+ companyId: number;
2083
+ id: number;
2084
+ description?: string | null | undefined;
2085
+ }>, "many">;
2086
+ productCodes: z.ZodArray<z.ZodObject<{
2087
+ name: z.ZodString;
2088
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2089
+ id: z.ZodNumber;
2090
+ companyId: z.ZodNumber;
2091
+ type: z.ZodEnum<["AKA", "CATALOG", "EXPORT", "LABEL", "LEGACY_PRODUCT_TYPE", "PRODUCT_CLASSIFICATION", "PRODUCT_CODE", "SELECTION_CODE", "TAXONOMY_ROOT"]>;
2092
+ }, "strip", z.ZodTypeAny, {
2093
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2094
+ name: string;
2095
+ companyId: number;
2096
+ id: number;
2097
+ description?: string | null | undefined;
2098
+ }, {
2099
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2100
+ name: string;
2101
+ companyId: number;
2102
+ id: number;
2103
+ description?: string | null | undefined;
2104
+ }>, "many">;
2105
+ }, "strip", z.ZodTypeAny, {
2106
+ catalogs: {
2107
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2108
+ name: string;
2109
+ companyId: number;
2110
+ id: number;
2111
+ description?: string | null | undefined;
2112
+ }[];
2113
+ selectionCodes: {
2114
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2115
+ name: string;
2116
+ companyId: number;
2117
+ id: number;
2118
+ description?: string | null | undefined;
2119
+ }[];
2120
+ productCodes: {
2121
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2122
+ name: string;
2123
+ companyId: number;
2124
+ id: number;
2125
+ description?: string | null | undefined;
2126
+ }[];
2127
+ }, {
2128
+ catalogs: {
2129
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2130
+ name: string;
2131
+ companyId: number;
2132
+ id: number;
2133
+ description?: string | null | undefined;
2134
+ }[];
2135
+ selectionCodes: {
2136
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2137
+ name: string;
2138
+ companyId: number;
2139
+ id: number;
2140
+ description?: string | null | undefined;
2141
+ }[];
2142
+ productCodes: {
2143
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2144
+ name: string;
2145
+ companyId: number;
2146
+ id: number;
2147
+ description?: string | null | undefined;
2148
+ }[];
2149
+ }>;
2150
+ groupedAttributes: z.ZodArray<z.ZodObject<{
2151
+ type: z.ZodString;
2152
+ attributes: z.ZodArray<z.ZodObject<{
2153
+ type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "STRING", "REAL"]>;
2154
+ name: z.ZodString;
2155
+ value: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodNumber, "many">]>>;
2156
+ label: z.ZodString;
2157
+ group: z.ZodString;
2158
+ orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
2159
+ }, "strip", z.ZodTypeAny, {
2160
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2161
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2162
+ name: string;
2163
+ label: string;
2164
+ group: string;
2165
+ orderBy?: string | number | null | undefined;
2166
+ }, {
2167
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2168
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2169
+ name: string;
2170
+ label: string;
2171
+ group: string;
2172
+ orderBy?: string | number | null | undefined;
2173
+ }>, "many">;
2174
+ attributeGroups: z.ZodArray<z.ZodObject<{
2175
+ type: z.ZodString;
2176
+ rows: z.ZodArray<z.ZodArray<z.ZodObject<{
2177
+ type: z.ZodEnum<["TEXT", "SET", "INTEGER", "FLOAT", "BOOLEAN", "DATE", "KEYVALUE", "STRING", "REAL"]>;
2178
+ name: z.ZodString;
2179
+ value: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodNumber, "many">]>>;
2180
+ label: z.ZodString;
2181
+ group: z.ZodString;
2182
+ orderBy: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
2183
+ }, "strip", z.ZodTypeAny, {
2184
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2185
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2186
+ name: string;
2187
+ label: string;
2188
+ group: string;
2189
+ orderBy?: string | number | null | undefined;
2190
+ }, {
2191
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2192
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2193
+ name: string;
2194
+ label: string;
2195
+ group: string;
2196
+ orderBy?: string | number | null | undefined;
2197
+ }>, "many">, "many">;
2198
+ repeatableGroups: z.ZodArray<z.ZodObject<{
2199
+ repeatableGroupId: z.ZodString;
2200
+ repeatableNumber: z.ZodNumber;
2201
+ }, "strip", z.ZodTypeAny, {
2202
+ repeatableGroupId: string;
2203
+ repeatableNumber: number;
2204
+ }, {
2205
+ repeatableGroupId: string;
2206
+ repeatableNumber: number;
2207
+ }>, "many">;
2208
+ }, "strip", z.ZodTypeAny, {
2209
+ type: string;
2210
+ rows: {
2211
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2212
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2213
+ name: string;
2214
+ label: string;
2215
+ group: string;
2216
+ orderBy?: string | number | null | undefined;
2217
+ }[][];
2218
+ repeatableGroups: {
2219
+ repeatableGroupId: string;
2220
+ repeatableNumber: number;
2221
+ }[];
2222
+ }, {
2223
+ type: string;
2224
+ rows: {
2225
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2226
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2227
+ name: string;
2228
+ label: string;
2229
+ group: string;
2230
+ orderBy?: string | number | null | undefined;
2231
+ }[][];
2232
+ repeatableGroups: {
2233
+ repeatableGroupId: string;
2234
+ repeatableNumber: number;
2235
+ }[];
2236
+ }>, "many">;
2237
+ }, "strip", z.ZodTypeAny, {
2238
+ type: string;
2239
+ attributes: {
2240
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2241
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2242
+ name: string;
2243
+ label: string;
2244
+ group: string;
2245
+ orderBy?: string | number | null | undefined;
2246
+ }[];
2247
+ attributeGroups: {
2248
+ type: string;
2249
+ rows: {
2250
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2251
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2252
+ name: string;
2253
+ label: string;
2254
+ group: string;
2255
+ orderBy?: string | number | null | undefined;
2256
+ }[][];
2257
+ repeatableGroups: {
2258
+ repeatableGroupId: string;
2259
+ repeatableNumber: number;
2260
+ }[];
2261
+ }[];
2262
+ }, {
2263
+ type: string;
2264
+ attributes: {
2265
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2266
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2267
+ name: string;
2268
+ label: string;
2269
+ group: string;
2270
+ orderBy?: string | number | null | undefined;
2271
+ }[];
2272
+ attributeGroups: {
2273
+ type: string;
2274
+ rows: {
2275
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2276
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2277
+ name: string;
2278
+ label: string;
2279
+ group: string;
2280
+ orderBy?: string | number | null | undefined;
2281
+ }[][];
2282
+ repeatableGroups: {
2283
+ repeatableGroupId: string;
2284
+ repeatableNumber: number;
2285
+ }[];
2286
+ }[];
2287
+ }>, "many">;
2288
+ packComponentDetails: z.ZodArray<z.ZodObject<{
2289
+ itemInfo: z.ZodObject<{
2290
+ companyid: z.ZodNumber;
2291
+ createddate: z.ZodNumber;
2292
+ isServiceApi: z.ZodBoolean;
2293
+ isactive: z.ZodNumber;
2294
+ isvalid: z.ZodNumber;
2295
+ itemType: z.ZodString;
2296
+ iteminfoid: z.ZodNumber;
2297
+ itemtimestamp: z.ZodNumber;
2298
+ serviceId: z.ZodNumber;
2299
+ attributes: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
2300
+ }, "strip", z.ZodTypeAny, {
2301
+ attributes: Record<string, string | string[]>;
2302
+ serviceId: number;
2303
+ iteminfoid: number;
2304
+ companyid: number;
2305
+ createddate: number;
2306
+ isServiceApi: boolean;
2307
+ isactive: number;
2308
+ isvalid: number;
2309
+ itemType: string;
2310
+ itemtimestamp: number;
2311
+ }, {
2312
+ attributes: Record<string, string | string[]>;
2313
+ serviceId: number;
2314
+ iteminfoid: number;
2315
+ companyid: number;
2316
+ createddate: number;
2317
+ isServiceApi: boolean;
2318
+ isactive: number;
2319
+ isvalid: number;
2320
+ itemType: string;
2321
+ itemtimestamp: number;
2322
+ }>;
2323
+ itemPrices: z.ZodArray<z.ZodObject<{
2324
+ amount: z.ZodNumber;
2325
+ currency: z.ZodString;
2326
+ id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2327
+ priceDivision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2328
+ iteminfoid: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2329
+ startdate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2330
+ enddate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2331
+ qualifier: z.ZodString;
2332
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2333
+ regionqualifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2334
+ regiondescription: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2335
+ partnercompanyid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2336
+ itempricetimestamp: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2337
+ range_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2338
+ date_range_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2339
+ min_range: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2340
+ gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2341
+ priceConditionDescription: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2342
+ priceUnitQuantity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2343
+ priceUnitQuantityUOM: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2344
+ }, "strip", z.ZodTypeAny, {
2345
+ amount: number;
2346
+ currency: string;
2347
+ qualifier: string;
2348
+ id?: number | null | undefined;
2349
+ priceDivision?: string | null | undefined;
2350
+ iteminfoid?: number | null | undefined;
2351
+ startdate?: string | null | undefined;
2352
+ enddate?: string | null | undefined;
2353
+ region?: string | null | undefined;
2354
+ regionqualifier?: string | null | undefined;
2355
+ regiondescription?: string | null | undefined;
2356
+ partnercompanyid?: string | null | undefined;
2357
+ itempricetimestamp?: number | null | undefined;
2358
+ range_type?: string | null | undefined;
2359
+ date_range_type?: string | null | undefined;
2360
+ min_range?: number | null | undefined;
2361
+ gtin?: string | null | undefined;
2362
+ priceConditionDescription?: string | null | undefined;
2363
+ priceUnitQuantity?: number | null | undefined;
2364
+ priceUnitQuantityUOM?: string | null | undefined;
2365
+ }, {
2366
+ amount: number;
2367
+ currency: string;
2368
+ qualifier: string;
2369
+ id?: number | null | undefined;
2370
+ priceDivision?: string | null | undefined;
2371
+ iteminfoid?: number | null | undefined;
2372
+ startdate?: string | null | undefined;
2373
+ enddate?: string | null | undefined;
2374
+ region?: string | null | undefined;
2375
+ regionqualifier?: string | null | undefined;
2376
+ regiondescription?: string | null | undefined;
2377
+ partnercompanyid?: string | null | undefined;
2378
+ itempricetimestamp?: number | null | undefined;
2379
+ range_type?: string | null | undefined;
2380
+ date_range_type?: string | null | undefined;
2381
+ min_range?: number | null | undefined;
2382
+ gtin?: string | null | undefined;
2383
+ priceConditionDescription?: string | null | undefined;
2384
+ priceUnitQuantity?: number | null | undefined;
2385
+ priceUnitQuantityUOM?: string | null | undefined;
2386
+ }>, "many">;
2387
+ }, "strip", z.ZodTypeAny, {
2388
+ itemInfo: {
2389
+ attributes: Record<string, string | string[]>;
2390
+ serviceId: number;
2391
+ iteminfoid: number;
2392
+ companyid: number;
2393
+ createddate: number;
2394
+ isServiceApi: boolean;
2395
+ isactive: number;
2396
+ isvalid: number;
2397
+ itemType: string;
2398
+ itemtimestamp: number;
2399
+ };
2400
+ itemPrices: {
2401
+ amount: number;
2402
+ currency: string;
2403
+ qualifier: string;
2404
+ id?: number | null | undefined;
2405
+ priceDivision?: string | null | undefined;
2406
+ iteminfoid?: number | null | undefined;
2407
+ startdate?: string | null | undefined;
2408
+ enddate?: string | null | undefined;
2409
+ region?: string | null | undefined;
2410
+ regionqualifier?: string | null | undefined;
2411
+ regiondescription?: string | null | undefined;
2412
+ partnercompanyid?: string | null | undefined;
2413
+ itempricetimestamp?: number | null | undefined;
2414
+ range_type?: string | null | undefined;
2415
+ date_range_type?: string | null | undefined;
2416
+ min_range?: number | null | undefined;
2417
+ gtin?: string | null | undefined;
2418
+ priceConditionDescription?: string | null | undefined;
2419
+ priceUnitQuantity?: number | null | undefined;
2420
+ priceUnitQuantityUOM?: string | null | undefined;
2421
+ }[];
2422
+ }, {
2423
+ itemInfo: {
2424
+ attributes: Record<string, string | string[]>;
2425
+ serviceId: number;
2426
+ iteminfoid: number;
2427
+ companyid: number;
2428
+ createddate: number;
2429
+ isServiceApi: boolean;
2430
+ isactive: number;
2431
+ isvalid: number;
2432
+ itemType: string;
2433
+ itemtimestamp: number;
2434
+ };
2435
+ itemPrices: {
2436
+ amount: number;
2437
+ currency: string;
2438
+ qualifier: string;
2439
+ id?: number | null | undefined;
2440
+ priceDivision?: string | null | undefined;
2441
+ iteminfoid?: number | null | undefined;
2442
+ startdate?: string | null | undefined;
2443
+ enddate?: string | null | undefined;
2444
+ region?: string | null | undefined;
2445
+ regionqualifier?: string | null | undefined;
2446
+ regiondescription?: string | null | undefined;
2447
+ partnercompanyid?: string | null | undefined;
2448
+ itempricetimestamp?: number | null | undefined;
2449
+ range_type?: string | null | undefined;
2450
+ date_range_type?: string | null | undefined;
2451
+ min_range?: number | null | undefined;
2452
+ gtin?: string | null | undefined;
2453
+ priceConditionDescription?: string | null | undefined;
2454
+ priceUnitQuantity?: number | null | undefined;
2455
+ priceUnitQuantityUOM?: string | null | undefined;
2456
+ }[];
2457
+ }>, "many">;
2458
+ childComponentDetails: z.ZodArray<z.ZodObject<{
2459
+ itemInfoId: z.ZodNumber;
2460
+ description: z.ZodString;
2461
+ saleable: z.ZodBoolean;
2462
+ valid: z.ZodBoolean;
2463
+ uniqueCriteria: z.ZodArray<z.ZodObject<{
2464
+ name: z.ZodString;
2465
+ value: z.ZodString;
2466
+ }, "strip", z.ZodTypeAny, {
2467
+ value: string;
2468
+ name: string;
2469
+ }, {
2470
+ value: string;
2471
+ name: string;
2472
+ }>, "many">;
2473
+ }, "strip", z.ZodTypeAny, {
2474
+ valid: boolean;
2475
+ description: string;
2476
+ itemInfoId: number;
2477
+ saleable: boolean;
2478
+ uniqueCriteria: {
2479
+ value: string;
2480
+ name: string;
2481
+ }[];
2482
+ }, {
2483
+ valid: boolean;
2484
+ description: string;
2485
+ itemInfoId: number;
2486
+ saleable: boolean;
2487
+ uniqueCriteria: {
2488
+ value: string;
2489
+ name: string;
2490
+ }[];
2491
+ }>, "many">;
2492
+ parentComponentDetails: z.ZodArray<z.ZodObject<{
2493
+ itemInfoId: z.ZodNumber;
2494
+ description: z.ZodString;
2495
+ saleable: z.ZodBoolean;
2496
+ valid: z.ZodBoolean;
2497
+ uniqueCriteria: z.ZodArray<z.ZodObject<{
2498
+ name: z.ZodString;
2499
+ value: z.ZodString;
2500
+ }, "strip", z.ZodTypeAny, {
2501
+ value: string;
2502
+ name: string;
2503
+ }, {
2504
+ value: string;
2505
+ name: string;
2506
+ }>, "many">;
2507
+ }, "strip", z.ZodTypeAny, {
2508
+ valid: boolean;
2509
+ description: string;
2510
+ itemInfoId: number;
2511
+ saleable: boolean;
2512
+ uniqueCriteria: {
2513
+ value: string;
2514
+ name: string;
2515
+ }[];
2516
+ }, {
2517
+ valid: boolean;
2518
+ description: string;
2519
+ itemInfoId: number;
2520
+ saleable: boolean;
2521
+ uniqueCriteria: {
2522
+ value: string;
2523
+ name: string;
2524
+ }[];
2525
+ }>, "many">;
2526
+ locales: z.ZodArray<z.ZodString, "many">;
2527
+ }, "strip", z.ZodTypeAny, {
2528
+ status: string;
2529
+ createdDate: string;
2530
+ iteminfoid: number;
2531
+ companyid: number;
2532
+ lastUpdatedDate: string;
2533
+ identifiers: Record<string, any>;
2534
+ hierarchyDetails: {
2535
+ catalogs: {
2536
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2537
+ name: string;
2538
+ companyId: number;
2539
+ id: number;
2540
+ description?: string | null | undefined;
2541
+ }[];
2542
+ selectionCodes: {
2543
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2544
+ name: string;
2545
+ companyId: number;
2546
+ id: number;
2547
+ description?: string | null | undefined;
2548
+ }[];
2549
+ productCodes: {
2550
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2551
+ name: string;
2552
+ companyId: number;
2553
+ id: number;
2554
+ description?: string | null | undefined;
2555
+ }[];
2556
+ };
2557
+ groupedAttributes: {
2558
+ type: string;
2559
+ attributes: {
2560
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2561
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2562
+ name: string;
2563
+ label: string;
2564
+ group: string;
2565
+ orderBy?: string | number | null | undefined;
2566
+ }[];
2567
+ attributeGroups: {
2568
+ type: string;
2569
+ rows: {
2570
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2571
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2572
+ name: string;
2573
+ label: string;
2574
+ group: string;
2575
+ orderBy?: string | number | null | undefined;
2576
+ }[][];
2577
+ repeatableGroups: {
2578
+ repeatableGroupId: string;
2579
+ repeatableNumber: number;
2580
+ }[];
2581
+ }[];
2582
+ }[];
2583
+ packComponentDetails: {
2584
+ itemInfo: {
2585
+ attributes: Record<string, string | string[]>;
2586
+ serviceId: number;
2587
+ iteminfoid: number;
2588
+ companyid: number;
2589
+ createddate: number;
2590
+ isServiceApi: boolean;
2591
+ isactive: number;
2592
+ isvalid: number;
2593
+ itemType: string;
2594
+ itemtimestamp: number;
2595
+ };
2596
+ itemPrices: {
2597
+ amount: number;
2598
+ currency: string;
2599
+ qualifier: string;
2600
+ id?: number | null | undefined;
2601
+ priceDivision?: string | null | undefined;
2602
+ iteminfoid?: number | null | undefined;
2603
+ startdate?: string | null | undefined;
2604
+ enddate?: string | null | undefined;
2605
+ region?: string | null | undefined;
2606
+ regionqualifier?: string | null | undefined;
2607
+ regiondescription?: string | null | undefined;
2608
+ partnercompanyid?: string | null | undefined;
2609
+ itempricetimestamp?: number | null | undefined;
2610
+ range_type?: string | null | undefined;
2611
+ date_range_type?: string | null | undefined;
2612
+ min_range?: number | null | undefined;
2613
+ gtin?: string | null | undefined;
2614
+ priceConditionDescription?: string | null | undefined;
2615
+ priceUnitQuantity?: number | null | undefined;
2616
+ priceUnitQuantityUOM?: string | null | undefined;
2617
+ }[];
2618
+ }[];
2619
+ childComponentDetails: {
2620
+ valid: boolean;
2621
+ description: string;
2622
+ itemInfoId: number;
2623
+ saleable: boolean;
2624
+ uniqueCriteria: {
2625
+ value: string;
2626
+ name: string;
2627
+ }[];
2628
+ }[];
2629
+ parentComponentDetails: {
2630
+ valid: boolean;
2631
+ description: string;
2632
+ itemInfoId: number;
2633
+ saleable: boolean;
2634
+ uniqueCriteria: {
2635
+ value: string;
2636
+ name: string;
2637
+ }[];
2638
+ }[];
2639
+ locales: string[];
2640
+ }, {
2641
+ status: string;
2642
+ createdDate: string;
2643
+ iteminfoid: number;
2644
+ companyid: number;
2645
+ lastUpdatedDate: string;
2646
+ identifiers: Record<string, any>;
2647
+ hierarchyDetails: {
2648
+ catalogs: {
2649
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2650
+ name: string;
2651
+ companyId: number;
2652
+ id: number;
2653
+ description?: string | null | undefined;
2654
+ }[];
2655
+ selectionCodes: {
2656
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2657
+ name: string;
2658
+ companyId: number;
2659
+ id: number;
2660
+ description?: string | null | undefined;
2661
+ }[];
2662
+ productCodes: {
2663
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2664
+ name: string;
2665
+ companyId: number;
2666
+ id: number;
2667
+ description?: string | null | undefined;
2668
+ }[];
2669
+ };
2670
+ groupedAttributes: {
2671
+ type: string;
2672
+ attributes: {
2673
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2674
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2675
+ name: string;
2676
+ label: string;
2677
+ group: string;
2678
+ orderBy?: string | number | null | undefined;
2679
+ }[];
2680
+ attributeGroups: {
2681
+ type: string;
2682
+ rows: {
2683
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2684
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2685
+ name: string;
2686
+ label: string;
2687
+ group: string;
2688
+ orderBy?: string | number | null | undefined;
2689
+ }[][];
2690
+ repeatableGroups: {
2691
+ repeatableGroupId: string;
2692
+ repeatableNumber: number;
2693
+ }[];
2694
+ }[];
2695
+ }[];
2696
+ packComponentDetails: {
2697
+ itemInfo: {
2698
+ attributes: Record<string, string | string[]>;
2699
+ serviceId: number;
2700
+ iteminfoid: number;
2701
+ companyid: number;
2702
+ createddate: number;
2703
+ isServiceApi: boolean;
2704
+ isactive: number;
2705
+ isvalid: number;
2706
+ itemType: string;
2707
+ itemtimestamp: number;
2708
+ };
2709
+ itemPrices: {
2710
+ amount: number;
2711
+ currency: string;
2712
+ qualifier: string;
2713
+ id?: number | null | undefined;
2714
+ priceDivision?: string | null | undefined;
2715
+ iteminfoid?: number | null | undefined;
2716
+ startdate?: string | null | undefined;
2717
+ enddate?: string | null | undefined;
2718
+ region?: string | null | undefined;
2719
+ regionqualifier?: string | null | undefined;
2720
+ regiondescription?: string | null | undefined;
2721
+ partnercompanyid?: string | null | undefined;
2722
+ itempricetimestamp?: number | null | undefined;
2723
+ range_type?: string | null | undefined;
2724
+ date_range_type?: string | null | undefined;
2725
+ min_range?: number | null | undefined;
2726
+ gtin?: string | null | undefined;
2727
+ priceConditionDescription?: string | null | undefined;
2728
+ priceUnitQuantity?: number | null | undefined;
2729
+ priceUnitQuantityUOM?: string | null | undefined;
2730
+ }[];
2731
+ }[];
2732
+ childComponentDetails: {
2733
+ valid: boolean;
2734
+ description: string;
2735
+ itemInfoId: number;
2736
+ saleable: boolean;
2737
+ uniqueCriteria: {
2738
+ value: string;
2739
+ name: string;
2740
+ }[];
2741
+ }[];
2742
+ parentComponentDetails: {
2743
+ valid: boolean;
2744
+ description: string;
2745
+ itemInfoId: number;
2746
+ saleable: boolean;
2747
+ uniqueCriteria: {
2748
+ value: string;
2749
+ name: string;
2750
+ }[];
2751
+ }[];
2752
+ locales: string[];
2753
+ }>;
2754
+ }, "strip", z.ZodTypeAny, {
2755
+ item: {
2756
+ status: string;
2757
+ createdDate: string;
2758
+ iteminfoid: number;
2759
+ companyid: number;
2760
+ lastUpdatedDate: string;
2761
+ identifiers: Record<string, any>;
2762
+ hierarchyDetails: {
2763
+ catalogs: {
2764
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2765
+ name: string;
2766
+ companyId: number;
2767
+ id: number;
2768
+ description?: string | null | undefined;
2769
+ }[];
2770
+ selectionCodes: {
2771
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2772
+ name: string;
2773
+ companyId: number;
2774
+ id: number;
2775
+ description?: string | null | undefined;
2776
+ }[];
2777
+ productCodes: {
2778
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2779
+ name: string;
2780
+ companyId: number;
2781
+ id: number;
2782
+ description?: string | null | undefined;
2783
+ }[];
2784
+ };
2785
+ groupedAttributes: {
2786
+ type: string;
2787
+ attributes: {
2788
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2789
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2790
+ name: string;
2791
+ label: string;
2792
+ group: string;
2793
+ orderBy?: string | number | null | undefined;
2794
+ }[];
2795
+ attributeGroups: {
2796
+ type: string;
2797
+ rows: {
2798
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2799
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2800
+ name: string;
2801
+ label: string;
2802
+ group: string;
2803
+ orderBy?: string | number | null | undefined;
2804
+ }[][];
2805
+ repeatableGroups: {
2806
+ repeatableGroupId: string;
2807
+ repeatableNumber: number;
2808
+ }[];
2809
+ }[];
2810
+ }[];
2811
+ packComponentDetails: {
2812
+ itemInfo: {
2813
+ attributes: Record<string, string | string[]>;
2814
+ serviceId: number;
2815
+ iteminfoid: number;
2816
+ companyid: number;
2817
+ createddate: number;
2818
+ isServiceApi: boolean;
2819
+ isactive: number;
2820
+ isvalid: number;
2821
+ itemType: string;
2822
+ itemtimestamp: number;
2823
+ };
2824
+ itemPrices: {
2825
+ amount: number;
2826
+ currency: string;
2827
+ qualifier: string;
2828
+ id?: number | null | undefined;
2829
+ priceDivision?: string | null | undefined;
2830
+ iteminfoid?: number | null | undefined;
2831
+ startdate?: string | null | undefined;
2832
+ enddate?: string | null | undefined;
2833
+ region?: string | null | undefined;
2834
+ regionqualifier?: string | null | undefined;
2835
+ regiondescription?: string | null | undefined;
2836
+ partnercompanyid?: string | null | undefined;
2837
+ itempricetimestamp?: number | null | undefined;
2838
+ range_type?: string | null | undefined;
2839
+ date_range_type?: string | null | undefined;
2840
+ min_range?: number | null | undefined;
2841
+ gtin?: string | null | undefined;
2842
+ priceConditionDescription?: string | null | undefined;
2843
+ priceUnitQuantity?: number | null | undefined;
2844
+ priceUnitQuantityUOM?: string | null | undefined;
2845
+ }[];
2846
+ }[];
2847
+ childComponentDetails: {
2848
+ valid: boolean;
2849
+ description: string;
2850
+ itemInfoId: number;
2851
+ saleable: boolean;
2852
+ uniqueCriteria: {
2853
+ value: string;
2854
+ name: string;
2855
+ }[];
2856
+ }[];
2857
+ parentComponentDetails: {
2858
+ valid: boolean;
2859
+ description: string;
2860
+ itemInfoId: number;
2861
+ saleable: boolean;
2862
+ uniqueCriteria: {
2863
+ value: string;
2864
+ name: string;
2865
+ }[];
2866
+ }[];
2867
+ locales: string[];
2868
+ };
2869
+ }, {
2870
+ item: {
2871
+ status: string;
2872
+ createdDate: string;
2873
+ iteminfoid: number;
2874
+ companyid: number;
2875
+ lastUpdatedDate: string;
2876
+ identifiers: Record<string, any>;
2877
+ hierarchyDetails: {
2878
+ catalogs: {
2879
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2880
+ name: string;
2881
+ companyId: number;
2882
+ id: number;
2883
+ description?: string | null | undefined;
2884
+ }[];
2885
+ selectionCodes: {
2886
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2887
+ name: string;
2888
+ companyId: number;
2889
+ id: number;
2890
+ description?: string | null | undefined;
2891
+ }[];
2892
+ productCodes: {
2893
+ type: "CATALOG" | "PRODUCT_CODE" | "SELECTION_CODE" | "AKA" | "EXPORT" | "LABEL" | "LEGACY_PRODUCT_TYPE" | "PRODUCT_CLASSIFICATION" | "TAXONOMY_ROOT";
2894
+ name: string;
2895
+ companyId: number;
2896
+ id: number;
2897
+ description?: string | null | undefined;
2898
+ }[];
2899
+ };
2900
+ groupedAttributes: {
2901
+ type: string;
2902
+ attributes: {
2903
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2904
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2905
+ name: string;
2906
+ label: string;
2907
+ group: string;
2908
+ orderBy?: string | number | null | undefined;
2909
+ }[];
2910
+ attributeGroups: {
2911
+ type: string;
2912
+ rows: {
2913
+ value: ((string | number | string[] | number[]) & (string | number | string[] | number[] | undefined)) | null;
2914
+ type: "TEXT" | "SET" | "INTEGER" | "FLOAT" | "BOOLEAN" | "DATE" | "KEYVALUE" | "STRING" | "REAL";
2915
+ name: string;
2916
+ label: string;
2917
+ group: string;
2918
+ orderBy?: string | number | null | undefined;
2919
+ }[][];
2920
+ repeatableGroups: {
2921
+ repeatableGroupId: string;
2922
+ repeatableNumber: number;
2923
+ }[];
2924
+ }[];
2925
+ }[];
2926
+ packComponentDetails: {
2927
+ itemInfo: {
2928
+ attributes: Record<string, string | string[]>;
2929
+ serviceId: number;
2930
+ iteminfoid: number;
2931
+ companyid: number;
2932
+ createddate: number;
2933
+ isServiceApi: boolean;
2934
+ isactive: number;
2935
+ isvalid: number;
2936
+ itemType: string;
2937
+ itemtimestamp: number;
2938
+ };
2939
+ itemPrices: {
2940
+ amount: number;
2941
+ currency: string;
2942
+ qualifier: string;
2943
+ id?: number | null | undefined;
2944
+ priceDivision?: string | null | undefined;
2945
+ iteminfoid?: number | null | undefined;
2946
+ startdate?: string | null | undefined;
2947
+ enddate?: string | null | undefined;
2948
+ region?: string | null | undefined;
2949
+ regionqualifier?: string | null | undefined;
2950
+ regiondescription?: string | null | undefined;
2951
+ partnercompanyid?: string | null | undefined;
2952
+ itempricetimestamp?: number | null | undefined;
2953
+ range_type?: string | null | undefined;
2954
+ date_range_type?: string | null | undefined;
2955
+ min_range?: number | null | undefined;
2956
+ gtin?: string | null | undefined;
2957
+ priceConditionDescription?: string | null | undefined;
2958
+ priceUnitQuantity?: number | null | undefined;
2959
+ priceUnitQuantityUOM?: string | null | undefined;
2960
+ }[];
2961
+ }[];
2962
+ childComponentDetails: {
2963
+ valid: boolean;
2964
+ description: string;
2965
+ itemInfoId: number;
2966
+ saleable: boolean;
2967
+ uniqueCriteria: {
2968
+ value: string;
2969
+ name: string;
2970
+ }[];
2971
+ }[];
2972
+ parentComponentDetails: {
2973
+ valid: boolean;
2974
+ description: string;
2975
+ itemInfoId: number;
2976
+ saleable: boolean;
2977
+ uniqueCriteria: {
2978
+ value: string;
2979
+ name: string;
2980
+ }[];
2981
+ }[];
2982
+ locales: string[];
2983
+ };
2984
+ }>;
2985
+ type ItemDetailView = z.infer<typeof itemDetailViewSchema>;
2986
+
2987
+ declare const itemErrorDetailsResultSchema: z.ZodObject<{
2988
+ itemInfoId: z.ZodNumber;
2989
+ upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2990
+ isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2991
+ gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2992
+ partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2993
+ ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2994
+ itemName: z.ZodNullable<z.ZodString>;
2995
+ itemErrorDetails: z.ZodArray<z.ZodObject<{
2996
+ errorMessage: z.ZodString;
2997
+ attributeName: z.ZodNullable<z.ZodString>;
2998
+ tradingPartnerNames: z.ZodArray<z.ZodString, "many">;
2999
+ phases: z.ZodArray<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>, "many">;
3000
+ attributeDbNames: z.ZodArray<z.ZodString, "many">;
3001
+ tradingPartnerStages: z.ZodArray<z.ZodObject<{
3002
+ companyId: z.ZodNumber;
3003
+ companyName: z.ZodString;
3004
+ stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
3005
+ isValid: z.ZodBoolean;
3006
+ }, "strip", z.ZodTypeAny, {
3007
+ companyId: number;
3008
+ companyName: string;
3009
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
3010
+ isValid: boolean;
3011
+ }, {
3012
+ companyId: number;
3013
+ companyName: string;
3014
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
3015
+ isValid: boolean;
3016
+ }>, "many">;
3017
+ repeatableGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3018
+ }, "strip", z.ZodTypeAny, {
3019
+ attributeName: string | null;
3020
+ tradingPartnerStages: {
3021
+ companyId: number;
3022
+ companyName: string;
3023
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
3024
+ isValid: boolean;
3025
+ }[];
3026
+ errorMessage: string;
3027
+ tradingPartnerNames: string[];
3028
+ phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS")[];
3029
+ attributeDbNames: string[];
3030
+ repeatableGroupId?: string | null | undefined;
3031
+ }, {
3032
+ attributeName: string | null;
3033
+ tradingPartnerStages: {
3034
+ companyId: number;
3035
+ companyName: string;
3036
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
3037
+ isValid: boolean;
3038
+ }[];
3039
+ errorMessage: string;
3040
+ tradingPartnerNames: string[];
3041
+ phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS")[];
3042
+ attributeDbNames: string[];
3043
+ repeatableGroupId?: string | null | undefined;
3044
+ }>, "many">;
3045
+ }, "strip", z.ZodTypeAny, {
3046
+ itemInfoId: number;
3047
+ itemName: string | null;
3048
+ itemErrorDetails: {
3049
+ attributeName: string | null;
3050
+ tradingPartnerStages: {
3051
+ companyId: number;
3052
+ companyName: string;
3053
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
3054
+ isValid: boolean;
3055
+ }[];
3056
+ errorMessage: string;
3057
+ tradingPartnerNames: string[];
3058
+ phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS")[];
3059
+ attributeDbNames: string[];
3060
+ repeatableGroupId?: string | null | undefined;
3061
+ }[];
3062
+ upc?: string | null | undefined;
3063
+ isbn?: string | null | undefined;
3064
+ gtin?: string | null | undefined;
3065
+ partnumber?: string | null | undefined;
3066
+ ean?: string | null | undefined;
3067
+ }, {
3068
+ itemInfoId: number;
3069
+ itemName: string | null;
3070
+ itemErrorDetails: {
3071
+ attributeName: string | null;
3072
+ tradingPartnerStages: {
3073
+ companyId: number;
3074
+ companyName: string;
3075
+ stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
3076
+ isValid: boolean;
3077
+ }[];
3078
+ errorMessage: string;
3079
+ tradingPartnerNames: string[];
3080
+ phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS")[];
3081
+ attributeDbNames: string[];
3082
+ repeatableGroupId?: string | null | undefined;
3083
+ }[];
3084
+ upc?: string | null | undefined;
3085
+ isbn?: string | null | undefined;
3086
+ gtin?: string | null | undefined;
3087
+ partnumber?: string | null | undefined;
3088
+ ean?: string | null | undefined;
3089
+ }>;
3090
+ type ItemErrorDetailsResult = z.infer<typeof itemErrorDetailsResultSchema>;
3091
+
3092
+ export { AsstClient as A, BASE_URLS as B, itemSearchViewSchema as C, itemDetailViewSchema as D, Export as E, localeSchema as F, spreadsheetTemplateSchema as G, tradingPartnerAccessByCompanyIdSchema as H, Import as I, userAccountSchema as J, itemErrorDetailsResultSchema as K, Locale as L, SpreadsheetTemplate as S, TradingPartnerAccessByCompanyId as T, UserAccount as U, VendorPartnerAttGroups as V, ImportsStatus as a, AttrProdType as b, ItemCategoriesSearch as c, AttributeMetaData as d, AttributesByCompany as e, AttributeDefinition as f, AttributeValidValues as g, ItemSearchView as h, ItemDetailView as i, ItemErrorDetailsResult as j, AsstClientOptions as k, AsstUrl as l, Env as m, ImportErrors as n, attrProdTypeSchema as o, envSchema as p, importErrorsSchema as q, importSchema as r, importsStatusSchema as s, exportSchema as t, itemCategoriesSearchSchema as u, vendorPartnerAttGroupsSchema as v, attributeDefinitionSchema as w, attributeMetaDataSchema as x, attributesByCompanySchema as y, attributeValidValuesSchema as z };