@things-factory/warehouse-base 6.1.28 → 6.1.47

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/warehouse-base",
3
- "version": "6.1.28",
3
+ "version": "6.1.47",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -24,12 +24,12 @@
24
24
  "migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
25
25
  },
26
26
  "dependencies": {
27
- "@things-factory/biz-base": "^6.1.28",
28
- "@things-factory/id-rule-base": "^6.1.28",
29
- "@things-factory/integration-sellercraft": "^6.1.28",
30
- "@things-factory/marketplace-base": "^6.1.28",
31
- "@things-factory/product-base": "^6.1.28",
32
- "@things-factory/setting-base": "^6.1.28"
27
+ "@things-factory/biz-base": "^6.1.46",
28
+ "@things-factory/id-rule-base": "^6.1.46",
29
+ "@things-factory/integration-sellercraft": "^6.1.46",
30
+ "@things-factory/marketplace-base": "^6.1.46",
31
+ "@things-factory/product-base": "^6.1.46",
32
+ "@things-factory/setting-base": "^6.1.46"
33
33
  },
34
- "gitHead": "6830586c0142afaf8a23ff84aced6d4da18f1746"
34
+ "gitHead": "288c08459f4e3df5ae883497f23f63e85f75726f"
35
35
  }
@@ -231,11 +231,11 @@ export class Inventory {
231
231
  @Field({ nullable: true })
232
232
  productBrand: string
233
233
 
234
- @Column({ nullable: true })
234
+ @Column({ nullable: true, default: '' })
235
235
  @Field({ nullable: true })
236
236
  productColor?: string
237
237
 
238
- @Column({ nullable: true })
238
+ @Column({ nullable: true, default: '' })
239
239
  @Field({ nullable: true })
240
240
  productQuality?: string
241
241