@spscommerce/asst-api 4.3.0 → 4.4.0
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/{chunk-CI3ZSIT4.js → chunk-V2XRXJIJ.js} +129 -33
- package/dist/{chunk-RPGGEEFE.js → chunk-WODMKML4.js} +1 -1
- package/dist/{chunk-LKUGPDIT.js → chunk-YT2B4UAK.js} +33 -0
- package/dist/index.cjs +157 -32
- package/dist/index.d.cts +127 -11
- package/dist/index.d.ts +127 -11
- package/dist/index.js +3 -3
- package/dist/msw.cjs +70 -1
- package/dist/msw.d.cts +27 -6
- package/dist/msw.d.ts +27 -6
- package/dist/msw.js +36 -3
- package/dist/zod.cjs +31 -0
- package/dist/zod.d.cts +1 -1
- package/dist/zod.d.ts +1 -1
- package/dist/zod.js +2 -2
- package/package.json +1 -1
- package/dist/SpsItemIdResponse-0VgfCmG_.d.cts +0 -84
- package/dist/SpsItemIdResponse-0VgfCmG_.d.ts +0 -84
- package/dist/SpsItemIdResponse-CI_Ao86P.d.cts +0 -87
- package/dist/SpsItemIdResponse-CI_Ao86P.d.ts +0 -87
- package/dist/chunk-355LPVI6.js +0 -126
- package/dist/chunk-55ECRTUX.js +0 -79
- package/dist/chunk-63KIELUR.js +0 -128
- package/dist/chunk-DK2OMRWR.js +0 -134
- package/dist/chunk-FCUIJXCD.js +0 -544
- package/dist/chunk-L4AWOEED.js +0 -4892
- package/dist/chunk-NFZI7D22.js +0 -544
- package/dist/chunk-NUUQDRHD.js +0 -4899
- package/dist/zod-C3fOiO-H.d.cts +0 -5900
- package/dist/zod-CJ6AFTQr.d.ts +0 -5900
- package/dist/zod-CJmsC_DX.d.cts +0 -5900
- package/dist/zod-CzPw-bfk.d.cts +0 -5900
- package/dist/zod-vDuspd-x.d.ts +0 -5900
- package/dist/zod-xWM6u1LJ.d.ts +0 -5900
- package/dist/{zod-C41Rts8D.d.cts → zod-CJ7lvFQH.d.cts} +44 -44
- package/dist/{zod-COyz02Lh.d.ts → zod-j6CrX5vY.d.ts} +44 -44
|
@@ -219,6 +219,42 @@ declare const generateImportTemplateParamsSchema: z.ZodObject<{
|
|
|
219
219
|
}>;
|
|
220
220
|
type GenerateImportTemplateParams = z.infer<typeof generateImportTemplateParamsSchema>;
|
|
221
221
|
|
|
222
|
+
declare const companyBriefByOrgSchema: z.ZodObject<{
|
|
223
|
+
companyId: z.ZodNumber;
|
|
224
|
+
name: z.ZodString;
|
|
225
|
+
orgId: z.ZodString;
|
|
226
|
+
companyType: z.ZodObject<{
|
|
227
|
+
type: z.ZodEnum<["SUPPLIER", "RETAILER"]>;
|
|
228
|
+
display: z.ZodEnum<["SUPPLIER", "RETAILER"]>;
|
|
229
|
+
}, "strip", z.ZodTypeAny, {
|
|
230
|
+
type: "SUPPLIER" | "RETAILER";
|
|
231
|
+
display: "SUPPLIER" | "RETAILER";
|
|
232
|
+
}, {
|
|
233
|
+
type: "SUPPLIER" | "RETAILER";
|
|
234
|
+
display: "SUPPLIER" | "RETAILER";
|
|
235
|
+
}>;
|
|
236
|
+
dc4Id: z.ZodNumber;
|
|
237
|
+
}, "strip", z.ZodTypeAny, {
|
|
238
|
+
name: string;
|
|
239
|
+
companyId: number;
|
|
240
|
+
orgId: string;
|
|
241
|
+
companyType: {
|
|
242
|
+
type: "SUPPLIER" | "RETAILER";
|
|
243
|
+
display: "SUPPLIER" | "RETAILER";
|
|
244
|
+
};
|
|
245
|
+
dc4Id: number;
|
|
246
|
+
}, {
|
|
247
|
+
name: string;
|
|
248
|
+
companyId: number;
|
|
249
|
+
orgId: string;
|
|
250
|
+
companyType: {
|
|
251
|
+
type: "SUPPLIER" | "RETAILER";
|
|
252
|
+
display: "SUPPLIER" | "RETAILER";
|
|
253
|
+
};
|
|
254
|
+
dc4Id: number;
|
|
255
|
+
}>;
|
|
256
|
+
type CompanyBriefByOrg = z.infer<typeof companyBriefByOrgSchema>;
|
|
257
|
+
|
|
222
258
|
declare const exportSchema: z.ZodObject<{
|
|
223
259
|
exportName: z.ZodString;
|
|
224
260
|
exportDescription: z.ZodString;
|
|
@@ -308,13 +344,13 @@ declare const downLoadItemsParamsSchema: z.ZodObject<{
|
|
|
308
344
|
}, "strip", z.ZodTypeAny, {
|
|
309
345
|
"multi-sheet": boolean;
|
|
310
346
|
ids: string[];
|
|
311
|
-
availableAttributes?: string[] | undefined;
|
|
312
347
|
orgId?: string | undefined;
|
|
348
|
+
availableAttributes?: string[] | undefined;
|
|
313
349
|
}, {
|
|
314
350
|
"multi-sheet": boolean;
|
|
315
351
|
ids: string[];
|
|
316
|
-
availableAttributes?: string[] | undefined;
|
|
317
352
|
orgId?: string | undefined;
|
|
353
|
+
availableAttributes?: string[] | undefined;
|
|
318
354
|
}>;
|
|
319
355
|
type DownLoadItemsParams = z.infer<typeof downLoadItemsParamsSchema>;
|
|
320
356
|
|
|
@@ -493,8 +529,8 @@ declare const itemCategorySchema: z.ZodObject<{
|
|
|
493
529
|
}, "strip", z.ZodTypeAny, {
|
|
494
530
|
type: "CATALOG" | "SELECTION_CODE" | "PRODUCT_CODE" | "EXPORT";
|
|
495
531
|
name: string;
|
|
496
|
-
isActive: number;
|
|
497
532
|
companyId: number;
|
|
533
|
+
isActive: number;
|
|
498
534
|
categoryid: number;
|
|
499
535
|
encodedCategoryId: string;
|
|
500
536
|
typeId: number;
|
|
@@ -506,8 +542,8 @@ declare const itemCategorySchema: z.ZodObject<{
|
|
|
506
542
|
}, {
|
|
507
543
|
type: "CATALOG" | "SELECTION_CODE" | "PRODUCT_CODE" | "EXPORT";
|
|
508
544
|
name: string;
|
|
509
|
-
isActive: number;
|
|
510
545
|
companyId: number;
|
|
546
|
+
isActive: number;
|
|
511
547
|
categoryid: number;
|
|
512
548
|
encodedCategoryId: string;
|
|
513
549
|
typeId: number;
|
|
@@ -537,8 +573,8 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
|
|
|
537
573
|
}, "strip", z.ZodTypeAny, {
|
|
538
574
|
type: "CATALOG" | "SELECTION_CODE" | "PRODUCT_CODE" | "EXPORT";
|
|
539
575
|
name: string;
|
|
540
|
-
isActive: number;
|
|
541
576
|
companyId: number;
|
|
577
|
+
isActive: number;
|
|
542
578
|
categoryid: number;
|
|
543
579
|
encodedCategoryId: string;
|
|
544
580
|
typeId: number;
|
|
@@ -550,8 +586,8 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
|
|
|
550
586
|
}, {
|
|
551
587
|
type: "CATALOG" | "SELECTION_CODE" | "PRODUCT_CODE" | "EXPORT";
|
|
552
588
|
name: string;
|
|
553
|
-
isActive: number;
|
|
554
589
|
companyId: number;
|
|
590
|
+
isActive: number;
|
|
555
591
|
categoryid: number;
|
|
556
592
|
encodedCategoryId: string;
|
|
557
593
|
typeId: number;
|
|
@@ -566,8 +602,8 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
|
|
|
566
602
|
data: {
|
|
567
603
|
type: "CATALOG" | "SELECTION_CODE" | "PRODUCT_CODE" | "EXPORT";
|
|
568
604
|
name: string;
|
|
569
|
-
isActive: number;
|
|
570
605
|
companyId: number;
|
|
606
|
+
isActive: number;
|
|
571
607
|
categoryid: number;
|
|
572
608
|
encodedCategoryId: string;
|
|
573
609
|
typeId: number;
|
|
@@ -582,8 +618,8 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
|
|
|
582
618
|
data: {
|
|
583
619
|
type: "CATALOG" | "SELECTION_CODE" | "PRODUCT_CODE" | "EXPORT";
|
|
584
620
|
name: string;
|
|
585
|
-
isActive: number;
|
|
586
621
|
companyId: number;
|
|
622
|
+
isActive: number;
|
|
587
623
|
categoryid: number;
|
|
588
624
|
encodedCategoryId: string;
|
|
589
625
|
typeId: number;
|
|
@@ -5864,40 +5900,4 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
|
|
|
5864
5900
|
}>;
|
|
5865
5901
|
type ItemErrorDetailsResultV2 = z.infer<typeof itemErrorDetailsResultV2Schema>;
|
|
5866
5902
|
|
|
5867
|
-
declare const companyBriefByOrgSchema: z.ZodObject<{
|
|
5868
|
-
companyId: z.ZodNumber;
|
|
5869
|
-
name: z.ZodString;
|
|
5870
|
-
orgId: z.ZodString;
|
|
5871
|
-
companyType: z.ZodObject<{
|
|
5872
|
-
type: z.ZodEnum<["SUPPLIER", "RETAILER"]>;
|
|
5873
|
-
display: z.ZodEnum<["SUPPLIER", "RETAILER"]>;
|
|
5874
|
-
}, "strip", z.ZodTypeAny, {
|
|
5875
|
-
type: "SUPPLIER" | "RETAILER";
|
|
5876
|
-
display: "SUPPLIER" | "RETAILER";
|
|
5877
|
-
}, {
|
|
5878
|
-
type: "SUPPLIER" | "RETAILER";
|
|
5879
|
-
display: "SUPPLIER" | "RETAILER";
|
|
5880
|
-
}>;
|
|
5881
|
-
dc4Id: z.ZodNumber;
|
|
5882
|
-
}, "strip", z.ZodTypeAny, {
|
|
5883
|
-
name: string;
|
|
5884
|
-
orgId: string;
|
|
5885
|
-
companyId: number;
|
|
5886
|
-
companyType: {
|
|
5887
|
-
type: "SUPPLIER" | "RETAILER";
|
|
5888
|
-
display: "SUPPLIER" | "RETAILER";
|
|
5889
|
-
};
|
|
5890
|
-
dc4Id: number;
|
|
5891
|
-
}, {
|
|
5892
|
-
name: string;
|
|
5893
|
-
orgId: string;
|
|
5894
|
-
companyId: number;
|
|
5895
|
-
companyType: {
|
|
5896
|
-
type: "SUPPLIER" | "RETAILER";
|
|
5897
|
-
display: "SUPPLIER" | "RETAILER";
|
|
5898
|
-
};
|
|
5899
|
-
dc4Id: number;
|
|
5900
|
-
}>;
|
|
5901
|
-
type CompanyBriefByOrg = z.infer<typeof companyBriefByOrgSchema>;
|
|
5902
|
-
|
|
5903
5903
|
export { type PackComponentDetails as $, type AttrProdType as A, type ItemHeader as B, type CompanyRelationshipUpsertBody as C, type DownLoadItemsParams as D, type Export as E, type ItemMap as F, type GenerateImportTemplateParams as G, type ItemTable as H, type Import as I, type PhaseEnum as J, type TradingPartnerStage as K, type Locale as L, type AttributeDetail as M, type CategoryEnum as N, type ComponentDetails as O, PRODUCT_CODE_DEFAULT_VALUE as P, type GroupedAttributeList as Q, type RegisteredService as R, type SpreadsheetTemplate as S, type TradingPartnerAccessByCompanyId as T, type UserAccount as U, type VendorPartnerAttGroups as V, type GroupedAttributes as W, type GroupedItem as X, type HierarchyCategory as Y, type HierarchyDetails as Z, type ItemPrice as _, type ImportsStatus as a, itemErrorDetailsResultSchema as a$, type MediaItem as a0, type Bulb as a1, type PackComponent as a2, type RepeatableGroup as a3, type PackComponentItemInfo as a4, type ItemErrorDetails as a5, type ItemErrorSummaryV2 as a6, type ItemErrorDetailsV2 as a7, type TradingPartnerStageV2 as a8, importDetailSchema as a9, categoryEnumSchema as aA, packComponentSchema as aB, itemDetailViewSchema as aC, attributeDetailSchema as aD, repeatableGroupSchema as aE, componentDetailsSchema as aF, hierarchyDetailsSchema as aG, groupedAttributesSchema as aH, hierarchyCategorySchema as aI, groupedAttributeListSchema as aJ, packComponentDetailsSchema as aK, packComponentItemInfoSchema as aL, localeSchema as aM, attrProdTypeSchema as aN, spreadsheetTemplateCompanySchema as aO, spreadsheetTemplateSchema as aP, connectionSchema as aQ, tradingPartnerAccessByCompanyIdSchema as aR, itemPartnerSchema as aS, companyRelationshipUpsertBodySchema as aT, identityServiceDatetimePreferencesSchema as aU, identityServiceOrganizationMetadataSchema as aV, identityServiceOrganizationSchema as aW, identityServicePreferencesSchema as aX, identityServiceUserSchema as aY, registeredServiceSchema as aZ, userAccountSchema as a_, importErrorSchema as aa, importErrorsSchema as ab, importSchema as ac, importsStatusSchema as ad, importStatusEnumSchema as ae, generateImportTemplateParamsSchema as af, vendorPartnerAttGroupsSchema as ag, exportDayOfWeekEnum as ah, exportFrequencyEnum as ai, exportTypeEnum as aj, exportSchema as ak, downLoadItemsParamsSchema as al, itemCategoriesSearchSchema as am, itemCategorySchema as an, categoryTypeSchema as ao, itemHeaderSchema as ap, itemMapSchema as aq, itemSearchViewSchema as ar, itemTableSchema as as, phaseEnumSchema as at, tradingPartnerStageSchema as au, bulbSchema as av, itemPriceSchema as aw, mediaItemSchema as ax, itemDetailSchema as ay, groupedItemSchema as az, type ItemPartner as b, itemErrorDetailsSchema as b0, itemErrorDetailsResultV2Schema as b1, itemErrorSummaryV2Schema as b2, itemErrorDetailsV2Schema as b3, tradingPartnerStageV2Schema as b4, itemErrorSummaryResultV2Schema as b5, companyBriefByOrgSchema as b6, type ItemCategoriesSearch as c, type ItemSearchView as d, type ItemDetailView as e, type ItemDetail as f, type ItemErrorDetailsResult as g, type ItemErrorSummaryResultV2 as h, type ItemErrorDetailsResultV2 as i, type CompanyBriefByOrg as j, type ImportDetails as k, type ImportError as l, type ImportErrors as m, type ImportStatusEnum as n, type ExportDayOfWeek as o, type ExportFrequency as p, type ExportType as q, type Connection as r, SELECTION_CODE_DEFAULT_VALUE as s, type ItemCategory as t, type SpreadsheetTemplateCompany as u, type IdentityServiceOrganizationMetadata as v, type IdentityServiceDatetimePreferences as w, type IdentityServiceOrganization as x, type IdentityServicePreferences as y, type IdentityServiceUser as z };
|
|
@@ -219,6 +219,42 @@ declare const generateImportTemplateParamsSchema: z.ZodObject<{
|
|
|
219
219
|
}>;
|
|
220
220
|
type GenerateImportTemplateParams = z.infer<typeof generateImportTemplateParamsSchema>;
|
|
221
221
|
|
|
222
|
+
declare const companyBriefByOrgSchema: z.ZodObject<{
|
|
223
|
+
companyId: z.ZodNumber;
|
|
224
|
+
name: z.ZodString;
|
|
225
|
+
orgId: z.ZodString;
|
|
226
|
+
companyType: z.ZodObject<{
|
|
227
|
+
type: z.ZodEnum<["SUPPLIER", "RETAILER"]>;
|
|
228
|
+
display: z.ZodEnum<["SUPPLIER", "RETAILER"]>;
|
|
229
|
+
}, "strip", z.ZodTypeAny, {
|
|
230
|
+
type: "SUPPLIER" | "RETAILER";
|
|
231
|
+
display: "SUPPLIER" | "RETAILER";
|
|
232
|
+
}, {
|
|
233
|
+
type: "SUPPLIER" | "RETAILER";
|
|
234
|
+
display: "SUPPLIER" | "RETAILER";
|
|
235
|
+
}>;
|
|
236
|
+
dc4Id: z.ZodNumber;
|
|
237
|
+
}, "strip", z.ZodTypeAny, {
|
|
238
|
+
name: string;
|
|
239
|
+
companyId: number;
|
|
240
|
+
orgId: string;
|
|
241
|
+
companyType: {
|
|
242
|
+
type: "SUPPLIER" | "RETAILER";
|
|
243
|
+
display: "SUPPLIER" | "RETAILER";
|
|
244
|
+
};
|
|
245
|
+
dc4Id: number;
|
|
246
|
+
}, {
|
|
247
|
+
name: string;
|
|
248
|
+
companyId: number;
|
|
249
|
+
orgId: string;
|
|
250
|
+
companyType: {
|
|
251
|
+
type: "SUPPLIER" | "RETAILER";
|
|
252
|
+
display: "SUPPLIER" | "RETAILER";
|
|
253
|
+
};
|
|
254
|
+
dc4Id: number;
|
|
255
|
+
}>;
|
|
256
|
+
type CompanyBriefByOrg = z.infer<typeof companyBriefByOrgSchema>;
|
|
257
|
+
|
|
222
258
|
declare const exportSchema: z.ZodObject<{
|
|
223
259
|
exportName: z.ZodString;
|
|
224
260
|
exportDescription: z.ZodString;
|
|
@@ -308,13 +344,13 @@ declare const downLoadItemsParamsSchema: z.ZodObject<{
|
|
|
308
344
|
}, "strip", z.ZodTypeAny, {
|
|
309
345
|
"multi-sheet": boolean;
|
|
310
346
|
ids: string[];
|
|
311
|
-
availableAttributes?: string[] | undefined;
|
|
312
347
|
orgId?: string | undefined;
|
|
348
|
+
availableAttributes?: string[] | undefined;
|
|
313
349
|
}, {
|
|
314
350
|
"multi-sheet": boolean;
|
|
315
351
|
ids: string[];
|
|
316
|
-
availableAttributes?: string[] | undefined;
|
|
317
352
|
orgId?: string | undefined;
|
|
353
|
+
availableAttributes?: string[] | undefined;
|
|
318
354
|
}>;
|
|
319
355
|
type DownLoadItemsParams = z.infer<typeof downLoadItemsParamsSchema>;
|
|
320
356
|
|
|
@@ -493,8 +529,8 @@ declare const itemCategorySchema: z.ZodObject<{
|
|
|
493
529
|
}, "strip", z.ZodTypeAny, {
|
|
494
530
|
type: "CATALOG" | "SELECTION_CODE" | "PRODUCT_CODE" | "EXPORT";
|
|
495
531
|
name: string;
|
|
496
|
-
isActive: number;
|
|
497
532
|
companyId: number;
|
|
533
|
+
isActive: number;
|
|
498
534
|
categoryid: number;
|
|
499
535
|
encodedCategoryId: string;
|
|
500
536
|
typeId: number;
|
|
@@ -506,8 +542,8 @@ declare const itemCategorySchema: z.ZodObject<{
|
|
|
506
542
|
}, {
|
|
507
543
|
type: "CATALOG" | "SELECTION_CODE" | "PRODUCT_CODE" | "EXPORT";
|
|
508
544
|
name: string;
|
|
509
|
-
isActive: number;
|
|
510
545
|
companyId: number;
|
|
546
|
+
isActive: number;
|
|
511
547
|
categoryid: number;
|
|
512
548
|
encodedCategoryId: string;
|
|
513
549
|
typeId: number;
|
|
@@ -537,8 +573,8 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
|
|
|
537
573
|
}, "strip", z.ZodTypeAny, {
|
|
538
574
|
type: "CATALOG" | "SELECTION_CODE" | "PRODUCT_CODE" | "EXPORT";
|
|
539
575
|
name: string;
|
|
540
|
-
isActive: number;
|
|
541
576
|
companyId: number;
|
|
577
|
+
isActive: number;
|
|
542
578
|
categoryid: number;
|
|
543
579
|
encodedCategoryId: string;
|
|
544
580
|
typeId: number;
|
|
@@ -550,8 +586,8 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
|
|
|
550
586
|
}, {
|
|
551
587
|
type: "CATALOG" | "SELECTION_CODE" | "PRODUCT_CODE" | "EXPORT";
|
|
552
588
|
name: string;
|
|
553
|
-
isActive: number;
|
|
554
589
|
companyId: number;
|
|
590
|
+
isActive: number;
|
|
555
591
|
categoryid: number;
|
|
556
592
|
encodedCategoryId: string;
|
|
557
593
|
typeId: number;
|
|
@@ -566,8 +602,8 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
|
|
|
566
602
|
data: {
|
|
567
603
|
type: "CATALOG" | "SELECTION_CODE" | "PRODUCT_CODE" | "EXPORT";
|
|
568
604
|
name: string;
|
|
569
|
-
isActive: number;
|
|
570
605
|
companyId: number;
|
|
606
|
+
isActive: number;
|
|
571
607
|
categoryid: number;
|
|
572
608
|
encodedCategoryId: string;
|
|
573
609
|
typeId: number;
|
|
@@ -582,8 +618,8 @@ declare const itemCategoriesSearchSchema: z.ZodObject<{
|
|
|
582
618
|
data: {
|
|
583
619
|
type: "CATALOG" | "SELECTION_CODE" | "PRODUCT_CODE" | "EXPORT";
|
|
584
620
|
name: string;
|
|
585
|
-
isActive: number;
|
|
586
621
|
companyId: number;
|
|
622
|
+
isActive: number;
|
|
587
623
|
categoryid: number;
|
|
588
624
|
encodedCategoryId: string;
|
|
589
625
|
typeId: number;
|
|
@@ -5864,40 +5900,4 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
|
|
|
5864
5900
|
}>;
|
|
5865
5901
|
type ItemErrorDetailsResultV2 = z.infer<typeof itemErrorDetailsResultV2Schema>;
|
|
5866
5902
|
|
|
5867
|
-
declare const companyBriefByOrgSchema: z.ZodObject<{
|
|
5868
|
-
companyId: z.ZodNumber;
|
|
5869
|
-
name: z.ZodString;
|
|
5870
|
-
orgId: z.ZodString;
|
|
5871
|
-
companyType: z.ZodObject<{
|
|
5872
|
-
type: z.ZodEnum<["SUPPLIER", "RETAILER"]>;
|
|
5873
|
-
display: z.ZodEnum<["SUPPLIER", "RETAILER"]>;
|
|
5874
|
-
}, "strip", z.ZodTypeAny, {
|
|
5875
|
-
type: "SUPPLIER" | "RETAILER";
|
|
5876
|
-
display: "SUPPLIER" | "RETAILER";
|
|
5877
|
-
}, {
|
|
5878
|
-
type: "SUPPLIER" | "RETAILER";
|
|
5879
|
-
display: "SUPPLIER" | "RETAILER";
|
|
5880
|
-
}>;
|
|
5881
|
-
dc4Id: z.ZodNumber;
|
|
5882
|
-
}, "strip", z.ZodTypeAny, {
|
|
5883
|
-
name: string;
|
|
5884
|
-
orgId: string;
|
|
5885
|
-
companyId: number;
|
|
5886
|
-
companyType: {
|
|
5887
|
-
type: "SUPPLIER" | "RETAILER";
|
|
5888
|
-
display: "SUPPLIER" | "RETAILER";
|
|
5889
|
-
};
|
|
5890
|
-
dc4Id: number;
|
|
5891
|
-
}, {
|
|
5892
|
-
name: string;
|
|
5893
|
-
orgId: string;
|
|
5894
|
-
companyId: number;
|
|
5895
|
-
companyType: {
|
|
5896
|
-
type: "SUPPLIER" | "RETAILER";
|
|
5897
|
-
display: "SUPPLIER" | "RETAILER";
|
|
5898
|
-
};
|
|
5899
|
-
dc4Id: number;
|
|
5900
|
-
}>;
|
|
5901
|
-
type CompanyBriefByOrg = z.infer<typeof companyBriefByOrgSchema>;
|
|
5902
|
-
|
|
5903
5903
|
export { type PackComponentDetails as $, type AttrProdType as A, type ItemHeader as B, type CompanyRelationshipUpsertBody as C, type DownLoadItemsParams as D, type Export as E, type ItemMap as F, type GenerateImportTemplateParams as G, type ItemTable as H, type Import as I, type PhaseEnum as J, type TradingPartnerStage as K, type Locale as L, type AttributeDetail as M, type CategoryEnum as N, type ComponentDetails as O, PRODUCT_CODE_DEFAULT_VALUE as P, type GroupedAttributeList as Q, type RegisteredService as R, type SpreadsheetTemplate as S, type TradingPartnerAccessByCompanyId as T, type UserAccount as U, type VendorPartnerAttGroups as V, type GroupedAttributes as W, type GroupedItem as X, type HierarchyCategory as Y, type HierarchyDetails as Z, type ItemPrice as _, type ImportsStatus as a, itemErrorDetailsResultSchema as a$, type MediaItem as a0, type Bulb as a1, type PackComponent as a2, type RepeatableGroup as a3, type PackComponentItemInfo as a4, type ItemErrorDetails as a5, type ItemErrorSummaryV2 as a6, type ItemErrorDetailsV2 as a7, type TradingPartnerStageV2 as a8, importDetailSchema as a9, categoryEnumSchema as aA, packComponentSchema as aB, itemDetailViewSchema as aC, attributeDetailSchema as aD, repeatableGroupSchema as aE, componentDetailsSchema as aF, hierarchyDetailsSchema as aG, groupedAttributesSchema as aH, hierarchyCategorySchema as aI, groupedAttributeListSchema as aJ, packComponentDetailsSchema as aK, packComponentItemInfoSchema as aL, localeSchema as aM, attrProdTypeSchema as aN, spreadsheetTemplateCompanySchema as aO, spreadsheetTemplateSchema as aP, connectionSchema as aQ, tradingPartnerAccessByCompanyIdSchema as aR, itemPartnerSchema as aS, companyRelationshipUpsertBodySchema as aT, identityServiceDatetimePreferencesSchema as aU, identityServiceOrganizationMetadataSchema as aV, identityServiceOrganizationSchema as aW, identityServicePreferencesSchema as aX, identityServiceUserSchema as aY, registeredServiceSchema as aZ, userAccountSchema as a_, importErrorSchema as aa, importErrorsSchema as ab, importSchema as ac, importsStatusSchema as ad, importStatusEnumSchema as ae, generateImportTemplateParamsSchema as af, vendorPartnerAttGroupsSchema as ag, exportDayOfWeekEnum as ah, exportFrequencyEnum as ai, exportTypeEnum as aj, exportSchema as ak, downLoadItemsParamsSchema as al, itemCategoriesSearchSchema as am, itemCategorySchema as an, categoryTypeSchema as ao, itemHeaderSchema as ap, itemMapSchema as aq, itemSearchViewSchema as ar, itemTableSchema as as, phaseEnumSchema as at, tradingPartnerStageSchema as au, bulbSchema as av, itemPriceSchema as aw, mediaItemSchema as ax, itemDetailSchema as ay, groupedItemSchema as az, type ItemPartner as b, itemErrorDetailsSchema as b0, itemErrorDetailsResultV2Schema as b1, itemErrorSummaryV2Schema as b2, itemErrorDetailsV2Schema as b3, tradingPartnerStageV2Schema as b4, itemErrorSummaryResultV2Schema as b5, companyBriefByOrgSchema as b6, type ItemCategoriesSearch as c, type ItemSearchView as d, type ItemDetailView as e, type ItemDetail as f, type ItemErrorDetailsResult as g, type ItemErrorSummaryResultV2 as h, type ItemErrorDetailsResultV2 as i, type CompanyBriefByOrg as j, type ImportDetails as k, type ImportError as l, type ImportErrors as m, type ImportStatusEnum as n, type ExportDayOfWeek as o, type ExportFrequency as p, type ExportType as q, type Connection as r, SELECTION_CODE_DEFAULT_VALUE as s, type ItemCategory as t, type SpreadsheetTemplateCompany as u, type IdentityServiceOrganizationMetadata as v, type IdentityServiceDatetimePreferences as w, type IdentityServiceOrganization as x, type IdentityServicePreferences as y, type IdentityServiceUser as z };
|