@spscommerce/asst-api 0.0.1-beta.5 → 0.0.1-beta.7

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