@things-factory/product-base 7.0.19 → 7.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-server/service/product/product-types.d.ts +2 -0
- package/dist-server/service/product/product-types.js +8 -0
- package/dist-server/service/product/product-types.js.map +1 -1
- package/dist-server/service/product/product.d.ts +1 -0
- package/dist-server/service/product/product.js +5 -0
- package/dist-server/service/product/product.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/server/service/product/product-types.ts +8 -0
- package/server/service/product/product.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/product-base",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.22",
|
|
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": "^7.0.
|
|
27
|
+
"@things-factory/biz-base": "^7.0.22",
|
|
28
28
|
"@things-factory/env": "^7.0.14",
|
|
29
|
-
"@things-factory/routing-base": "^7.0.
|
|
29
|
+
"@things-factory/routing-base": "^7.0.22"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "2482cabd0a609346f2dfb1c89316b72468dd33bf"
|
|
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
|
}
|