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

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