@things-factory/product-base 6.2.160 → 6.2.165

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/product-base",
3
- "version": "6.2.160",
3
+ "version": "6.2.165",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -24,9 +24,9 @@
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.2.158",
27
+ "@things-factory/biz-base": "^6.2.165",
28
28
  "@things-factory/env": "^6.2.139",
29
- "@things-factory/routing-base": "^6.2.160"
29
+ "@things-factory/routing-base": "^6.2.165"
30
30
  },
31
- "gitHead": "ad99210ebf671cf292229fd36a698350aaa01a4e"
31
+ "gitHead": "7c1bf77d9da08bda3a74d11a0c62cac678c9720f"
32
32
  }
@@ -212,6 +212,10 @@ export class NewProduct {
212
212
  // 경매입고
213
213
  @Field(type => Boolean, { nullable: true })
214
214
  isAuction?: boolean
215
+
216
+ // 출고유형
217
+ @Field({ nullable: true })
218
+ releaseType?: string
215
219
  }
216
220
 
217
221
  @ObjectType()
@@ -437,6 +441,10 @@ export class ProductPatch {
437
441
  @Field(type => Boolean, { nullable: true })
438
442
  isAuction?: boolean
439
443
 
444
+ // 출고유형
445
+ @Field({ nullable: true })
446
+ releaseType?: string
447
+
440
448
  @Field({ nullable: true })
441
449
  cuFlag?: string
442
450
  }
@@ -374,6 +374,10 @@ export class Product {
374
374
  @Field()
375
375
  pickingStrategy: pickStrategy
376
376
 
377
+ @Column({ nullable: true })
378
+ @Field({ nullable: true })
379
+ releaseType?: string
380
+
377
381
  @Field({ nullable: true })
378
382
  refCode: string
379
383