@softwear/latestcollectioncore 1.0.21 → 1.0.23

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,27 @@ 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
+ id: string;
182
+ name: string;
183
+ collection: string;
184
+ count?: number;
185
+ lasttime?: number;
186
+ hideBrand?: boolean;
187
+ dataProviders?: object[];
188
+ url?: string;
189
+ www?: string;
190
+ externalLink?: string;
191
+ aliases?: string[];
192
+ email?: string;
193
+ purchaseOrderEmail?: string;
194
+ gln?: string;
195
+ ownerTenantId?: string;
196
+ orderMethods?: string[];
197
+ whiteListTenants?: string[];
198
+ associates?: object[];
199
+ authGroups?: string[];
200
+ propertyMapping?: object[];
201
+ fashionCloudId?: string;
202
+ }
203
+ 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.23",
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,44 @@ 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
+ id: string
194
+ name: string
195
+ collection: string
196
+ count?: number
197
+ lasttime?: number
198
+ hideBrand?: boolean
199
+ dataProviders?: object[]
200
+ url?: string
201
+ www?: string
202
+ externalLink?: string
203
+ aliases?: string[]
204
+ email?: string
205
+ purchaseOrderEmail?: string
206
+ gln?: string
207
+ ownerTenantId?: string
208
+ orderMethods?: string[]
209
+ whiteListTenants?: string[]
210
+ associates?: object[]
211
+ authGroups?: string[]
212
+ propertyMapping?: object[]
213
+ fashionCloudId?: string
214
+ }
215
+
216
+ export {
217
+ RowI,
218
+ StockTransferSelectionI,
219
+ MarkedSkuI,
220
+ vatCategoryE,
221
+ tagTypeE,
222
+ SkuI,
223
+ GroupI,
224
+ ProductI,
225
+ ImageI,
226
+ AttributeI,
227
+ ColorI,
228
+ MatrixI,
229
+ StockTransferDataI,
230
+ StockTransferMatrixI,
231
+ BrandSettingI,
232
+ }