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