@softwear/latestcollectioncore 1.0.145 → 1.0.147
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/types.d.ts +2 -0
- package/dist/types.js +1 -0
- package/package.json +1 -1
- package/src/types.ts +2 -0
package/dist/types.d.ts
CHANGED
|
@@ -232,6 +232,7 @@ interface BrandSettingI {
|
|
|
232
232
|
authGroups?: string[];
|
|
233
233
|
propertyMapping?: PropertyMappingI[];
|
|
234
234
|
fashionCloudId?: string;
|
|
235
|
+
sizeSystemPrefix?: string;
|
|
235
236
|
}
|
|
236
237
|
declare enum mappingStrategyE {
|
|
237
238
|
MAP = "map",
|
|
@@ -255,6 +256,7 @@ declare enum transactionTypeE {
|
|
|
255
256
|
B2B_SOLD = "92",
|
|
256
257
|
B2B_RE_SOLD = "93",
|
|
257
258
|
PICK_LIST = "94",
|
|
259
|
+
CONSIGNMENT = "95",
|
|
258
260
|
ORDER = "96",
|
|
259
261
|
RE_ORDER = "97",
|
|
260
262
|
OFFER = "98"
|
package/dist/types.js
CHANGED
|
@@ -49,6 +49,7 @@ var transactionTypeE;
|
|
|
49
49
|
transactionTypeE["B2B_SOLD"] = "92";
|
|
50
50
|
transactionTypeE["B2B_RE_SOLD"] = "93";
|
|
51
51
|
transactionTypeE["PICK_LIST"] = "94";
|
|
52
|
+
transactionTypeE["CONSIGNMENT"] = "95";
|
|
52
53
|
transactionTypeE["ORDER"] = "96";
|
|
53
54
|
transactionTypeE["RE_ORDER"] = "97";
|
|
54
55
|
transactionTypeE["OFFER"] = "98";
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -246,6 +246,7 @@ interface BrandSettingI {
|
|
|
246
246
|
authGroups?: string[]
|
|
247
247
|
propertyMapping?: PropertyMappingI[]
|
|
248
248
|
fashionCloudId?: string
|
|
249
|
+
sizeSystemPrefix?: string
|
|
249
250
|
}
|
|
250
251
|
|
|
251
252
|
enum mappingStrategyE {
|
|
@@ -271,6 +272,7 @@ enum transactionTypeE {
|
|
|
271
272
|
B2B_SOLD = '92',
|
|
272
273
|
B2B_RE_SOLD = '93',
|
|
273
274
|
PICK_LIST = '94',
|
|
275
|
+
CONSIGNMENT = '95',
|
|
274
276
|
ORDER = '96',
|
|
275
277
|
RE_ORDER = '97',
|
|
276
278
|
OFFER = '98',
|