@things-factory/product-base 3.7.13 → 3.8.3

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.
Files changed (467) hide show
  1. package/dist-server/graphql/types/product-detail/product-detail.js +1 -0
  2. package/dist-server/graphql/types/product-detail/product-detail.js.map +1 -1
  3. package/dist-server/index.js +1 -2
  4. package/dist-server/index.js.map +1 -1
  5. package/dist-server/service/index.js +62 -0
  6. package/dist-server/service/index.js.map +1 -0
  7. package/dist-server/service/product/index.js +9 -0
  8. package/dist-server/service/product/index.js.map +1 -0
  9. package/dist-server/service/product/product-mutation.js +357 -0
  10. package/dist-server/service/product/product-mutation.js.map +1 -0
  11. package/dist-server/service/product/product-query.js +275 -0
  12. package/dist-server/service/product/product-query.js.map +1 -0
  13. package/dist-server/service/product/product-types.js +501 -0
  14. package/dist-server/service/product/product-types.js.map +1 -0
  15. package/dist-server/{entities → service/product}/product.js +119 -6
  16. package/dist-server/service/product/product.js.map +1 -0
  17. package/dist-server/{graphql/resolvers → service}/product/validate-product.js +2 -2
  18. package/dist-server/service/product/validate-product.js.map +1 -0
  19. package/dist-server/service/product-bundle/index.js +9 -0
  20. package/dist-server/service/product-bundle/index.js.map +1 -0
  21. package/dist-server/service/product-bundle/product-bundle-mutation.js +130 -0
  22. package/dist-server/service/product-bundle/product-bundle-mutation.js.map +1 -0
  23. package/dist-server/service/product-bundle/product-bundle-query.js +128 -0
  24. package/dist-server/service/product-bundle/product-bundle-query.js.map +1 -0
  25. package/dist-server/service/product-bundle/product-bundle-types.js +85 -0
  26. package/dist-server/service/product-bundle/product-bundle-types.js.map +1 -0
  27. package/dist-server/{entities → service/product-bundle}/product-bundle.js +34 -4
  28. package/dist-server/service/product-bundle/product-bundle.js.map +1 -0
  29. package/dist-server/service/product-bundle-setting/index.js +9 -0
  30. package/dist-server/service/product-bundle-setting/index.js.map +1 -0
  31. package/dist-server/service/product-bundle-setting/product-bundle-setting-mutation.js +165 -0
  32. package/dist-server/service/product-bundle-setting/product-bundle-setting-mutation.js.map +1 -0
  33. package/dist-server/service/product-bundle-setting/product-bundle-setting-query.js +111 -0
  34. package/dist-server/service/product-bundle-setting/product-bundle-setting-query.js.map +1 -0
  35. package/dist-server/service/product-bundle-setting/product-bundle-setting-types.js +69 -0
  36. package/dist-server/service/product-bundle-setting/product-bundle-setting-types.js.map +1 -0
  37. package/dist-server/{entities → service/product-bundle-setting}/product-bundle-setting.js +25 -9
  38. package/dist-server/service/product-bundle-setting/product-bundle-setting.js.map +1 -0
  39. package/dist-server/service/product-combination/index.js +9 -0
  40. package/dist-server/service/product-combination/index.js.map +1 -0
  41. package/dist-server/service/product-combination/product-combination-mutation.js +137 -0
  42. package/dist-server/service/product-combination/product-combination-mutation.js.map +1 -0
  43. package/dist-server/service/product-combination/product-combination-query.js +86 -0
  44. package/dist-server/service/product-combination/product-combination-query.js.map +1 -0
  45. package/dist-server/service/product-combination/product-combination-type.js +83 -0
  46. package/dist-server/service/product-combination/product-combination-type.js.map +1 -0
  47. package/dist-server/service/product-combination/product-combination.js +133 -0
  48. package/dist-server/service/product-combination/product-combination.js.map +1 -0
  49. package/dist-server/service/product-combination-setting/index.js +9 -0
  50. package/dist-server/service/product-combination-setting/index.js.map +1 -0
  51. package/dist-server/service/product-combination-setting/product-combination-setting-mutation.js +221 -0
  52. package/dist-server/service/product-combination-setting/product-combination-setting-mutation.js.map +1 -0
  53. package/dist-server/service/product-combination-setting/product-combination-setting-query.js +177 -0
  54. package/dist-server/service/product-combination-setting/product-combination-setting-query.js.map +1 -0
  55. package/dist-server/service/product-combination-setting/product-combination-setting-type.js +75 -0
  56. package/dist-server/service/product-combination-setting/product-combination-setting-type.js.map +1 -0
  57. package/dist-server/{entities → service/product-combination-setting}/product-combination-setting.js +27 -8
  58. package/dist-server/service/product-combination-setting/product-combination-setting.js.map +1 -0
  59. package/dist-server/service/product-detail/index.js +9 -0
  60. package/dist-server/service/product-detail/index.js.map +1 -0
  61. package/dist-server/{graphql/resolvers/product-detail/update-multiple-product-detail.js → service/product-detail/product-detail-mutation.js} +106 -13
  62. package/dist-server/service/product-detail/product-detail-mutation.js.map +1 -0
  63. package/dist-server/{graphql/resolvers → service}/product-detail/product-detail-query.js +90 -30
  64. package/dist-server/service/product-detail/product-detail-query.js.map +1 -0
  65. package/dist-server/service/product-detail/product-detail-types.js +387 -0
  66. package/dist-server/service/product-detail/product-detail-types.js.map +1 -0
  67. package/dist-server/{entities → service/product-detail}/product-detail.js +92 -4
  68. package/dist-server/service/product-detail/product-detail.js.map +1 -0
  69. package/dist-server/service/product-detail-bizplace-setting/index.js +9 -0
  70. package/dist-server/service/product-detail-bizplace-setting/index.js.map +1 -0
  71. package/dist-server/service/product-detail-bizplace-setting/product-detail-bizplace-setting-mutation.js +114 -0
  72. package/dist-server/service/product-detail-bizplace-setting/product-detail-bizplace-setting-mutation.js.map +1 -0
  73. package/dist-server/service/product-detail-bizplace-setting/product-detail-bizplace-setting-query.js +107 -0
  74. package/dist-server/service/product-detail-bizplace-setting/product-detail-bizplace-setting-query.js.map +1 -0
  75. package/dist-server/service/product-detail-bizplace-setting/product-detail-bizplace-setting-types.js +99 -0
  76. package/dist-server/service/product-detail-bizplace-setting/product-detail-bizplace-setting-types.js.map +1 -0
  77. package/dist-server/{entities → service/product-detail-bizplace-setting}/product-detail-bizplace-setting.js +35 -6
  78. package/dist-server/service/product-detail-bizplace-setting/product-detail-bizplace-setting.js.map +1 -0
  79. package/dist-server/service/product-set/index.js +9 -0
  80. package/dist-server/service/product-set/index.js.map +1 -0
  81. package/dist-server/service/product-set/product-set-mutation.js +146 -0
  82. package/dist-server/service/product-set/product-set-mutation.js.map +1 -0
  83. package/dist-server/service/product-set/product-set-query.js +136 -0
  84. package/dist-server/service/product-set/product-set-query.js.map +1 -0
  85. package/dist-server/service/product-set/product-set-types.js +77 -0
  86. package/dist-server/service/product-set/product-set-types.js.map +1 -0
  87. package/dist-server/{entities → service/product-set}/product-set.js +35 -7
  88. package/dist-server/service/product-set/product-set.js.map +1 -0
  89. package/package.json +3 -3
  90. package/server/graphql/types/product-detail/product-detail.ts +1 -0
  91. package/server/index.ts +1 -2
  92. package/server/service/index.ts +61 -0
  93. package/server/service/product/index.ts +6 -0
  94. package/server/service/product/product-mutation.ts +375 -0
  95. package/server/service/product/product-query.ts +283 -0
  96. package/server/service/product/product-types.ts +364 -0
  97. package/server/{entities → service/product}/product.ts +105 -2
  98. package/server/{graphql/resolvers → service}/product/validate-product.ts +1 -1
  99. package/server/service/product-bundle/index.ts +6 -0
  100. package/server/service/product-bundle/product-bundle-mutation.ts +137 -0
  101. package/server/{graphql/resolvers/product-bundle/my-bizplace-product-bundles.ts → service/product-bundle/product-bundle-query.ts} +46 -8
  102. package/server/service/product-bundle/product-bundle-types.ts +51 -0
  103. package/server/{entities → service/product-bundle}/product-bundle.ts +33 -7
  104. package/server/service/product-bundle-setting/index.ts +6 -0
  105. package/server/{graphql/resolvers/product-bundle-setting/link-product-bundle.ts → service/product-bundle-setting/product-bundle-setting-mutation.ts} +80 -5
  106. package/server/{graphql/resolvers/product-bundle-setting/product-bundle-sets.ts → service/product-bundle-setting/product-bundle-setting-query.ts} +49 -20
  107. package/server/service/product-bundle-setting/product-bundle-setting-types.ts +41 -0
  108. package/server/service/product-bundle-setting/product-bundle-setting.ts +45 -0
  109. package/server/service/product-combination/index.ts +6 -0
  110. package/server/service/product-combination/product-combination-mutation.ts +142 -0
  111. package/server/service/product-combination/product-combination-query.ts +46 -0
  112. package/server/service/product-combination/product-combination-type.ts +50 -0
  113. package/server/service/product-combination/product-combination.ts +116 -0
  114. package/server/service/product-combination-setting/index.ts +6 -0
  115. package/server/service/product-combination-setting/product-combination-setting-mutation.ts +247 -0
  116. package/server/{graphql/resolvers/product-combination-setting/product-combination-sets.ts → service/product-combination-setting/product-combination-setting-query.ts} +55 -5
  117. package/server/service/product-combination-setting/product-combination-setting-type.ts +44 -0
  118. package/server/service/product-combination-setting/product-combination-setting.ts +48 -0
  119. package/server/service/product-detail/index.ts +6 -0
  120. package/server/service/product-detail/product-detail-mutation.ts +233 -0
  121. package/server/{graphql/resolvers → service}/product-detail/product-detail-query.ts +52 -38
  122. package/server/service/product-detail/product-detail-types.ts +280 -0
  123. package/server/{entities → service/product-detail}/product-detail.ts +83 -2
  124. package/server/service/product-detail-bizplace-setting/index.ts +6 -0
  125. package/server/service/product-detail-bizplace-setting/product-detail-bizplace-setting-mutation.ts +113 -0
  126. package/server/service/product-detail-bizplace-setting/product-detail-bizplace-setting-query.ts +87 -0
  127. package/server/service/product-detail-bizplace-setting/product-detail-bizplace-setting-types.ts +62 -0
  128. package/server/{entities → service/product-detail-bizplace-setting}/product-detail-bizplace-setting.ts +49 -12
  129. package/server/service/product-set/index.ts +6 -0
  130. package/server/service/product-set/product-set-mutation.ts +141 -0
  131. package/server/service/product-set/product-set-query.ts +106 -0
  132. package/server/service/product-set/product-set-types.ts +45 -0
  133. package/server/service/product-set/product-set.ts +95 -0
  134. package/dist-server/entities/index.js +0 -30
  135. package/dist-server/entities/index.js.map +0 -1
  136. package/dist-server/entities/product-bundle-setting.js.map +0 -1
  137. package/dist-server/entities/product-bundle.js.map +0 -1
  138. package/dist-server/entities/product-combination-setting.js.map +0 -1
  139. package/dist-server/entities/product-combination.js +0 -91
  140. package/dist-server/entities/product-combination.js.map +0 -1
  141. package/dist-server/entities/product-detail-bizplace-setting.js.map +0 -1
  142. package/dist-server/entities/product-detail.js.map +0 -1
  143. package/dist-server/entities/product-set.js.map +0 -1
  144. package/dist-server/entities/product.js.map +0 -1
  145. package/dist-server/graphql/index.js +0 -30
  146. package/dist-server/graphql/index.js.map +0 -1
  147. package/dist-server/graphql/resolvers/index.js +0 -21
  148. package/dist-server/graphql/resolvers/index.js.map +0 -1
  149. package/dist-server/graphql/resolvers/product/create-product.js +0 -60
  150. package/dist-server/graphql/resolvers/product/create-product.js.map +0 -1
  151. package/dist-server/graphql/resolvers/product/create-products.js +0 -24
  152. package/dist-server/graphql/resolvers/product/create-products.js.map +0 -1
  153. package/dist-server/graphql/resolvers/product/delete-product.js +0 -14
  154. package/dist-server/graphql/resolvers/product/delete-product.js.map +0 -1
  155. package/dist-server/graphql/resolvers/product/delete-products.js +0 -17
  156. package/dist-server/graphql/resolvers/product/delete-products.js.map +0 -1
  157. package/dist-server/graphql/resolvers/product/import-multiple-product.js +0 -35
  158. package/dist-server/graphql/resolvers/product/import-multiple-product.js.map +0 -1
  159. package/dist-server/graphql/resolvers/product/index.js +0 -20
  160. package/dist-server/graphql/resolvers/product/index.js.map +0 -1
  161. package/dist-server/graphql/resolvers/product/link-product.js +0 -41
  162. package/dist-server/graphql/resolvers/product/link-product.js.map +0 -1
  163. package/dist-server/graphql/resolvers/product/my-bizplace-products.js +0 -47
  164. package/dist-server/graphql/resolvers/product/my-bizplace-products.js.map +0 -1
  165. package/dist-server/graphql/resolvers/product/product-query.js +0 -94
  166. package/dist-server/graphql/resolvers/product/product-query.js.map +0 -1
  167. package/dist-server/graphql/resolvers/product/products-by-bizplace.js +0 -60
  168. package/dist-server/graphql/resolvers/product/products-by-bizplace.js.map +0 -1
  169. package/dist-server/graphql/resolvers/product/undelete-products.js +0 -17
  170. package/dist-server/graphql/resolvers/product/undelete-products.js.map +0 -1
  171. package/dist-server/graphql/resolvers/product/update-multiple-product.js +0 -33
  172. package/dist-server/graphql/resolvers/product/update-multiple-product.js.map +0 -1
  173. package/dist-server/graphql/resolvers/product/update-product.js +0 -58
  174. package/dist-server/graphql/resolvers/product/update-product.js.map +0 -1
  175. package/dist-server/graphql/resolvers/product/validate-product.js.map +0 -1
  176. package/dist-server/graphql/resolvers/product-bundle/create-product-bundle.js +0 -12
  177. package/dist-server/graphql/resolvers/product-bundle/create-product-bundle.js.map +0 -1
  178. package/dist-server/graphql/resolvers/product-bundle/delete-product-bundle.js +0 -13
  179. package/dist-server/graphql/resolvers/product-bundle/delete-product-bundle.js.map +0 -1
  180. package/dist-server/graphql/resolvers/product-bundle/delete-product-bundles.js +0 -19
  181. package/dist-server/graphql/resolvers/product-bundle/delete-product-bundles.js.map +0 -1
  182. package/dist-server/graphql/resolvers/product-bundle/index.js +0 -15
  183. package/dist-server/graphql/resolvers/product-bundle/index.js.map +0 -1
  184. package/dist-server/graphql/resolvers/product-bundle/my-bizplace-product-bundles.js +0 -43
  185. package/dist-server/graphql/resolvers/product-bundle/my-bizplace-product-bundles.js.map +0 -1
  186. package/dist-server/graphql/resolvers/product-bundle/product-bundle-query.js +0 -21
  187. package/dist-server/graphql/resolvers/product-bundle/product-bundle-query.js.map +0 -1
  188. package/dist-server/graphql/resolvers/product-bundle/update-multiple-product-bundle.js +0 -50
  189. package/dist-server/graphql/resolvers/product-bundle/update-multiple-product-bundle.js.map +0 -1
  190. package/dist-server/graphql/resolvers/product-bundle/update-product-bundle.js +0 -16
  191. package/dist-server/graphql/resolvers/product-bundle/update-product-bundle.js.map +0 -1
  192. package/dist-server/graphql/resolvers/product-bundle-setting/create-product-bundle-setting.js +0 -12
  193. package/dist-server/graphql/resolvers/product-bundle-setting/create-product-bundle-setting.js.map +0 -1
  194. package/dist-server/graphql/resolvers/product-bundle-setting/delete-product-bundle-setting.js +0 -12
  195. package/dist-server/graphql/resolvers/product-bundle-setting/delete-product-bundle-setting.js.map +0 -1
  196. package/dist-server/graphql/resolvers/product-bundle-setting/delete-product-bundle-settings.js +0 -14
  197. package/dist-server/graphql/resolvers/product-bundle-setting/delete-product-bundle-settings.js.map +0 -1
  198. package/dist-server/graphql/resolvers/product-bundle-setting/index.js +0 -15
  199. package/dist-server/graphql/resolvers/product-bundle-setting/index.js.map +0 -1
  200. package/dist-server/graphql/resolvers/product-bundle-setting/link-product-bundle.js +0 -77
  201. package/dist-server/graphql/resolvers/product-bundle-setting/link-product-bundle.js.map +0 -1
  202. package/dist-server/graphql/resolvers/product-bundle-setting/product-bundle-sets.js +0 -75
  203. package/dist-server/graphql/resolvers/product-bundle-setting/product-bundle-sets.js.map +0 -1
  204. package/dist-server/graphql/resolvers/product-bundle-setting/product-bundle-setting-query.js +0 -14
  205. package/dist-server/graphql/resolvers/product-bundle-setting/product-bundle-setting-query.js.map +0 -1
  206. package/dist-server/graphql/resolvers/product-bundle-setting/update-multiple-product-bundle-setting.js +0 -33
  207. package/dist-server/graphql/resolvers/product-bundle-setting/update-multiple-product-bundle-setting.js.map +0 -1
  208. package/dist-server/graphql/resolvers/product-combination/create-product-combination.js +0 -12
  209. package/dist-server/graphql/resolvers/product-combination/create-product-combination.js.map +0 -1
  210. package/dist-server/graphql/resolvers/product-combination/delete-product-combination.js +0 -13
  211. package/dist-server/graphql/resolvers/product-combination/delete-product-combination.js.map +0 -1
  212. package/dist-server/graphql/resolvers/product-combination/delete-product-combinations.js +0 -19
  213. package/dist-server/graphql/resolvers/product-combination/delete-product-combinations.js.map +0 -1
  214. package/dist-server/graphql/resolvers/product-combination/index.js +0 -14
  215. package/dist-server/graphql/resolvers/product-combination/index.js.map +0 -1
  216. package/dist-server/graphql/resolvers/product-combination/product-combination-query.js +0 -21
  217. package/dist-server/graphql/resolvers/product-combination/product-combination-query.js.map +0 -1
  218. package/dist-server/graphql/resolvers/product-combination/update-multiple-product-combination.js +0 -44
  219. package/dist-server/graphql/resolvers/product-combination/update-multiple-product-combination.js.map +0 -1
  220. package/dist-server/graphql/resolvers/product-combination/update-product-combination.js +0 -16
  221. package/dist-server/graphql/resolvers/product-combination/update-product-combination.js.map +0 -1
  222. package/dist-server/graphql/resolvers/product-combination-setting/create-product-combination-setting.js +0 -12
  223. package/dist-server/graphql/resolvers/product-combination-setting/create-product-combination-setting.js.map +0 -1
  224. package/dist-server/graphql/resolvers/product-combination-setting/delete-product-combination-setting.js +0 -12
  225. package/dist-server/graphql/resolvers/product-combination-setting/delete-product-combination-setting.js.map +0 -1
  226. package/dist-server/graphql/resolvers/product-combination-setting/delete-product-combination-settings.js +0 -14
  227. package/dist-server/graphql/resolvers/product-combination-setting/delete-product-combination-settings.js.map +0 -1
  228. package/dist-server/graphql/resolvers/product-combination-setting/index.js +0 -15
  229. package/dist-server/graphql/resolvers/product-combination-setting/index.js.map +0 -1
  230. package/dist-server/graphql/resolvers/product-combination-setting/link-product-combination.js +0 -73
  231. package/dist-server/graphql/resolvers/product-combination-setting/link-product-combination.js.map +0 -1
  232. package/dist-server/graphql/resolvers/product-combination-setting/product-combination-sets.js +0 -87
  233. package/dist-server/graphql/resolvers/product-combination-setting/product-combination-sets.js.map +0 -1
  234. package/dist-server/graphql/resolvers/product-combination-setting/product-combination-setting-query.js +0 -16
  235. package/dist-server/graphql/resolvers/product-combination-setting/product-combination-setting-query.js.map +0 -1
  236. package/dist-server/graphql/resolvers/product-combination-setting/update-multiple-product-combination-setting.js +0 -33
  237. package/dist-server/graphql/resolvers/product-combination-setting/update-multiple-product-combination-setting.js.map +0 -1
  238. package/dist-server/graphql/resolvers/product-detail/create-product-detail.js +0 -17
  239. package/dist-server/graphql/resolvers/product-detail/create-product-detail.js.map +0 -1
  240. package/dist-server/graphql/resolvers/product-detail/delete-product-detail.js +0 -13
  241. package/dist-server/graphql/resolvers/product-detail/delete-product-detail.js.map +0 -1
  242. package/dist-server/graphql/resolvers/product-detail/delete-product-details.js +0 -16
  243. package/dist-server/graphql/resolvers/product-detail/delete-product-details.js.map +0 -1
  244. package/dist-server/graphql/resolvers/product-detail/index.js +0 -15
  245. package/dist-server/graphql/resolvers/product-detail/index.js.map +0 -1
  246. package/dist-server/graphql/resolvers/product-detail/product-detail-query.js.map +0 -1
  247. package/dist-server/graphql/resolvers/product-detail/update-multiple-product-detail.js.map +0 -1
  248. package/dist-server/graphql/resolvers/product-detail/update-product-detail.js +0 -20
  249. package/dist-server/graphql/resolvers/product-detail/update-product-detail.js.map +0 -1
  250. package/dist-server/graphql/resolvers/product-detail-bizplace-setting/create-product-detail-bizplace-setting.js +0 -12
  251. package/dist-server/graphql/resolvers/product-detail-bizplace-setting/create-product-detail-bizplace-setting.js.map +0 -1
  252. package/dist-server/graphql/resolvers/product-detail-bizplace-setting/delete-product-detail-bizplace-setting.js +0 -13
  253. package/dist-server/graphql/resolvers/product-detail-bizplace-setting/delete-product-detail-bizplace-setting.js.map +0 -1
  254. package/dist-server/graphql/resolvers/product-detail-bizplace-setting/delete-product-detail-bizplace-settings.js +0 -16
  255. package/dist-server/graphql/resolvers/product-detail-bizplace-setting/delete-product-detail-bizplace-settings.js.map +0 -1
  256. package/dist-server/graphql/resolvers/product-detail-bizplace-setting/index.js +0 -15
  257. package/dist-server/graphql/resolvers/product-detail-bizplace-setting/index.js.map +0 -1
  258. package/dist-server/graphql/resolvers/product-detail-bizplace-setting/product-detail-bizplace-setting-query.js +0 -56
  259. package/dist-server/graphql/resolvers/product-detail-bizplace-setting/product-detail-bizplace-setting-query.js.map +0 -1
  260. package/dist-server/graphql/resolvers/product-detail-bizplace-setting/update-multiple-product-detail-bizplace-setting.js +0 -35
  261. package/dist-server/graphql/resolvers/product-detail-bizplace-setting/update-multiple-product-detail-bizplace-setting.js.map +0 -1
  262. package/dist-server/graphql/resolvers/product-detail-bizplace-setting/update-product-detail-bizplace-setting.js +0 -16
  263. package/dist-server/graphql/resolvers/product-detail-bizplace-setting/update-product-detail-bizplace-setting.js.map +0 -1
  264. package/dist-server/graphql/resolvers/product-set/create-product-set.js +0 -27
  265. package/dist-server/graphql/resolvers/product-set/create-product-set.js.map +0 -1
  266. package/dist-server/graphql/resolvers/product-set/delete-product-set.js +0 -14
  267. package/dist-server/graphql/resolvers/product-set/delete-product-set.js.map +0 -1
  268. package/dist-server/graphql/resolvers/product-set/delete-product-sets.js +0 -20
  269. package/dist-server/graphql/resolvers/product-set/delete-product-sets.js.map +0 -1
  270. package/dist-server/graphql/resolvers/product-set/index.js +0 -15
  271. package/dist-server/graphql/resolvers/product-set/index.js.map +0 -1
  272. package/dist-server/graphql/resolvers/product-set/my-bizplace-product-sets.js +0 -39
  273. package/dist-server/graphql/resolvers/product-set/my-bizplace-product-sets.js.map +0 -1
  274. package/dist-server/graphql/resolvers/product-set/product-set-query.js +0 -30
  275. package/dist-server/graphql/resolvers/product-set/product-set-query.js.map +0 -1
  276. package/dist-server/graphql/resolvers/product-set/update-multiple-product-set.js +0 -28
  277. package/dist-server/graphql/resolvers/product-set/update-multiple-product-set.js.map +0 -1
  278. package/dist-server/graphql/resolvers/product-set/update-product-set.js +0 -23
  279. package/dist-server/graphql/resolvers/product-set/update-product-set.js.map +0 -1
  280. package/dist-server/graphql/types/index.js +0 -21
  281. package/dist-server/graphql/types/index.js.map +0 -1
  282. package/dist-server/graphql/types/product/index.js +0 -61
  283. package/dist-server/graphql/types/product/index.js.map +0 -1
  284. package/dist-server/graphql/types/product/new-product.js +0 -67
  285. package/dist-server/graphql/types/product/new-product.js.map +0 -1
  286. package/dist-server/graphql/types/product/product-list.js +0 -14
  287. package/dist-server/graphql/types/product/product-list.js.map +0 -1
  288. package/dist-server/graphql/types/product/product-patch.js +0 -71
  289. package/dist-server/graphql/types/product/product-patch.js.map +0 -1
  290. package/dist-server/graphql/types/product/product.js +0 -74
  291. package/dist-server/graphql/types/product/product.js.map +0 -1
  292. package/dist-server/graphql/types/product-bundle/index.js +0 -37
  293. package/dist-server/graphql/types/product-bundle/index.js.map +0 -1
  294. package/dist-server/graphql/types/product-bundle/new-product-bundle.js +0 -14
  295. package/dist-server/graphql/types/product-bundle/new-product-bundle.js.map +0 -1
  296. package/dist-server/graphql/types/product-bundle/product-bundle-list.js +0 -14
  297. package/dist-server/graphql/types/product-bundle/product-bundle-list.js.map +0 -1
  298. package/dist-server/graphql/types/product-bundle/product-bundle-patch.js +0 -21
  299. package/dist-server/graphql/types/product-bundle/product-bundle-patch.js.map +0 -1
  300. package/dist-server/graphql/types/product-bundle/product-bundle.js +0 -26
  301. package/dist-server/graphql/types/product-bundle/product-bundle.js.map +0 -1
  302. package/dist-server/graphql/types/product-bundle-setting/index.js +0 -38
  303. package/dist-server/graphql/types/product-bundle-setting/index.js.map +0 -1
  304. package/dist-server/graphql/types/product-bundle-setting/new-product-bundle-setting.js +0 -14
  305. package/dist-server/graphql/types/product-bundle-setting/new-product-bundle-setting.js.map +0 -1
  306. package/dist-server/graphql/types/product-bundle-setting/product-bundle-setting-list.js +0 -14
  307. package/dist-server/graphql/types/product-bundle-setting/product-bundle-setting-list.js.map +0 -1
  308. package/dist-server/graphql/types/product-bundle-setting/product-bundle-setting-patch.js +0 -21
  309. package/dist-server/graphql/types/product-bundle-setting/product-bundle-setting-patch.js.map +0 -1
  310. package/dist-server/graphql/types/product-bundle-setting/product-bundle-setting.js +0 -36
  311. package/dist-server/graphql/types/product-bundle-setting/product-bundle-setting.js.map +0 -1
  312. package/dist-server/graphql/types/product-combination/index.js +0 -39
  313. package/dist-server/graphql/types/product-combination/index.js.map +0 -1
  314. package/dist-server/graphql/types/product-combination/new-product-combination.js +0 -15
  315. package/dist-server/graphql/types/product-combination/new-product-combination.js.map +0 -1
  316. package/dist-server/graphql/types/product-combination/product-combination-list.js +0 -14
  317. package/dist-server/graphql/types/product-combination/product-combination-list.js.map +0 -1
  318. package/dist-server/graphql/types/product-combination/product-combination-patch.js +0 -19
  319. package/dist-server/graphql/types/product-combination/product-combination-patch.js.map +0 -1
  320. package/dist-server/graphql/types/product-combination/product-combination.js +0 -26
  321. package/dist-server/graphql/types/product-combination/product-combination.js.map +0 -1
  322. package/dist-server/graphql/types/product-combination-setting/index.js +0 -44
  323. package/dist-server/graphql/types/product-combination-setting/index.js.map +0 -1
  324. package/dist-server/graphql/types/product-combination-setting/new-product-combination-setting.js +0 -14
  325. package/dist-server/graphql/types/product-combination-setting/new-product-combination-setting.js.map +0 -1
  326. package/dist-server/graphql/types/product-combination-setting/product-combination-setting-list.js +0 -14
  327. package/dist-server/graphql/types/product-combination-setting/product-combination-setting-list.js.map +0 -1
  328. package/dist-server/graphql/types/product-combination-setting/product-combination-setting-patch.js +0 -18
  329. package/dist-server/graphql/types/product-combination-setting/product-combination-setting-patch.js.map +0 -1
  330. package/dist-server/graphql/types/product-combination-setting/product-combination-setting.js +0 -33
  331. package/dist-server/graphql/types/product-combination-setting/product-combination-setting.js.map +0 -1
  332. package/dist-server/graphql/types/product-detail/index.js +0 -36
  333. package/dist-server/graphql/types/product-detail/index.js.map +0 -1
  334. package/dist-server/graphql/types/product-detail/new-product-detail.js +0 -55
  335. package/dist-server/graphql/types/product-detail/new-product-detail.js.map +0 -1
  336. package/dist-server/graphql/types/product-detail/product-detail-list.js +0 -14
  337. package/dist-server/graphql/types/product-detail/product-detail-list.js.map +0 -1
  338. package/dist-server/graphql/types/product-detail/product-detail-patch.js +0 -57
  339. package/dist-server/graphql/types/product-detail/product-detail-patch.js.map +0 -1
  340. package/dist-server/graphql/types/product-detail-bizplace-setting/index.js +0 -36
  341. package/dist-server/graphql/types/product-detail-bizplace-setting/index.js.map +0 -1
  342. package/dist-server/graphql/types/product-detail-bizplace-setting/new-product-detail-bizplace-setting.js +0 -18
  343. package/dist-server/graphql/types/product-detail-bizplace-setting/new-product-detail-bizplace-setting.js.map +0 -1
  344. package/dist-server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting-list.js +0 -14
  345. package/dist-server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting-list.js.map +0 -1
  346. package/dist-server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting-patch.js +0 -20
  347. package/dist-server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting-patch.js.map +0 -1
  348. package/dist-server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting.js +0 -30
  349. package/dist-server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting.js.map +0 -1
  350. package/dist-server/graphql/types/product-set/index.js +0 -52
  351. package/dist-server/graphql/types/product-set/index.js.map +0 -1
  352. package/dist-server/graphql/types/product-set/new-product-set.js +0 -16
  353. package/dist-server/graphql/types/product-set/new-product-set.js.map +0 -1
  354. package/dist-server/graphql/types/product-set/product-set-list.js +0 -14
  355. package/dist-server/graphql/types/product-set/product-set-list.js.map +0 -1
  356. package/dist-server/graphql/types/product-set/product-set-patch.js +0 -17
  357. package/dist-server/graphql/types/product-set/product-set-patch.js.map +0 -1
  358. package/dist-server/graphql/types/product-set/product-set.js +0 -24
  359. package/dist-server/graphql/types/product-set/product-set.js.map +0 -1
  360. package/server/entities/index.ts +0 -30
  361. package/server/entities/product-bundle-setting.ts +0 -31
  362. package/server/entities/product-combination-setting.ts +0 -32
  363. package/server/entities/product-combination.ts +0 -78
  364. package/server/entities/product-set.ts +0 -65
  365. package/server/graphql/index.ts +0 -9
  366. package/server/graphql/resolvers/index.ts +0 -8
  367. package/server/graphql/resolvers/product/create-product.ts +0 -78
  368. package/server/graphql/resolvers/product/create-products.ts +0 -21
  369. package/server/graphql/resolvers/product/delete-product.ts +0 -19
  370. package/server/graphql/resolvers/product/delete-products.ts +0 -21
  371. package/server/graphql/resolvers/product/import-multiple-product.ts +0 -34
  372. package/server/graphql/resolvers/product/index.ts +0 -32
  373. package/server/graphql/resolvers/product/link-product.ts +0 -46
  374. package/server/graphql/resolvers/product/my-bizplace-products.ts +0 -66
  375. package/server/graphql/resolvers/product/product-query.ts +0 -117
  376. package/server/graphql/resolvers/product/products-by-bizplace.ts +0 -79
  377. package/server/graphql/resolvers/product/undelete-products.ts +0 -21
  378. package/server/graphql/resolvers/product/update-multiple-product.ts +0 -33
  379. package/server/graphql/resolvers/product/update-product.ts +0 -75
  380. package/server/graphql/resolvers/product-bundle/create-product-bundle.ts +0 -16
  381. package/server/graphql/resolvers/product-bundle/delete-product-bundle.ts +0 -13
  382. package/server/graphql/resolvers/product-bundle/delete-product-bundles.ts +0 -26
  383. package/server/graphql/resolvers/product-bundle/index.ts +0 -22
  384. package/server/graphql/resolvers/product-bundle/product-bundle-query.ts +0 -24
  385. package/server/graphql/resolvers/product-bundle/update-multiple-product-bundle.ts +0 -68
  386. package/server/graphql/resolvers/product-bundle/update-product-bundle.ts +0 -19
  387. package/server/graphql/resolvers/product-bundle-setting/create-product-bundle-setting.ts +0 -15
  388. package/server/graphql/resolvers/product-bundle-setting/delete-product-bundle-setting.ts +0 -11
  389. package/server/graphql/resolvers/product-bundle-setting/delete-product-bundle-settings.ts +0 -14
  390. package/server/graphql/resolvers/product-bundle-setting/index.ts +0 -22
  391. package/server/graphql/resolvers/product-bundle-setting/product-bundle-setting-query.ts +0 -14
  392. package/server/graphql/resolvers/product-bundle-setting/update-multiple-product-bundle-setting.ts +0 -47
  393. package/server/graphql/resolvers/product-combination/create-product-combination.ts +0 -16
  394. package/server/graphql/resolvers/product-combination/delete-product-combination.ts +0 -13
  395. package/server/graphql/resolvers/product-combination/delete-product-combinations.ts +0 -28
  396. package/server/graphql/resolvers/product-combination/index.ts +0 -19
  397. package/server/graphql/resolvers/product-combination/product-combination-query.ts +0 -25
  398. package/server/graphql/resolvers/product-combination/update-multiple-product-combination.ts +0 -63
  399. package/server/graphql/resolvers/product-combination/update-product-combination.ts +0 -20
  400. package/server/graphql/resolvers/product-combination-setting/create-product-combination-setting.ts +0 -15
  401. package/server/graphql/resolvers/product-combination-setting/delete-product-combination-setting.ts +0 -11
  402. package/server/graphql/resolvers/product-combination-setting/delete-product-combination-settings.ts +0 -13
  403. package/server/graphql/resolvers/product-combination-setting/index.ts +0 -21
  404. package/server/graphql/resolvers/product-combination-setting/link-product-combination.ts +0 -88
  405. package/server/graphql/resolvers/product-combination-setting/product-combination-setting-query.ts +0 -16
  406. package/server/graphql/resolvers/product-combination-setting/update-multiple-product-combination-setting.ts +0 -47
  407. package/server/graphql/resolvers/product-detail/create-product-detail.ts +0 -27
  408. package/server/graphql/resolvers/product-detail/delete-product-detail.ts +0 -13
  409. package/server/graphql/resolvers/product-detail/delete-product-details.ts +0 -16
  410. package/server/graphql/resolvers/product-detail/index.ts +0 -19
  411. package/server/graphql/resolvers/product-detail/update-multiple-product-detail.ts +0 -157
  412. package/server/graphql/resolvers/product-detail/update-product-detail.ts +0 -26
  413. package/server/graphql/resolvers/product-detail-bizplace-setting/create-product-detail-bizplace-setting.ts +0 -16
  414. package/server/graphql/resolvers/product-detail-bizplace-setting/delete-product-detail-bizplace-setting.ts +0 -13
  415. package/server/graphql/resolvers/product-detail-bizplace-setting/delete-product-detail-bizplace-settings.ts +0 -16
  416. package/server/graphql/resolvers/product-detail-bizplace-setting/index.ts +0 -19
  417. package/server/graphql/resolvers/product-detail-bizplace-setting/product-detail-bizplace-setting-query.ts +0 -74
  418. package/server/graphql/resolvers/product-detail-bizplace-setting/update-multiple-product-detail-bizplace-setting.ts +0 -57
  419. package/server/graphql/resolvers/product-detail-bizplace-setting/update-product-detail-bizplace-setting.ts +0 -19
  420. package/server/graphql/resolvers/product-set/create-product-set.ts +0 -33
  421. package/server/graphql/resolvers/product-set/delete-product-set.ts +0 -18
  422. package/server/graphql/resolvers/product-set/delete-product-sets.ts +0 -28
  423. package/server/graphql/resolvers/product-set/index.ts +0 -22
  424. package/server/graphql/resolvers/product-set/my-bizplace-product-sets.ts +0 -52
  425. package/server/graphql/resolvers/product-set/product-set-query.ts +0 -37
  426. package/server/graphql/resolvers/product-set/update-multiple-product-set.ts +0 -31
  427. package/server/graphql/resolvers/product-set/update-product-set.ts +0 -28
  428. package/server/graphql/types/index.ts +0 -8
  429. package/server/graphql/types/product/index.ts +0 -46
  430. package/server/graphql/types/product/new-product.ts +0 -61
  431. package/server/graphql/types/product/product-list.ts +0 -8
  432. package/server/graphql/types/product/product-patch.ts +0 -65
  433. package/server/graphql/types/product/product.ts +0 -68
  434. package/server/graphql/types/product-bundle/index.ts +0 -22
  435. package/server/graphql/types/product-bundle/new-product-bundle.ts +0 -8
  436. package/server/graphql/types/product-bundle/product-bundle-list.ts +0 -8
  437. package/server/graphql/types/product-bundle/product-bundle-patch.ts +0 -15
  438. package/server/graphql/types/product-bundle/product-bundle.ts +0 -20
  439. package/server/graphql/types/product-bundle-setting/index.ts +0 -23
  440. package/server/graphql/types/product-bundle-setting/new-product-bundle-setting.ts +0 -8
  441. package/server/graphql/types/product-bundle-setting/product-bundle-setting-list.ts +0 -8
  442. package/server/graphql/types/product-bundle-setting/product-bundle-setting-patch.ts +0 -15
  443. package/server/graphql/types/product-bundle-setting/product-bundle-setting.ts +0 -30
  444. package/server/graphql/types/product-combination/index.ts +0 -24
  445. package/server/graphql/types/product-combination/new-product-combination.ts +0 -9
  446. package/server/graphql/types/product-combination/product-combination-list.ts +0 -8
  447. package/server/graphql/types/product-combination/product-combination-patch.ts +0 -13
  448. package/server/graphql/types/product-combination/product-combination.ts +0 -20
  449. package/server/graphql/types/product-combination-setting/index.ts +0 -29
  450. package/server/graphql/types/product-combination-setting/new-product-combination-setting.ts +0 -8
  451. package/server/graphql/types/product-combination-setting/product-combination-setting-list.ts +0 -8
  452. package/server/graphql/types/product-combination-setting/product-combination-setting-patch.ts +0 -12
  453. package/server/graphql/types/product-combination-setting/product-combination-setting.ts +0 -27
  454. package/server/graphql/types/product-detail/index.ts +0 -21
  455. package/server/graphql/types/product-detail/new-product-detail.ts +0 -49
  456. package/server/graphql/types/product-detail/product-detail-list.ts +0 -8
  457. package/server/graphql/types/product-detail/product-detail-patch.ts +0 -51
  458. package/server/graphql/types/product-detail-bizplace-setting/index.ts +0 -21
  459. package/server/graphql/types/product-detail-bizplace-setting/new-product-detail-bizplace-setting.ts +0 -12
  460. package/server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting-list.ts +0 -8
  461. package/server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting-patch.ts +0 -14
  462. package/server/graphql/types/product-detail-bizplace-setting/product-detail-bizplace-setting.ts +0 -24
  463. package/server/graphql/types/product-set/index.ts +0 -37
  464. package/server/graphql/types/product-set/new-product-set.ts +0 -10
  465. package/server/graphql/types/product-set/product-set-list.ts +0 -8
  466. package/server/graphql/types/product-set/product-set-patch.ts +0 -11
  467. package/server/graphql/types/product-set/product-set.ts +0 -18
