@things-factory/product-base 4.0.21 → 4.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/entities/index.js +30 -0
- package/dist-server/entities/index.js.map +1 -0
- package/dist-server/entities/product-bundle-setting.js +47 -0
- package/dist-server/entities/product-bundle-setting.js.map +1 -0
- package/dist-server/entities/product-bundle.js +98 -0
- package/dist-server/entities/product-bundle.js.map +1 -0
- package/dist-server/entities/product-combination-setting.js +48 -0
- package/dist-server/entities/product-combination-setting.js.map +1 -0
- package/dist-server/entities/product-combination.js +91 -0
- package/dist-server/entities/product-combination.js.map +1 -0
- package/dist-server/entities/product-detail-bizplace-setting.js +91 -0
- package/dist-server/entities/product-detail-bizplace-setting.js.map +1 -0
- package/dist-server/entities/product-detail.js +338 -0
- package/dist-server/entities/product-detail.js.map +1 -0
- package/dist-server/entities/product-set.js +90 -0
- package/dist-server/entities/product-set.js.map +1 -0
- package/dist-server/entities/product.js +293 -0
- package/dist-server/entities/product.js.map +1 -0
- package/dist-server/graphql/index.js +30 -0
- package/dist-server/graphql/index.js.map +1 -0
- package/dist-server/graphql/resolvers/index.js +21 -0
- package/dist-server/graphql/resolvers/index.js.map +1 -0
- package/dist-server/graphql/resolvers/product/create-product.js +60 -0
- package/dist-server/graphql/resolvers/product/create-product.js.map +1 -0
- package/dist-server/graphql/resolvers/product/create-products.js +24 -0
- package/dist-server/graphql/resolvers/product/create-products.js.map +1 -0
- package/dist-server/graphql/resolvers/product/delete-product.js +14 -0
- package/dist-server/graphql/resolvers/product/delete-product.js.map +1 -0
- package/dist-server/graphql/resolvers/product/delete-products.js +17 -0
- package/dist-server/graphql/resolvers/product/delete-products.js.map +1 -0
- package/dist-server/graphql/resolvers/product/import-multiple-product.js +35 -0
- package/dist-server/graphql/resolvers/product/import-multiple-product.js.map +1 -0
- package/dist-server/graphql/resolvers/product/index.js +20 -0
- package/dist-server/graphql/resolvers/product/index.js.map +1 -0
- package/dist-server/graphql/resolvers/product/link-product.js +41 -0
- package/dist-server/graphql/resolvers/product/link-product.js.map +1 -0
- package/dist-server/graphql/resolvers/product/my-bizplace-products.js +47 -0
- package/dist-server/graphql/resolvers/product/my-bizplace-products.js.map +1 -0
- package/dist-server/graphql/resolvers/product/product-query.js +94 -0
- package/dist-server/graphql/resolvers/product/product-query.js.map +1 -0
- package/dist-server/graphql/resolvers/product/product.js +33 -0
- package/dist-server/graphql/resolvers/product/product.js.map +1 -0
- package/dist-server/graphql/resolvers/product/products-by-bizplace.js +60 -0
- package/dist-server/graphql/resolvers/product/products-by-bizplace.js.map +1 -0
- package/dist-server/graphql/resolvers/product/products.js +68 -0
- package/dist-server/graphql/resolvers/product/products.js.map +1 -0
- package/dist-server/graphql/resolvers/product/undelete-products.js +17 -0
- package/dist-server/graphql/resolvers/product/undelete-products.js.map +1 -0
- package/dist-server/graphql/resolvers/product/update-multiple-product.js +33 -0
- package/dist-server/graphql/resolvers/product/update-multiple-product.js.map +1 -0
- package/dist-server/graphql/resolvers/product/update-product.js +58 -0
- package/dist-server/graphql/resolvers/product/update-product.js.map +1 -0
- package/dist-server/graphql/resolvers/product/validate-product.js +38 -0
- package/dist-server/graphql/resolvers/product/validate-product.js.map +1 -0
- package/dist-server/graphql/resolvers/product-bundle/create-product-bundle.js +12 -0
- package/dist-server/graphql/resolvers/product-bundle/create-product-bundle.js.map +1 -0
- package/dist-server/graphql/resolvers/product-bundle/delete-product-bundle.js +13 -0
- package/dist-server/graphql/resolvers/product-bundle/delete-product-bundle.js.map +1 -0
- package/dist-server/graphql/resolvers/product-bundle/delete-product-bundles.js +19 -0
- package/dist-server/graphql/resolvers/product-bundle/delete-product-bundles.js.map +1 -0
- package/dist-server/graphql/resolvers/product-bundle/index.js +15 -0
- package/dist-server/graphql/resolvers/product-bundle/index.js.map +1 -0
- package/dist-server/graphql/resolvers/product-bundle/my-bizplace-product-bundles.js +43 -0
- package/dist-server/graphql/resolvers/product-bundle/my-bizplace-product-bundles.js.map +1 -0
- package/dist-server/graphql/resolvers/product-bundle/product-bundle-query.js +21 -0
- package/dist-server/graphql/resolvers/product-bundle/product-bundle-query.js.map +1 -0
- package/dist-server/graphql/resolvers/product-bundle/update-multiple-product-bundle.js +50 -0
- package/dist-server/graphql/resolvers/product-bundle/update-multiple-product-bundle.js.map +1 -0
- package/dist-server/graphql/resolvers/product-bundle/update-product-bundle.js +16 -0
- package/dist-server/graphql/resolvers/product-bundle/update-product-bundle.js.map +1 -0
- package/dist-server/graphql/resolvers/product-bundle-setting/create-product-bundle-setting.js +12 -0
- package/dist-server/graphql/resolvers/product-bundle-setting/create-product-bundle-setting.js.map +1 -0
- package/dist-server/graphql/resolvers/product-bundle-setting/delete-product-bundle-setting.js +12 -0
- package/dist-server/graphql/resolvers/product-bundle-setting/delete-product-bundle-setting.js.map +1 -0
- package/dist-server/graphql/resolvers/product-bundle-setting/delete-product-bundle-settings.js +14 -0
- package/dist-server/graphql/resolvers/product-bundle-setting/delete-product-bundle-settings.js.map +1 -0
- package/dist-server/graphql/resolvers/product-bundle-setting/index.js +15 -0
- package/dist-server/graphql/resolvers/product-bundle-setting/index.js.map +1 -0
- package/dist-server/graphql/resolvers/product-bundle-setting/link-product-bundle.js +77 -0
- package/dist-server/graphql/resolvers/product-bundle-setting/link-product-bundle.js.map +1 -0
- package/dist-server/graphql/resolvers/product-bundle-setting/product-bundle-sets.js +75 -0
- package/dist-server/graphql/resolvers/product-bundle-setting/product-bundle-sets.js.map +1 -0
- package/dist-server/graphql/resolvers/product-bundle-setting/product-bundle-setting-query.js +14 -0
- package/dist-server/graphql/resolvers/product-bundle-setting/product-bundle-setting-query.js.map +1 -0
- package/dist-server/graphql/resolvers/product-bundle-setting/update-multiple-product-bundle-setting.js +33 -0
- package/dist-server/graphql/resolvers/product-bundle-setting/update-multiple-product-bundle-setting.js.map +1 -0
- package/dist-server/graphql/resolvers/product-combination/create-product-combination.js +12 -0
- package/dist-server/graphql/resolvers/product-combination/create-product-combination.js.map +1 -0
- package/dist-server/graphql/resolvers/product-combination/delete-product-combination.js +13 -0
- package/dist-server/graphql/resolvers/product-combination/delete-product-combination.js.map +1 -0
- package/dist-server/graphql/resolvers/product-combination/delete-product-combinations.js +19 -0
- package/dist-server/graphql/resolvers/product-combination/delete-product-combinations.js.map +1 -0
- package/dist-server/graphql/resolvers/product-combination/index.js +14 -0
- package/dist-server/graphql/resolvers/product-combination/index.js.map +1 -0
- package/dist-server/graphql/resolvers/product-combination/product-combination-query.js +21 -0
- package/dist-server/graphql/resolvers/product-combination/product-combination-query.js.map +1 -0
- package/dist-server/graphql/resolvers/product-combination/update-multiple-product-combination.js +44 -0
- package/dist-server/graphql/resolvers/product-combination/update-multiple-product-combination.js.map +1 -0
- package/dist-server/graphql/resolvers/product-combination/update-product-combination.js +16 -0
- package/dist-server/graphql/resolvers/product-combination/update-product-combination.js.map +1 -0
- package/dist-server/graphql/resolvers/product-combination-setting/create-product-combination-setting.js +12 -0
- package/dist-server/graphql/resolvers/product-combination-setting/create-product-combination-setting.js.map +1 -0
- package/dist-server/graphql/resolvers/product-combination-setting/delete-product-combination-setting.js +12 -0
- package/dist-server/graphql/resolvers/product-combination-setting/delete-product-combination-setting.js.map +1 -0
- package/dist-server/graphql/resolvers/product-combination-setting/delete-product-combination-settings.js +14 -0
- package/dist-server/graphql/resolvers/product-combination-setting/delete-product-combination-settings.js.map +1 -0
- package/dist-server/graphql/resolvers/product-combination-setting/index.js +15 -0
- package/dist-server/graphql/resolvers/product-combination-setting/index.js.map +1 -0
- package/dist-server/graphql/resolvers/product-combination-setting/link-product-combination.js +73 -0
- package/dist-server/graphql/resolvers/product-combination-setting/link-product-combination.js.map +1 -0
- package/dist-server/graphql/resolvers/product-combination-setting/product-combination-sets.js +87 -0
- package/dist-server/graphql/resolvers/product-combination-setting/product-combination-sets.js.map +1 -0
- package/dist-server/graphql/resolvers/product-combination-setting/product-combination-setting-query.js +16 -0
- package/dist-server/graphql/resolvers/product-combination-setting/product-combination-setting-query.js.map +1 -0
- package/dist-server/graphql/resolvers/product-combination-setting/update-multiple-product-combination-setting.js +33 -0
- package/dist-server/graphql/resolvers/product-combination-setting/update-multiple-product-combination-setting.js.map +1 -0
- package/dist-server/graphql/resolvers/product-detail/create-product-detail.js +17 -0
- package/dist-server/graphql/resolvers/product-detail/create-product-detail.js.map +1 -0
- package/dist-server/graphql/resolvers/product-detail/delete-product-detail.js +13 -0
- package/dist-server/graphql/resolvers/product-detail/delete-product-detail.js.map +1 -0
- package/dist-server/graphql/resolvers/product-detail/delete-product-details.js +16 -0
- package/dist-server/graphql/resolvers/product-detail/delete-product-details.js.map +1 -0
- package/dist-server/graphql/resolvers/product-detail/index.js +15 -0
- package/dist-server/graphql/resolvers/product-detail/index.js.map +1 -0
- package/dist-server/graphql/resolvers/product-detail/product-detail-query.js +114 -0
- package/dist-server/graphql/resolvers/product-detail/product-detail-query.js.map +1 -0
- package/dist-server/graphql/resolvers/product-detail/update-multiple-product-detail.js +112 -0
- package/dist-server/graphql/resolvers/product-detail/update-multiple-product-detail.js.map +1 -0
- package/dist-server/graphql/resolvers/product-detail/update-product-detail.js +20 -0
- package/dist-server/graphql/resolvers/product-detail/update-product-detail.js.map +1 -0
- package/dist-server/graphql/resolvers/product-detail-bizplace-setting/create-product-detail-bizplace-setting.js +12 -0
- package/dist-server/graphql/resolvers/product-detail-bizplace-setting/create-product-detail-bizplace-setting.js.map +1 -0
- package/dist-server/graphql/resolvers/product-detail-bizplace-setting/delete-product-detail-bizplace-setting.js +13 -0
- package/dist-server/graphql/resolvers/product-detail-bizplace-setting/delete-product-detail-bizplace-setting.js.map +1 -0
- package/dist-server/graphql/resolvers/product-detail-bizplace-setting/delete-product-detail-bizplace-settings.js +16 -0
- package/dist-server/graphql/resolvers/product-detail-bizplace-setting/delete-product-detail-bizplace-settings.js.map +1 -0
- package/dist-server/graphql/resolvers/product-detail-bizplace-setting/index.js +15 -0
- package/dist-server/graphql/resolvers/product-detail-bizplace-setting/index.js.map +1 -0
- package/dist-server/graphql/resolvers/product-detail-bizplace-setting/product-detail-bizplace-setting-query.js +56 -0
- package/dist-server/graphql/resolvers/product-detail-bizplace-setting/product-detail-bizplace-setting-query.js.map +1 -0
- package/dist-server/graphql/resolvers/product-detail-bizplace-setting/update-multiple-product-detail-bizplace-setting.js +35 -0
- package/dist-server/graphql/resolvers/product-detail-bizplace-setting/update-multiple-product-detail-bizplace-setting.js.map +1 -0
- package/dist-server/graphql/resolvers/product-detail-bizplace-setting/update-product-detail-bizplace-setting.js +16 -0
- package/dist-server/graphql/resolvers/product-detail-bizplace-setting/update-product-detail-bizplace-setting.js.map +1 -0
- package/dist-server/graphql/resolvers/product-set/create-product-set.js +27 -0
- package/dist-server/graphql/resolvers/product-set/create-product-set.js.map +1 -0
- package/dist-server/graphql/resolvers/product-set/delete-product-set.js +14 -0
- package/dist-server/graphql/resolvers/product-set/delete-product-set.js.map +1 -0
- package/dist-server/graphql/resolvers/product-set/delete-product-sets.js +20 -0
- package/dist-server/graphql/resolvers/product-set/delete-product-sets.js.map +1 -0
- package/dist-server/graphql/resolvers/product-set/index.js +15 -0
- package/dist-server/graphql/resolvers/product-set/index.js.map +1 -0
- package/dist-server/graphql/resolvers/product-set/my-bizplace-product-sets.js +39 -0
- package/dist-server/graphql/resolvers/product-set/my-bizplace-product-sets.js.map +1 -0
- package/dist-server/graphql/resolvers/product-set/product-set-query.js +30 -0
- package/dist-server/graphql/resolvers/product-set/product-set-query.js.map +1 -0
- package/dist-server/graphql/resolvers/product-set/product-set.js +16 -0
- package/dist-server/graphql/resolvers/product-set/product-set.js.map +1 -0
- package/dist-server/graphql/resolvers/product-set/product-sets.js +22 -0
- package/dist-server/graphql/resolvers/product-set/product-sets.js.map +1 -0
- package/dist-server/graphql/resolvers/product-set/update-multiple-product-set.js +28 -0
- package/dist-server/graphql/resolvers/product-set/update-multiple-product-set.js.map +1 -0
- package/dist-server/graphql/resolvers/product-set/update-product-set.js +23 -0
- package/dist-server/graphql/resolvers/product-set/update-product-set.js.map +1 -0
- package/dist-server/graphql/types/index.js +21 -0
- package/dist-server/graphql/types/index.js.map +1 -0
- package/dist-server/graphql/types/product/index.js +61 -0
- package/dist-server/graphql/types/product/index.js.map +1 -0
- package/dist-server/graphql/types/product/new-product.js +66 -0
- package/dist-server/graphql/types/product/new-product.js.map +1 -0
- package/dist-server/graphql/types/product/product-list.js +14 -0
- package/dist-server/graphql/types/product/product-list.js.map +1 -0
- package/dist-server/graphql/types/product/product-patch.js +70 -0
- package/dist-server/graphql/types/product/product-patch.js.map +1 -0
- package/dist-server/graphql/types/product/product.js +73 -0
- package/dist-server/graphql/types/product/product.js.map +1 -0
- package/dist-server/graphql/types/product-bundle/index.js +37 -0
- package/dist-server/graphql/types/product-bundle/index.js.map +1 -0
- package/dist-server/graphql/types/product-bundle/new-product-bundle.js +14 -0
- package/dist-server/graphql/types/product-bundle/new-product-bundle.js.map +1 -0
- package/dist-server/graphql/types/product-bundle/product-bundle-list.js +14 -0
- package/dist-server/graphql/types/product-bundle/product-bundle-list.js.map +1 -0
- package/dist-server/graphql/types/product-bundle/product-bundle-patch.js +21 -0
- package/dist-server/graphql/types/product-bundle/product-bundle-patch.js.map +1 -0
- package/dist-server/graphql/types/product-bundle/product-bundle.js +26 -0
- package/dist-server/graphql/types/product-bundle/product-bundle.js.map +1 -0
- package/dist-server/graphql/types/product-bundle-setting/index.js +38 -0
- package/dist-server/graphql/types/product-bundle-setting/index.js.map +1 -0
- package/dist-server/graphql/types/product-bundle-setting/new-product-bundle-setting.js +14 -0
- package/dist-server/graphql/types/product-bundle-setting/new-product-bundle-setting.js.map +1 -0
- package/dist-server/graphql/types/product-bundle-setting/product-bundle-setting-list.js +14 -0
- package/dist-server/graphql/types/product-bundle-setting/product-bundle-setting-list.js.map +1 -0
- package/dist-server/graphql/types/product-bundle-setting/product-bundle-setting-patch.js +21 -0
- package/dist-server/graphql/types/product-bundle-setting/product-bundle-setting-patch.js.map +1 -0
- package/dist-server/graphql/types/product-bundle-setting/product-bundle-setting.js +36 -0
- package/dist-server/graphql/types/product-bundle-setting/product-bundle-setting.js.map +1 -0
- package/dist-server/graphql/types/product-combination/index.js +39 -0
- package/dist-server/graphql/types/product-combination/index.js.map +1 -0
- package/dist-server/graphql/types/product-combination/new-product-combination.js +15 -0
- package/dist-server/graphql/types/product-combination/new-product-combination.js.map +1 -0
- package/dist-server/graphql/types/product-combination/product-combination-list.js +14 -0
- package/dist-server/graphql/types/product-combination/product-combination-list.js.map +1 -0
- package/dist-server/graphql/types/product-combination/product-combination-patch.js +19 -0
- package/dist-server/graphql/types/product-combination/product-combination-patch.js.map +1 -0
- package/dist-server/graphql/types/product-combination/product-combination.js +26 -0
- package/dist-server/graphql/types/product-combination/product-combination.js.map +1 -0
- package/dist-server/graphql/types/product-combination-setting/index.js +44 -0
- package/dist-server/graphql/types/product-combination-setting/index.js.map +1 -0
- package/dist-server/graphql/types/product-combination-setting/new-product-combination-setting.js +14 -0
- package/dist-server/graphql/types/product-combination-setting/new-product-combination-setting.js.map +1 -0
- package/dist-server/graphql/types/product-combination-setting/product-combination-setting-list.js +14 -0
- package/dist-server/graphql/types/product-combination-setting/product-combination-setting-list.js.map +1 -0
- package/dist-server/graphql/types/product-combination-setting/product-combination-setting-patch.js +18 -0
- package/dist-server/graphql/types/product-combination-setting/product-combination-setting-patch.js.map +1 -0
- package/dist-server/graphql/types/product-combination-setting/product-combination-setting.js +33 -0
- package/dist-server/graphql/types/product-combination-setting/product-combination-setting.js.map +1 -0
- package/dist-server/graphql/types/product-detail/index.js +36 -0
- package/dist-server/graphql/types/product-detail/index.js.map +1 -0
- package/dist-server/graphql/types/product-detail/new-product-detail.js +55 -0
- package/dist-server/graphql/types/product-detail/new-product-detail.js.map +1 -0
- package/dist-server/graphql/types/product-detail/product-detail-list.js +14 -0
- package/dist-server/graphql/types/product-detail/product-detail-list.js.map +1 -0
- package/dist-server/graphql/types/product-detail/product-detail-patch.js +57 -0
- package/dist-server/graphql/types/product-detail/product-detail-patch.js.map +1 -0
- package/dist-server/graphql/types/product-detail-bizplace-setting/index.js +36 -0
- package/dist-server/graphql/types/product-detail-bizplace-setting/index.js.map +1 -0
- package/dist-server/graphql/types/product-detail-bizplace-setting/new-product-detail-bizplace-setting.js +18 -0
- package/dist-server/graphql/types/product-detail-bizplace-setting/new-product-detail-bizplace-setting.js.map +1 -0
- package/dist-server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting-list.js +14 -0
- package/dist-server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting-list.js.map +1 -0
- package/dist-server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting-patch.js +20 -0
- package/dist-server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting-patch.js.map +1 -0
- package/dist-server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting.js +30 -0
- package/dist-server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting.js.map +1 -0
- package/dist-server/graphql/types/product-set/index.js +52 -0
- package/dist-server/graphql/types/product-set/index.js.map +1 -0
- package/dist-server/graphql/types/product-set/new-product-set.js +16 -0
- package/dist-server/graphql/types/product-set/new-product-set.js.map +1 -0
- package/dist-server/graphql/types/product-set/product-set-list.js +14 -0
- package/dist-server/graphql/types/product-set/product-set-list.js.map +1 -0
- package/dist-server/graphql/types/product-set/product-set-patch.js +17 -0
- package/dist-server/graphql/types/product-set/product-set-patch.js.map +1 -0
- package/dist-server/graphql/types/product-set/product-set.js +24 -0
- package/dist-server/graphql/types/product-set/product-set.js.map +1 -0
- package/package.json +4 -3
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ProductBundleSetting = void 0;
|
|
7
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
8
|
+
exports.ProductBundleSetting = (0, graphql_tag_1.default) `
|
|
9
|
+
type ProductBundleSetting {
|
|
10
|
+
id: String
|
|
11
|
+
name: String
|
|
12
|
+
product: Product
|
|
13
|
+
productDetail: ProductDetail
|
|
14
|
+
productDetailId: String
|
|
15
|
+
gtin: String
|
|
16
|
+
packingType: String
|
|
17
|
+
packingSize: Float
|
|
18
|
+
productId: String
|
|
19
|
+
productSku: String
|
|
20
|
+
productName: String
|
|
21
|
+
productDescription: String
|
|
22
|
+
productType: String
|
|
23
|
+
bundleId: String
|
|
24
|
+
bundleSku: String
|
|
25
|
+
bundleName: String
|
|
26
|
+
bundleDescription: String
|
|
27
|
+
bundleQty: Int
|
|
28
|
+
domain: Domain
|
|
29
|
+
description: String
|
|
30
|
+
updater: User
|
|
31
|
+
creator: User
|
|
32
|
+
updatedAt: String
|
|
33
|
+
createdAt: String
|
|
34
|
+
}
|
|
35
|
+
`;
|
|
36
|
+
//# sourceMappingURL=product-bundle-setting.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"product-bundle-setting.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-bundle-setting/product-bundle-setting.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,oBAAoB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2BtC,CAAA"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
14
|
+
};
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.ProductCombinationResolver = void 0;
|
|
17
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
18
|
+
__exportStar(require("./product-combination"), exports);
|
|
19
|
+
__exportStar(require("./new-product-combination"), exports);
|
|
20
|
+
__exportStar(require("./product-combination-patch"), exports);
|
|
21
|
+
__exportStar(require("./product-combination-list"), exports);
|
|
22
|
+
exports.ProductCombinationResolver = (0, graphql_tag_1.default) `
|
|
23
|
+
extend type Mutation {
|
|
24
|
+
createProductCombination(productCombination: NewProductCombination!): ProductCombination @transaction
|
|
25
|
+
updateProductCombination(id: String!, patch: ProductCombinationPatch!): ProductCombination @transaction
|
|
26
|
+
updateMultipleProductCombination(
|
|
27
|
+
productDetailId: String!
|
|
28
|
+
patches: [ProductCombinationPatch]!
|
|
29
|
+
): [ProductCombination] @transaction
|
|
30
|
+
deleteProductCombination(id: String!): Boolean
|
|
31
|
+
deleteProductCombinations(ids: [String]!): Boolean
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
extend type Query {
|
|
35
|
+
productCombinations(filters: [Filter], pagination: Pagination, sortings: [Sorting]): ProductCombinationList
|
|
36
|
+
productCombination(name: String!): ProductCombination
|
|
37
|
+
}
|
|
38
|
+
`;
|
|
39
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-combination/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA6B;AAE7B,wDAAqC;AACrC,4DAAyC;AACzC,8DAA2C;AAC3C,6DAA0C;AAE7B,QAAA,0BAA0B,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;CAgB5C,CAAA"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.NewProductCombination = void 0;
|
|
7
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
8
|
+
exports.NewProductCombination = (0, graphql_tag_1.default) `
|
|
9
|
+
input NewProductCombination {
|
|
10
|
+
name: String!
|
|
11
|
+
description: String
|
|
12
|
+
status: String
|
|
13
|
+
}
|
|
14
|
+
`;
|
|
15
|
+
//# sourceMappingURL=new-product-combination.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"new-product-combination.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-combination/new-product-combination.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,qBAAqB,GAAG,IAAA,qBAAG,EAAA;;;;;;CAMvC,CAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ProductCombinationList = void 0;
|
|
7
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
8
|
+
exports.ProductCombinationList = (0, graphql_tag_1.default) `
|
|
9
|
+
type ProductCombinationList {
|
|
10
|
+
items: [ProductCombination]
|
|
11
|
+
total: Int
|
|
12
|
+
}
|
|
13
|
+
`;
|
|
14
|
+
//# sourceMappingURL=product-combination-list.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"product-combination-list.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-combination/product-combination-list.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,sBAAsB,GAAG,IAAA,qBAAG,EAAA;;;;;CAKxC,CAAA"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ProductCombinationPatch = void 0;
|
|
7
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
8
|
+
exports.ProductCombinationPatch = (0, graphql_tag_1.default) `
|
|
9
|
+
input ProductCombinationPatch {
|
|
10
|
+
id: String
|
|
11
|
+
name: String
|
|
12
|
+
description: String
|
|
13
|
+
status: String
|
|
14
|
+
product: ObjectRef
|
|
15
|
+
productDetail: ObjectRef
|
|
16
|
+
cuFlag: String
|
|
17
|
+
}
|
|
18
|
+
`;
|
|
19
|
+
//# sourceMappingURL=product-combination-patch.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"product-combination-patch.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-combination/product-combination-patch.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,uBAAuB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;CAUzC,CAAA"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ProductCombination = void 0;
|
|
7
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
8
|
+
exports.ProductCombination = (0, graphql_tag_1.default) `
|
|
9
|
+
type ProductCombination {
|
|
10
|
+
id: String
|
|
11
|
+
name: String
|
|
12
|
+
domain: Domain
|
|
13
|
+
description: String
|
|
14
|
+
status: String
|
|
15
|
+
product: Product
|
|
16
|
+
productDetail: ProductDetail
|
|
17
|
+
productCombinationSettings: [ProductCombinationSetting]
|
|
18
|
+
deletedAt: String
|
|
19
|
+
deletedBy: User
|
|
20
|
+
updater: User
|
|
21
|
+
creator: User
|
|
22
|
+
updatedAt: String
|
|
23
|
+
createdAt: String
|
|
24
|
+
}
|
|
25
|
+
`;
|
|
26
|
+
//# sourceMappingURL=product-combination.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"product-combination.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-combination/product-combination.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,kBAAkB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;CAiBpC,CAAA"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
14
|
+
};
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.ProductCombinationSettingResolver = void 0;
|
|
17
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
18
|
+
__exportStar(require("./product-combination-setting"), exports);
|
|
19
|
+
__exportStar(require("./new-product-combination-setting"), exports);
|
|
20
|
+
__exportStar(require("./product-combination-setting-patch"), exports);
|
|
21
|
+
__exportStar(require("./product-combination-setting-list"), exports);
|
|
22
|
+
exports.ProductCombinationSettingResolver = (0, graphql_tag_1.default) `
|
|
23
|
+
extend type Mutation {
|
|
24
|
+
createProductCombinationSetting(productCombinationSetting: NewProductCombinationSetting!): ProductCombinationSetting
|
|
25
|
+
updateMultipleProductCombinationSetting(patches: [ProductCombinationSettingPatch]!): [ProductCombinationSetting]
|
|
26
|
+
deleteProductCombinationSetting(id: String!): Boolean
|
|
27
|
+
deleteProductCombinationSettings(ids: [String]!): Boolean
|
|
28
|
+
linkProductCombination(
|
|
29
|
+
productCombinationId: String!
|
|
30
|
+
patches: [ProductCombinationSettingPatch]!
|
|
31
|
+
): [ProductCombinationSetting] @transaction
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
extend type Query {
|
|
35
|
+
productCombinationSettings(productCombinationId: String!): [ProductCombinationSetting]
|
|
36
|
+
productCombinationSetting(name: String!): ProductCombinationSetting
|
|
37
|
+
productCombinationSets(
|
|
38
|
+
filters: [Filter]
|
|
39
|
+
pagination: Pagination
|
|
40
|
+
sortings: [Sorting]
|
|
41
|
+
): ProductCombinationSettingList
|
|
42
|
+
}
|
|
43
|
+
`;
|
|
44
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-combination-setting/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA6B;AAE7B,gEAA6C;AAC7C,oEAAiD;AACjD,sEAAmD;AACnD,qEAAkD;AAErC,QAAA,iCAAiC,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;CAqBnD,CAAA"}
|
package/dist-server/graphql/types/product-combination-setting/new-product-combination-setting.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.NewProductCombinationSetting = void 0;
|
|
7
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
8
|
+
exports.NewProductCombinationSetting = (0, graphql_tag_1.default) `
|
|
9
|
+
input NewProductCombinationSetting {
|
|
10
|
+
name: String!
|
|
11
|
+
description: String
|
|
12
|
+
}
|
|
13
|
+
`;
|
|
14
|
+
//# sourceMappingURL=new-product-combination-setting.js.map
|
package/dist-server/graphql/types/product-combination-setting/new-product-combination-setting.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"new-product-combination-setting.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-combination-setting/new-product-combination-setting.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,4BAA4B,GAAG,IAAA,qBAAG,EAAA;;;;;CAK9C,CAAA"}
|
package/dist-server/graphql/types/product-combination-setting/product-combination-setting-list.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ProductCombinationSettingList = void 0;
|
|
7
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
8
|
+
exports.ProductCombinationSettingList = (0, graphql_tag_1.default) `
|
|
9
|
+
type ProductCombinationSettingList {
|
|
10
|
+
items: [ProductCombinationSetting]
|
|
11
|
+
total: Int
|
|
12
|
+
}
|
|
13
|
+
`;
|
|
14
|
+
//# sourceMappingURL=product-combination-setting-list.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"product-combination-setting-list.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-combination-setting/product-combination-setting-list.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,6BAA6B,GAAG,IAAA,qBAAG,EAAA;;;;;CAK/C,CAAA"}
|
package/dist-server/graphql/types/product-combination-setting/product-combination-setting-patch.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ProductCombinationSettingPatch = void 0;
|
|
7
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
8
|
+
exports.ProductCombinationSettingPatch = (0, graphql_tag_1.default) `
|
|
9
|
+
input ProductCombinationSettingPatch {
|
|
10
|
+
id: String
|
|
11
|
+
product: ObjectRef
|
|
12
|
+
productDetail: ObjectRef
|
|
13
|
+
productCombination: ObjectRef
|
|
14
|
+
qty: Int
|
|
15
|
+
cuFlag: String
|
|
16
|
+
}
|
|
17
|
+
`;
|
|
18
|
+
//# sourceMappingURL=product-combination-setting-patch.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"product-combination-setting-patch.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-combination-setting/product-combination-setting-patch.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,8BAA8B,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;CAShD,CAAA"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ProductCombinationSetting = void 0;
|
|
7
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
8
|
+
exports.ProductCombinationSetting = (0, graphql_tag_1.default) `
|
|
9
|
+
type ProductCombinationSetting {
|
|
10
|
+
id: String
|
|
11
|
+
name: String
|
|
12
|
+
product: Product
|
|
13
|
+
productDetail: ProductDetail
|
|
14
|
+
productDetailId: String
|
|
15
|
+
gtin: String
|
|
16
|
+
packingType: String
|
|
17
|
+
packingSize: Float
|
|
18
|
+
productId: String
|
|
19
|
+
productSku: String
|
|
20
|
+
productName: String
|
|
21
|
+
productDescription: String
|
|
22
|
+
productType: String
|
|
23
|
+
combinationId: String
|
|
24
|
+
qty: Int
|
|
25
|
+
domain: Domain
|
|
26
|
+
description: String
|
|
27
|
+
updater: User
|
|
28
|
+
creator: User
|
|
29
|
+
updatedAt: String
|
|
30
|
+
createdAt: String
|
|
31
|
+
}
|
|
32
|
+
`;
|
|
33
|
+
//# sourceMappingURL=product-combination-setting.js.map
|
package/dist-server/graphql/types/product-combination-setting/product-combination-setting.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"product-combination-setting.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-combination-setting/product-combination-setting.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,yBAAyB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;CAwB3C,CAAA"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
14
|
+
};
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.ProductDetailResolver = void 0;
|
|
17
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
18
|
+
__exportStar(require("./product-detail"), exports);
|
|
19
|
+
__exportStar(require("./new-product-detail"), exports);
|
|
20
|
+
__exportStar(require("./product-detail-patch"), exports);
|
|
21
|
+
__exportStar(require("./product-detail-list"), exports);
|
|
22
|
+
exports.ProductDetailResolver = (0, graphql_tag_1.default) `
|
|
23
|
+
extend type Mutation {
|
|
24
|
+
createProductDetail(productDetail: NewProductDetail!): ProductDetail @transaction
|
|
25
|
+
updateProductDetail(name: String!, patch: ProductDetailPatch!): ProductDetail @transaction
|
|
26
|
+
updateMultipleProductDetail(productId: String!, patches: [ProductDetailPatch]!): [ProductDetail] @transaction
|
|
27
|
+
deleteProductDetail(name: String!): Boolean @transaction
|
|
28
|
+
deleteProductDetails(names: [String]!): Boolean @transaction
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
extend type Query {
|
|
32
|
+
productDetails(filters: [Filter], pagination: Pagination, sortings: [Sorting]): ProductDetailList
|
|
33
|
+
productDetail(gtin: String!, customerCompanyDomainId: String!): ProductDetail @transaction
|
|
34
|
+
}
|
|
35
|
+
`;
|
|
36
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-detail/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA6B;AAE7B,mDAAgC;AAChC,uDAAoC;AACpC,yDAAsC;AACtC,wDAAqC;AAExB,QAAA,qBAAqB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;CAavC,CAAA"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.NewProductDetail = void 0;
|
|
7
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
8
|
+
exports.NewProductDetail = (0, graphql_tag_1.default) `
|
|
9
|
+
input NewProductDetail {
|
|
10
|
+
name: String!
|
|
11
|
+
gtin: String
|
|
12
|
+
refCode: String
|
|
13
|
+
product: ObjectRef
|
|
14
|
+
isDefault: Boolean
|
|
15
|
+
packingType: String
|
|
16
|
+
packingSize: Float
|
|
17
|
+
movement: String
|
|
18
|
+
uom: String
|
|
19
|
+
uomValue: Float
|
|
20
|
+
childProductDetail: ObjectRef
|
|
21
|
+
parentProductDetails: [ObjectRef]
|
|
22
|
+
childQty: Float
|
|
23
|
+
weightUnit: String
|
|
24
|
+
nettWeight: Float
|
|
25
|
+
grossWeight: Float
|
|
26
|
+
lengthUnit: String
|
|
27
|
+
width: Float
|
|
28
|
+
depth: Float
|
|
29
|
+
height: Float
|
|
30
|
+
volume: Float
|
|
31
|
+
bufferQty: Int
|
|
32
|
+
minQty: Int
|
|
33
|
+
maxQty: Int
|
|
34
|
+
auxUnit1: String
|
|
35
|
+
auxValue1: String
|
|
36
|
+
auxUnit2: String
|
|
37
|
+
auxValue2: String
|
|
38
|
+
auxUnit3: String
|
|
39
|
+
auxValue3: String
|
|
40
|
+
auxUnit4: String
|
|
41
|
+
auxValue4: String
|
|
42
|
+
auxUnit5: String
|
|
43
|
+
auxValue5: String
|
|
44
|
+
isTrackedAsInventory: Boolean
|
|
45
|
+
discountId: Int
|
|
46
|
+
costPrice: Float
|
|
47
|
+
mrpPrice: Float
|
|
48
|
+
sellPrice: Float
|
|
49
|
+
afterTaxCostPrice: Float
|
|
50
|
+
afterTaxSalesPrice: Float
|
|
51
|
+
inventoryAccountCode: String
|
|
52
|
+
cogsAccountCode: String
|
|
53
|
+
}
|
|
54
|
+
`;
|
|
55
|
+
//# sourceMappingURL=new-product-detail.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"new-product-detail.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-detail/new-product-detail.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,gBAAgB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8ClC,CAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ProductDetailList = void 0;
|
|
7
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
8
|
+
exports.ProductDetailList = (0, graphql_tag_1.default) `
|
|
9
|
+
type ProductDetailList {
|
|
10
|
+
items: [ProductDetail]
|
|
11
|
+
total: Int
|
|
12
|
+
}
|
|
13
|
+
`;
|
|
14
|
+
//# sourceMappingURL=product-detail-list.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"product-detail-list.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-detail/product-detail-list.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,iBAAiB,GAAG,IAAA,qBAAG,EAAA;;;;;CAKnC,CAAA"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ProductDetailPatch = void 0;
|
|
7
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
8
|
+
exports.ProductDetailPatch = (0, graphql_tag_1.default) `
|
|
9
|
+
input ProductDetailPatch {
|
|
10
|
+
id: String
|
|
11
|
+
name: String
|
|
12
|
+
gtin: String
|
|
13
|
+
refCode: String
|
|
14
|
+
product: ObjectRef
|
|
15
|
+
isDefault: Boolean
|
|
16
|
+
packingType: String
|
|
17
|
+
packingSize: Float
|
|
18
|
+
movement: String
|
|
19
|
+
uom: String
|
|
20
|
+
uomValue: Float
|
|
21
|
+
childProductDetail: String
|
|
22
|
+
childGtin: String
|
|
23
|
+
childQty: Float
|
|
24
|
+
weightUnit: String
|
|
25
|
+
nettWeight: Float
|
|
26
|
+
grossWeight: Float
|
|
27
|
+
lengthUnit: String
|
|
28
|
+
width: Float
|
|
29
|
+
depth: Float
|
|
30
|
+
height: Float
|
|
31
|
+
volume: Float
|
|
32
|
+
bufferQty: Int
|
|
33
|
+
minQty: Int
|
|
34
|
+
maxQty: Int
|
|
35
|
+
auxUnit1: String
|
|
36
|
+
auxValue1: String
|
|
37
|
+
auxUnit2: String
|
|
38
|
+
auxValue2: String
|
|
39
|
+
auxUnit3: String
|
|
40
|
+
auxValue3: String
|
|
41
|
+
auxUnit4: String
|
|
42
|
+
auxValue4: String
|
|
43
|
+
auxUnit5: String
|
|
44
|
+
auxValue5: String
|
|
45
|
+
isTrackedAsInventory: Boolean
|
|
46
|
+
discountId: Int
|
|
47
|
+
costPrice: Float
|
|
48
|
+
mrpPrice: Float
|
|
49
|
+
sellPrice: Float
|
|
50
|
+
afterTaxCostPrice: Float
|
|
51
|
+
afterTaxSalesPrice: Float
|
|
52
|
+
inventoryAccountCode: String
|
|
53
|
+
cogsAccountCode: String
|
|
54
|
+
cuFlag: String
|
|
55
|
+
}
|
|
56
|
+
`;
|
|
57
|
+
//# sourceMappingURL=product-detail-patch.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"product-detail-patch.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-detail/product-detail-patch.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,kBAAkB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgDpC,CAAA"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
14
|
+
};
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.ProductDetailBizplaceSettingResolver = void 0;
|
|
17
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
18
|
+
__exportStar(require("./product-detail-bizplace-setting"), exports);
|
|
19
|
+
__exportStar(require("./new-product-detail-bizplace-setting"), exports);
|
|
20
|
+
__exportStar(require("./product-detail-bizplace-setting-patch"), exports);
|
|
21
|
+
__exportStar(require("./product-detail-bizplace-setting-list"), exports);
|
|
22
|
+
exports.ProductDetailBizplaceSettingResolver = (0, graphql_tag_1.default) `
|
|
23
|
+
extend type Mutation {
|
|
24
|
+
createProductDetailBizplaceSetting (productDetailBizplaceSetting: NewProductDetailBizplaceSetting!): ProductDetailBizplaceSetting
|
|
25
|
+
updateProductDetailBizplaceSetting (name: String! patch: ProductDetailBizplaceSettingPatch!): ProductDetailBizplaceSetting
|
|
26
|
+
updateMultipleProductDetailBizplaceSetting (productId: String! patches: [ProductDetailBizplaceSettingPatch]!): [ProductDetailBizplaceSetting] @transaction
|
|
27
|
+
deleteProductDetailBizplaceSetting (name: String!): Boolean
|
|
28
|
+
deleteProductDetailBizplaceSettings (names: [String]!): Boolean
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
extend type Query {
|
|
32
|
+
productDetailBizplaceSettings(filters: [Filter], pagination: Pagination, sortings: [Sorting]): ProductDetailBizplaceSettingList
|
|
33
|
+
productDetailBizplaceSetting(name: String!): ProductDetailBizplaceSetting
|
|
34
|
+
}
|
|
35
|
+
`;
|
|
36
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-detail-bizplace-setting/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA6B;AAE7B,oEAAiD;AACjD,wEAAqD;AACrD,0EAAuD;AACvD,yEAAsD;AAEzC,QAAA,oCAAoC,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;CAatD,CAAA"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.NewProductDetailBizplaceSetting = void 0;
|
|
7
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
8
|
+
exports.NewProductDetailBizplaceSetting = (0, graphql_tag_1.default) `
|
|
9
|
+
input NewProductDetailBizplaceSetting {
|
|
10
|
+
name: String!
|
|
11
|
+
productDetail: ObjectRef
|
|
12
|
+
requirePacking: Boolean
|
|
13
|
+
bufferQty: Int
|
|
14
|
+
minQty: Int
|
|
15
|
+
maxQty: Int
|
|
16
|
+
}
|
|
17
|
+
`;
|
|
18
|
+
//# sourceMappingURL=new-product-detail-bizplace-setting.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"new-product-detail-bizplace-setting.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-detail-bizplace-setting/new-product-detail-bizplace-setting.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,+BAA+B,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;CASjD,CAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ProductDetailBizplaceSettingList = void 0;
|
|
7
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
8
|
+
exports.ProductDetailBizplaceSettingList = (0, graphql_tag_1.default) `
|
|
9
|
+
type ProductDetailBizplaceSettingList {
|
|
10
|
+
items: [ProductDetailBizplaceSetting]
|
|
11
|
+
total: Int
|
|
12
|
+
}
|
|
13
|
+
`;
|
|
14
|
+
//# sourceMappingURL=product-detail-bizplace-setting-list.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"product-detail-bizplace-setting-list.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting-list.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,gCAAgC,GAAG,IAAA,qBAAG,EAAA;;;;;CAKlD,CAAA"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ProductDetailBizplaceSettingPatch = void 0;
|
|
7
|
+
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
8
|
+
exports.ProductDetailBizplaceSettingPatch = (0, graphql_tag_1.default) `
|
|
9
|
+
input ProductDetailBizplaceSettingPatch {
|
|
10
|
+
id: String
|
|
11
|
+
name: String
|
|
12
|
+
productDetail: ObjectRef
|
|
13
|
+
requirePacking: Boolean
|
|
14
|
+
bufferQty: Int
|
|
15
|
+
minQty: Int
|
|
16
|
+
maxQty: Int
|
|
17
|
+
cuFlag: String
|
|
18
|
+
}
|
|
19
|
+
`;
|
|
20
|
+
//# sourceMappingURL=product-detail-bizplace-setting-patch.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"product-detail-bizplace-setting-patch.js","sourceRoot":"","sources":["../../../../server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting-patch.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,iCAAiC,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;CAWnD,CAAA"}
|