@spscommerce/asst-api 5.3.2 → 5.3.4
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/{CompanySearch-7_L0_02Y.d.ts → CompanySearch-BbVFcsAx.d.ts} +1 -1
- package/dist/{SpsItemIdResponse-Duo9fy_R.d.ts → SpsItemIdResponse-CorAaMf-.d.ts} +1 -1
- package/dist/{chunk-35CHQUKC.js → chunk-42U2ERT7.js} +102 -43
- package/dist/chunk-ATHXI7QZ.js +1049 -0
- package/dist/{chunk-XSWAONLH.js → chunk-JOTJ2YCI.js} +5 -8
- package/dist/index.cjs +794 -4647
- package/dist/index.d.ts +8 -7
- package/dist/index.js +3 -3
- package/dist/msw.cjs +765 -4642
- package/dist/msw.d.ts +3 -2
- package/dist/msw.js +41 -25
- package/dist/{zod-f4vmP6zY.d.ts → zod-BTAcqNX0.d.ts} +21 -4
- package/dist/zod.cjs +736 -4641
- package/dist/zod.d.ts +2 -2
- package/dist/zod.js +49 -36
- package/package.json +10 -3
- package/dist/chunk-3H53DOKQ.js +0 -5009
package/dist/msw.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as msw from 'msw';
|
|
2
2
|
import { ResponseResolver, HttpResponseResolver, HttpHandler } from 'msw';
|
|
3
|
-
import { A as AsstClient, I as ItemHierarchyResponse, S as SpsItemIdResponse, C as CompanyBriefByOrg } from './SpsItemIdResponse-
|
|
3
|
+
import { A as AsstClient, I as ItemHierarchyResponse, S as SpsItemIdResponse, C as CompanyBriefByOrg } from './SpsItemIdResponse-CorAaMf-.js';
|
|
4
4
|
import { z } from 'zod';
|
|
5
|
-
import {
|
|
5
|
+
import { a as CompanySearch, C as Company } from './CompanySearch-BbVFcsAx.js';
|
|
6
6
|
import 'ky';
|
|
7
7
|
|
|
8
8
|
/**
|
|
@@ -128,6 +128,7 @@ declare function createCategoriesApiHandlers(client: AsstClient): {
|
|
|
128
128
|
declare function createExportsApiHandlers(client: AsstClient): {
|
|
129
129
|
createExport: (resolver?: ResponseResolver) => msw.HttpHandler;
|
|
130
130
|
downloadItems: (resolver?: ResponseResolver) => msw.HttpHandler;
|
|
131
|
+
downloadCatalogedItems: (resolver?: ResponseResolver) => msw.HttpHandler;
|
|
131
132
|
};
|
|
132
133
|
|
|
133
134
|
/**
|
package/dist/msw.js
CHANGED
|
@@ -18,10 +18,11 @@ import {
|
|
|
18
18
|
BASE_URL8,
|
|
19
19
|
BASE_URL9,
|
|
20
20
|
BASE_URL_V2,
|
|
21
|
+
BASE_URL_XREF,
|
|
21
22
|
FlattenedItemIdentifierKeysSchema,
|
|
22
23
|
companyFeatureSchema,
|
|
23
24
|
retailerTradingPartnerStages
|
|
24
|
-
} from "./chunk-
|
|
25
|
+
} from "./chunk-42U2ERT7.js";
|
|
25
26
|
import {
|
|
26
27
|
attrProdTypeSchema,
|
|
27
28
|
catalogBriefResponseSchema,
|
|
@@ -29,7 +30,6 @@ import {
|
|
|
29
30
|
companyBriefByOrgSchema,
|
|
30
31
|
companySchema,
|
|
31
32
|
companySearchSchema,
|
|
32
|
-
external_exports,
|
|
33
33
|
importErrorsSchema,
|
|
34
34
|
importSchema,
|
|
35
35
|
importsStatusSchema,
|
|
@@ -50,11 +50,12 @@ import {
|
|
|
50
50
|
tradingPartnerAccessByCompanyIdSchema,
|
|
51
51
|
userAccountSchema,
|
|
52
52
|
vendorPartnerAttGroupsSchema
|
|
53
|
-
} from "./chunk-
|
|
53
|
+
} from "./chunk-ATHXI7QZ.js";
|
|
54
54
|
|
|
55
55
|
// lib/imports/mockHandlers.ts
|
|
56
56
|
import { generateMock } from "@anatine/zod-mock";
|
|
57
57
|
import { http, HttpResponse } from "msw";
|
|
58
|
+
import { z } from "zod";
|
|
58
59
|
function createImportsApiHandlers(client) {
|
|
59
60
|
function getImportErrors(resolver = (_info) => {
|
|
60
61
|
const data = generateMock(importErrorsSchema);
|
|
@@ -74,14 +75,14 @@ function createImportsApiHandlers(client) {
|
|
|
74
75
|
}
|
|
75
76
|
getImports.generateData = () => generateMock(importSchema);
|
|
76
77
|
function getImportsStatus(resolver = (_info) => {
|
|
77
|
-
const data = generateMock(
|
|
78
|
+
const data = generateMock(z.array(importsStatusSchema));
|
|
78
79
|
return HttpResponse.json(data);
|
|
79
80
|
}) {
|
|
80
81
|
return http.get(`${client.getBaseUrl()}${BASE_URL}/status`, resolver);
|
|
81
82
|
}
|
|
82
|
-
getImportsStatus.generateData = () => generateMock(
|
|
83
|
+
getImportsStatus.generateData = () => generateMock(z.array(importsStatusSchema));
|
|
83
84
|
function getVendorPartnerGroups(resolver = (_info) => {
|
|
84
|
-
const data = generateMock(
|
|
85
|
+
const data = generateMock(z.array(vendorPartnerAttGroupsSchema));
|
|
85
86
|
return HttpResponse.json(data);
|
|
86
87
|
}) {
|
|
87
88
|
return http.get(
|
|
@@ -89,7 +90,7 @@ function createImportsApiHandlers(client) {
|
|
|
89
90
|
resolver
|
|
90
91
|
);
|
|
91
92
|
}
|
|
92
|
-
getVendorPartnerGroups.generateData = () => generateMock(
|
|
93
|
+
getVendorPartnerGroups.generateData = () => generateMock(z.array(vendorPartnerAttGroupsSchema));
|
|
93
94
|
function uploadImport(resolver = (_info) => {
|
|
94
95
|
return new HttpResponse(null, { status: 200 });
|
|
95
96
|
}) {
|
|
@@ -195,6 +196,14 @@ function createExportsApiHandlers(client) {
|
|
|
195
196
|
}
|
|
196
197
|
function downloadItems(resolver = (_info) => {
|
|
197
198
|
return new HttpResponse3("Not Supported", { status: 400 });
|
|
199
|
+
}) {
|
|
200
|
+
return http3.get(
|
|
201
|
+
`${client.getBaseUrl()}${BASE_URL_XREF}/by-item`,
|
|
202
|
+
resolver
|
|
203
|
+
);
|
|
204
|
+
}
|
|
205
|
+
function downloadCatalogedItems(resolver = (_info) => {
|
|
206
|
+
return new HttpResponse3("Not Supported", { status: 400 });
|
|
198
207
|
}) {
|
|
199
208
|
return http3.get(
|
|
200
209
|
`${client.getBaseUrl()}${BASE_URL2}/spreadsheet/by-item`,
|
|
@@ -203,7 +212,8 @@ function createExportsApiHandlers(client) {
|
|
|
203
212
|
}
|
|
204
213
|
return {
|
|
205
214
|
createExport,
|
|
206
|
-
downloadItems
|
|
215
|
+
downloadItems,
|
|
216
|
+
downloadCatalogedItems
|
|
207
217
|
};
|
|
208
218
|
}
|
|
209
219
|
|
|
@@ -342,14 +352,15 @@ function createErrorsApiV2Handlers(client) {
|
|
|
342
352
|
// lib/locale/mockHandlers.ts
|
|
343
353
|
import { generateMock as generateMock9 } from "@anatine/zod-mock";
|
|
344
354
|
import { HttpResponse as HttpResponse10, http as http10 } from "msw";
|
|
355
|
+
import { z as z2 } from "zod";
|
|
345
356
|
function createLocaleApiHandlers(client) {
|
|
346
357
|
function getLocale(resolver = (_info) => {
|
|
347
|
-
const data = generateMock9(
|
|
358
|
+
const data = generateMock9(z2.array(localeSchema));
|
|
348
359
|
return HttpResponse10.json(data);
|
|
349
360
|
}) {
|
|
350
361
|
return http10.get(`${client.getBaseUrl()}${BASE_URL7}`, resolver);
|
|
351
362
|
}
|
|
352
|
-
getLocale.generateData = () => generateMock9(
|
|
363
|
+
getLocale.generateData = () => generateMock9(z2.array(localeSchema));
|
|
353
364
|
return {
|
|
354
365
|
getLocale
|
|
355
366
|
};
|
|
@@ -361,6 +372,7 @@ import {
|
|
|
361
372
|
http as http11,
|
|
362
373
|
HttpResponse as HttpResponse11
|
|
363
374
|
} from "msw";
|
|
375
|
+
import { z as z3 } from "zod";
|
|
364
376
|
function createItemsApiHandlers(client) {
|
|
365
377
|
function searchItems(resolver = (_info) => {
|
|
366
378
|
const data = generateMock10(itemSearchViewSchema);
|
|
@@ -395,7 +407,7 @@ function createItemsApiHandlers(client) {
|
|
|
395
407
|
return http11.post(`${client.getBaseUrl()}${BASE_URL12}/items`, resolver);
|
|
396
408
|
}
|
|
397
409
|
function getItemInfoId(resolver = (_info) => {
|
|
398
|
-
const data = generateMock10(
|
|
410
|
+
const data = generateMock10(z3.number());
|
|
399
411
|
return HttpResponse11.json(data);
|
|
400
412
|
}) {
|
|
401
413
|
return http11.get(
|
|
@@ -403,7 +415,7 @@ function createItemsApiHandlers(client) {
|
|
|
403
415
|
resolver
|
|
404
416
|
);
|
|
405
417
|
}
|
|
406
|
-
getItemInfoId.generateData = () => generateMock10(
|
|
418
|
+
getItemInfoId.generateData = () => generateMock10(z3.number());
|
|
407
419
|
function getSpsItemId(resolver = () => {
|
|
408
420
|
const data = generateMock10(spsItemIdResponseSchema);
|
|
409
421
|
return HttpResponse11.json(data);
|
|
@@ -436,14 +448,15 @@ function createItemsApiHandlers(client) {
|
|
|
436
448
|
// lib/spreadsheetTemplate/mockHandlers.ts
|
|
437
449
|
import { generateMock as generateMock11 } from "@anatine/zod-mock";
|
|
438
450
|
import { HttpResponse as HttpResponse12, http as http12 } from "msw";
|
|
451
|
+
import { z as z4 } from "zod";
|
|
439
452
|
function createSpreadsheetTemplateApiHandlers(client) {
|
|
440
453
|
function getTemplates(resolver = (_info) => {
|
|
441
|
-
const data = generateMock11(
|
|
454
|
+
const data = generateMock11(z4.array(spreadsheetTemplateSchema));
|
|
442
455
|
return HttpResponse12.json(data);
|
|
443
456
|
}) {
|
|
444
457
|
return http12.get(`${client.getBaseUrl()}${BASE_URL8}`, resolver);
|
|
445
458
|
}
|
|
446
|
-
getTemplates.generateData = () => generateMock11(
|
|
459
|
+
getTemplates.generateData = () => generateMock11(z4.array(spreadsheetTemplateSchema));
|
|
447
460
|
return {
|
|
448
461
|
getTemplates
|
|
449
462
|
};
|
|
@@ -452,15 +465,16 @@ function createSpreadsheetTemplateApiHandlers(client) {
|
|
|
452
465
|
// lib/companyFeatures/mockHandlers.ts
|
|
453
466
|
import { generateMock as generateMock12 } from "@anatine/zod-mock";
|
|
454
467
|
import { http as http13, HttpResponse as HttpResponse13 } from "msw";
|
|
468
|
+
import { z as z5 } from "zod";
|
|
455
469
|
function createCompanyFeaturesApiHandlers(client) {
|
|
456
470
|
function checkIfStageItemSetupIsEnabled(resolver = (_info) => {
|
|
457
|
-
const data = generateMock12(
|
|
471
|
+
const data = generateMock12(z5.boolean());
|
|
458
472
|
return HttpResponse13.json(data);
|
|
459
473
|
}) {
|
|
460
474
|
return http13.get(`${client.getBaseUrl()}${BASE_URL10}/isphaseditemsetupenabled`, resolver);
|
|
461
475
|
}
|
|
462
476
|
function getFeaturesForCompany(resolver = (_info) => {
|
|
463
|
-
const data = generateMock12(
|
|
477
|
+
const data = generateMock12(z5.array(companyFeatureSchema));
|
|
464
478
|
return HttpResponse13.json(data);
|
|
465
479
|
}) {
|
|
466
480
|
return http13.get(`${client.getBaseUrl()}${BASE_URL10}/company/:companyId`, resolver);
|
|
@@ -474,9 +488,10 @@ function createCompanyFeaturesApiHandlers(client) {
|
|
|
474
488
|
// lib/featureFlags/mockHandlers.ts
|
|
475
489
|
import { generateMock as generateMock13 } from "@anatine/zod-mock";
|
|
476
490
|
import { http as http14, HttpResponse as HttpResponse14 } from "msw";
|
|
491
|
+
import { z as z6 } from "zod";
|
|
477
492
|
function createFeatureFlagsApiHandlers(client) {
|
|
478
493
|
function checkEnableItemsLevelMSIS(resolver = (_info) => {
|
|
479
|
-
const data = generateMock13(
|
|
494
|
+
const data = generateMock13(z6.boolean());
|
|
480
495
|
return HttpResponse14.json(data);
|
|
481
496
|
}) {
|
|
482
497
|
return http14.get(
|
|
@@ -485,7 +500,7 @@ function createFeatureFlagsApiHandlers(client) {
|
|
|
485
500
|
);
|
|
486
501
|
}
|
|
487
502
|
function checkIfEnabledForPackagingHierarchies(resolver = (_info) => {
|
|
488
|
-
const data = generateMock13(
|
|
503
|
+
const data = generateMock13(z6.boolean());
|
|
489
504
|
return HttpResponse14.json(data);
|
|
490
505
|
}) {
|
|
491
506
|
return http14.get(
|
|
@@ -494,7 +509,7 @@ function createFeatureFlagsApiHandlers(client) {
|
|
|
494
509
|
);
|
|
495
510
|
}
|
|
496
511
|
function checkIfEnabledForItemUomConversionRules(resolver = (_info) => {
|
|
497
|
-
const data = generateMock13(
|
|
512
|
+
const data = generateMock13(z6.boolean());
|
|
498
513
|
return HttpResponse14.json(data);
|
|
499
514
|
}) {
|
|
500
515
|
const baseUrl = `${client.getBaseUrl()}${BASE_URL11}/enable-items-api-uom-conversion-rules`;
|
|
@@ -514,30 +529,31 @@ function createFeatureFlagsApiHandlers(client) {
|
|
|
514
529
|
// lib/uniqueCriteria/mockHandlers.ts
|
|
515
530
|
import { generateMock as generateMock14 } from "@anatine/zod-mock";
|
|
516
531
|
import { http as http15, HttpResponse as HttpResponse15 } from "msw";
|
|
532
|
+
import { z as z7 } from "zod";
|
|
517
533
|
function createUniqueCriteriaApiHandlers(client) {
|
|
518
534
|
function getUniqueCriteriaOptions(resolver = (_info) => {
|
|
519
535
|
const data = generateMock14(
|
|
520
|
-
|
|
536
|
+
z7.array(z7.object({ name: z7.string(), value: z7.string() }))
|
|
521
537
|
);
|
|
522
538
|
return HttpResponse15.json(data);
|
|
523
539
|
}) {
|
|
524
540
|
return http15.get(`${client.getBaseUrl()}${BASE_URL16}`, resolver);
|
|
525
541
|
}
|
|
526
|
-
getUniqueCriteriaOptions.generateData = () => generateMock14(
|
|
542
|
+
getUniqueCriteriaOptions.generateData = () => generateMock14(z7.array(z7.object({ name: z7.string(), value: z7.string() })));
|
|
527
543
|
function getUniqueCriteriaByOrg(resolver = (_info) => {
|
|
528
|
-
const data = generateMock14(
|
|
544
|
+
const data = generateMock14(z7.array(z7.string()));
|
|
529
545
|
return HttpResponse15.json(data);
|
|
530
546
|
}) {
|
|
531
547
|
return http15.get(`${client.getBaseUrl()}${BASE_URL16}/org`, resolver);
|
|
532
548
|
}
|
|
533
|
-
getUniqueCriteriaByOrg.generateData = () => generateMock14(
|
|
549
|
+
getUniqueCriteriaByOrg.generateData = () => generateMock14(z7.array(z7.string()));
|
|
534
550
|
function getProductUniqueCriteriaByOrg(resolver = (_info) => {
|
|
535
|
-
const data = generateMock14(
|
|
551
|
+
const data = generateMock14(z7.array(FlattenedItemIdentifierKeysSchema));
|
|
536
552
|
return HttpResponse15.json(data);
|
|
537
553
|
}) {
|
|
538
554
|
return http15.get(`${client.getBaseUrl()}${BASE_URL16}/product/org`, resolver);
|
|
539
555
|
}
|
|
540
|
-
getProductUniqueCriteriaByOrg.generateData = () => generateMock14(
|
|
556
|
+
getProductUniqueCriteriaByOrg.generateData = () => generateMock14(z7.array(FlattenedItemIdentifierKeysSchema));
|
|
541
557
|
function updateMultipleUniqueCriteriaAttributes(resolver = (_info) => {
|
|
542
558
|
return HttpResponse15.json({ success: true });
|
|
543
559
|
}) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import './SpsItemIdResponse-
|
|
1
|
+
import './SpsItemIdResponse-CorAaMf-.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
|
|
4
4
|
declare const importSchema: z.ZodObject<{
|
|
@@ -309,7 +309,24 @@ type ExportFrequency = z.infer<typeof exportFrequencyEnum>;
|
|
|
309
309
|
declare const exportTypeEnum: z.ZodEnum<["ALL", "UPDATES", "DELTAS_UPDATE", "NO_BUYER_PART_NUMBER"]>;
|
|
310
310
|
type ExportType = z.infer<typeof exportTypeEnum>;
|
|
311
311
|
|
|
312
|
-
declare const
|
|
312
|
+
declare const downloadItemsParamsSchema: z.ZodObject<{
|
|
313
|
+
"multi-sheet": z.ZodBoolean;
|
|
314
|
+
ids: z.ZodArray<z.ZodString, "many">;
|
|
315
|
+
availableAttributes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
316
|
+
ownerOrgId: z.ZodOptional<z.ZodString>;
|
|
317
|
+
}, "strip", z.ZodTypeAny, {
|
|
318
|
+
"multi-sheet": boolean;
|
|
319
|
+
ids: string[];
|
|
320
|
+
availableAttributes?: string[] | undefined;
|
|
321
|
+
ownerOrgId?: string | undefined;
|
|
322
|
+
}, {
|
|
323
|
+
"multi-sheet": boolean;
|
|
324
|
+
ids: string[];
|
|
325
|
+
availableAttributes?: string[] | undefined;
|
|
326
|
+
ownerOrgId?: string | undefined;
|
|
327
|
+
}>;
|
|
328
|
+
type DownloadItemsParams = z.infer<typeof downloadItemsParamsSchema>;
|
|
329
|
+
declare const downloadCatalogedItemsParamsSchema: z.ZodObject<{
|
|
313
330
|
"multi-sheet": z.ZodBoolean;
|
|
314
331
|
ids: z.ZodArray<z.ZodString, "many">;
|
|
315
332
|
availableAttributes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -325,7 +342,7 @@ declare const downLoadItemsParamsSchema: z.ZodObject<{
|
|
|
325
342
|
orgId?: string | undefined;
|
|
326
343
|
availableAttributes?: string[] | undefined;
|
|
327
344
|
}>;
|
|
328
|
-
type
|
|
345
|
+
type DownloadCatalogedItemsParams = z.infer<typeof downloadCatalogedItemsParamsSchema>;
|
|
329
346
|
|
|
330
347
|
declare const attrProdTypeSchema: z.ZodObject<{
|
|
331
348
|
attrProdTypeId: z.ZodNumber;
|
|
@@ -5873,4 +5890,4 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
|
|
|
5873
5890
|
}>;
|
|
5874
5891
|
type ItemErrorDetailsResultV2 = z.infer<typeof itemErrorDetailsResultV2Schema>;
|
|
5875
5892
|
|
|
5876
|
-
export { type
|
|
5893
|
+
export { type RegisteredService as $, type AttrProdType as A, type Bulb as B, type CategoryEnum as C, type DownloadCatalogedItemsParams as D, type Export as E, type ItemErrorDetails as F, type GenerateImportTemplateParams as G, type HierarchyCategory as H, type IdentityServiceDatetimePreferences as I, type ItemErrorDetailsResult as J, type ItemErrorDetailsResultV2 as K, type ItemErrorDetailsV2 as L, type ItemErrorSummaryResultV2 as M, type ItemErrorSummaryV2 as N, type ItemHeader as O, type ItemMap as P, type ItemPartner as Q, type ItemPrice as R, type ItemSearchView as S, type ItemTable as T, type Locale as U, type MediaItem as V, PRODUCT_CODE_DEFAULT_VALUE as W, type PackComponent as X, type PackComponentDetails as Y, type PackComponentItemInfo as Z, type PhaseEnum as _, type AttributeDetail as a, repeatableGroupSchema as a$, type RepeatableGroup as a0, SELECTION_CODE_DEFAULT_VALUE as a1, type SpreadsheetTemplate as a2, type SpreadsheetTemplateCompany as a3, type TradingPartnerAccessByCompanyId as a4, type TradingPartnerStage as a5, type TradingPartnerStageV2 as a6, type UserAccount as a7, type VendorPartnerAttGroups as a8, attrProdTypeSchema as a9, importErrorsSchema as aA, importSchema as aB, importStatusEnumSchema as aC, importsStatusSchema as aD, itemCategoriesSearchSchema as aE, itemCategorySchema as aF, itemDetailSchema as aG, itemDetailViewSchema as aH, itemErrorDetailsResultSchema as aI, itemErrorDetailsResultV2Schema as aJ, itemErrorDetailsSchema as aK, itemErrorDetailsV2Schema as aL, itemErrorSummaryResultV2Schema as aM, itemErrorSummaryV2Schema as aN, itemHeaderSchema as aO, itemMapSchema as aP, itemPartnerSchema as aQ, itemPriceSchema as aR, itemSearchViewSchema as aS, itemTableSchema as aT, localeSchema as aU, mediaItemSchema as aV, packComponentDetailsSchema as aW, packComponentItemInfoSchema as aX, packComponentSchema as aY, phaseEnumSchema as aZ, registeredServiceSchema as a_, attributeDetailSchema as aa, bulbSchema as ab, categoryEnumSchema as ac, categoryTypeSchema as ad, companyRelationshipUpsertBodySchema as ae, componentDetailsSchema as af, connectionSchema as ag, downloadCatalogedItemsParamsSchema as ah, downloadItemsParamsSchema as ai, exportDayOfWeekEnum as aj, exportFrequencyEnum as ak, exportSchema as al, exportTypeEnum as am, generateImportTemplateParamsSchema as an, groupedAttributeListSchema as ao, groupedAttributesSchema as ap, groupedItemSchema as aq, hierarchyCategorySchema as ar, hierarchyDetailsSchema as as, identityServiceDatetimePreferencesSchema as at, identityServiceOrganizationMetadataSchema as au, identityServiceOrganizationSchema as av, identityServicePreferencesSchema as aw, identityServiceUserSchema as ax, importDetailSchema as ay, importErrorSchema as az, type CompanyRelationshipUpsertBody as b, spreadsheetTemplateCompanySchema as b0, spreadsheetTemplateSchema as b1, tradingPartnerAccessByCompanyIdSchema as b2, tradingPartnerStageSchema as b3, tradingPartnerStageV2Schema as b4, userAccountSchema as b5, vendorPartnerAttGroupsSchema as b6, type ComponentDetails as c, type Connection as d, type DownloadItemsParams as e, type ExportDayOfWeek as f, type ExportFrequency as g, type ExportType as h, type GroupedAttributeList as i, type GroupedAttributes as j, type GroupedItem as k, type HierarchyDetails as l, type IdentityServiceOrganization as m, type IdentityServiceOrganizationMetadata as n, type IdentityServicePreferences as o, type IdentityServiceUser as p, type Import as q, type ImportDetails as r, type ImportError as s, type ImportErrors as t, type ImportStatusEnum as u, type ImportsStatus as v, type ItemCategoriesSearch as w, type ItemCategory as x, type ItemDetail as y, type ItemDetailView as z };
|