@@ -0,0 +1,501 @@
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;
12
+ Object.defineProperty(exports, "__esModule", { value: true });
13
+ exports.ProductPatch = exports.ProductList = exports.NewProduct = void 0;
14
+ const type_graphql_1 = require("type-graphql");
15
+ const biz_base_1 = require("@things-factory/biz-base");
16
+ const shell_1 = require("@things-factory/shell");
17
+ const product_detail_types_1 = require("../product-detail/product-detail-types");
18
+ const product_1 = require("./product");
19
+ let NewProduct = class NewProduct {
20
+ };
21
+ __decorate([
22
+ (0, type_graphql_1.Field)(type => type_graphql_1.ID, { nullable: true }),
23
+ __metadata("design:type", String)
24
+ ], NewProduct.prototype, "id", void 0);
25
+ __decorate([
26
+ (0, type_graphql_1.Field)({ nullable: true }),
27
+ __metadata("design:type", String)
28
+ ], NewProduct.prototype, "sku", void 0);
29
+ __decorate([
30
+ (0, type_graphql_1.Field)({ nullable: true }),
31
+ __metadata("design:type", String)
32
+ ], NewProduct.prototype, "name", void 0);
33
+ __decorate([
34
+ (0, type_graphql_1.Field)({ nullable: true }),
35
+ __metadata("design:type", typeof (_a = typeof biz_base_1.BizplacePatch !== "undefined" && biz_base_1.BizplacePatch) === "function" ? _a : Object)
36
+ ], NewProduct.prototype, "bizplace", void 0);
37
+ __decorate([
38
+ (0, type_graphql_1.Field)({ nullable: true }),
39
+ __metadata("design:type", String)
40
+ ], NewProduct.prototype, "description", void 0);
41
+ __decorate([
42
+ (0, type_graphql_1.Field)(type => shell_1.ObjectRef, { nullable: true }),
43
+ __metadata("design:type", typeof (_b = typeof shell_1.ObjectRef !== "undefined" && shell_1.ObjectRef) === "function" ? _b : Object)
44
+ ], NewProduct.prototype, "productRef", void 0);
45
+ __decorate([
46
+ (0, type_graphql_1.Field)({ nullable: true }),
47
+ __metadata("design:type", typeof (_c = typeof shell_1.ObjectRef !== "undefined" && shell_1.ObjectRef) === "function" ? _c : Object)
48
+ ], NewProduct.prototype, "parentProductRef", void 0);
49
+ __decorate([
50
+ (0, type_graphql_1.Field)(type => [shell_1.ObjectRef], { nullable: true }),
51
+ __metadata("design:type", Array)
52
+ ], NewProduct.prototype, "childProducts", void 0);
53
+ __decorate([
54
+ (0, type_graphql_1.Field)(type => [product_detail_types_1.ProductDetailPatch], { nullable: true }),
55
+ __metadata("design:type", Array)
56
+ ], NewProduct.prototype, "productDetails", void 0);
57
+ __decorate([
58
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
59
+ __metadata("design:type", Number)
60
+ ], NewProduct.prototype, "bundleQty", void 0);
61
+ __decorate([
62
+ (0, type_graphql_1.Field)({ nullable: true }),
63
+ __metadata("design:type", String)
64
+ ], NewProduct.prototype, "type", void 0);
65
+ __decorate([
66
+ (0, type_graphql_1.Field)(type => type_graphql_1.Int, { nullable: true }),
67
+ __metadata("design:type", Number)
68
+ ], NewProduct.prototype, "expirationPeriod", void 0);
69
+ __decorate([
70
+ (0, type_graphql_1.Field)({ nullable: true }),
71
+ __metadata("design:type", String)
72
+ ], NewProduct.prototype, "movement", void 0);
73
+ __decorate([
74
+ (0, type_graphql_1.Field)({ nullable: true }),
75
+ __metadata("design:type", String)
76
+ ], NewProduct.prototype, "weightUnit", void 0);
77
+ __decorate([
78
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
79
+ __metadata("design:type", Number)
80
+ ], NewProduct.prototype, "nettWeight", void 0);
81
+ __decorate([
82
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
83
+ __metadata("design:type", Number)
84
+ ], NewProduct.prototype, "density", void 0);
85
+ __decorate([
86
+ (0, type_graphql_1.Field)({ nullable: true }),
87
+ __metadata("design:type", String)
88
+ ], NewProduct.prototype, "packingType", void 0);
89
+ __decorate([
90
+ (0, type_graphql_1.Field)({ nullable: true }),
91
+ __metadata("design:type", String)
92
+ ], NewProduct.prototype, "lengthUnit", void 0);
93
+ __decorate([
94
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
95
+ __metadata("design:type", Number)
96
+ ], NewProduct.prototype, "costPrice", void 0);
97
+ __decorate([
98
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
99
+ __metadata("design:type", Number)
100
+ ], NewProduct.prototype, "afterTaxCostPrice", void 0);
101
+ __decorate([
102
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
103
+ __metadata("design:type", Number)
104
+ ], NewProduct.prototype, "sellPrice", void 0);
105
+ __decorate([
106
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
107
+ __metadata("design:type", Number)
108
+ ], NewProduct.prototype, "afterTaxSalesPrice", void 0);
109
+ __decorate([
110
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
111
+ __metadata("design:type", Number)
112
+ ], NewProduct.prototype, "mrpPrice", void 0);
113
+ __decorate([
114
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
115
+ __metadata("design:type", Number)
116
+ ], NewProduct.prototype, "bufferQty", void 0);
117
+ __decorate([
118
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
119
+ __metadata("design:type", Number)
120
+ ], NewProduct.prototype, "minQty", void 0);
121
+ __decorate([
122
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
123
+ __metadata("design:type", Number)
124
+ ], NewProduct.prototype, "maxQty", void 0);
125
+ __decorate([
126
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
127
+ __metadata("design:type", Number)
128
+ ], NewProduct.prototype, "width", void 0);
129
+ __decorate([
130
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
131
+ __metadata("design:type", Number)
132
+ ], NewProduct.prototype, "depth", void 0);
133
+ __decorate([
134
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
135
+ __metadata("design:type", Number)
136
+ ], NewProduct.prototype, "height", void 0);
137
+ __decorate([
138
+ (0, type_graphql_1.Field)({ nullable: true }),
139
+ __metadata("design:type", String)
140
+ ], NewProduct.prototype, "primaryUnit", void 0);
141
+ __decorate([
142
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
143
+ __metadata("design:type", Number)
144
+ ], NewProduct.prototype, "primaryValue", void 0);
145
+ __decorate([
146
+ (0, type_graphql_1.Field)({ nullable: true }),
147
+ __metadata("design:type", String)
148
+ ], NewProduct.prototype, "uom", void 0);
149
+ __decorate([
150
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
151
+ __metadata("design:type", Number)
152
+ ], NewProduct.prototype, "uomValue", void 0);
153
+ __decorate([
154
+ (0, type_graphql_1.Field)({ nullable: true }),
155
+ __metadata("design:type", String)
156
+ ], NewProduct.prototype, "inventoryAccountCode", void 0);
157
+ __decorate([
158
+ (0, type_graphql_1.Field)({ nullable: true }),
159
+ __metadata("design:type", String)
160
+ ], NewProduct.prototype, "cogsAccountCode", void 0);
161
+ __decorate([
162
+ (0, type_graphql_1.Field)({ nullable: true }),
163
+ __metadata("design:type", String)
164
+ ], NewProduct.prototype, "auxUnit1", void 0);
165
+ __decorate([
166
+ (0, type_graphql_1.Field)({ nullable: true }),
167
+ __metadata("design:type", String)
168
+ ], NewProduct.prototype, "auxValue1", void 0);
169
+ __decorate([
170
+ (0, type_graphql_1.Field)({ nullable: true }),
171
+ __metadata("design:type", String)
172
+ ], NewProduct.prototype, "auxUnit2", void 0);
173
+ __decorate([
174
+ (0, type_graphql_1.Field)({ nullable: true }),
175
+ __metadata("design:type", String)
176
+ ], NewProduct.prototype, "auxValue2", void 0);
177
+ __decorate([
178
+ (0, type_graphql_1.Field)({ nullable: true }),
179
+ __metadata("design:type", String)
180
+ ], NewProduct.prototype, "auxUnit3", void 0);
181
+ __decorate([
182
+ (0, type_graphql_1.Field)({ nullable: true }),
183
+ __metadata("design:type", String)
184
+ ], NewProduct.prototype, "auxValue3", void 0);
185
+ __decorate([
186
+ (0, type_graphql_1.Field)({ nullable: true }),
187
+ __metadata("design:type", String)
188
+ ], NewProduct.prototype, "auxUnit4", void 0);
189
+ __decorate([
190
+ (0, type_graphql_1.Field)({ nullable: true }),
191
+ __metadata("design:type", String)
192
+ ], NewProduct.prototype, "auxValue4", void 0);
193
+ __decorate([
194
+ (0, type_graphql_1.Field)({ nullable: true }),
195
+ __metadata("design:type", String)
196
+ ], NewProduct.prototype, "auxUnit5", void 0);
197
+ __decorate([
198
+ (0, type_graphql_1.Field)({ nullable: true }),
199
+ __metadata("design:type", String)
200
+ ], NewProduct.prototype, "auxValue5", void 0);
201
+ __decorate([
202
+ (0, type_graphql_1.Field)({ nullable: true }),
203
+ __metadata("design:type", String)
204
+ ], NewProduct.prototype, "groupType", void 0);
205
+ __decorate([
206
+ (0, type_graphql_1.Field)({ nullable: true }),
207
+ __metadata("design:type", String)
208
+ ], NewProduct.prototype, "brandSku", void 0);
209
+ __decorate([
210
+ (0, type_graphql_1.Field)({ nullable: true }),
211
+ __metadata("design:type", String)
212
+ ], NewProduct.prototype, "brand", void 0);
213
+ __decorate([
214
+ (0, type_graphql_1.Field)({ nullable: true }),
215
+ __metadata("design:type", String)
216
+ ], NewProduct.prototype, "subBrand", void 0);
217
+ __decorate([
218
+ (0, type_graphql_1.Field)({ nullable: true }),
219
+ __metadata("design:type", Boolean)
220
+ ], NewProduct.prototype, "isRequiredCheckExpiry", void 0);
221
+ __decorate([
222
+ (0, type_graphql_1.Field)({ nullable: true }),
223
+ __metadata("design:type", Boolean)
224
+ ], NewProduct.prototype, "isRequireSerialNumberScanning", void 0);
225
+ __decorate([
226
+ (0, type_graphql_1.Field)({ nullable: true }),
227
+ __metadata("design:type", String)
228
+ ], NewProduct.prototype, "gtin", void 0);
229
+ __decorate([
230
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
231
+ __metadata("design:type", Number)
232
+ ], NewProduct.prototype, "grossWeight", void 0);
233
+ __decorate([
234
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
235
+ __metadata("design:type", Number)
236
+ ], NewProduct.prototype, "volume", void 0);
237
+ __decorate([
238
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
239
+ __metadata("design:type", Number)
240
+ ], NewProduct.prototype, "volumeSize", void 0);
241
+ NewProduct = __decorate([
242
+ (0, type_graphql_1.InputType)()
243
+ ], NewProduct);
244
+ exports.NewProduct = NewProduct;
245
+ let ProductList = class ProductList {
246
+ };
247
+ __decorate([
248
+ (0, type_graphql_1.Field)(type => [product_1.Product], { nullable: true }),
249
+ __metadata("design:type", Array)
250
+ ], ProductList.prototype, "items", void 0);
251
+ __decorate([
252
+ (0, type_graphql_1.Field)(type => type_graphql_1.Int, { nullable: true }),
253
+ __metadata("design:type", Number)
254
+ ], ProductList.prototype, "total", void 0);
255
+ ProductList = __decorate([
256
+ (0, type_graphql_1.ObjectType)()
257
+ ], ProductList);
258
+ exports.ProductList = ProductList;
259
+ let ProductPatch = class ProductPatch {
260
+ };
261
+ __decorate([
262
+ (0, type_graphql_1.Field)({ nullable: true }),
263
+ __metadata("design:type", String)
264
+ ], ProductPatch.prototype, "id", void 0);
265
+ __decorate([
266
+ (0, type_graphql_1.Field)({ nullable: true }),
267
+ __metadata("design:type", String)
268
+ ], ProductPatch.prototype, "sku", void 0);
269
+ __decorate([
270
+ (0, type_graphql_1.Field)({ nullable: true }),
271
+ __metadata("design:type", String)
272
+ ], ProductPatch.prototype, "name", void 0);
273
+ __decorate([
274
+ (0, type_graphql_1.Field)({ nullable: true }),
275
+ __metadata("design:type", String)
276
+ ], ProductPatch.prototype, "description", void 0);
277
+ __decorate([
278
+ (0, type_graphql_1.Field)(type => shell_1.ObjectRef, { nullable: true }),
279
+ __metadata("design:type", typeof (_d = typeof shell_1.ObjectRef !== "undefined" && shell_1.ObjectRef) === "function" ? _d : Object)
280
+ ], ProductPatch.prototype, "bizplace", void 0);
281
+ __decorate([
282
+ (0, type_graphql_1.Field)(type => shell_1.ObjectRef, { nullable: true }),
283
+ __metadata("design:type", typeof (_e = typeof shell_1.ObjectRef !== "undefined" && shell_1.ObjectRef) === "function" ? _e : Object)
284
+ ], ProductPatch.prototype, "productRef", void 0);
285
+ __decorate([
286
+ (0, type_graphql_1.Field)(type => shell_1.ObjectRef, { nullable: true }),
287
+ __metadata("design:type", typeof (_f = typeof shell_1.ObjectRef !== "undefined" && shell_1.ObjectRef) === "function" ? _f : Object)
288
+ ], ProductPatch.prototype, "parentProductRef", void 0);
289
+ __decorate([
290
+ (0, type_graphql_1.Field)(type => [shell_1.ObjectRef], { nullable: true }),
291
+ __metadata("design:type", Array)
292
+ ], ProductPatch.prototype, "childProducts", void 0);
293
+ __decorate([
294
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
295
+ __metadata("design:type", Number)
296
+ ], ProductPatch.prototype, "bundleQty", void 0);
297
+ __decorate([
298
+ (0, type_graphql_1.Field)({ nullable: true }),
299
+ __metadata("design:type", String)
300
+ ], ProductPatch.prototype, "refCode", void 0);
301
+ __decorate([
302
+ (0, type_graphql_1.Field)({ nullable: true }),
303
+ __metadata("design:type", String)
304
+ ], ProductPatch.prototype, "packingType", void 0);
305
+ __decorate([
306
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
307
+ __metadata("design:type", Number)
308
+ ], ProductPatch.prototype, "packingSize", void 0);
309
+ __decorate([
310
+ (0, type_graphql_1.Field)({ nullable: true }),
311
+ __metadata("design:type", String)
312
+ ], ProductPatch.prototype, "type", void 0);
313
+ __decorate([
314
+ (0, type_graphql_1.Field)(type => type_graphql_1.Int, { nullable: true }),
315
+ __metadata("design:type", Number)
316
+ ], ProductPatch.prototype, "expirationPeriod", void 0);
317
+ __decorate([
318
+ (0, type_graphql_1.Field)({ nullable: true }),
319
+ __metadata("design:type", String)
320
+ ], ProductPatch.prototype, "movement", void 0);
321
+ __decorate([
322
+ (0, type_graphql_1.Field)({ nullable: true }),
323
+ __metadata("design:type", String)
324
+ ], ProductPatch.prototype, "weightUnit", void 0);
325
+ __decorate([
326
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
327
+ __metadata("design:type", Number)
328
+ ], ProductPatch.prototype, "nettWeight", void 0);
329
+ __decorate([
330
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
331
+ __metadata("design:type", Number)
332
+ ], ProductPatch.prototype, "density", void 0);
333
+ __decorate([
334
+ (0, type_graphql_1.Field)({ nullable: true }),
335
+ __metadata("design:type", String)
336
+ ], ProductPatch.prototype, "lengthUnit", void 0);
337
+ __decorate([
338
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
339
+ __metadata("design:type", Number)
340
+ ], ProductPatch.prototype, "costPrice", void 0);
341
+ __decorate([
342
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
343
+ __metadata("design:type", Number)
344
+ ], ProductPatch.prototype, "afterTaxCostPrice", void 0);
345
+ __decorate([
346
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
347
+ __metadata("design:type", Number)
348
+ ], ProductPatch.prototype, "sellPrice", void 0);
349
+ __decorate([
350
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
351
+ __metadata("design:type", Number)
352
+ ], ProductPatch.prototype, "afterTaxSalesPrice", void 0);
353
+ __decorate([
354
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
355
+ __metadata("design:type", Number)
356
+ ], ProductPatch.prototype, "mrpPrice", void 0);
357
+ __decorate([
358
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
359
+ __metadata("design:type", Number)
360
+ ], ProductPatch.prototype, "bufferQty", void 0);
361
+ __decorate([
362
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
363
+ __metadata("design:type", Number)
364
+ ], ProductPatch.prototype, "minQty", void 0);
365
+ __decorate([
366
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
367
+ __metadata("design:type", Number)
368
+ ], ProductPatch.prototype, "maxQty", void 0);
369
+ __decorate([
370
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
371
+ __metadata("design:type", Number)
372
+ ], ProductPatch.prototype, "width", void 0);
373
+ __decorate([
374
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
375
+ __metadata("design:type", Number)
376
+ ], ProductPatch.prototype, "depth", void 0);
377
+ __decorate([
378
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
379
+ __metadata("design:type", Number)
380
+ ], ProductPatch.prototype, "height", void 0);
381
+ __decorate([
382
+ (0, type_graphql_1.Field)({ nullable: true }),
383
+ __metadata("design:type", String)
384
+ ], ProductPatch.prototype, "inventoryAccountCode", void 0);
385
+ __decorate([
386
+ (0, type_graphql_1.Field)({ nullable: true }),
387
+ __metadata("design:type", String)
388
+ ], ProductPatch.prototype, "cogsAccountCode", void 0);
389
+ __decorate([
390
+ (0, type_graphql_1.Field)(type => Boolean, { nullable: true }),
391
+ __metadata("design:type", Boolean)
392
+ ], ProductPatch.prototype, "isTrackedAsInventory", void 0);
393
+ __decorate([
394
+ (0, type_graphql_1.Field)(type => Boolean, { nullable: true }),
395
+ __metadata("design:type", Boolean)
396
+ ], ProductPatch.prototype, "isRequiredCheckExpiry", void 0);
397
+ __decorate([
398
+ (0, type_graphql_1.Field)(type => Boolean, { nullable: true }),
399
+ __metadata("design:type", Boolean)
400
+ ], ProductPatch.prototype, "isRequireSerialNumberScanning", void 0);
401
+ __decorate([
402
+ (0, type_graphql_1.Field)({ nullable: true }),
403
+ __metadata("design:type", String)
404
+ ], ProductPatch.prototype, "primaryUnit", void 0);
405
+ __decorate([
406
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
407
+ __metadata("design:type", Number)
408
+ ], ProductPatch.prototype, "primaryValue", void 0);
409
+ __decorate([
410
+ (0, type_graphql_1.Field)({ nullable: true }),
411
+ __metadata("design:type", String)
412
+ ], ProductPatch.prototype, "uom", void 0);
413
+ __decorate([
414
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
415
+ __metadata("design:type", Number)
416
+ ], ProductPatch.prototype, "uomValue", void 0);
417
+ __decorate([
418
+ (0, type_graphql_1.Field)({ nullable: true }),
419
+ __metadata("design:type", String)
420
+ ], ProductPatch.prototype, "auxUnit1", void 0);
421
+ __decorate([
422
+ (0, type_graphql_1.Field)({ nullable: true }),
423
+ __metadata("design:type", String)
424
+ ], ProductPatch.prototype, "auxValue1", void 0);
425
+ __decorate([
426
+ (0, type_graphql_1.Field)({ nullable: true }),
427
+ __metadata("design:type", String)
428
+ ], ProductPatch.prototype, "auxUnit2", void 0);
429
+ __decorate([
430
+ (0, type_graphql_1.Field)({ nullable: true }),
431
+ __metadata("design:type", String)
432
+ ], ProductPatch.prototype, "auxValue2", void 0);
433
+ __decorate([
434
+ (0, type_graphql_1.Field)({ nullable: true }),
435
+ __metadata("design:type", String)
436
+ ], ProductPatch.prototype, "auxUnit3", void 0);
437
+ __decorate([
438
+ (0, type_graphql_1.Field)({ nullable: true }),
439
+ __metadata("design:type", String)
440
+ ], ProductPatch.prototype, "auxValue3", void 0);
441
+ __decorate([
442
+ (0, type_graphql_1.Field)({ nullable: true }),
443
+ __metadata("design:type", String)
444
+ ], ProductPatch.prototype, "auxUnit4", void 0);
445
+ __decorate([
446
+ (0, type_graphql_1.Field)({ nullable: true }),
447
+ __metadata("design:type", String)
448
+ ], ProductPatch.prototype, "auxValue4", void 0);
449
+ __decorate([
450
+ (0, type_graphql_1.Field)({ nullable: true }),
451
+ __metadata("design:type", String)
452
+ ], ProductPatch.prototype, "auxUnit5", void 0);
453
+ __decorate([
454
+ (0, type_graphql_1.Field)({ nullable: true }),
455
+ __metadata("design:type", String)
456
+ ], ProductPatch.prototype, "auxValue5", void 0);
457
+ __decorate([
458
+ (0, type_graphql_1.Field)({ nullable: true }),
459
+ __metadata("design:type", String)
460
+ ], ProductPatch.prototype, "brandSku", void 0);
461
+ __decorate([
462
+ (0, type_graphql_1.Field)({ nullable: true }),
463
+ __metadata("design:type", String)
464
+ ], ProductPatch.prototype, "brand", void 0);
465
+ __decorate([
466
+ (0, type_graphql_1.Field)({ nullable: true }),
467
+ __metadata("design:type", String)
468
+ ], ProductPatch.prototype, "subBrand", void 0);
469
+ __decorate([
470
+ (0, type_graphql_1.Field)({ nullable: true }),
471
+ __metadata("design:type", String)
472
+ ], ProductPatch.prototype, "gtin", void 0);
473
+ __decorate([
474
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
475
+ __metadata("design:type", Number)
476
+ ], ProductPatch.prototype, "grossWeight", void 0);
477
+ __decorate([
478
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
479
+ __metadata("design:type", Number)
480
+ ], ProductPatch.prototype, "volume", void 0);
481
+ __decorate([
482
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
483
+ __metadata("design:type", Number)
484
+ ], ProductPatch.prototype, "volumeSize", void 0);
485
+ __decorate([
486
+ (0, type_graphql_1.Field)({ nullable: true }),
487
+ __metadata("design:type", String)
488
+ ], ProductPatch.prototype, "childGtin", void 0);
489
+ __decorate([
490
+ (0, type_graphql_1.Field)(type => type_graphql_1.Float, { nullable: true }),
491
+ __metadata("design:type", Number)
492
+ ], ProductPatch.prototype, "childQty", void 0);
493
+ __decorate([
494
+ (0, type_graphql_1.Field)({ nullable: true }),
495
+ __metadata("design:type", String)
496
+ ], ProductPatch.prototype, "cuFlag", void 0);
497
+ ProductPatch = __decorate([
498
+ (0, type_graphql_1.InputType)()
499
+ ], ProductPatch);
500
+ exports.ProductPatch = ProductPatch;
501
+ //# 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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"}