@spscommerce/asst-api 0.0.1-beta.8 → 0.0.1
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.
- package/dist/{ItemErrorDetailsResult-c12c4eac.d.ts → ItemErrorDetailsResult-317fbe3e.d.ts} +368 -298
- package/dist/ItemStatusResponse-7f871d5a.d.ts +91 -0
- package/dist/{chunk-3JRE7YYE.js → chunk-HEFVXX2V.js} +86 -27
- package/dist/{chunk-OVOZIZA2.js → chunk-HG7MCO42.js} +81 -18
- package/dist/index.cjs +156 -42
- package/dist/index.d.ts +119 -6
- package/dist/index.js +4 -2
- package/dist/msw.cjs +162 -33
- package/dist/msw.d.ts +118 -61
- package/dist/msw.js +82 -11
- package/dist/{ItemErrorDetails-1614b511.d.ts → zod-1c4396f8.d.ts} +377 -241
- package/dist/zod.cjs +88 -26
- package/dist/zod.d.ts +2 -2
- package/dist/zod.js +9 -1
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import './ItemErrorDetailsResult-317fbe3e.js';
|
|
1
2
|
import { z } from 'zod';
|
|
2
3
|
|
|
3
4
|
declare const importDetailSchema: z.ZodObject<{
|
|
@@ -92,24 +93,73 @@ type DownLoadItemsParams = z.infer<typeof downLoadItemsParamsSchema>;
|
|
|
92
93
|
|
|
93
94
|
declare const connectionSchema: z.ZodObject<{
|
|
94
95
|
catalog_id: z.ZodNumber;
|
|
95
|
-
catalog_name: z.ZodString
|
|
96
|
+
catalog_name: z.ZodNullable<z.ZodString>;
|
|
96
97
|
partner_company_name: z.ZodString;
|
|
97
98
|
partner_company_id: z.ZodNumber;
|
|
99
|
+
partner_org_id: z.ZodString;
|
|
98
100
|
}, "strip", z.ZodTypeAny, {
|
|
99
101
|
catalog_id: number;
|
|
100
|
-
catalog_name: string;
|
|
102
|
+
catalog_name: string | null;
|
|
101
103
|
partner_company_name: string;
|
|
102
104
|
partner_company_id: number;
|
|
105
|
+
partner_org_id: string;
|
|
103
106
|
}, {
|
|
104
107
|
catalog_id: number;
|
|
105
|
-
catalog_name: string;
|
|
108
|
+
catalog_name: string | null;
|
|
106
109
|
partner_company_name: string;
|
|
107
110
|
partner_company_id: number;
|
|
111
|
+
partner_org_id: string;
|
|
108
112
|
}>;
|
|
109
113
|
type Connection = z.infer<typeof connectionSchema>;
|
|
110
114
|
|
|
115
|
+
declare const baseHierarchySchema: z.ZodObject<{
|
|
116
|
+
id: z.ZodString;
|
|
117
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
118
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
119
|
+
type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
120
|
+
}, "strip", z.ZodTypeAny, {
|
|
121
|
+
id: string;
|
|
122
|
+
name?: string | null | undefined;
|
|
123
|
+
description?: string | null | undefined;
|
|
124
|
+
type?: string | null | undefined;
|
|
125
|
+
}, {
|
|
126
|
+
id: string;
|
|
127
|
+
name?: string | null | undefined;
|
|
128
|
+
description?: string | null | undefined;
|
|
129
|
+
type?: string | null | undefined;
|
|
130
|
+
}>;
|
|
131
|
+
type Hierarchy = z.infer<typeof baseHierarchySchema> & {
|
|
132
|
+
child: Hierarchy | null;
|
|
133
|
+
};
|
|
134
|
+
declare const hierarchySchema: z.ZodType<Hierarchy>;
|
|
135
|
+
|
|
136
|
+
declare const itemHierarchyResponseSchema: z.ZodObject<{
|
|
137
|
+
itemHierarchies: z.ZodArray<z.ZodObject<{
|
|
138
|
+
itemId: z.ZodString;
|
|
139
|
+
hierarchies: z.ZodArray<z.ZodType<Hierarchy, z.ZodTypeDef, Hierarchy>, "many">;
|
|
140
|
+
}, "strip", z.ZodTypeAny, {
|
|
141
|
+
itemId: string;
|
|
142
|
+
hierarchies: Hierarchy[];
|
|
143
|
+
}, {
|
|
144
|
+
itemId: string;
|
|
145
|
+
hierarchies: Hierarchy[];
|
|
146
|
+
}>, "many">;
|
|
147
|
+
}, "strip", z.ZodTypeAny, {
|
|
148
|
+
itemHierarchies: {
|
|
149
|
+
itemId: string;
|
|
150
|
+
hierarchies: Hierarchy[];
|
|
151
|
+
}[];
|
|
152
|
+
}, {
|
|
153
|
+
itemHierarchies: {
|
|
154
|
+
itemId: string;
|
|
155
|
+
hierarchies: Hierarchy[];
|
|
156
|
+
}[];
|
|
157
|
+
}>;
|
|
158
|
+
type ItemHierarchyResponse = z.infer<typeof itemHierarchyResponseSchema>;
|
|
159
|
+
|
|
111
160
|
declare const itemCategorySchema: z.ZodObject<{
|
|
112
161
|
categoryid: z.ZodNumber;
|
|
162
|
+
encodedCategoryId: z.ZodString;
|
|
113
163
|
companyId: z.ZodNumber;
|
|
114
164
|
name: z.ZodString;
|
|
115
165
|
isActive: z.ZodNumber;
|
|
@@ -126,6 +176,7 @@ declare const itemCategorySchema: z.ZodObject<{
|
|
|
126
176
|
isActive: number;
|
|
127
177
|
companyId: number;
|
|
128
178
|
categoryid: number;
|
|
179
|
+
encodedCategoryId: string;
|
|
129
180
|
typeId: number;
|
|
130
181
|
createdDate?: number | null | undefined;
|
|
131
182
|
categorytimestamp?: number | null | undefined;
|
|
@@ -138,6 +189,7 @@ declare const itemCategorySchema: z.ZodObject<{
|
|
|
138
189
|
isActive: number;
|
|
139
190
|
companyId: number;
|
|
140
191
|
categoryid: number;
|
|
192
|
+
encodedCategoryId: string;
|
|
141
193
|
typeId: number;
|
|
142
194
|
createdDate?: number | null | undefined;
|
|
143
195
|
categorytimestamp?: number | null | undefined;
|
|
@@ -147,6 +199,18 @@ declare const itemCategorySchema: z.ZodObject<{
|
|
|
147
199
|
}>;
|
|
148
200
|
type ItemCategory = z.infer<typeof itemCategorySchema>;
|
|
149
201
|
|
|
202
|
+
declare const itemHierarchySchema: z.ZodObject<{
|
|
203
|
+
itemId: z.ZodString;
|
|
204
|
+
hierarchies: z.ZodArray<z.ZodType<Hierarchy, z.ZodTypeDef, Hierarchy>, "many">;
|
|
205
|
+
}, "strip", z.ZodTypeAny, {
|
|
206
|
+
itemId: string;
|
|
207
|
+
hierarchies: Hierarchy[];
|
|
208
|
+
}, {
|
|
209
|
+
itemId: string;
|
|
210
|
+
hierarchies: Hierarchy[];
|
|
211
|
+
}>;
|
|
212
|
+
type ItemHierarchy = z.infer<typeof itemHierarchySchema>;
|
|
213
|
+
|
|
150
214
|
declare const attributeSummarySchema: z.ZodObject<{
|
|
151
215
|
attributeId: z.ZodNumber;
|
|
152
216
|
attributeName: z.ZodString;
|
|
@@ -272,9 +336,9 @@ declare const identityServiceDatetimePreferencesSchema: z.ZodObject<{
|
|
|
272
336
|
type IdentityServiceDatetimePreferences = z.infer<typeof identityServiceDatetimePreferencesSchema>;
|
|
273
337
|
|
|
274
338
|
declare const identityServiceOrganizationSchema: z.ZodObject<{
|
|
275
|
-
organization_name: z.ZodString
|
|
276
|
-
organization_site: z.ZodString
|
|
277
|
-
namespace: z.ZodString
|
|
339
|
+
organization_name: z.ZodOptional<z.ZodString>;
|
|
340
|
+
organization_site: z.ZodOptional<z.ZodString>;
|
|
341
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
278
342
|
id: z.ZodString;
|
|
279
343
|
permissions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
280
344
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -292,9 +356,9 @@ declare const identityServiceOrganizationSchema: z.ZodObject<{
|
|
|
292
356
|
}>>;
|
|
293
357
|
}, "strip", z.ZodTypeAny, {
|
|
294
358
|
id: string;
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
359
|
+
organization_name?: string | undefined;
|
|
360
|
+
organization_site?: string | undefined;
|
|
361
|
+
namespace?: string | undefined;
|
|
298
362
|
permissions?: string[] | undefined;
|
|
299
363
|
metadata?: {
|
|
300
364
|
value: string;
|
|
@@ -303,9 +367,9 @@ declare const identityServiceOrganizationSchema: z.ZodObject<{
|
|
|
303
367
|
} | undefined;
|
|
304
368
|
}, {
|
|
305
369
|
id: string;
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
370
|
+
organization_name?: string | undefined;
|
|
371
|
+
organization_site?: string | undefined;
|
|
372
|
+
namespace?: string | undefined;
|
|
309
373
|
permissions?: string[] | undefined;
|
|
310
374
|
metadata?: {
|
|
311
375
|
value: string;
|
|
@@ -388,26 +452,26 @@ type IdentityServicePreferences = z.infer<typeof identityServicePreferencesSchem
|
|
|
388
452
|
|
|
389
453
|
declare const identityServiceUserSchema: z.ZodObject<{
|
|
390
454
|
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
|
|
455
|
+
email: z.ZodOptional<z.ZodString>;
|
|
456
|
+
first_name: z.ZodOptional<z.ZodString>;
|
|
457
|
+
last_name: z.ZodOptional<z.ZodString>;
|
|
458
|
+
job_title: z.ZodOptional<z.ZodString>;
|
|
459
|
+
externally_managed: z.ZodOptional<z.ZodBoolean>;
|
|
460
|
+
city: z.ZodOptional<z.ZodString>;
|
|
397
461
|
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
|
|
462
|
+
state: z.ZodOptional<z.ZodString>;
|
|
463
|
+
country: z.ZodOptional<z.ZodString>;
|
|
464
|
+
user_type: z.ZodOptional<z.ZodString>;
|
|
465
|
+
token_type: z.ZodOptional<z.ZodString>;
|
|
466
|
+
avatar_image_id: z.ZodOptional<z.ZodString>;
|
|
467
|
+
avatar_image_url: z.ZodOptional<z.ZodString>;
|
|
468
|
+
origin_avatar_image_id: z.ZodOptional<z.ZodString>;
|
|
469
|
+
bio: z.ZodOptional<z.ZodString>;
|
|
470
|
+
phone_number: z.ZodOptional<z.ZodString>;
|
|
471
|
+
twitter_handle: z.ZodOptional<z.ZodString>;
|
|
472
|
+
linkedin_url: z.ZodOptional<z.ZodString>;
|
|
409
473
|
description: z.ZodOptional<z.ZodString>;
|
|
410
|
-
preferences: z.ZodObject<{
|
|
474
|
+
preferences: z.ZodOptional<z.ZodObject<{
|
|
411
475
|
locale: z.ZodString;
|
|
412
476
|
timezone: z.ZodString;
|
|
413
477
|
cpUpgrade: z.ZodOptional<z.ZodString>;
|
|
@@ -460,12 +524,12 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
460
524
|
LONG_TIME: string;
|
|
461
525
|
};
|
|
462
526
|
cpUpgrade?: string | undefined;
|
|
463
|
-
}
|
|
527
|
+
}>>;
|
|
464
528
|
roles: z.ZodArray<z.ZodString, "many">;
|
|
465
529
|
organization: z.ZodObject<{
|
|
466
|
-
organization_name: z.ZodString
|
|
467
|
-
organization_site: z.ZodString
|
|
468
|
-
namespace: z.ZodString
|
|
530
|
+
organization_name: z.ZodOptional<z.ZodString>;
|
|
531
|
+
organization_site: z.ZodOptional<z.ZodString>;
|
|
532
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
469
533
|
id: z.ZodString;
|
|
470
534
|
permissions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
471
535
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -483,9 +547,9 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
483
547
|
}>>;
|
|
484
548
|
}, "strip", z.ZodTypeAny, {
|
|
485
549
|
id: string;
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
550
|
+
organization_name?: string | undefined;
|
|
551
|
+
organization_site?: string | undefined;
|
|
552
|
+
namespace?: string | undefined;
|
|
489
553
|
permissions?: string[] | undefined;
|
|
490
554
|
metadata?: {
|
|
491
555
|
value: string;
|
|
@@ -494,9 +558,9 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
494
558
|
} | undefined;
|
|
495
559
|
}, {
|
|
496
560
|
id: string;
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
561
|
+
organization_name?: string | undefined;
|
|
562
|
+
organization_site?: string | undefined;
|
|
563
|
+
namespace?: string | undefined;
|
|
500
564
|
permissions?: string[] | undefined;
|
|
501
565
|
metadata?: {
|
|
502
566
|
value: string;
|
|
@@ -509,43 +573,12 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
509
573
|
}, "strip", z.ZodTypeAny, {
|
|
510
574
|
name: string;
|
|
511
575
|
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
576
|
roles: string[];
|
|
544
577
|
organization: {
|
|
545
578
|
id: string;
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
579
|
+
organization_name?: string | undefined;
|
|
580
|
+
organization_site?: string | undefined;
|
|
581
|
+
namespace?: string | undefined;
|
|
549
582
|
permissions?: string[] | undefined;
|
|
550
583
|
metadata?: {
|
|
551
584
|
value: string;
|
|
@@ -555,28 +588,25 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
555
588
|
};
|
|
556
589
|
password: string;
|
|
557
590
|
verified: boolean;
|
|
591
|
+
email?: string | undefined;
|
|
592
|
+
first_name?: string | undefined;
|
|
593
|
+
last_name?: string | undefined;
|
|
594
|
+
job_title?: string | undefined;
|
|
595
|
+
externally_managed?: boolean | undefined;
|
|
596
|
+
city?: string | undefined;
|
|
597
|
+
state?: string | undefined;
|
|
598
|
+
country?: string | undefined;
|
|
599
|
+
user_type?: string | undefined;
|
|
600
|
+
token_type?: string | undefined;
|
|
601
|
+
avatar_image_id?: string | undefined;
|
|
602
|
+
avatar_image_url?: string | undefined;
|
|
603
|
+
origin_avatar_image_id?: string | undefined;
|
|
604
|
+
bio?: string | undefined;
|
|
605
|
+
phone_number?: string | undefined;
|
|
606
|
+
twitter_handle?: string | undefined;
|
|
607
|
+
linkedin_url?: string | undefined;
|
|
558
608
|
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: {
|
|
609
|
+
preferences?: {
|
|
580
610
|
locale: string;
|
|
581
611
|
timezone: string;
|
|
582
612
|
language: string[];
|
|
@@ -589,13 +619,16 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
589
619
|
LONG_TIME: string;
|
|
590
620
|
};
|
|
591
621
|
cpUpgrade?: string | undefined;
|
|
592
|
-
};
|
|
622
|
+
} | undefined;
|
|
623
|
+
}, {
|
|
624
|
+
name: string;
|
|
625
|
+
id: string;
|
|
593
626
|
roles: string[];
|
|
594
627
|
organization: {
|
|
595
628
|
id: string;
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
629
|
+
organization_name?: string | undefined;
|
|
630
|
+
organization_site?: string | undefined;
|
|
631
|
+
namespace?: string | undefined;
|
|
599
632
|
permissions?: string[] | undefined;
|
|
600
633
|
metadata?: {
|
|
601
634
|
value: string;
|
|
@@ -605,7 +638,38 @@ declare const identityServiceUserSchema: z.ZodObject<{
|
|
|
605
638
|
};
|
|
606
639
|
password: string;
|
|
607
640
|
verified: boolean;
|
|
641
|
+
email?: string | undefined;
|
|
642
|
+
first_name?: string | undefined;
|
|
643
|
+
last_name?: string | undefined;
|
|
644
|
+
job_title?: string | undefined;
|
|
645
|
+
externally_managed?: boolean | undefined;
|
|
646
|
+
city?: string | undefined;
|
|
647
|
+
state?: string | undefined;
|
|
648
|
+
country?: string | undefined;
|
|
649
|
+
user_type?: string | undefined;
|
|
650
|
+
token_type?: string | undefined;
|
|
651
|
+
avatar_image_id?: string | undefined;
|
|
652
|
+
avatar_image_url?: string | undefined;
|
|
653
|
+
origin_avatar_image_id?: string | undefined;
|
|
654
|
+
bio?: string | undefined;
|
|
655
|
+
phone_number?: string | undefined;
|
|
656
|
+
twitter_handle?: string | undefined;
|
|
657
|
+
linkedin_url?: string | undefined;
|
|
608
658
|
description?: string | undefined;
|
|
659
|
+
preferences?: {
|
|
660
|
+
locale: string;
|
|
661
|
+
timezone: string;
|
|
662
|
+
language: string[];
|
|
663
|
+
datetime: {
|
|
664
|
+
DATE: string;
|
|
665
|
+
DATE_TIME: string;
|
|
666
|
+
TIME: string;
|
|
667
|
+
SHORT_DATE: string;
|
|
668
|
+
LONG_DATETIME: string;
|
|
669
|
+
LONG_TIME: string;
|
|
670
|
+
};
|
|
671
|
+
cpUpgrade?: string | undefined;
|
|
672
|
+
} | undefined;
|
|
609
673
|
}>;
|
|
610
674
|
type IdentityServiceUser = z.infer<typeof identityServiceUserSchema>;
|
|
611
675
|
|
|
@@ -700,60 +764,80 @@ declare const itemTableSchema: z.ZodObject<{
|
|
|
700
764
|
consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
701
765
|
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
702
766
|
nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
703
|
-
nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodString
|
|
767
|
+
nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
704
768
|
productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
705
769
|
productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
706
|
-
}, "
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
tradingPartnerStages
|
|
770
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
771
|
+
rn: z.ZodOptional<z.ZodNumber>;
|
|
772
|
+
iteminfoid: z.ZodString;
|
|
773
|
+
tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
774
|
+
companyId: z.ZodNumber;
|
|
775
|
+
companyName: z.ZodString;
|
|
776
|
+
stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
|
|
777
|
+
isValid: z.ZodBoolean;
|
|
778
|
+
}, "strip", z.ZodTypeAny, {
|
|
710
779
|
companyId: number;
|
|
711
780
|
companyName: string;
|
|
712
781
|
stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
|
|
713
782
|
isValid: boolean;
|
|
714
|
-
}
|
|
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?: {
|
|
783
|
+
}, {
|
|
735
784
|
companyId: number;
|
|
736
785
|
companyName: string;
|
|
737
786
|
stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
|
|
738
787
|
isValid: boolean;
|
|
739
|
-
}
|
|
740
|
-
gtin
|
|
741
|
-
catalogname
|
|
742
|
-
isbn
|
|
743
|
-
lastupdateddatestring
|
|
744
|
-
upc
|
|
745
|
-
productcodename
|
|
746
|
-
ean
|
|
747
|
-
selectioncodename
|
|
748
|
-
createddatestring
|
|
749
|
-
partnumber
|
|
750
|
-
consumeravailabledatestring
|
|
751
|
-
status
|
|
752
|
-
nrfcolorcode
|
|
753
|
-
nrfsizecode
|
|
754
|
-
productcolordescription
|
|
755
|
-
productsizedescription
|
|
756
|
-
}
|
|
788
|
+
}>, "many">>;
|
|
789
|
+
gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
790
|
+
catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
791
|
+
isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
792
|
+
lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
793
|
+
upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
794
|
+
productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
795
|
+
ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
796
|
+
selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
797
|
+
createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
798
|
+
partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
799
|
+
consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
800
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
801
|
+
nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
802
|
+
nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
803
|
+
productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
804
|
+
productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
805
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
806
|
+
rn: z.ZodOptional<z.ZodNumber>;
|
|
807
|
+
iteminfoid: z.ZodString;
|
|
808
|
+
tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
809
|
+
companyId: z.ZodNumber;
|
|
810
|
+
companyName: z.ZodString;
|
|
811
|
+
stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
|
|
812
|
+
isValid: z.ZodBoolean;
|
|
813
|
+
}, "strip", z.ZodTypeAny, {
|
|
814
|
+
companyId: number;
|
|
815
|
+
companyName: string;
|
|
816
|
+
stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
|
|
817
|
+
isValid: boolean;
|
|
818
|
+
}, {
|
|
819
|
+
companyId: number;
|
|
820
|
+
companyName: string;
|
|
821
|
+
stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
|
|
822
|
+
isValid: boolean;
|
|
823
|
+
}>, "many">>;
|
|
824
|
+
gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
825
|
+
catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
826
|
+
isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
827
|
+
lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
828
|
+
upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
829
|
+
productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
830
|
+
ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
831
|
+
selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
832
|
+
createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
833
|
+
partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
834
|
+
consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
835
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
836
|
+
nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
837
|
+
nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
838
|
+
productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
839
|
+
productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
840
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
757
841
|
}, "strip", z.ZodTypeAny, {
|
|
758
842
|
headers: {
|
|
759
843
|
companyId: string;
|
|
@@ -769,32 +853,42 @@ declare const itemTableSchema: z.ZodObject<{
|
|
|
769
853
|
itemInfoId: string;
|
|
770
854
|
status?: string | undefined;
|
|
771
855
|
};
|
|
772
|
-
itemMaps: {
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
tradingPartnerStages
|
|
856
|
+
itemMaps: z.objectOutputType<{
|
|
857
|
+
rn: z.ZodOptional<z.ZodNumber>;
|
|
858
|
+
iteminfoid: z.ZodString;
|
|
859
|
+
tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
860
|
+
companyId: z.ZodNumber;
|
|
861
|
+
companyName: z.ZodString;
|
|
862
|
+
stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
|
|
863
|
+
isValid: z.ZodBoolean;
|
|
864
|
+
}, "strip", z.ZodTypeAny, {
|
|
776
865
|
companyId: number;
|
|
777
866
|
companyName: string;
|
|
778
867
|
stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
|
|
779
868
|
isValid: boolean;
|
|
780
|
-
}
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
869
|
+
}, {
|
|
870
|
+
companyId: number;
|
|
871
|
+
companyName: string;
|
|
872
|
+
stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
|
|
873
|
+
isValid: boolean;
|
|
874
|
+
}>, "many">>;
|
|
875
|
+
gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
876
|
+
catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
877
|
+
isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
878
|
+
lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
879
|
+
upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
880
|
+
productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
881
|
+
ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
882
|
+
selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
883
|
+
createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
884
|
+
partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
885
|
+
consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
886
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
887
|
+
nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
888
|
+
nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
889
|
+
productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
890
|
+
productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
891
|
+
}, z.ZodTypeAny, "passthrough">[];
|
|
798
892
|
}, {
|
|
799
893
|
headers: {
|
|
800
894
|
companyId: string;
|
|
@@ -810,32 +904,42 @@ declare const itemTableSchema: z.ZodObject<{
|
|
|
810
904
|
itemInfoId: string;
|
|
811
905
|
status?: string | undefined;
|
|
812
906
|
};
|
|
813
|
-
itemMaps: {
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
tradingPartnerStages
|
|
907
|
+
itemMaps: z.objectInputType<{
|
|
908
|
+
rn: z.ZodOptional<z.ZodNumber>;
|
|
909
|
+
iteminfoid: z.ZodString;
|
|
910
|
+
tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
911
|
+
companyId: z.ZodNumber;
|
|
912
|
+
companyName: z.ZodString;
|
|
913
|
+
stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
|
|
914
|
+
isValid: z.ZodBoolean;
|
|
915
|
+
}, "strip", z.ZodTypeAny, {
|
|
817
916
|
companyId: number;
|
|
818
917
|
companyName: string;
|
|
819
918
|
stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
|
|
820
919
|
isValid: boolean;
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
920
|
+
}, {
|
|
921
|
+
companyId: number;
|
|
922
|
+
companyName: string;
|
|
923
|
+
stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
|
|
924
|
+
isValid: boolean;
|
|
925
|
+
}>, "many">>;
|
|
926
|
+
gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
927
|
+
catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
928
|
+
isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
929
|
+
lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
930
|
+
upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
931
|
+
productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
932
|
+
ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
933
|
+
selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
934
|
+
createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
935
|
+
partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
936
|
+
consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
937
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
938
|
+
nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
939
|
+
nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
940
|
+
productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
941
|
+
productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
942
|
+
}, z.ZodTypeAny, "passthrough">[];
|
|
839
943
|
}>;
|
|
840
944
|
type ItemTable = z.infer<typeof itemTableSchema>;
|
|
841
945
|
|
|
@@ -913,60 +1017,80 @@ declare const itemMapSchema: z.ZodObject<{
|
|
|
913
1017
|
consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
914
1018
|
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
915
1019
|
nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
916
|
-
nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodString
|
|
1020
|
+
nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
917
1021
|
productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
918
1022
|
productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
919
|
-
}, "
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
tradingPartnerStages
|
|
1023
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1024
|
+
rn: z.ZodOptional<z.ZodNumber>;
|
|
1025
|
+
iteminfoid: z.ZodString;
|
|
1026
|
+
tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1027
|
+
companyId: z.ZodNumber;
|
|
1028
|
+
companyName: z.ZodString;
|
|
1029
|
+
stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
|
|
1030
|
+
isValid: z.ZodBoolean;
|
|
1031
|
+
}, "strip", z.ZodTypeAny, {
|
|
923
1032
|
companyId: number;
|
|
924
1033
|
companyName: string;
|
|
925
1034
|
stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
|
|
926
1035
|
isValid: boolean;
|
|
927
|
-
}
|
|
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?: {
|
|
1036
|
+
}, {
|
|
948
1037
|
companyId: number;
|
|
949
1038
|
companyName: string;
|
|
950
1039
|
stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
|
|
951
1040
|
isValid: boolean;
|
|
952
|
-
}
|
|
953
|
-
gtin
|
|
954
|
-
catalogname
|
|
955
|
-
isbn
|
|
956
|
-
lastupdateddatestring
|
|
957
|
-
upc
|
|
958
|
-
productcodename
|
|
959
|
-
ean
|
|
960
|
-
selectioncodename
|
|
961
|
-
createddatestring
|
|
962
|
-
partnumber
|
|
963
|
-
consumeravailabledatestring
|
|
964
|
-
status
|
|
965
|
-
nrfcolorcode
|
|
966
|
-
nrfsizecode
|
|
967
|
-
productcolordescription
|
|
968
|
-
productsizedescription
|
|
969
|
-
}
|
|
1041
|
+
}>, "many">>;
|
|
1042
|
+
gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1043
|
+
catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1044
|
+
isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1045
|
+
lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1046
|
+
upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1047
|
+
productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1048
|
+
ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1049
|
+
selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1050
|
+
createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1051
|
+
partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1052
|
+
consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1053
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1054
|
+
nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
1055
|
+
nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
1056
|
+
productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
1057
|
+
productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
1058
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1059
|
+
rn: z.ZodOptional<z.ZodNumber>;
|
|
1060
|
+
iteminfoid: z.ZodString;
|
|
1061
|
+
tradingPartnerStages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1062
|
+
companyId: z.ZodNumber;
|
|
1063
|
+
companyName: z.ZodString;
|
|
1064
|
+
stage: z.ZodNullable<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>>;
|
|
1065
|
+
isValid: z.ZodBoolean;
|
|
1066
|
+
}, "strip", z.ZodTypeAny, {
|
|
1067
|
+
companyId: number;
|
|
1068
|
+
companyName: string;
|
|
1069
|
+
stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
|
|
1070
|
+
isValid: boolean;
|
|
1071
|
+
}, {
|
|
1072
|
+
companyId: number;
|
|
1073
|
+
companyName: string;
|
|
1074
|
+
stage: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS" | null;
|
|
1075
|
+
isValid: boolean;
|
|
1076
|
+
}>, "many">>;
|
|
1077
|
+
gtin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1078
|
+
catalogname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1079
|
+
isbn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1080
|
+
lastupdateddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1081
|
+
upc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1082
|
+
productcodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1083
|
+
ean: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1084
|
+
selectioncodename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1085
|
+
createddatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1086
|
+
partnumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1087
|
+
consumeravailabledatestring: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1088
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1089
|
+
nrfcolorcode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
1090
|
+
nrfsizecode: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
1091
|
+
productcolordescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
1092
|
+
productsizedescription: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
1093
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
970
1094
|
type ItemMap = z.infer<typeof itemMapSchema>;
|
|
971
1095
|
|
|
972
1096
|
declare const tradingPartnerStageSchema: z.ZodObject<{
|
|
@@ -2391,8 +2515,8 @@ declare const bulbSchema: z.ZodObject<{
|
|
|
2391
2515
|
threewaybulb: z.ZodString;
|
|
2392
2516
|
}, "strip", z.ZodTypeAny, {
|
|
2393
2517
|
id: number;
|
|
2394
|
-
iteminfoid: number;
|
|
2395
2518
|
shape: string;
|
|
2519
|
+
iteminfoid: number;
|
|
2396
2520
|
position: number;
|
|
2397
2521
|
quantity: number;
|
|
2398
2522
|
basetype: string;
|
|
@@ -2406,8 +2530,8 @@ declare const bulbSchema: z.ZodObject<{
|
|
|
2406
2530
|
threewaybulb: string;
|
|
2407
2531
|
}, {
|
|
2408
2532
|
id: number;
|
|
2409
|
-
iteminfoid: number;
|
|
2410
2533
|
shape: string;
|
|
2534
|
+
iteminfoid: number;
|
|
2411
2535
|
position: number;
|
|
2412
2536
|
quantity: number;
|
|
2413
2537
|
basetype: string;
|
|
@@ -2644,8 +2768,8 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2644
2768
|
threewaybulb: z.ZodString;
|
|
2645
2769
|
}, "strip", z.ZodTypeAny, {
|
|
2646
2770
|
id: number;
|
|
2647
|
-
iteminfoid: number;
|
|
2648
2771
|
shape: string;
|
|
2772
|
+
iteminfoid: number;
|
|
2649
2773
|
position: number;
|
|
2650
2774
|
quantity: number;
|
|
2651
2775
|
basetype: string;
|
|
@@ -2659,8 +2783,8 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2659
2783
|
threewaybulb: string;
|
|
2660
2784
|
}, {
|
|
2661
2785
|
id: number;
|
|
2662
|
-
iteminfoid: number;
|
|
2663
2786
|
shape: string;
|
|
2787
|
+
iteminfoid: number;
|
|
2664
2788
|
position: number;
|
|
2665
2789
|
quantity: number;
|
|
2666
2790
|
basetype: string;
|
|
@@ -2875,8 +2999,8 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2875
2999
|
}[]>;
|
|
2876
3000
|
bulbs: {
|
|
2877
3001
|
id: number;
|
|
2878
|
-
iteminfoid: number;
|
|
2879
3002
|
shape: string;
|
|
3003
|
+
iteminfoid: number;
|
|
2880
3004
|
position: number;
|
|
2881
3005
|
quantity: number;
|
|
2882
3006
|
basetype: string;
|
|
@@ -2963,8 +3087,8 @@ declare const itemDetailSchema: z.ZodObject<{
|
|
|
2963
3087
|
}[]>;
|
|
2964
3088
|
bulbs: {
|
|
2965
3089
|
id: number;
|
|
2966
|
-
iteminfoid: number;
|
|
2967
3090
|
shape: string;
|
|
3091
|
+
iteminfoid: number;
|
|
2968
3092
|
position: number;
|
|
2969
3093
|
quantity: number;
|
|
2970
3094
|
basetype: string;
|
|
@@ -3082,9 +3206,21 @@ declare const mediaItemSchema: z.ZodObject<{
|
|
|
3082
3206
|
}>;
|
|
3083
3207
|
type MediaItem = z.infer<typeof mediaItemSchema>;
|
|
3084
3208
|
|
|
3209
|
+
declare const spsItemIdResponseSchema: z.ZodObject<{
|
|
3210
|
+
id: z.ZodString;
|
|
3211
|
+
ref: z.ZodString;
|
|
3212
|
+
}, "strip", z.ZodTypeAny, {
|
|
3213
|
+
id: string;
|
|
3214
|
+
ref: string;
|
|
3215
|
+
}, {
|
|
3216
|
+
id: string;
|
|
3217
|
+
ref: string;
|
|
3218
|
+
}>;
|
|
3219
|
+
type SpsItemIdResponse = z.infer<typeof spsItemIdResponseSchema>;
|
|
3220
|
+
|
|
3085
3221
|
declare const itemErrorDetailsSchema: z.ZodObject<{
|
|
3086
3222
|
errorMessage: z.ZodString;
|
|
3087
|
-
attributeName: z.ZodString
|
|
3223
|
+
attributeName: z.ZodNullable<z.ZodString>;
|
|
3088
3224
|
tradingPartnerNames: z.ZodArray<z.ZodString, "many">;
|
|
3089
3225
|
phases: z.ZodArray<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED", "STANDARD_REQUIREMENTS"]>, "many">;
|
|
3090
3226
|
attributeDbNames: z.ZodArray<z.ZodString, "many">;
|
|
@@ -3106,7 +3242,7 @@ declare const itemErrorDetailsSchema: z.ZodObject<{
|
|
|
3106
3242
|
}>, "many">;
|
|
3107
3243
|
repeatableGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3108
3244
|
}, "strip", z.ZodTypeAny, {
|
|
3109
|
-
attributeName: string;
|
|
3245
|
+
attributeName: string | null;
|
|
3110
3246
|
tradingPartnerStages: {
|
|
3111
3247
|
companyId: number;
|
|
3112
3248
|
companyName: string;
|
|
@@ -3119,7 +3255,7 @@ declare const itemErrorDetailsSchema: z.ZodObject<{
|
|
|
3119
3255
|
attributeDbNames: string[];
|
|
3120
3256
|
repeatableGroupId?: string | null | undefined;
|
|
3121
3257
|
}, {
|
|
3122
|
-
attributeName: string;
|
|
3258
|
+
attributeName: string | null;
|
|
3123
3259
|
tradingPartnerStages: {
|
|
3124
3260
|
companyId: number;
|
|
3125
3261
|
companyName: string;
|
|
@@ -3134,4 +3270,4 @@ declare const itemErrorDetailsSchema: z.ZodObject<{
|
|
|
3134
3270
|
}>;
|
|
3135
3271
|
type ItemErrorDetails = z.infer<typeof itemErrorDetailsSchema>;
|
|
3136
3272
|
|
|
3137
|
-
export {
|
|
3273
|
+
export { downLoadItemsParamsSchema as $, AttributeSummary as A, HierarchyDetails as B, Connection as C, DownLoadItemsParams as D, ExportDayOfWeek as E, ItemPrice as F, GenerateImportTemplateParams as G, Hierarchy as H, ItemHierarchyResponse as I, PackComponentDetails as J, Bulb as K, PackComponent as L, MediaItem as M, RepeatableGroup as N, PackComponentItemInfo as O, PhaseEnum as P, ItemErrorDetails as Q, RegisteredService as R, SpsItemIdResponse as S, TradingPartnerStage as T, importDetailSchema as U, importErrorSchema as V, importStatusEnumSchema as W, generateImportTemplateParamsSchema as X, exportDayOfWeekEnum as Y, exportFrequencyEnum as Z, exportTypeEnum as _, ItemDetail as a, itemCategorySchema as a0, hierarchySchema as a1, itemHierarchyResponseSchema as a2, itemHierarchySchema as a3, attrDatatypeNameEnumSchema as a4, attributeGroupSchema as a5, attributeSummarySchema as a6, itemHeaderSchema as a7, itemMapSchema as a8, itemTableSchema as a9, registeredServiceSchema as aA, itemErrorDetailsSchema as aB, phaseEnumSchema as aa, tradingPartnerStageSchema as ab, bulbSchema as ac, itemPriceSchema as ad, mediaItemSchema as ae, itemDetailSchema as af, groupedItemSchema as ag, categoryEnumSchema as ah, packComponentSchema as ai, attributeDetailSchema as aj, repeatableGroupSchema as ak, componentDetailsSchema as al, hierarchyDetailsSchema as am, groupedAttributesSchema as an, hierarchyCategorySchema as ao, groupedAttributeListSchema as ap, packComponentDetailsSchema as aq, packComponentItemInfoSchema as ar, spsItemIdResponseSchema as as, spreadsheetTemplateCompanySchema as at, connectionSchema as au, identityServiceDatetimePreferencesSchema as av, identityServiceOrganizationMetadataSchema as aw, identityServiceOrganizationSchema as ax, identityServicePreferencesSchema as ay, identityServiceUserSchema as az, ImportDetails as b, ImportError as c, ImportStatusEnum as d, ExportFrequency as e, ExportType as f, ItemCategory as g, ItemHierarchy as h, AttrDatatypeNameEnum as i, AttributeGroup as j, SpreadsheetTemplateCompany as k, IdentityServiceOrganizationMetadata as l, IdentityServiceDatetimePreferences as m, IdentityServiceOrganization as n, IdentityServicePreferences as o, IdentityServiceUser as p, ItemHeader as q, ItemMap as r, ItemTable as s, AttributeDetail as t, CategoryEnum as u, ComponentDetails as v, GroupedAttributeList as w, GroupedAttributes as x, GroupedItem as y, HierarchyCategory as z };
|