@things-factory/product-base 4.3.671 → 4.3.672
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/constants/index.js +18 -0
- package/dist-server/constants/index.js.map +1 -0
- package/dist-server/constants/product.js +25 -0
- package/dist-server/constants/product.js.map +1 -0
- package/dist-server/controllers/index.js +1 -0
- package/dist-server/controllers/index.js.map +1 -0
- package/dist-server/index.js +19 -0
- package/dist-server/index.js.map +1 -0
- package/dist-server/middlewares/index.js +1 -0
- package/dist-server/middlewares/index.js.map +1 -0
- package/dist-server/migrations/index.js +12 -0
- package/dist-server/migrations/index.js.map +1 -0
- package/dist-server/service/index.js +74 -0
- package/dist-server/service/index.js.map +1 -0
- package/dist-server/service/product/index.js +10 -0
- package/dist-server/service/product/index.js.map +1 -0
- package/dist-server/service/product/product-mutation.js +408 -0
- package/dist-server/service/product/product-mutation.js.map +1 -0
- package/dist-server/service/product/product-query.js +373 -0
- package/dist-server/service/product/product-query.js.map +1 -0
- package/dist-server/service/product/product-types.js +618 -0
- package/dist-server/service/product/product-types.js.map +1 -0
- package/dist-server/service/product/product.js +615 -0
- package/dist-server/service/product/product.js.map +1 -0
- package/dist-server/service/product/validate-product.js +26 -0
- package/dist-server/service/product/validate-product.js.map +1 -0
- package/dist-server/service/product-barcode/index.js +9 -0
- package/dist-server/service/product-barcode/index.js.map +1 -0
- package/dist-server/service/product-barcode/product-barcode-mutation.js +120 -0
- package/dist-server/service/product-barcode/product-barcode-mutation.js.map +1 -0
- package/dist-server/service/product-barcode/product-barcode-query.js +87 -0
- package/dist-server/service/product-barcode/product-barcode-query.js.map +1 -0
- package/dist-server/service/product-barcode/product-barcode-type.js +63 -0
- package/dist-server/service/product-barcode/product-barcode-type.js.map +1 -0
- package/dist-server/service/product-barcode/product-barcode.js +104 -0
- package/dist-server/service/product-barcode/product-barcode.js.map +1 -0
- package/dist-server/service/product-bundle/index.js +9 -0
- package/dist-server/service/product-bundle/index.js.map +1 -0
- package/dist-server/service/product-bundle/product-bundle-mutation.js +130 -0
- package/dist-server/service/product-bundle/product-bundle-mutation.js.map +1 -0
- package/dist-server/service/product-bundle/product-bundle-query.js +128 -0
- package/dist-server/service/product-bundle/product-bundle-query.js.map +1 -0
- package/dist-server/service/product-bundle/product-bundle-types.js +85 -0
- package/dist-server/service/product-bundle/product-bundle-types.js.map +1 -0
- package/dist-server/service/product-bundle/product-bundle.js +128 -0
- package/dist-server/service/product-bundle/product-bundle.js.map +1 -0
- package/dist-server/service/product-bundle-setting/index.js +9 -0
- package/dist-server/service/product-bundle-setting/index.js.map +1 -0
- package/dist-server/service/product-bundle-setting/product-bundle-setting-mutation.js +165 -0
- package/dist-server/service/product-bundle-setting/product-bundle-setting-mutation.js.map +1 -0
- package/dist-server/service/product-bundle-setting/product-bundle-setting-query.js +113 -0
- package/dist-server/service/product-bundle-setting/product-bundle-setting-query.js.map +1 -0
- package/dist-server/service/product-bundle-setting/product-bundle-setting-types.js +69 -0
- package/dist-server/service/product-bundle-setting/product-bundle-setting-types.js.map +1 -0
- package/dist-server/service/product-bundle-setting/product-bundle-setting.js +63 -0
- package/dist-server/service/product-bundle-setting/product-bundle-setting.js.map +1 -0
- package/dist-server/service/product-combination/index.js +9 -0
- package/dist-server/service/product-combination/index.js.map +1 -0
- package/dist-server/service/product-combination/product-combination-mutation.js +137 -0
- package/dist-server/service/product-combination/product-combination-mutation.js.map +1 -0
- package/dist-server/service/product-combination/product-combination-query.js +86 -0
- package/dist-server/service/product-combination/product-combination-query.js.map +1 -0
- package/dist-server/service/product-combination/product-combination-type.js +83 -0
- package/dist-server/service/product-combination/product-combination-type.js.map +1 -0
- package/dist-server/service/product-combination/product-combination.js +133 -0
- package/dist-server/service/product-combination/product-combination.js.map +1 -0
- package/dist-server/service/product-combination-setting/index.js +9 -0
- package/dist-server/service/product-combination-setting/index.js.map +1 -0
- package/dist-server/service/product-combination-setting/product-combination-setting-mutation.js +221 -0
- package/dist-server/service/product-combination-setting/product-combination-setting-mutation.js.map +1 -0
- package/dist-server/service/product-combination-setting/product-combination-setting-query.js +177 -0
- package/dist-server/service/product-combination-setting/product-combination-setting-query.js.map +1 -0
- package/dist-server/service/product-combination-setting/product-combination-setting-type.js +75 -0
- package/dist-server/service/product-combination-setting/product-combination-setting-type.js.map +1 -0
- package/dist-server/service/product-combination-setting/product-combination-setting.js +105 -0
- package/dist-server/service/product-combination-setting/product-combination-setting.js.map +1 -0
- package/dist-server/service/product-detail/index.js +9 -0
- package/dist-server/service/product-detail/index.js.map +1 -0
- package/dist-server/service/product-detail/product-detail-mutation.js +374 -0
- package/dist-server/service/product-detail/product-detail-mutation.js.map +1 -0
- package/dist-server/service/product-detail/product-detail-query.js +223 -0
- package/dist-server/service/product-detail/product-detail-query.js.map +1 -0
- package/dist-server/service/product-detail/product-detail-types.js +392 -0
- package/dist-server/service/product-detail/product-detail-types.js.map +1 -0
- package/dist-server/service/product-detail/product-detail.js +444 -0
- package/dist-server/service/product-detail/product-detail.js.map +1 -0
- package/dist-server/service/product-detail-bizplace-setting/index.js +9 -0
- package/dist-server/service/product-detail-bizplace-setting/index.js.map +1 -0
- package/dist-server/service/product-detail-bizplace-setting/product-detail-bizplace-setting-mutation.js +118 -0
- package/dist-server/service/product-detail-bizplace-setting/product-detail-bizplace-setting-mutation.js.map +1 -0
- package/dist-server/service/product-detail-bizplace-setting/product-detail-bizplace-setting-query.js +107 -0
- package/dist-server/service/product-detail-bizplace-setting/product-detail-bizplace-setting-query.js.map +1 -0
- package/dist-server/service/product-detail-bizplace-setting/product-detail-bizplace-setting-types.js +99 -0
- package/dist-server/service/product-detail-bizplace-setting/product-detail-bizplace-setting-types.js.map +1 -0
- package/dist-server/service/product-detail-bizplace-setting/product-detail-bizplace-setting.js +120 -0
- package/dist-server/service/product-detail-bizplace-setting/product-detail-bizplace-setting.js.map +1 -0
- package/dist-server/service/product-set/index.js +9 -0
- package/dist-server/service/product-set/index.js.map +1 -0
- package/dist-server/service/product-set/product-set-mutation.js +146 -0
- package/dist-server/service/product-set/product-set-mutation.js.map +1 -0
- package/dist-server/service/product-set/product-set-query.js +136 -0
- package/dist-server/service/product-set/product-set-query.js.map +1 -0
- package/dist-server/service/product-set/product-set-types.js +77 -0
- package/dist-server/service/product-set/product-set-types.js.map +1 -0
- package/dist-server/service/product-set/product-set.js +118 -0
- package/dist-server/service/product-set/product-set.js.map +1 -0
- package/dist-server/utils/index.js +18 -0
- package/dist-server/utils/index.js.map +1 -0
- package/dist-server/utils/product-util.js +16 -0
- package/dist-server/utils/product-util.js.map +1 -0
- package/package.json +4 -4
|
@@ -0,0 +1,618 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
exports.ProductPatch = exports.ProductList = exports.NewProduct = void 0;
|
|
14
|
+
const graphql_upload_1 = require("graphql-upload");
|
|
15
|
+
const type_graphql_1 = require("type-graphql");
|
|
16
|
+
const biz_base_1 = require("@things-factory/biz-base");
|
|
17
|
+
const shell_1 = require("@things-factory/shell");
|
|
18
|
+
const product_detail_types_1 = require("../product-detail/product-detail-types");
|
|
19
|
+
const product_1 = require("./product");
|
|
20
|
+
let NewProduct = class NewProduct {
|
|
21
|
+
};
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.ID, { nullable: true }),
|
|
24
|
+
__metadata("design:type", String)
|
|
25
|
+
], NewProduct.prototype, "id", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], NewProduct.prototype, "sku", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
32
|
+
__metadata("design:type", String)
|
|
33
|
+
], NewProduct.prototype, "name", void 0);
|
|
34
|
+
__decorate([
|
|
35
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
36
|
+
__metadata("design:type", typeof (_a = typeof biz_base_1.BizplacePatch !== "undefined" && biz_base_1.BizplacePatch) === "function" ? _a : Object)
|
|
37
|
+
], NewProduct.prototype, "bizplace", void 0);
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
40
|
+
__metadata("design:type", String)
|
|
41
|
+
], NewProduct.prototype, "description", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, type_graphql_1.Field)(type => shell_1.ObjectRef, { nullable: true }),
|
|
44
|
+
__metadata("design:type", typeof (_b = typeof shell_1.ObjectRef !== "undefined" && shell_1.ObjectRef) === "function" ? _b : Object)
|
|
45
|
+
], NewProduct.prototype, "productRef", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
48
|
+
__metadata("design:type", typeof (_c = typeof shell_1.ObjectRef !== "undefined" && shell_1.ObjectRef) === "function" ? _c : Object)
|
|
49
|
+
], NewProduct.prototype, "parentProductRef", void 0);
|
|
50
|
+
__decorate([
|
|
51
|
+
(0, type_graphql_1.Field)(type => [shell_1.ObjectRef], { nullable: true }),
|
|
52
|
+
__metadata("design:type", Array)
|
|
53
|
+
], NewProduct.prototype, "childProducts", void 0);
|
|
54
|
+
__decorate([
|
|
55
|
+
(0, type_graphql_1.Field)(type => [product_detail_types_1.ProductDetailPatch], { nullable: true }),
|
|
56
|
+
__metadata("design:type", Array)
|
|
57
|
+
], NewProduct.prototype, "productDetails", void 0);
|
|
58
|
+
__decorate([
|
|
59
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
60
|
+
__metadata("design:type", Number)
|
|
61
|
+
], NewProduct.prototype, "bundleQty", void 0);
|
|
62
|
+
__decorate([
|
|
63
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
64
|
+
__metadata("design:type", String)
|
|
65
|
+
], NewProduct.prototype, "type", void 0);
|
|
66
|
+
__decorate([
|
|
67
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Int, { nullable: true }),
|
|
68
|
+
__metadata("design:type", Number)
|
|
69
|
+
], NewProduct.prototype, "expirationPeriod", void 0);
|
|
70
|
+
__decorate([
|
|
71
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Int, { nullable: true }),
|
|
72
|
+
__metadata("design:type", Number)
|
|
73
|
+
], NewProduct.prototype, "minInboundShelfLife", void 0);
|
|
74
|
+
__decorate([
|
|
75
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Int, { nullable: true }),
|
|
76
|
+
__metadata("design:type", Number)
|
|
77
|
+
], NewProduct.prototype, "minOutboundShelfLife", void 0);
|
|
78
|
+
__decorate([
|
|
79
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Int, { nullable: true }),
|
|
80
|
+
__metadata("design:type", Number)
|
|
81
|
+
], NewProduct.prototype, "outboundAlert", void 0);
|
|
82
|
+
__decorate([
|
|
83
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Int, { nullable: true }),
|
|
84
|
+
__metadata("design:type", Number)
|
|
85
|
+
], NewProduct.prototype, "productShelfLife", void 0);
|
|
86
|
+
__decorate([
|
|
87
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
88
|
+
__metadata("design:type", String)
|
|
89
|
+
], NewProduct.prototype, "movement", void 0);
|
|
90
|
+
__decorate([
|
|
91
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
92
|
+
__metadata("design:type", String)
|
|
93
|
+
], NewProduct.prototype, "weightUnit", void 0);
|
|
94
|
+
__decorate([
|
|
95
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
96
|
+
__metadata("design:type", Number)
|
|
97
|
+
], NewProduct.prototype, "nettWeight", void 0);
|
|
98
|
+
__decorate([
|
|
99
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
100
|
+
__metadata("design:type", Number)
|
|
101
|
+
], NewProduct.prototype, "density", void 0);
|
|
102
|
+
__decorate([
|
|
103
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
104
|
+
__metadata("design:type", String)
|
|
105
|
+
], NewProduct.prototype, "packingType", void 0);
|
|
106
|
+
__decorate([
|
|
107
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
108
|
+
__metadata("design:type", String)
|
|
109
|
+
], NewProduct.prototype, "lengthUnit", void 0);
|
|
110
|
+
__decorate([
|
|
111
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
112
|
+
__metadata("design:type", Number)
|
|
113
|
+
], NewProduct.prototype, "costPrice", void 0);
|
|
114
|
+
__decorate([
|
|
115
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
116
|
+
__metadata("design:type", Number)
|
|
117
|
+
], NewProduct.prototype, "afterTaxCostPrice", void 0);
|
|
118
|
+
__decorate([
|
|
119
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
120
|
+
__metadata("design:type", Number)
|
|
121
|
+
], NewProduct.prototype, "sellPrice", void 0);
|
|
122
|
+
__decorate([
|
|
123
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
124
|
+
__metadata("design:type", Number)
|
|
125
|
+
], NewProduct.prototype, "afterTaxSalesPrice", void 0);
|
|
126
|
+
__decorate([
|
|
127
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
128
|
+
__metadata("design:type", Number)
|
|
129
|
+
], NewProduct.prototype, "mrpPrice", void 0);
|
|
130
|
+
__decorate([
|
|
131
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
132
|
+
__metadata("design:type", Number)
|
|
133
|
+
], NewProduct.prototype, "bufferQty", void 0);
|
|
134
|
+
__decorate([
|
|
135
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
136
|
+
__metadata("design:type", Number)
|
|
137
|
+
], NewProduct.prototype, "minQty", void 0);
|
|
138
|
+
__decorate([
|
|
139
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
140
|
+
__metadata("design:type", Number)
|
|
141
|
+
], NewProduct.prototype, "maxQty", void 0);
|
|
142
|
+
__decorate([
|
|
143
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
144
|
+
__metadata("design:type", Number)
|
|
145
|
+
], NewProduct.prototype, "width", void 0);
|
|
146
|
+
__decorate([
|
|
147
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
148
|
+
__metadata("design:type", Number)
|
|
149
|
+
], NewProduct.prototype, "depth", void 0);
|
|
150
|
+
__decorate([
|
|
151
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
152
|
+
__metadata("design:type", Number)
|
|
153
|
+
], NewProduct.prototype, "height", void 0);
|
|
154
|
+
__decorate([
|
|
155
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
156
|
+
__metadata("design:type", String)
|
|
157
|
+
], NewProduct.prototype, "primaryUnit", void 0);
|
|
158
|
+
__decorate([
|
|
159
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
160
|
+
__metadata("design:type", Number)
|
|
161
|
+
], NewProduct.prototype, "primaryValue", void 0);
|
|
162
|
+
__decorate([
|
|
163
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
164
|
+
__metadata("design:type", String)
|
|
165
|
+
], NewProduct.prototype, "uom", void 0);
|
|
166
|
+
__decorate([
|
|
167
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
168
|
+
__metadata("design:type", Number)
|
|
169
|
+
], NewProduct.prototype, "uomValue", void 0);
|
|
170
|
+
__decorate([
|
|
171
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
172
|
+
__metadata("design:type", String)
|
|
173
|
+
], NewProduct.prototype, "inventoryAccountCode", void 0);
|
|
174
|
+
__decorate([
|
|
175
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
176
|
+
__metadata("design:type", String)
|
|
177
|
+
], NewProduct.prototype, "cogsAccountCode", void 0);
|
|
178
|
+
__decorate([
|
|
179
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
180
|
+
__metadata("design:type", String)
|
|
181
|
+
], NewProduct.prototype, "auxUnit1", void 0);
|
|
182
|
+
__decorate([
|
|
183
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
184
|
+
__metadata("design:type", String)
|
|
185
|
+
], NewProduct.prototype, "auxValue1", void 0);
|
|
186
|
+
__decorate([
|
|
187
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
188
|
+
__metadata("design:type", String)
|
|
189
|
+
], NewProduct.prototype, "auxUnit2", void 0);
|
|
190
|
+
__decorate([
|
|
191
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
192
|
+
__metadata("design:type", String)
|
|
193
|
+
], NewProduct.prototype, "auxValue2", void 0);
|
|
194
|
+
__decorate([
|
|
195
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
196
|
+
__metadata("design:type", String)
|
|
197
|
+
], NewProduct.prototype, "auxUnit3", void 0);
|
|
198
|
+
__decorate([
|
|
199
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
200
|
+
__metadata("design:type", String)
|
|
201
|
+
], NewProduct.prototype, "auxValue3", void 0);
|
|
202
|
+
__decorate([
|
|
203
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
204
|
+
__metadata("design:type", String)
|
|
205
|
+
], NewProduct.prototype, "auxUnit4", void 0);
|
|
206
|
+
__decorate([
|
|
207
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
208
|
+
__metadata("design:type", String)
|
|
209
|
+
], NewProduct.prototype, "auxValue4", void 0);
|
|
210
|
+
__decorate([
|
|
211
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
212
|
+
__metadata("design:type", String)
|
|
213
|
+
], NewProduct.prototype, "auxUnit5", void 0);
|
|
214
|
+
__decorate([
|
|
215
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
216
|
+
__metadata("design:type", String)
|
|
217
|
+
], NewProduct.prototype, "auxValue5", void 0);
|
|
218
|
+
__decorate([
|
|
219
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
220
|
+
__metadata("design:type", Number)
|
|
221
|
+
], NewProduct.prototype, "commissionFee", void 0);
|
|
222
|
+
__decorate([
|
|
223
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
224
|
+
__metadata("design:type", Number)
|
|
225
|
+
], NewProduct.prototype, "platformFee", void 0);
|
|
226
|
+
__decorate([
|
|
227
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
228
|
+
__metadata("design:type", Number)
|
|
229
|
+
], NewProduct.prototype, "serviceFee", void 0);
|
|
230
|
+
__decorate([
|
|
231
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
232
|
+
__metadata("design:type", Number)
|
|
233
|
+
], NewProduct.prototype, "transactionFee", void 0);
|
|
234
|
+
__decorate([
|
|
235
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
236
|
+
__metadata("design:type", String)
|
|
237
|
+
], NewProduct.prototype, "groupType", void 0);
|
|
238
|
+
__decorate([
|
|
239
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
240
|
+
__metadata("design:type", String)
|
|
241
|
+
], NewProduct.prototype, "brandSku", void 0);
|
|
242
|
+
__decorate([
|
|
243
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
244
|
+
__metadata("design:type", String)
|
|
245
|
+
], NewProduct.prototype, "brand", void 0);
|
|
246
|
+
__decorate([
|
|
247
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
248
|
+
__metadata("design:type", String)
|
|
249
|
+
], NewProduct.prototype, "subBrand", void 0);
|
|
250
|
+
__decorate([
|
|
251
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
252
|
+
__metadata("design:type", Boolean)
|
|
253
|
+
], NewProduct.prototype, "isRequiredCheckExpiry", void 0);
|
|
254
|
+
__decorate([
|
|
255
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
256
|
+
__metadata("design:type", Boolean)
|
|
257
|
+
], NewProduct.prototype, "isRequireSerialNumberScanning", void 0);
|
|
258
|
+
__decorate([
|
|
259
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
260
|
+
__metadata("design:type", Boolean)
|
|
261
|
+
], NewProduct.prototype, "isRequireSerialNumberScanningInbound", void 0);
|
|
262
|
+
__decorate([
|
|
263
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
264
|
+
__metadata("design:type", Boolean)
|
|
265
|
+
], NewProduct.prototype, "isRequireSerialNumberScanningOutbound", void 0);
|
|
266
|
+
__decorate([
|
|
267
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
268
|
+
__metadata("design:type", Boolean)
|
|
269
|
+
], NewProduct.prototype, "isInventoryDecimal", void 0);
|
|
270
|
+
__decorate([
|
|
271
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
272
|
+
__metadata("design:type", String)
|
|
273
|
+
], NewProduct.prototype, "gtin", void 0);
|
|
274
|
+
__decorate([
|
|
275
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
276
|
+
__metadata("design:type", Number)
|
|
277
|
+
], NewProduct.prototype, "grossWeight", void 0);
|
|
278
|
+
__decorate([
|
|
279
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
280
|
+
__metadata("design:type", Number)
|
|
281
|
+
], NewProduct.prototype, "volume", void 0);
|
|
282
|
+
__decorate([
|
|
283
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
284
|
+
__metadata("design:type", Number)
|
|
285
|
+
], NewProduct.prototype, "volumeSize", void 0);
|
|
286
|
+
__decorate([
|
|
287
|
+
(0, type_graphql_1.Field)(type => shell_1.ObjectRef, { nullable: true }),
|
|
288
|
+
__metadata("design:type", typeof (_d = typeof shell_1.ObjectRef !== "undefined" && shell_1.ObjectRef) === "function" ? _d : Object)
|
|
289
|
+
], NewProduct.prototype, "routing", void 0);
|
|
290
|
+
__decorate([
|
|
291
|
+
(0, type_graphql_1.Field)(type => graphql_upload_1.GraphQLUpload, { nullable: true }),
|
|
292
|
+
__metadata("design:type", typeof (_e = typeof graphql_upload_1.FileUpload !== "undefined" && graphql_upload_1.FileUpload) === "function" ? _e : Object)
|
|
293
|
+
], NewProduct.prototype, "thumbnail", void 0);
|
|
294
|
+
__decorate([
|
|
295
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
296
|
+
__metadata("design:type", String)
|
|
297
|
+
], NewProduct.prototype, "pickingStrategy", void 0);
|
|
298
|
+
NewProduct = __decorate([
|
|
299
|
+
(0, type_graphql_1.InputType)()
|
|
300
|
+
], NewProduct);
|
|
301
|
+
exports.NewProduct = NewProduct;
|
|
302
|
+
let ProductList = class ProductList {
|
|
303
|
+
};
|
|
304
|
+
__decorate([
|
|
305
|
+
(0, type_graphql_1.Field)(type => [product_1.Product], { nullable: true }),
|
|
306
|
+
__metadata("design:type", Array)
|
|
307
|
+
], ProductList.prototype, "items", void 0);
|
|
308
|
+
__decorate([
|
|
309
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Int, { nullable: true }),
|
|
310
|
+
__metadata("design:type", Number)
|
|
311
|
+
], ProductList.prototype, "total", void 0);
|
|
312
|
+
ProductList = __decorate([
|
|
313
|
+
(0, type_graphql_1.ObjectType)()
|
|
314
|
+
], ProductList);
|
|
315
|
+
exports.ProductList = ProductList;
|
|
316
|
+
let ProductPatch = class ProductPatch {
|
|
317
|
+
};
|
|
318
|
+
__decorate([
|
|
319
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
320
|
+
__metadata("design:type", String)
|
|
321
|
+
], ProductPatch.prototype, "id", void 0);
|
|
322
|
+
__decorate([
|
|
323
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
324
|
+
__metadata("design:type", String)
|
|
325
|
+
], ProductPatch.prototype, "sku", void 0);
|
|
326
|
+
__decorate([
|
|
327
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
328
|
+
__metadata("design:type", String)
|
|
329
|
+
], ProductPatch.prototype, "name", void 0);
|
|
330
|
+
__decorate([
|
|
331
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
332
|
+
__metadata("design:type", String)
|
|
333
|
+
], ProductPatch.prototype, "description", void 0);
|
|
334
|
+
__decorate([
|
|
335
|
+
(0, type_graphql_1.Field)(type => shell_1.ObjectRef, { nullable: true }),
|
|
336
|
+
__metadata("design:type", typeof (_f = typeof shell_1.ObjectRef !== "undefined" && shell_1.ObjectRef) === "function" ? _f : Object)
|
|
337
|
+
], ProductPatch.prototype, "bizplace", void 0);
|
|
338
|
+
__decorate([
|
|
339
|
+
(0, type_graphql_1.Field)(type => shell_1.ObjectRef, { nullable: true }),
|
|
340
|
+
__metadata("design:type", typeof (_g = typeof shell_1.ObjectRef !== "undefined" && shell_1.ObjectRef) === "function" ? _g : Object)
|
|
341
|
+
], ProductPatch.prototype, "productRef", void 0);
|
|
342
|
+
__decorate([
|
|
343
|
+
(0, type_graphql_1.Field)(type => shell_1.ObjectRef, { nullable: true }),
|
|
344
|
+
__metadata("design:type", typeof (_h = typeof shell_1.ObjectRef !== "undefined" && shell_1.ObjectRef) === "function" ? _h : Object)
|
|
345
|
+
], ProductPatch.prototype, "parentProductRef", void 0);
|
|
346
|
+
__decorate([
|
|
347
|
+
(0, type_graphql_1.Field)(type => [shell_1.ObjectRef], { nullable: true }),
|
|
348
|
+
__metadata("design:type", Array)
|
|
349
|
+
], ProductPatch.prototype, "childProducts", void 0);
|
|
350
|
+
__decorate([
|
|
351
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
352
|
+
__metadata("design:type", Number)
|
|
353
|
+
], ProductPatch.prototype, "bundleQty", void 0);
|
|
354
|
+
__decorate([
|
|
355
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
356
|
+
__metadata("design:type", Number)
|
|
357
|
+
], ProductPatch.prototype, "commissionFee", void 0);
|
|
358
|
+
__decorate([
|
|
359
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
360
|
+
__metadata("design:type", Number)
|
|
361
|
+
], ProductPatch.prototype, "platformFee", void 0);
|
|
362
|
+
__decorate([
|
|
363
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
364
|
+
__metadata("design:type", Number)
|
|
365
|
+
], ProductPatch.prototype, "serviceFee", void 0);
|
|
366
|
+
__decorate([
|
|
367
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
368
|
+
__metadata("design:type", Number)
|
|
369
|
+
], ProductPatch.prototype, "transactionFee", void 0);
|
|
370
|
+
__decorate([
|
|
371
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
372
|
+
__metadata("design:type", String)
|
|
373
|
+
], ProductPatch.prototype, "refCode", void 0);
|
|
374
|
+
__decorate([
|
|
375
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
376
|
+
__metadata("design:type", String)
|
|
377
|
+
], ProductPatch.prototype, "packingType", void 0);
|
|
378
|
+
__decorate([
|
|
379
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
380
|
+
__metadata("design:type", Number)
|
|
381
|
+
], ProductPatch.prototype, "packingSize", void 0);
|
|
382
|
+
__decorate([
|
|
383
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
384
|
+
__metadata("design:type", String)
|
|
385
|
+
], ProductPatch.prototype, "type", void 0);
|
|
386
|
+
__decorate([
|
|
387
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Int, { nullable: true }),
|
|
388
|
+
__metadata("design:type", Number)
|
|
389
|
+
], ProductPatch.prototype, "expirationPeriod", void 0);
|
|
390
|
+
__decorate([
|
|
391
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Int, { nullable: true }),
|
|
392
|
+
__metadata("design:type", Number)
|
|
393
|
+
], ProductPatch.prototype, "minInboundShelfLife", void 0);
|
|
394
|
+
__decorate([
|
|
395
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Int, { nullable: true }),
|
|
396
|
+
__metadata("design:type", Number)
|
|
397
|
+
], ProductPatch.prototype, "minOutboundShelfLife", void 0);
|
|
398
|
+
__decorate([
|
|
399
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Int, { nullable: true }),
|
|
400
|
+
__metadata("design:type", Number)
|
|
401
|
+
], ProductPatch.prototype, "outboundAlert", void 0);
|
|
402
|
+
__decorate([
|
|
403
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Int, { nullable: true }),
|
|
404
|
+
__metadata("design:type", Number)
|
|
405
|
+
], ProductPatch.prototype, "productShelfLife", void 0);
|
|
406
|
+
__decorate([
|
|
407
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Int, { nullable: true }),
|
|
408
|
+
__metadata("design:type", Number)
|
|
409
|
+
], ProductPatch.prototype, "shelfLife", void 0);
|
|
410
|
+
__decorate([
|
|
411
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
412
|
+
__metadata("design:type", String)
|
|
413
|
+
], ProductPatch.prototype, "movement", void 0);
|
|
414
|
+
__decorate([
|
|
415
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
416
|
+
__metadata("design:type", String)
|
|
417
|
+
], ProductPatch.prototype, "weightUnit", void 0);
|
|
418
|
+
__decorate([
|
|
419
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
420
|
+
__metadata("design:type", Number)
|
|
421
|
+
], ProductPatch.prototype, "nettWeight", void 0);
|
|
422
|
+
__decorate([
|
|
423
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
424
|
+
__metadata("design:type", Number)
|
|
425
|
+
], ProductPatch.prototype, "density", void 0);
|
|
426
|
+
__decorate([
|
|
427
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
428
|
+
__metadata("design:type", String)
|
|
429
|
+
], ProductPatch.prototype, "lengthUnit", void 0);
|
|
430
|
+
__decorate([
|
|
431
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
432
|
+
__metadata("design:type", Number)
|
|
433
|
+
], ProductPatch.prototype, "costPrice", void 0);
|
|
434
|
+
__decorate([
|
|
435
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
436
|
+
__metadata("design:type", Number)
|
|
437
|
+
], ProductPatch.prototype, "afterTaxCostPrice", void 0);
|
|
438
|
+
__decorate([
|
|
439
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
440
|
+
__metadata("design:type", Number)
|
|
441
|
+
], ProductPatch.prototype, "sellPrice", void 0);
|
|
442
|
+
__decorate([
|
|
443
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
444
|
+
__metadata("design:type", Number)
|
|
445
|
+
], ProductPatch.prototype, "afterTaxSalesPrice", void 0);
|
|
446
|
+
__decorate([
|
|
447
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
448
|
+
__metadata("design:type", Number)
|
|
449
|
+
], ProductPatch.prototype, "mrpPrice", void 0);
|
|
450
|
+
__decorate([
|
|
451
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
452
|
+
__metadata("design:type", Number)
|
|
453
|
+
], ProductPatch.prototype, "bufferQty", void 0);
|
|
454
|
+
__decorate([
|
|
455
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
456
|
+
__metadata("design:type", Number)
|
|
457
|
+
], ProductPatch.prototype, "minQty", void 0);
|
|
458
|
+
__decorate([
|
|
459
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
460
|
+
__metadata("design:type", Number)
|
|
461
|
+
], ProductPatch.prototype, "maxQty", void 0);
|
|
462
|
+
__decorate([
|
|
463
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
464
|
+
__metadata("design:type", Number)
|
|
465
|
+
], ProductPatch.prototype, "width", void 0);
|
|
466
|
+
__decorate([
|
|
467
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
468
|
+
__metadata("design:type", Number)
|
|
469
|
+
], ProductPatch.prototype, "depth", void 0);
|
|
470
|
+
__decorate([
|
|
471
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
472
|
+
__metadata("design:type", Number)
|
|
473
|
+
], ProductPatch.prototype, "height", void 0);
|
|
474
|
+
__decorate([
|
|
475
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
476
|
+
__metadata("design:type", String)
|
|
477
|
+
], ProductPatch.prototype, "inventoryAccountCode", void 0);
|
|
478
|
+
__decorate([
|
|
479
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
480
|
+
__metadata("design:type", String)
|
|
481
|
+
], ProductPatch.prototype, "cogsAccountCode", void 0);
|
|
482
|
+
__decorate([
|
|
483
|
+
(0, type_graphql_1.Field)(type => Boolean, { nullable: true }),
|
|
484
|
+
__metadata("design:type", Boolean)
|
|
485
|
+
], ProductPatch.prototype, "isTrackedAsInventory", void 0);
|
|
486
|
+
__decorate([
|
|
487
|
+
(0, type_graphql_1.Field)(type => Boolean, { nullable: true }),
|
|
488
|
+
__metadata("design:type", Boolean)
|
|
489
|
+
], ProductPatch.prototype, "isRequiredCheckExpiry", void 0);
|
|
490
|
+
__decorate([
|
|
491
|
+
(0, type_graphql_1.Field)(type => Boolean, { nullable: true }),
|
|
492
|
+
__metadata("design:type", Boolean)
|
|
493
|
+
], ProductPatch.prototype, "isRequireSerialNumberScanning", void 0);
|
|
494
|
+
__decorate([
|
|
495
|
+
(0, type_graphql_1.Field)(type => Boolean, { nullable: true }),
|
|
496
|
+
__metadata("design:type", Boolean)
|
|
497
|
+
], ProductPatch.prototype, "isRequireSerialNumberScanningInbound", void 0);
|
|
498
|
+
__decorate([
|
|
499
|
+
(0, type_graphql_1.Field)(type => Boolean, { nullable: true }),
|
|
500
|
+
__metadata("design:type", Boolean)
|
|
501
|
+
], ProductPatch.prototype, "isRequireSerialNumberScanningOutbound", void 0);
|
|
502
|
+
__decorate([
|
|
503
|
+
(0, type_graphql_1.Field)(type => Boolean, { nullable: true }),
|
|
504
|
+
__metadata("design:type", Boolean)
|
|
505
|
+
], ProductPatch.prototype, "isInventoryDecimal", void 0);
|
|
506
|
+
__decorate([
|
|
507
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
508
|
+
__metadata("design:type", String)
|
|
509
|
+
], ProductPatch.prototype, "primaryUnit", void 0);
|
|
510
|
+
__decorate([
|
|
511
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
512
|
+
__metadata("design:type", Number)
|
|
513
|
+
], ProductPatch.prototype, "primaryValue", void 0);
|
|
514
|
+
__decorate([
|
|
515
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
516
|
+
__metadata("design:type", String)
|
|
517
|
+
], ProductPatch.prototype, "uom", void 0);
|
|
518
|
+
__decorate([
|
|
519
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
520
|
+
__metadata("design:type", Number)
|
|
521
|
+
], ProductPatch.prototype, "uomValue", void 0);
|
|
522
|
+
__decorate([
|
|
523
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
524
|
+
__metadata("design:type", String)
|
|
525
|
+
], ProductPatch.prototype, "auxUnit1", void 0);
|
|
526
|
+
__decorate([
|
|
527
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
528
|
+
__metadata("design:type", String)
|
|
529
|
+
], ProductPatch.prototype, "auxValue1", void 0);
|
|
530
|
+
__decorate([
|
|
531
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
532
|
+
__metadata("design:type", String)
|
|
533
|
+
], ProductPatch.prototype, "auxUnit2", void 0);
|
|
534
|
+
__decorate([
|
|
535
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
536
|
+
__metadata("design:type", String)
|
|
537
|
+
], ProductPatch.prototype, "auxValue2", void 0);
|
|
538
|
+
__decorate([
|
|
539
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
540
|
+
__metadata("design:type", String)
|
|
541
|
+
], ProductPatch.prototype, "auxUnit3", void 0);
|
|
542
|
+
__decorate([
|
|
543
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
544
|
+
__metadata("design:type", String)
|
|
545
|
+
], ProductPatch.prototype, "auxValue3", void 0);
|
|
546
|
+
__decorate([
|
|
547
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
548
|
+
__metadata("design:type", String)
|
|
549
|
+
], ProductPatch.prototype, "auxUnit4", void 0);
|
|
550
|
+
__decorate([
|
|
551
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
552
|
+
__metadata("design:type", String)
|
|
553
|
+
], ProductPatch.prototype, "auxValue4", void 0);
|
|
554
|
+
__decorate([
|
|
555
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
556
|
+
__metadata("design:type", String)
|
|
557
|
+
], ProductPatch.prototype, "auxUnit5", void 0);
|
|
558
|
+
__decorate([
|
|
559
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
560
|
+
__metadata("design:type", String)
|
|
561
|
+
], ProductPatch.prototype, "auxValue5", void 0);
|
|
562
|
+
__decorate([
|
|
563
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
564
|
+
__metadata("design:type", String)
|
|
565
|
+
], ProductPatch.prototype, "brandSku", void 0);
|
|
566
|
+
__decorate([
|
|
567
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
568
|
+
__metadata("design:type", String)
|
|
569
|
+
], ProductPatch.prototype, "brand", void 0);
|
|
570
|
+
__decorate([
|
|
571
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
572
|
+
__metadata("design:type", String)
|
|
573
|
+
], ProductPatch.prototype, "subBrand", void 0);
|
|
574
|
+
__decorate([
|
|
575
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
576
|
+
__metadata("design:type", String)
|
|
577
|
+
], ProductPatch.prototype, "gtin", void 0);
|
|
578
|
+
__decorate([
|
|
579
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
580
|
+
__metadata("design:type", Number)
|
|
581
|
+
], ProductPatch.prototype, "grossWeight", void 0);
|
|
582
|
+
__decorate([
|
|
583
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
584
|
+
__metadata("design:type", Number)
|
|
585
|
+
], ProductPatch.prototype, "volume", void 0);
|
|
586
|
+
__decorate([
|
|
587
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
588
|
+
__metadata("design:type", Number)
|
|
589
|
+
], ProductPatch.prototype, "volumeSize", void 0);
|
|
590
|
+
__decorate([
|
|
591
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
592
|
+
__metadata("design:type", String)
|
|
593
|
+
], ProductPatch.prototype, "childGtin", void 0);
|
|
594
|
+
__decorate([
|
|
595
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
|
|
596
|
+
__metadata("design:type", Number)
|
|
597
|
+
], ProductPatch.prototype, "childQty", void 0);
|
|
598
|
+
__decorate([
|
|
599
|
+
(0, type_graphql_1.Field)(type => shell_1.ObjectRef, { nullable: true }),
|
|
600
|
+
__metadata("design:type", typeof (_j = typeof shell_1.ObjectRef !== "undefined" && shell_1.ObjectRef) === "function" ? _j : Object)
|
|
601
|
+
], ProductPatch.prototype, "routing", void 0);
|
|
602
|
+
__decorate([
|
|
603
|
+
(0, type_graphql_1.Field)(type => graphql_upload_1.GraphQLUpload, { nullable: true }),
|
|
604
|
+
__metadata("design:type", typeof (_k = typeof graphql_upload_1.FileUpload !== "undefined" && graphql_upload_1.FileUpload) === "function" ? _k : Object)
|
|
605
|
+
], ProductPatch.prototype, "thumbnail", void 0);
|
|
606
|
+
__decorate([
|
|
607
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
608
|
+
__metadata("design:type", String)
|
|
609
|
+
], ProductPatch.prototype, "pickingStrategy", void 0);
|
|
610
|
+
__decorate([
|
|
611
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
612
|
+
__metadata("design:type", String)
|
|
613
|
+
], ProductPatch.prototype, "cuFlag", void 0);
|
|
614
|
+
ProductPatch = __decorate([
|
|
615
|
+
(0, type_graphql_1.InputType)()
|
|
616
|
+
], ProductPatch);
|
|
617
|
+
exports.ProductPatch = ProductPatch;
|
|
618
|
+
//# sourceMappingURL=product-types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"product-types.js","sourceRoot":"","sources":["../../../server/service/product/product-types.ts"],"names":[],"mappings":"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"}
|