@spscommerce/asst-api 1.1.0 → 1.2.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/{CompanyBriefByOrg-QIqfCtA_.d.ts → CompanyBriefByOrg-LTdsUKm4.d.ts} +19 -16
- package/dist/{chunk-3EK6JHC5.js → chunk-AH5MG2WF.js} +6 -5
- package/dist/{chunk-SFRJ3IYY.js → chunk-IO62OUOU.js} +1 -1
- package/dist/{index-6k1X-ckx.d.ts → index-Zz-6wNSh.d.ts} +1 -1
- package/dist/index.cjs +6 -5
- package/dist/index.d.cts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.js +2 -2
- package/dist/msw.cjs +6 -5
- package/dist/msw.d.cts +8 -8
- package/dist/msw.d.ts +8 -8
- package/dist/msw.js +2 -2
- package/dist/{zod-FlYA7lT3.d.ts → zod-NE2xXWlK.d.ts} +11 -11
- package/dist/zod.cjs +6 -5
- package/dist/zod.d.cts +2 -2
- package/dist/zod.d.ts +2 -2
- package/dist/zod.js +1 -1
- package/package.json +1 -1
|
@@ -212,6 +212,7 @@ declare const exportSchema: z.ZodObject<{
|
|
|
212
212
|
emailAddresses: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
213
213
|
subjectLine: z.ZodOptional<z.ZodString>;
|
|
214
214
|
additionalLocales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
215
|
+
availableAttributeList: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
215
216
|
}, "strip", z.ZodTypeAny, {
|
|
216
217
|
exportName: string;
|
|
217
218
|
exportDescription: string;
|
|
@@ -234,6 +235,7 @@ declare const exportSchema: z.ZodObject<{
|
|
|
234
235
|
emailAddresses?: string[] | undefined;
|
|
235
236
|
subjectLine?: string | undefined;
|
|
236
237
|
additionalLocales?: string[] | undefined;
|
|
238
|
+
availableAttributeList?: string[] | undefined;
|
|
237
239
|
}, {
|
|
238
240
|
exportName: string;
|
|
239
241
|
exportDescription: string;
|
|
@@ -256,6 +258,7 @@ declare const exportSchema: z.ZodObject<{
|
|
|
256
258
|
emailAddresses?: string[] | undefined;
|
|
257
259
|
subjectLine?: string | undefined;
|
|
258
260
|
additionalLocales?: string[] | undefined;
|
|
261
|
+
availableAttributeList?: string[] | undefined;
|
|
259
262
|
}>;
|
|
260
263
|
type Export = z.infer<typeof exportSchema>;
|
|
261
264
|
|
|
@@ -3278,10 +3281,10 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
|
|
|
3278
3281
|
itemName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3279
3282
|
itemErrorDetails: z.ZodArray<z.ZodObject<{
|
|
3280
3283
|
errorMessage: z.ZodString;
|
|
3281
|
-
attributeName: z.ZodString
|
|
3282
|
-
attributeDbNames: z.ZodArray<z.ZodString, "many">;
|
|
3284
|
+
attributeName: z.ZodNullable<z.ZodString>;
|
|
3283
3285
|
tradingPartnerNames: z.ZodArray<z.ZodString, "many">;
|
|
3284
|
-
phases: z.
|
|
3286
|
+
phases: z.ZodArray<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED"]>, "many">;
|
|
3287
|
+
attributeDbNames: z.ZodArray<z.ZodString, "many">;
|
|
3285
3288
|
tradingPartnerStages: z.ZodArray<z.ZodObject<{
|
|
3286
3289
|
companyId: z.ZodNumber;
|
|
3287
3290
|
companyName: z.ZodString;
|
|
@@ -3298,9 +3301,9 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
|
|
|
3298
3301
|
isValid: boolean;
|
|
3299
3302
|
stage?: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | null | undefined;
|
|
3300
3303
|
}>, "many">;
|
|
3301
|
-
repeatableGroupId: z.ZodString
|
|
3304
|
+
repeatableGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3302
3305
|
}, "strip", z.ZodTypeAny, {
|
|
3303
|
-
attributeName: string;
|
|
3306
|
+
attributeName: string | null;
|
|
3304
3307
|
tradingPartnerStages: {
|
|
3305
3308
|
companyId: number;
|
|
3306
3309
|
companyName: string;
|
|
@@ -3309,11 +3312,11 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
|
|
|
3309
3312
|
}[];
|
|
3310
3313
|
errorMessage: string;
|
|
3311
3314
|
tradingPartnerNames: string[];
|
|
3312
|
-
phases:
|
|
3315
|
+
phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED")[];
|
|
3313
3316
|
attributeDbNames: string[];
|
|
3314
|
-
repeatableGroupId
|
|
3317
|
+
repeatableGroupId?: string | null | undefined;
|
|
3315
3318
|
}, {
|
|
3316
|
-
attributeName: string;
|
|
3319
|
+
attributeName: string | null;
|
|
3317
3320
|
tradingPartnerStages: {
|
|
3318
3321
|
companyId: number;
|
|
3319
3322
|
companyName: string;
|
|
@@ -3322,14 +3325,14 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
|
|
|
3322
3325
|
}[];
|
|
3323
3326
|
errorMessage: string;
|
|
3324
3327
|
tradingPartnerNames: string[];
|
|
3325
|
-
phases:
|
|
3328
|
+
phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED")[];
|
|
3326
3329
|
attributeDbNames: string[];
|
|
3327
|
-
repeatableGroupId
|
|
3330
|
+
repeatableGroupId?: string | null | undefined;
|
|
3328
3331
|
}>, "many">;
|
|
3329
3332
|
}, "strip", z.ZodTypeAny, {
|
|
3330
3333
|
itemInfoId: number;
|
|
3331
3334
|
itemErrorDetails: {
|
|
3332
|
-
attributeName: string;
|
|
3335
|
+
attributeName: string | null;
|
|
3333
3336
|
tradingPartnerStages: {
|
|
3334
3337
|
companyId: number;
|
|
3335
3338
|
companyName: string;
|
|
@@ -3338,9 +3341,9 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
|
|
|
3338
3341
|
}[];
|
|
3339
3342
|
errorMessage: string;
|
|
3340
3343
|
tradingPartnerNames: string[];
|
|
3341
|
-
phases:
|
|
3344
|
+
phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED")[];
|
|
3342
3345
|
attributeDbNames: string[];
|
|
3343
|
-
repeatableGroupId
|
|
3346
|
+
repeatableGroupId?: string | null | undefined;
|
|
3344
3347
|
}[];
|
|
3345
3348
|
gtin?: string | null | undefined;
|
|
3346
3349
|
upc?: string | null | undefined;
|
|
@@ -3357,7 +3360,7 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
|
|
|
3357
3360
|
}, {
|
|
3358
3361
|
itemInfoId: number;
|
|
3359
3362
|
itemErrorDetails: {
|
|
3360
|
-
attributeName: string;
|
|
3363
|
+
attributeName: string | null;
|
|
3361
3364
|
tradingPartnerStages: {
|
|
3362
3365
|
companyId: number;
|
|
3363
3366
|
companyName: string;
|
|
@@ -3366,9 +3369,9 @@ declare const itemErrorDetailsResultV2Schema: z.ZodObject<{
|
|
|
3366
3369
|
}[];
|
|
3367
3370
|
errorMessage: string;
|
|
3368
3371
|
tradingPartnerNames: string[];
|
|
3369
|
-
phases:
|
|
3372
|
+
phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED")[];
|
|
3370
3373
|
attributeDbNames: string[];
|
|
3371
|
-
repeatableGroupId
|
|
3374
|
+
repeatableGroupId?: string | null | undefined;
|
|
3372
3375
|
}[];
|
|
3373
3376
|
gtin?: string | null | undefined;
|
|
3374
3377
|
upc?: string | null | undefined;
|
|
@@ -4107,7 +4107,8 @@ var exportSchema = z.object({
|
|
|
4107
4107
|
spreadsheetTemplateId: z.optional(z.number()),
|
|
4108
4108
|
emailAddresses: z.optional(z.array(z.string())),
|
|
4109
4109
|
subjectLine: z.optional(z.string()),
|
|
4110
|
-
additionalLocales: z.optional(z.array(z.string()))
|
|
4110
|
+
additionalLocales: z.optional(z.array(z.string())),
|
|
4111
|
+
availableAttributeList: z.optional(z.array(z.string()))
|
|
4111
4112
|
});
|
|
4112
4113
|
|
|
4113
4114
|
// lib/exports/models/DownloadItemsParams.ts
|
|
@@ -4920,12 +4921,12 @@ var itemErrorSummaryResultV2Schema = z.object({
|
|
|
4920
4921
|
// lib/errors/v2/models/ItemErrorDetails.ts
|
|
4921
4922
|
var itemErrorDetailsV2Schema = z.object({
|
|
4922
4923
|
errorMessage: z.string(),
|
|
4923
|
-
attributeName: z.string(),
|
|
4924
|
-
attributeDbNames: z.array(z.string()),
|
|
4924
|
+
attributeName: z.string().nullable(),
|
|
4925
4925
|
tradingPartnerNames: z.array(z.string()),
|
|
4926
|
-
phases: z.
|
|
4926
|
+
phases: z.array(stageSchema),
|
|
4927
|
+
attributeDbNames: z.array(z.string()),
|
|
4927
4928
|
tradingPartnerStages: z.array(tradingPartnerStageV2Schema),
|
|
4928
|
-
repeatableGroupId: z.string()
|
|
4929
|
+
repeatableGroupId: z.string().nullish()
|
|
4929
4930
|
});
|
|
4930
4931
|
|
|
4931
4932
|
// lib/errors/v2/models/ItemErrorDetailsResult.ts
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { A as AsstClient, C as CompanyBriefByOrg } from './CompanyBriefByOrg-
|
|
2
|
+
import { A as AsstClient, C as CompanyBriefByOrg } from './CompanyBriefByOrg-LTdsUKm4.js';
|
|
3
3
|
|
|
4
4
|
declare const retailerTradingPartnerStages: z.ZodArray<z.ZodEnum<["Core", "Core Plus", "Core Advanced", "Enriched", "Standard Requirements"]>, "many">;
|
|
5
5
|
type RetailerTradingPartnerStages = z.infer<typeof retailerTradingPartnerStages>;
|
package/dist/index.cjs
CHANGED
|
@@ -4923,7 +4923,8 @@ var exportSchema = z.object({
|
|
|
4923
4923
|
spreadsheetTemplateId: z.optional(z.number()),
|
|
4924
4924
|
emailAddresses: z.optional(z.array(z.string())),
|
|
4925
4925
|
subjectLine: z.optional(z.string()),
|
|
4926
|
-
additionalLocales: z.optional(z.array(z.string()))
|
|
4926
|
+
additionalLocales: z.optional(z.array(z.string())),
|
|
4927
|
+
availableAttributeList: z.optional(z.array(z.string()))
|
|
4927
4928
|
});
|
|
4928
4929
|
|
|
4929
4930
|
// lib/exports/models/DownloadItemsParams.ts
|
|
@@ -5058,12 +5059,12 @@ var itemErrorSummaryResultV2Schema = z.object({
|
|
|
5058
5059
|
// lib/errors/v2/models/ItemErrorDetails.ts
|
|
5059
5060
|
var itemErrorDetailsV2Schema = z.object({
|
|
5060
5061
|
errorMessage: z.string(),
|
|
5061
|
-
attributeName: z.string(),
|
|
5062
|
-
attributeDbNames: z.array(z.string()),
|
|
5062
|
+
attributeName: z.string().nullable(),
|
|
5063
5063
|
tradingPartnerNames: z.array(z.string()),
|
|
5064
|
-
phases: z.
|
|
5064
|
+
phases: z.array(stageSchema),
|
|
5065
|
+
attributeDbNames: z.array(z.string()),
|
|
5065
5066
|
tradingPartnerStages: z.array(tradingPartnerStageV2Schema),
|
|
5066
|
-
repeatableGroupId: z.string()
|
|
5067
|
+
repeatableGroupId: z.string().nullish()
|
|
5067
5068
|
});
|
|
5068
5069
|
|
|
5069
5070
|
// lib/errors/v2/models/ItemErrorDetailsResult.ts
|
package/dist/index.d.cts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { A as AsstClient, a as Import, b as ImportsStatus, V as VendorPartnerAttGroups, E as Export, o as AttrProdType, T as TradingPartnerAccessByCompanyId, e as CompanyRelationshipUpsertBody, c as ItemCategoriesSearch, k as AttributeMetaData, l as AttributesByCompany, m as AttributeDefinition, n as AttributeValidValues, L as Locale, S as SpreadsheetTemplate, U as UserAccount, i as ItemSearchView, j as ItemDetailView, f as ItemErrorDetailsResult, g as ItemErrorSummaryResultV2, h as ItemErrorDetailsResultV2 } from './CompanyBriefByOrg-
|
|
2
|
-
export { q as AsstClientOptions, r as AsstUrl, B as BASE_URLS, C as CompanyBriefByOrg, s as Env, I as ImportErrors, p as envSchema } from './CompanyBriefByOrg-
|
|
3
|
-
import { G as GenerateImportTemplateParams, D as DownLoadItemsParams, I as ItemPartner, a as ItemHierarchyResponse, b as ItemDetail, S as SpsItemIdResponse } from './zod-
|
|
4
|
-
export { i as AttrDatatypeNameEnum, t as AttributeDetail, j as AttributeGroup, A as AttributeSummary, J as Bulb, u as CategoryEnum, v as ComponentDetails, C as Connection, E as ExportDayOfWeek, f as ExportFrequency, g as ExportType, w as GroupedAttributeList, x as GroupedAttributes, y as GroupedItem, H as HierarchyCategory, z as HierarchyDetails, m as IdentityServiceDatetimePreferences, n as IdentityServiceOrganization, l as IdentityServiceOrganizationMetadata, o as IdentityServicePreferences, p as IdentityServiceUser, c as ImportDetails, d as ImportError, e as ImportStatusEnum, h as ItemCategory, O as ItemErrorDetails, U as ItemErrorDetailsV2, Q as ItemErrorSummaryV2, q as ItemHeader, r as ItemMap, B as ItemPrice, s as ItemTable, M as MediaItem, K as PackComponent, F as PackComponentDetails, N as PackComponentItemInfo, P as PhaseEnum, R as RegisteredService, L as RepeatableGroup, k as SpreadsheetTemplateCompany, T as TradingPartnerStage, V as TradingPartnerStageV2 } from './zod-
|
|
5
|
-
import { R as RetailerTradingPartnerStages, I as ItemStatusResponse } from './index-
|
|
6
|
-
export { c as createCompaniesApi } from './index-
|
|
1
|
+
import { A as AsstClient, a as Import, b as ImportsStatus, V as VendorPartnerAttGroups, E as Export, o as AttrProdType, T as TradingPartnerAccessByCompanyId, e as CompanyRelationshipUpsertBody, c as ItemCategoriesSearch, k as AttributeMetaData, l as AttributesByCompany, m as AttributeDefinition, n as AttributeValidValues, L as Locale, S as SpreadsheetTemplate, U as UserAccount, i as ItemSearchView, j as ItemDetailView, f as ItemErrorDetailsResult, g as ItemErrorSummaryResultV2, h as ItemErrorDetailsResultV2 } from './CompanyBriefByOrg-LTdsUKm4.js';
|
|
2
|
+
export { q as AsstClientOptions, r as AsstUrl, B as BASE_URLS, C as CompanyBriefByOrg, s as Env, I as ImportErrors, p as envSchema } from './CompanyBriefByOrg-LTdsUKm4.js';
|
|
3
|
+
import { G as GenerateImportTemplateParams, D as DownLoadItemsParams, I as ItemPartner, a as ItemHierarchyResponse, b as ItemDetail, S as SpsItemIdResponse } from './zod-NE2xXWlK.js';
|
|
4
|
+
export { i as AttrDatatypeNameEnum, t as AttributeDetail, j as AttributeGroup, A as AttributeSummary, J as Bulb, u as CategoryEnum, v as ComponentDetails, C as Connection, E as ExportDayOfWeek, f as ExportFrequency, g as ExportType, w as GroupedAttributeList, x as GroupedAttributes, y as GroupedItem, H as HierarchyCategory, z as HierarchyDetails, m as IdentityServiceDatetimePreferences, n as IdentityServiceOrganization, l as IdentityServiceOrganizationMetadata, o as IdentityServicePreferences, p as IdentityServiceUser, c as ImportDetails, d as ImportError, e as ImportStatusEnum, h as ItemCategory, O as ItemErrorDetails, U as ItemErrorDetailsV2, Q as ItemErrorSummaryV2, q as ItemHeader, r as ItemMap, B as ItemPrice, s as ItemTable, M as MediaItem, K as PackComponent, F as PackComponentDetails, N as PackComponentItemInfo, P as PhaseEnum, R as RegisteredService, L as RepeatableGroup, k as SpreadsheetTemplateCompany, T as TradingPartnerStage, V as TradingPartnerStageV2 } from './zod-NE2xXWlK.js';
|
|
5
|
+
import { R as RetailerTradingPartnerStages, I as ItemStatusResponse } from './index-Zz-6wNSh.js';
|
|
6
|
+
export { c as createCompaniesApi } from './index-Zz-6wNSh.js';
|
|
7
7
|
import { z } from 'zod';
|
|
8
8
|
import 'ky';
|
|
9
9
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { A as AsstClient, a as Import, b as ImportsStatus, V as VendorPartnerAttGroups, E as Export, o as AttrProdType, T as TradingPartnerAccessByCompanyId, e as CompanyRelationshipUpsertBody, c as ItemCategoriesSearch, k as AttributeMetaData, l as AttributesByCompany, m as AttributeDefinition, n as AttributeValidValues, L as Locale, S as SpreadsheetTemplate, U as UserAccount, i as ItemSearchView, j as ItemDetailView, f as ItemErrorDetailsResult, g as ItemErrorSummaryResultV2, h as ItemErrorDetailsResultV2 } from './CompanyBriefByOrg-
|
|
2
|
-
export { q as AsstClientOptions, r as AsstUrl, B as BASE_URLS, C as CompanyBriefByOrg, s as Env, I as ImportErrors, p as envSchema } from './CompanyBriefByOrg-
|
|
3
|
-
import { G as GenerateImportTemplateParams, D as DownLoadItemsParams, I as ItemPartner, a as ItemHierarchyResponse, b as ItemDetail, S as SpsItemIdResponse } from './zod-
|
|
4
|
-
export { i as AttrDatatypeNameEnum, t as AttributeDetail, j as AttributeGroup, A as AttributeSummary, J as Bulb, u as CategoryEnum, v as ComponentDetails, C as Connection, E as ExportDayOfWeek, f as ExportFrequency, g as ExportType, w as GroupedAttributeList, x as GroupedAttributes, y as GroupedItem, H as HierarchyCategory, z as HierarchyDetails, m as IdentityServiceDatetimePreferences, n as IdentityServiceOrganization, l as IdentityServiceOrganizationMetadata, o as IdentityServicePreferences, p as IdentityServiceUser, c as ImportDetails, d as ImportError, e as ImportStatusEnum, h as ItemCategory, O as ItemErrorDetails, U as ItemErrorDetailsV2, Q as ItemErrorSummaryV2, q as ItemHeader, r as ItemMap, B as ItemPrice, s as ItemTable, M as MediaItem, K as PackComponent, F as PackComponentDetails, N as PackComponentItemInfo, P as PhaseEnum, R as RegisteredService, L as RepeatableGroup, k as SpreadsheetTemplateCompany, T as TradingPartnerStage, V as TradingPartnerStageV2 } from './zod-
|
|
5
|
-
import { R as RetailerTradingPartnerStages, I as ItemStatusResponse } from './index-
|
|
6
|
-
export { c as createCompaniesApi } from './index-
|
|
1
|
+
import { A as AsstClient, a as Import, b as ImportsStatus, V as VendorPartnerAttGroups, E as Export, o as AttrProdType, T as TradingPartnerAccessByCompanyId, e as CompanyRelationshipUpsertBody, c as ItemCategoriesSearch, k as AttributeMetaData, l as AttributesByCompany, m as AttributeDefinition, n as AttributeValidValues, L as Locale, S as SpreadsheetTemplate, U as UserAccount, i as ItemSearchView, j as ItemDetailView, f as ItemErrorDetailsResult, g as ItemErrorSummaryResultV2, h as ItemErrorDetailsResultV2 } from './CompanyBriefByOrg-LTdsUKm4.js';
|
|
2
|
+
export { q as AsstClientOptions, r as AsstUrl, B as BASE_URLS, C as CompanyBriefByOrg, s as Env, I as ImportErrors, p as envSchema } from './CompanyBriefByOrg-LTdsUKm4.js';
|
|
3
|
+
import { G as GenerateImportTemplateParams, D as DownLoadItemsParams, I as ItemPartner, a as ItemHierarchyResponse, b as ItemDetail, S as SpsItemIdResponse } from './zod-NE2xXWlK.js';
|
|
4
|
+
export { i as AttrDatatypeNameEnum, t as AttributeDetail, j as AttributeGroup, A as AttributeSummary, J as Bulb, u as CategoryEnum, v as ComponentDetails, C as Connection, E as ExportDayOfWeek, f as ExportFrequency, g as ExportType, w as GroupedAttributeList, x as GroupedAttributes, y as GroupedItem, H as HierarchyCategory, z as HierarchyDetails, m as IdentityServiceDatetimePreferences, n as IdentityServiceOrganization, l as IdentityServiceOrganizationMetadata, o as IdentityServicePreferences, p as IdentityServiceUser, c as ImportDetails, d as ImportError, e as ImportStatusEnum, h as ItemCategory, O as ItemErrorDetails, U as ItemErrorDetailsV2, Q as ItemErrorSummaryV2, q as ItemHeader, r as ItemMap, B as ItemPrice, s as ItemTable, M as MediaItem, K as PackComponent, F as PackComponentDetails, N as PackComponentItemInfo, P as PhaseEnum, R as RegisteredService, L as RepeatableGroup, k as SpreadsheetTemplateCompany, T as TradingPartnerStage, V as TradingPartnerStageV2 } from './zod-NE2xXWlK.js';
|
|
5
|
+
import { R as RetailerTradingPartnerStages, I as ItemStatusResponse } from './index-Zz-6wNSh.js';
|
|
6
|
+
export { c as createCompaniesApi } from './index-Zz-6wNSh.js';
|
|
7
7
|
import { z } from 'zod';
|
|
8
8
|
import 'ky';
|
|
9
9
|
|
package/dist/index.js
CHANGED
|
@@ -16,13 +16,13 @@ import {
|
|
|
16
16
|
createTradingPartnerSettingsApi,
|
|
17
17
|
createUniqueCriteriaApi,
|
|
18
18
|
createWhoAmIApi
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-IO62OUOU.js";
|
|
20
20
|
import {
|
|
21
21
|
AsstClient,
|
|
22
22
|
BASE_URLS,
|
|
23
23
|
envSchema,
|
|
24
24
|
itemStatusV2ResponseSchema
|
|
25
|
-
} from "./chunk-
|
|
25
|
+
} from "./chunk-AH5MG2WF.js";
|
|
26
26
|
|
|
27
27
|
// lib/items/v2/index.ts
|
|
28
28
|
var BASE_URL = "v2/items";
|
package/dist/msw.cjs
CHANGED
|
@@ -4621,7 +4621,8 @@ var exportSchema = z.object({
|
|
|
4621
4621
|
spreadsheetTemplateId: z.optional(z.number()),
|
|
4622
4622
|
emailAddresses: z.optional(z.array(z.string())),
|
|
4623
4623
|
subjectLine: z.optional(z.string()),
|
|
4624
|
-
additionalLocales: z.optional(z.array(z.string()))
|
|
4624
|
+
additionalLocales: z.optional(z.array(z.string())),
|
|
4625
|
+
availableAttributeList: z.optional(z.array(z.string()))
|
|
4625
4626
|
});
|
|
4626
4627
|
|
|
4627
4628
|
// lib/exports/models/DownloadItemsParams.ts
|
|
@@ -4914,12 +4915,12 @@ var itemErrorSummaryResultV2Schema = z.object({
|
|
|
4914
4915
|
// lib/errors/v2/models/ItemErrorDetails.ts
|
|
4915
4916
|
var itemErrorDetailsV2Schema = z.object({
|
|
4916
4917
|
errorMessage: z.string(),
|
|
4917
|
-
attributeName: z.string(),
|
|
4918
|
-
attributeDbNames: z.array(z.string()),
|
|
4918
|
+
attributeName: z.string().nullable(),
|
|
4919
4919
|
tradingPartnerNames: z.array(z.string()),
|
|
4920
|
-
phases: z.
|
|
4920
|
+
phases: z.array(stageSchema),
|
|
4921
|
+
attributeDbNames: z.array(z.string()),
|
|
4921
4922
|
tradingPartnerStages: z.array(tradingPartnerStageV2Schema),
|
|
4922
|
-
repeatableGroupId: z.string()
|
|
4923
|
+
repeatableGroupId: z.string().nullish()
|
|
4923
4924
|
});
|
|
4924
4925
|
|
|
4925
4926
|
// lib/errors/v2/models/ItemErrorDetailsResult.ts
|
package/dist/msw.d.cts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as msw from 'msw';
|
|
2
2
|
import { ResponseResolver, RestRequest, RestContext, DefaultBodyType } from 'msw';
|
|
3
3
|
import * as msw_lib_glossary_de6278a9 from 'msw/lib/glossary-de6278a9';
|
|
4
|
-
import { A as AsstClient, I as ImportErrors, a as Import, b as ImportsStatus, V as VendorPartnerAttGroups, c as ItemCategoriesSearch, E as Export, d as attrProdTypeSchema, T as TradingPartnerAccessByCompanyId, e as CompanyRelationshipUpsertBody, U as UserAccount, f as ItemErrorDetailsResult, g as ItemErrorSummaryResultV2, h as ItemErrorDetailsResultV2, L as Locale, i as ItemSearchView, j as ItemDetailView, k as AttributeMetaData, l as AttributesByCompany, m as AttributeDefinition, n as AttributeValidValues, S as SpreadsheetTemplate } from './CompanyBriefByOrg-
|
|
4
|
+
import { A as AsstClient, I as ImportErrors, a as Import, b as ImportsStatus, V as VendorPartnerAttGroups, c as ItemCategoriesSearch, E as Export, d as attrProdTypeSchema, T as TradingPartnerAccessByCompanyId, e as CompanyRelationshipUpsertBody, U as UserAccount, f as ItemErrorDetailsResult, g as ItemErrorSummaryResultV2, h as ItemErrorDetailsResultV2, L as Locale, i as ItemSearchView, j as ItemDetailView, k as AttributeMetaData, l as AttributesByCompany, m as AttributeDefinition, n as AttributeValidValues, S as SpreadsheetTemplate } from './CompanyBriefByOrg-LTdsUKm4.js';
|
|
5
5
|
import { z } from 'zod';
|
|
6
|
-
import { R as RetailerTradingPartnerStages, I as ItemStatusResponse } from './index-
|
|
7
|
-
export { c as createCompaniesApi } from './index-
|
|
6
|
+
import { R as RetailerTradingPartnerStages, I as ItemStatusResponse } from './index-Zz-6wNSh.js';
|
|
7
|
+
export { c as createCompaniesApi } from './index-Zz-6wNSh.js';
|
|
8
8
|
import 'ky';
|
|
9
9
|
|
|
10
10
|
declare function pagedResultsSchema<T extends z.ZodTypeAny>(resultsType: T): z.ZodObject<{
|
|
@@ -319,8 +319,8 @@ declare function createErrorsApiHandlers(client: AsstClient): {
|
|
|
319
319
|
attributeName: string | null;
|
|
320
320
|
phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS")[];
|
|
321
321
|
errorMessage: string;
|
|
322
|
-
attributeDbNames: string[];
|
|
323
322
|
tradingPartnerNames: string[];
|
|
323
|
+
attributeDbNames: string[];
|
|
324
324
|
repeatableGroupId?: string | null | undefined;
|
|
325
325
|
}[];
|
|
326
326
|
gtin?: string | null | undefined;
|
|
@@ -352,12 +352,12 @@ declare function createErrorsApiV2Handlers(client: AsstClient): {
|
|
|
352
352
|
isValid: boolean;
|
|
353
353
|
stage?: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | null | undefined;
|
|
354
354
|
}[];
|
|
355
|
-
attributeName: string;
|
|
356
|
-
phases:
|
|
355
|
+
attributeName: string | null;
|
|
356
|
+
phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED")[];
|
|
357
357
|
errorMessage: string;
|
|
358
|
-
attributeDbNames: string[];
|
|
359
358
|
tradingPartnerNames: string[];
|
|
360
|
-
|
|
359
|
+
attributeDbNames: string[];
|
|
360
|
+
repeatableGroupId?: string | null | undefined;
|
|
361
361
|
}[];
|
|
362
362
|
gtin?: string | null | undefined;
|
|
363
363
|
upc?: string | null | undefined;
|
package/dist/msw.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as msw from 'msw';
|
|
2
2
|
import { ResponseResolver, RestRequest, RestContext, DefaultBodyType } from 'msw';
|
|
3
3
|
import * as msw_lib_glossary_de6278a9 from 'msw/lib/glossary-de6278a9';
|
|
4
|
-
import { A as AsstClient, I as ImportErrors, a as Import, b as ImportsStatus, V as VendorPartnerAttGroups, c as ItemCategoriesSearch, E as Export, d as attrProdTypeSchema, T as TradingPartnerAccessByCompanyId, e as CompanyRelationshipUpsertBody, U as UserAccount, f as ItemErrorDetailsResult, g as ItemErrorSummaryResultV2, h as ItemErrorDetailsResultV2, L as Locale, i as ItemSearchView, j as ItemDetailView, k as AttributeMetaData, l as AttributesByCompany, m as AttributeDefinition, n as AttributeValidValues, S as SpreadsheetTemplate } from './CompanyBriefByOrg-
|
|
4
|
+
import { A as AsstClient, I as ImportErrors, a as Import, b as ImportsStatus, V as VendorPartnerAttGroups, c as ItemCategoriesSearch, E as Export, d as attrProdTypeSchema, T as TradingPartnerAccessByCompanyId, e as CompanyRelationshipUpsertBody, U as UserAccount, f as ItemErrorDetailsResult, g as ItemErrorSummaryResultV2, h as ItemErrorDetailsResultV2, L as Locale, i as ItemSearchView, j as ItemDetailView, k as AttributeMetaData, l as AttributesByCompany, m as AttributeDefinition, n as AttributeValidValues, S as SpreadsheetTemplate } from './CompanyBriefByOrg-LTdsUKm4.js';
|
|
5
5
|
import { z } from 'zod';
|
|
6
|
-
import { R as RetailerTradingPartnerStages, I as ItemStatusResponse } from './index-
|
|
7
|
-
export { c as createCompaniesApi } from './index-
|
|
6
|
+
import { R as RetailerTradingPartnerStages, I as ItemStatusResponse } from './index-Zz-6wNSh.js';
|
|
7
|
+
export { c as createCompaniesApi } from './index-Zz-6wNSh.js';
|
|
8
8
|
import 'ky';
|
|
9
9
|
|
|
10
10
|
declare function pagedResultsSchema<T extends z.ZodTypeAny>(resultsType: T): z.ZodObject<{
|
|
@@ -319,8 +319,8 @@ declare function createErrorsApiHandlers(client: AsstClient): {
|
|
|
319
319
|
attributeName: string | null;
|
|
320
320
|
phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | "STANDARD_REQUIREMENTS")[];
|
|
321
321
|
errorMessage: string;
|
|
322
|
-
attributeDbNames: string[];
|
|
323
322
|
tradingPartnerNames: string[];
|
|
323
|
+
attributeDbNames: string[];
|
|
324
324
|
repeatableGroupId?: string | null | undefined;
|
|
325
325
|
}[];
|
|
326
326
|
gtin?: string | null | undefined;
|
|
@@ -352,12 +352,12 @@ declare function createErrorsApiV2Handlers(client: AsstClient): {
|
|
|
352
352
|
isValid: boolean;
|
|
353
353
|
stage?: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | null | undefined;
|
|
354
354
|
}[];
|
|
355
|
-
attributeName: string;
|
|
356
|
-
phases:
|
|
355
|
+
attributeName: string | null;
|
|
356
|
+
phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED")[];
|
|
357
357
|
errorMessage: string;
|
|
358
|
-
attributeDbNames: string[];
|
|
359
358
|
tradingPartnerNames: string[];
|
|
360
|
-
|
|
359
|
+
attributeDbNames: string[];
|
|
360
|
+
repeatableGroupId?: string | null | undefined;
|
|
361
361
|
}[];
|
|
362
362
|
gtin?: string | null | undefined;
|
|
363
363
|
upc?: string | null | undefined;
|
package/dist/msw.js
CHANGED
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
BASE_URL_V2,
|
|
19
19
|
createCompaniesApi,
|
|
20
20
|
retailerTradingPartnerStages
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-IO62OUOU.js";
|
|
22
22
|
import {
|
|
23
23
|
attrProdTypeSchema,
|
|
24
24
|
attributeDefinitionSchema,
|
|
@@ -43,7 +43,7 @@ import {
|
|
|
43
43
|
userAccountSchema,
|
|
44
44
|
vendorPartnerAttGroupsSchema,
|
|
45
45
|
z
|
|
46
|
-
} from "./chunk-
|
|
46
|
+
} from "./chunk-AH5MG2WF.js";
|
|
47
47
|
|
|
48
48
|
// lib/imports/mockHandlers.ts
|
|
49
49
|
import { generateMock } from "@anatine/zod-mock";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import './CompanyBriefByOrg-
|
|
1
|
+
import './CompanyBriefByOrg-LTdsUKm4.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
|
|
4
4
|
declare const importDetailSchema: z.ZodObject<{
|
|
@@ -3363,10 +3363,10 @@ type TradingPartnerStageV2 = z.infer<typeof tradingPartnerStageV2Schema>;
|
|
|
3363
3363
|
|
|
3364
3364
|
declare const itemErrorDetailsV2Schema: z.ZodObject<{
|
|
3365
3365
|
errorMessage: z.ZodString;
|
|
3366
|
-
attributeName: z.ZodString
|
|
3367
|
-
attributeDbNames: z.ZodArray<z.ZodString, "many">;
|
|
3366
|
+
attributeName: z.ZodNullable<z.ZodString>;
|
|
3368
3367
|
tradingPartnerNames: z.ZodArray<z.ZodString, "many">;
|
|
3369
|
-
phases: z.
|
|
3368
|
+
phases: z.ZodArray<z.ZodEnum<["CORE", "CORE_PLUS", "CORE_ADVANCED", "ENRICHED"]>, "many">;
|
|
3369
|
+
attributeDbNames: z.ZodArray<z.ZodString, "many">;
|
|
3370
3370
|
tradingPartnerStages: z.ZodArray<z.ZodObject<{
|
|
3371
3371
|
companyId: z.ZodNumber;
|
|
3372
3372
|
companyName: z.ZodString;
|
|
@@ -3383,9 +3383,9 @@ declare const itemErrorDetailsV2Schema: z.ZodObject<{
|
|
|
3383
3383
|
isValid: boolean;
|
|
3384
3384
|
stage?: "CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED" | null | undefined;
|
|
3385
3385
|
}>, "many">;
|
|
3386
|
-
repeatableGroupId: z.ZodString
|
|
3386
|
+
repeatableGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3387
3387
|
}, "strip", z.ZodTypeAny, {
|
|
3388
|
-
attributeName: string;
|
|
3388
|
+
attributeName: string | null;
|
|
3389
3389
|
tradingPartnerStages: {
|
|
3390
3390
|
companyId: number;
|
|
3391
3391
|
companyName: string;
|
|
@@ -3394,11 +3394,11 @@ declare const itemErrorDetailsV2Schema: z.ZodObject<{
|
|
|
3394
3394
|
}[];
|
|
3395
3395
|
errorMessage: string;
|
|
3396
3396
|
tradingPartnerNames: string[];
|
|
3397
|
-
phases:
|
|
3397
|
+
phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED")[];
|
|
3398
3398
|
attributeDbNames: string[];
|
|
3399
|
-
repeatableGroupId
|
|
3399
|
+
repeatableGroupId?: string | null | undefined;
|
|
3400
3400
|
}, {
|
|
3401
|
-
attributeName: string;
|
|
3401
|
+
attributeName: string | null;
|
|
3402
3402
|
tradingPartnerStages: {
|
|
3403
3403
|
companyId: number;
|
|
3404
3404
|
companyName: string;
|
|
@@ -3407,9 +3407,9 @@ declare const itemErrorDetailsV2Schema: z.ZodObject<{
|
|
|
3407
3407
|
}[];
|
|
3408
3408
|
errorMessage: string;
|
|
3409
3409
|
tradingPartnerNames: string[];
|
|
3410
|
-
phases:
|
|
3410
|
+
phases: ("CORE" | "CORE_PLUS" | "CORE_ADVANCED" | "ENRICHED")[];
|
|
3411
3411
|
attributeDbNames: string[];
|
|
3412
|
-
repeatableGroupId
|
|
3412
|
+
repeatableGroupId?: string | null | undefined;
|
|
3413
3413
|
}>;
|
|
3414
3414
|
type ItemErrorDetailsV2 = z.infer<typeof itemErrorDetailsV2Schema>;
|
|
3415
3415
|
|
package/dist/zod.cjs
CHANGED
|
@@ -4163,7 +4163,8 @@ var exportSchema = z.object({
|
|
|
4163
4163
|
spreadsheetTemplateId: z.optional(z.number()),
|
|
4164
4164
|
emailAddresses: z.optional(z.array(z.string())),
|
|
4165
4165
|
subjectLine: z.optional(z.string()),
|
|
4166
|
-
additionalLocales: z.optional(z.array(z.string()))
|
|
4166
|
+
additionalLocales: z.optional(z.array(z.string())),
|
|
4167
|
+
availableAttributeList: z.optional(z.array(z.string()))
|
|
4167
4168
|
});
|
|
4168
4169
|
|
|
4169
4170
|
// lib/exports/models/DownloadItemsParams.ts
|
|
@@ -4966,12 +4967,12 @@ var itemErrorSummaryResultV2Schema = z.object({
|
|
|
4966
4967
|
// lib/errors/v2/models/ItemErrorDetails.ts
|
|
4967
4968
|
var itemErrorDetailsV2Schema = z.object({
|
|
4968
4969
|
errorMessage: z.string(),
|
|
4969
|
-
attributeName: z.string(),
|
|
4970
|
-
attributeDbNames: z.array(z.string()),
|
|
4970
|
+
attributeName: z.string().nullable(),
|
|
4971
4971
|
tradingPartnerNames: z.array(z.string()),
|
|
4972
|
-
phases: z.
|
|
4972
|
+
phases: z.array(stageSchema),
|
|
4973
|
+
attributeDbNames: z.array(z.string()),
|
|
4973
4974
|
tradingPartnerStages: z.array(tradingPartnerStageV2Schema),
|
|
4974
|
-
repeatableGroupId: z.string()
|
|
4975
|
+
repeatableGroupId: z.string().nullish()
|
|
4975
4976
|
});
|
|
4976
4977
|
|
|
4977
4978
|
// lib/errors/v2/models/ItemErrorDetailsResult.ts
|
package/dist/zod.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { d as attrProdTypeSchema, z as attributeDefinitionSchema, D as attributeMetaDataSchema, G as attributeValidValuesSchema, F as attributesByCompanySchema, X as companyBriefByOrgSchema, O as companyRelationshipUpsertBodySchema, p as envSchema, x as exportSchema, t as importErrorsSchema, u as importSchema, v as importsStatusSchema, y as itemCategoriesSearchSchema, J as itemDetailViewSchema, Q as itemErrorDetailsResultSchema, R as itemErrorDetailsResultV2Schema, W as itemErrorSummaryResultV2Schema, H as itemSearchViewSchema, K as localeSchema, M as spreadsheetTemplateSchema, N as tradingPartnerAccessByCompanyIdSchema, P as userAccountSchema, w as vendorPartnerAttGroupsSchema } from './CompanyBriefByOrg-
|
|
2
|
-
export { a4 as attrDatatypeNameEnumSchema, aj as attributeDetailSchema, a5 as attributeGroupSchema, a6 as attributeSummarySchema, ac as bulbSchema, ah as categoryEnumSchema, al as componentDetailsSchema, au as connectionSchema, a1 as downLoadItemsParamsSchema, _ as exportDayOfWeekEnum, $ as exportFrequencyEnum, a0 as exportTypeEnum, Z as generateImportTemplateParamsSchema, ap as groupedAttributeListSchema, an as groupedAttributesSchema, ag as groupedItemSchema, ao as hierarchyCategorySchema, am as hierarchyDetailsSchema, aw as identityServiceDatetimePreferencesSchema, ax as identityServiceOrganizationMetadataSchema, ay as identityServiceOrganizationSchema, az as identityServicePreferencesSchema, aA as identityServiceUserSchema, W as importDetailSchema, X as importErrorSchema, Y as importStatusEnumSchema, a2 as itemCategorySchema, af as itemDetailSchema, aC as itemErrorDetailsSchema, aE as itemErrorDetailsV2Schema, aD as itemErrorSummaryV2Schema, a7 as itemHeaderSchema, a3 as itemHierarchyResponseSchema, a8 as itemMapSchema, av as itemPartnerSchema, ad as itemPriceSchema, a9 as itemTableSchema, ae as mediaItemSchema, aq as packComponentDetailsSchema, ar as packComponentItemInfoSchema, ai as packComponentSchema, aa as phaseEnumSchema, aB as registeredServiceSchema, ak as repeatableGroupSchema, at as spreadsheetTemplateCompanySchema, as as spsItemIdResponseSchema, ab as tradingPartnerStageSchema, aF as tradingPartnerStageV2Schema } from './zod-
|
|
1
|
+
export { d as attrProdTypeSchema, z as attributeDefinitionSchema, D as attributeMetaDataSchema, G as attributeValidValuesSchema, F as attributesByCompanySchema, X as companyBriefByOrgSchema, O as companyRelationshipUpsertBodySchema, p as envSchema, x as exportSchema, t as importErrorsSchema, u as importSchema, v as importsStatusSchema, y as itemCategoriesSearchSchema, J as itemDetailViewSchema, Q as itemErrorDetailsResultSchema, R as itemErrorDetailsResultV2Schema, W as itemErrorSummaryResultV2Schema, H as itemSearchViewSchema, K as localeSchema, M as spreadsheetTemplateSchema, N as tradingPartnerAccessByCompanyIdSchema, P as userAccountSchema, w as vendorPartnerAttGroupsSchema } from './CompanyBriefByOrg-LTdsUKm4.js';
|
|
2
|
+
export { a4 as attrDatatypeNameEnumSchema, aj as attributeDetailSchema, a5 as attributeGroupSchema, a6 as attributeSummarySchema, ac as bulbSchema, ah as categoryEnumSchema, al as componentDetailsSchema, au as connectionSchema, a1 as downLoadItemsParamsSchema, _ as exportDayOfWeekEnum, $ as exportFrequencyEnum, a0 as exportTypeEnum, Z as generateImportTemplateParamsSchema, ap as groupedAttributeListSchema, an as groupedAttributesSchema, ag as groupedItemSchema, ao as hierarchyCategorySchema, am as hierarchyDetailsSchema, aw as identityServiceDatetimePreferencesSchema, ax as identityServiceOrganizationMetadataSchema, ay as identityServiceOrganizationSchema, az as identityServicePreferencesSchema, aA as identityServiceUserSchema, W as importDetailSchema, X as importErrorSchema, Y as importStatusEnumSchema, a2 as itemCategorySchema, af as itemDetailSchema, aC as itemErrorDetailsSchema, aE as itemErrorDetailsV2Schema, aD as itemErrorSummaryV2Schema, a7 as itemHeaderSchema, a3 as itemHierarchyResponseSchema, a8 as itemMapSchema, av as itemPartnerSchema, ad as itemPriceSchema, a9 as itemTableSchema, ae as mediaItemSchema, aq as packComponentDetailsSchema, ar as packComponentItemInfoSchema, ai as packComponentSchema, aa as phaseEnumSchema, aB as registeredServiceSchema, ak as repeatableGroupSchema, at as spreadsheetTemplateCompanySchema, as as spsItemIdResponseSchema, ab as tradingPartnerStageSchema, aF as tradingPartnerStageV2Schema } from './zod-NE2xXWlK.js';
|
|
3
3
|
import 'ky';
|
|
4
4
|
import 'zod';
|
package/dist/zod.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { d as attrProdTypeSchema, z as attributeDefinitionSchema, D as attributeMetaDataSchema, G as attributeValidValuesSchema, F as attributesByCompanySchema, X as companyBriefByOrgSchema, O as companyRelationshipUpsertBodySchema, p as envSchema, x as exportSchema, t as importErrorsSchema, u as importSchema, v as importsStatusSchema, y as itemCategoriesSearchSchema, J as itemDetailViewSchema, Q as itemErrorDetailsResultSchema, R as itemErrorDetailsResultV2Schema, W as itemErrorSummaryResultV2Schema, H as itemSearchViewSchema, K as localeSchema, M as spreadsheetTemplateSchema, N as tradingPartnerAccessByCompanyIdSchema, P as userAccountSchema, w as vendorPartnerAttGroupsSchema } from './CompanyBriefByOrg-
|
|
2
|
-
export { a4 as attrDatatypeNameEnumSchema, aj as attributeDetailSchema, a5 as attributeGroupSchema, a6 as attributeSummarySchema, ac as bulbSchema, ah as categoryEnumSchema, al as componentDetailsSchema, au as connectionSchema, a1 as downLoadItemsParamsSchema, _ as exportDayOfWeekEnum, $ as exportFrequencyEnum, a0 as exportTypeEnum, Z as generateImportTemplateParamsSchema, ap as groupedAttributeListSchema, an as groupedAttributesSchema, ag as groupedItemSchema, ao as hierarchyCategorySchema, am as hierarchyDetailsSchema, aw as identityServiceDatetimePreferencesSchema, ax as identityServiceOrganizationMetadataSchema, ay as identityServiceOrganizationSchema, az as identityServicePreferencesSchema, aA as identityServiceUserSchema, W as importDetailSchema, X as importErrorSchema, Y as importStatusEnumSchema, a2 as itemCategorySchema, af as itemDetailSchema, aC as itemErrorDetailsSchema, aE as itemErrorDetailsV2Schema, aD as itemErrorSummaryV2Schema, a7 as itemHeaderSchema, a3 as itemHierarchyResponseSchema, a8 as itemMapSchema, av as itemPartnerSchema, ad as itemPriceSchema, a9 as itemTableSchema, ae as mediaItemSchema, aq as packComponentDetailsSchema, ar as packComponentItemInfoSchema, ai as packComponentSchema, aa as phaseEnumSchema, aB as registeredServiceSchema, ak as repeatableGroupSchema, at as spreadsheetTemplateCompanySchema, as as spsItemIdResponseSchema, ab as tradingPartnerStageSchema, aF as tradingPartnerStageV2Schema } from './zod-
|
|
1
|
+
export { d as attrProdTypeSchema, z as attributeDefinitionSchema, D as attributeMetaDataSchema, G as attributeValidValuesSchema, F as attributesByCompanySchema, X as companyBriefByOrgSchema, O as companyRelationshipUpsertBodySchema, p as envSchema, x as exportSchema, t as importErrorsSchema, u as importSchema, v as importsStatusSchema, y as itemCategoriesSearchSchema, J as itemDetailViewSchema, Q as itemErrorDetailsResultSchema, R as itemErrorDetailsResultV2Schema, W as itemErrorSummaryResultV2Schema, H as itemSearchViewSchema, K as localeSchema, M as spreadsheetTemplateSchema, N as tradingPartnerAccessByCompanyIdSchema, P as userAccountSchema, w as vendorPartnerAttGroupsSchema } from './CompanyBriefByOrg-LTdsUKm4.js';
|
|
2
|
+
export { a4 as attrDatatypeNameEnumSchema, aj as attributeDetailSchema, a5 as attributeGroupSchema, a6 as attributeSummarySchema, ac as bulbSchema, ah as categoryEnumSchema, al as componentDetailsSchema, au as connectionSchema, a1 as downLoadItemsParamsSchema, _ as exportDayOfWeekEnum, $ as exportFrequencyEnum, a0 as exportTypeEnum, Z as generateImportTemplateParamsSchema, ap as groupedAttributeListSchema, an as groupedAttributesSchema, ag as groupedItemSchema, ao as hierarchyCategorySchema, am as hierarchyDetailsSchema, aw as identityServiceDatetimePreferencesSchema, ax as identityServiceOrganizationMetadataSchema, ay as identityServiceOrganizationSchema, az as identityServicePreferencesSchema, aA as identityServiceUserSchema, W as importDetailSchema, X as importErrorSchema, Y as importStatusEnumSchema, a2 as itemCategorySchema, af as itemDetailSchema, aC as itemErrorDetailsSchema, aE as itemErrorDetailsV2Schema, aD as itemErrorSummaryV2Schema, a7 as itemHeaderSchema, a3 as itemHierarchyResponseSchema, a8 as itemMapSchema, av as itemPartnerSchema, ad as itemPriceSchema, a9 as itemTableSchema, ae as mediaItemSchema, aq as packComponentDetailsSchema, ar as packComponentItemInfoSchema, ai as packComponentSchema, aa as phaseEnumSchema, aB as registeredServiceSchema, ak as repeatableGroupSchema, at as spreadsheetTemplateCompanySchema, as as spsItemIdResponseSchema, ab as tradingPartnerStageSchema, aF as tradingPartnerStageV2Schema } from './zod-NE2xXWlK.js';
|
|
3
3
|
import 'ky';
|
|
4
4
|
import 'zod';
|
package/dist/zod.js
CHANGED
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Assortment Api is a collection of HTTP functions to use Assortment endpoints",
|
|
4
4
|
"author": "Assortment",
|
|
5
5
|
"repository": "https://github.com/SPSCommerce/assortment-main/tree/main/ui/packages/asst-api",
|
|
6
|
-
"version": "1.1
|
|
6
|
+
"version": "1.2.1",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist"
|
|
9
9
|
],
|