@softwear/latestcollectioncore 1.0.21 → 1.0.22

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 CHANGED
@@ -177,4 +177,26 @@ interface ProductI {
177
177
  warehouseLocation: string;
178
178
  year?: string;
179
179
  }
180
- export { RowI, StockTransferSelectionI, MarkedSkuI, vatCategoryE, tagTypeE, SkuI, GroupI, ProductI, ImageI, AttributeI, ColorI, MatrixI, StockTransferDataI, StockTransferMatrixI };
180
+ interface BrandSettingI {
181
+ name: string;
182
+ collection: string;
183
+ count?: number;
184
+ lasttime?: number;
185
+ hideBrand?: boolean;
186
+ dataProviders?: object[];
187
+ url?: string;
188
+ www?: string;
189
+ externalLink?: string;
190
+ aliases?: string[];
191
+ email?: string;
192
+ purchaseOrderEmail?: string;
193
+ gln?: string;
194
+ ownerTenantId?: string;
195
+ orderMethods?: string[];
196
+ whiteListTenants?: string[];
197
+ associates?: object[];
198
+ authGroups?: string[];
199
+ propertyMapping?: object[];
200
+ fashionCloudId?: string;
201
+ }
202
+ export { RowI, StockTransferSelectionI, MarkedSkuI, vatCategoryE, tagTypeE, SkuI, GroupI, ProductI, ImageI, AttributeI, ColorI, MatrixI, StockTransferDataI, StockTransferMatrixI, BrandSettingI, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwear/latestcollectioncore",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "description": "Core functions for LatestCollections applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/types.ts CHANGED
@@ -189,4 +189,43 @@ interface ProductI {
189
189
  year?: string
190
190
  }
191
191
 
192
- export { RowI, StockTransferSelectionI, MarkedSkuI, vatCategoryE, tagTypeE, SkuI, GroupI, ProductI, ImageI, AttributeI, ColorI, MatrixI, StockTransferDataI, StockTransferMatrixI }
192
+ interface BrandSettingI {
193
+ name: string
194
+ collection: string
195
+ count?: number
196
+ lasttime?: number
197
+ hideBrand?: boolean
198
+ dataProviders?: object[]
199
+ url?: string
200
+ www?: string
201
+ externalLink?: string
202
+ aliases?: string[]
203
+ email?: string
204
+ purchaseOrderEmail?: string
205
+ gln?: string
206
+ ownerTenantId?: string
207
+ orderMethods?: string[]
208
+ whiteListTenants?: string[]
209
+ associates?: object[]
210
+ authGroups?: string[]
211
+ propertyMapping?: object[]
212
+ fashionCloudId?: string
213
+ }
214
+
215
+ export {
216
+ RowI,
217
+ StockTransferSelectionI,
218
+ MarkedSkuI,
219
+ vatCategoryE,
220
+ tagTypeE,
221
+ SkuI,
222
+ GroupI,
223
+ ProductI,
224
+ ImageI,
225
+ AttributeI,
226
+ ColorI,
227
+ MatrixI,
228
+ StockTransferDataI,
229
+ StockTransferMatrixI,
230
+ BrandSettingI,
231
+ }