@hitsoft/kadooglu-keops 0.0.2 → 0.0.4

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 (306) hide show
  1. package/config/enums/route-names.d.ts +16 -1
  2. package/esm2020/config/enums/route-names.mjs +1 -1
  3. package/esm2020/config/providers/route.provider.mjs +141 -4
  4. package/esm2020/lib/features/bl-tracking/components/bl-tracking-form.component.mjs +82 -0
  5. package/esm2020/lib/features/bl-tracking/components/bl-tracking.component.mjs +65 -0
  6. package/esm2020/lib/features/bl-tracking/hit-bl-tracking-routing.module.mjs +29 -0
  7. package/esm2020/lib/features/bl-tracking/hit-bl-tracking.module.mjs +58 -0
  8. package/esm2020/lib/features/carriers/components/carrier-form.component.mjs +78 -0
  9. package/esm2020/lib/features/carriers/components/carriers.component.mjs +66 -0
  10. package/esm2020/lib/features/carriers/hit-carriers-routing.module.mjs +29 -0
  11. package/esm2020/lib/features/carriers/hit-carriers.module.mjs +58 -0
  12. package/esm2020/lib/features/container-loading-counts/components/container-loading-counts.component.mjs +2 -2
  13. package/esm2020/lib/features/container-pallet-capacities/components/container-pallet-capacities.component.mjs +6 -5
  14. package/esm2020/lib/features/cost-calculation/components/cost-calculation-inputs.component.mjs +16 -12
  15. package/esm2020/lib/features/cost-calculation/components/cost-calculation-results.component.mjs +3 -3
  16. package/esm2020/lib/features/cost-calculation/components/cost-calculation.component.mjs +90 -39
  17. package/esm2020/lib/features/cost-calculation/engine/currency.utils.mjs +10 -10
  18. package/esm2020/lib/features/cost-calculation/engine/formulas.mjs +10 -10
  19. package/esm2020/lib/features/cost-calculation/engine/item-resolver.mjs +16 -16
  20. package/esm2020/lib/features/cost-calculation/engine/stage-builder.mjs +11 -10
  21. package/esm2020/lib/features/cost-calculation/hit-cost-calculation.module.mjs +7 -3
  22. package/esm2020/lib/features/cost-parameter-categories/components/cost-parameter-categories.component.mjs +3 -7
  23. package/esm2020/lib/features/cost-parameter-categories/components/cost-parameter-category-form.component.mjs +4 -14
  24. package/esm2020/lib/features/cost-parameters/components/cost-parameter-form.component.mjs +22 -39
  25. package/esm2020/lib/features/cost-parameters/components/cost-parameters.component.mjs +19 -15
  26. package/esm2020/lib/features/destination-ports/components/destination-port-form.component.mjs +86 -0
  27. package/esm2020/lib/features/destination-ports/components/destination-ports.component.mjs +74 -0
  28. package/esm2020/lib/features/destination-ports/hit-destination-ports-routing.module.mjs +29 -0
  29. package/esm2020/lib/features/destination-ports/hit-destination-ports.module.mjs +58 -0
  30. package/esm2020/lib/features/fob-inland-definitions/components/fob-inland-definition-form.component.mjs +80 -0
  31. package/esm2020/lib/features/fob-inland-definitions/components/fob-inland-definitions.component.mjs +65 -0
  32. package/esm2020/lib/features/fob-inland-definitions/hit-fob-inland-definitions-routing.module.mjs +29 -0
  33. package/esm2020/lib/features/fob-inland-definitions/hit-fob-inland-definitions.module.mjs +58 -0
  34. package/esm2020/lib/features/freight-offers/components/freight-offer-copy.component.mjs +67 -0
  35. package/esm2020/lib/features/freight-offers/components/freight-offer-form.component.mjs +181 -0
  36. package/esm2020/lib/features/freight-offers/components/freight-offers.component.mjs +159 -0
  37. package/esm2020/lib/features/freight-offers/hit-freight-offers-routing.module.mjs +29 -0
  38. package/esm2020/lib/features/freight-offers/hit-freight-offers.module.mjs +62 -0
  39. package/esm2020/lib/features/incoterms/components/incoterm-form.component.mjs +81 -0
  40. package/esm2020/lib/features/incoterms/components/incoterms.component.mjs +65 -0
  41. package/esm2020/lib/features/incoterms/hit-incoterms-routing.module.mjs +29 -0
  42. package/esm2020/lib/features/incoterms/hit-incoterms.module.mjs +58 -0
  43. package/esm2020/lib/features/index.mjs +29 -1
  44. package/esm2020/lib/features/item-classifications/components/item-classifications.component.mjs +199 -0
  45. package/esm2020/lib/features/item-classifications/hit-item-classifications-routing.module.mjs +29 -0
  46. package/esm2020/lib/features/item-classifications/hit-item-classifications.module.mjs +60 -0
  47. package/esm2020/lib/features/item-package-groups/components/item-package-group-form.component.mjs +78 -0
  48. package/esm2020/lib/features/item-package-groups/components/item-package-groups.component.mjs +69 -0
  49. package/esm2020/lib/features/item-package-groups/hit-item-package-groups-routing.module.mjs +29 -0
  50. package/esm2020/lib/features/item-package-groups/hit-item-package-groups.module.mjs +58 -0
  51. package/esm2020/lib/features/item-package-types/components/item-package-type-form.component.mjs +78 -0
  52. package/esm2020/lib/features/item-package-types/components/item-package-types.component.mjs +69 -0
  53. package/esm2020/lib/features/item-package-types/hit-item-package-types-routing.module.mjs +29 -0
  54. package/esm2020/lib/features/item-package-types/hit-item-package-types.module.mjs +58 -0
  55. package/esm2020/lib/features/item-product-types/components/item-product-type-form.component.mjs +78 -0
  56. package/esm2020/lib/features/item-product-types/components/item-product-types.component.mjs +69 -0
  57. package/esm2020/lib/features/item-product-types/hit-item-product-types-routing.module.mjs +29 -0
  58. package/esm2020/lib/features/item-product-types/hit-item-product-types.module.mjs +58 -0
  59. package/esm2020/lib/features/lines/components/line-form.component.mjs +78 -0
  60. package/esm2020/lib/features/lines/components/lines.component.mjs +66 -0
  61. package/esm2020/lib/features/lines/hit-lines-routing.module.mjs +29 -0
  62. package/esm2020/lib/features/lines/hit-lines.module.mjs +58 -0
  63. package/esm2020/lib/features/packaging-prices/components/packaging-price-form.component.mjs +4 -9
  64. package/esm2020/lib/features/packaging-prices/packaging-price-calculator.mjs +1 -1
  65. package/esm2020/lib/features/pos/components/pos-form.component.mjs +77 -0
  66. package/esm2020/lib/features/pos/components/pos.component.mjs +65 -0
  67. package/esm2020/lib/features/pos/hit-pos-routing.module.mjs +29 -0
  68. package/esm2020/lib/features/pos/hit-pos.module.mjs +58 -0
  69. package/esm2020/lib/features/price-parameter-types/components/price-parameter-types.component.mjs +3 -3
  70. package/esm2020/lib/features/price-parameters/components/price-parameter-form-cost-items.component.mjs +32 -0
  71. package/esm2020/lib/features/price-parameters/components/price-parameter-form-discount-rates-modal.component.mjs +52 -0
  72. package/esm2020/lib/features/price-parameters/components/price-parameter-form-discount-rates.component.mjs +84 -0
  73. package/esm2020/lib/features/price-parameters/components/price-parameter-form-items.component.mjs +43 -0
  74. package/esm2020/lib/features/price-parameters/components/price-parameter-form-price-lists.component.mjs +42 -0
  75. package/esm2020/lib/features/price-parameters/components/price-parameter-form.component.mjs +320 -0
  76. package/esm2020/lib/features/price-parameters/components/price-parameter-price-update-preview-modal.component.mjs +26 -0
  77. package/esm2020/lib/features/price-parameters/components/price-parameters.component.mjs +85 -0
  78. package/esm2020/lib/features/price-parameters/hit-price-parameters-routing.module.mjs +46 -0
  79. package/esm2020/lib/features/price-parameters/hit-price-parameters.module.mjs +96 -0
  80. package/esm2020/lib/features/price-parameters/price-parameter-cost-match.service.mjs +21 -0
  81. package/esm2020/lib/features/price-parameters/price-parameter-form-data.service.mjs +49 -0
  82. package/esm2020/lib/features/price-parameters/price-parameter-l10n-helper.mjs +7 -0
  83. package/esm2020/lib/features/price-parameters/price-parameter-lookups.service.mjs +27 -0
  84. package/esm2020/lib/features/price-parameters/price-parameter-price-update.service.mjs +119 -0
  85. package/esm2020/lib/features/settings/components/cost-settings.component.mjs +8 -4
  86. package/esm2020/lib/kadooglu-keops-routing.module.mjs +27 -1
  87. package/esm2020/lib/shared/amount-currency-input/amount-currency-input.component.mjs +68 -0
  88. package/esm2020/lib/shared/cost-item-classification.utils.mjs +15 -0
  89. package/esm2020/lib/shared/cost-item-rows.builder.mjs +40 -0
  90. package/esm2020/lib/shared/pipes/resolve-code-name.pipe.mjs +16 -0
  91. package/esm2020/lib/shared/shared-ui.module.mjs +20 -0
  92. package/esm2020/lib/utils/business-region.utils.mjs +12 -0
  93. package/esm2020/lib/utils/currency.utils.mjs +5 -1
  94. package/esm2020/lib/utils/exchange-rate.utils.mjs +12 -0
  95. package/esm2020/proxy/bl-tracking/dtos/index.mjs +2 -0
  96. package/esm2020/proxy/bl-tracking/dtos/models.mjs +2 -0
  97. package/esm2020/proxy/business-partners/dtos/index.mjs +2 -0
  98. package/esm2020/proxy/business-partners/dtos/models.mjs +2 -0
  99. package/esm2020/proxy/business-region.enum.mjs +9 -0
  100. package/esm2020/proxy/carriers/dtos/index.mjs +2 -0
  101. package/esm2020/proxy/carriers/dtos/models.mjs +2 -0
  102. package/esm2020/proxy/container-loading-counts/dtos/models.mjs +1 -1
  103. package/esm2020/proxy/controllers/bl-tracking.service.mjs +36 -0
  104. package/esm2020/proxy/controllers/business-partner.service.mjs +22 -0
  105. package/esm2020/proxy/controllers/carrier.service.mjs +36 -0
  106. package/esm2020/proxy/controllers/container-loading-count.service.mjs +5 -5
  107. package/esm2020/proxy/controllers/cost-parameter.service.mjs +1 -5
  108. package/esm2020/proxy/controllers/destination-port.service.mjs +44 -0
  109. package/esm2020/proxy/controllers/fob-inland-definition.service.mjs +36 -0
  110. package/esm2020/proxy/controllers/freight-offer.service.mjs +57 -0
  111. package/esm2020/proxy/controllers/incoterm.service.mjs +36 -0
  112. package/esm2020/proxy/controllers/index.mjs +16 -1
  113. package/esm2020/proxy/controllers/item-classification.service.mjs +42 -0
  114. package/esm2020/proxy/controllers/item-package-group.service.mjs +40 -0
  115. package/esm2020/proxy/controllers/item-package-type.service.mjs +40 -0
  116. package/esm2020/proxy/controllers/item-product-type.service.mjs +40 -0
  117. package/esm2020/proxy/controllers/item.service.mjs +7 -3
  118. package/esm2020/proxy/controllers/line.service.mjs +36 -0
  119. package/esm2020/proxy/controllers/pos.service.mjs +36 -0
  120. package/esm2020/proxy/controllers/price-list.service.mjs +28 -0
  121. package/esm2020/proxy/controllers/price-parameter.service.mjs +45 -0
  122. package/esm2020/proxy/cost-parameter-categories/dtos/models.mjs +1 -1
  123. package/esm2020/proxy/cost-parameters/dtos/models.mjs +1 -1
  124. package/esm2020/proxy/destination-ports/dtos/index.mjs +2 -0
  125. package/esm2020/proxy/destination-ports/dtos/models.mjs +2 -0
  126. package/esm2020/proxy/fob-inland-definitions/dtos/index.mjs +2 -0
  127. package/esm2020/proxy/fob-inland-definitions/dtos/models.mjs +2 -0
  128. package/esm2020/proxy/freight-offers/dtos/index.mjs +2 -0
  129. package/esm2020/proxy/freight-offers/dtos/models.mjs +2 -0
  130. package/esm2020/proxy/incoterms/dtos/index.mjs +2 -0
  131. package/esm2020/proxy/incoterms/dtos/models.mjs +2 -0
  132. package/esm2020/proxy/item-classifications/dtos/index.mjs +2 -0
  133. package/esm2020/proxy/item-classifications/dtos/models.mjs +2 -0
  134. package/esm2020/proxy/item-package-groups/dtos/index.mjs +2 -0
  135. package/esm2020/proxy/item-package-groups/dtos/models.mjs +2 -0
  136. package/esm2020/proxy/item-package-types/dtos/index.mjs +2 -0
  137. package/esm2020/proxy/item-package-types/dtos/models.mjs +2 -0
  138. package/esm2020/proxy/item-product-types/dtos/index.mjs +2 -0
  139. package/esm2020/proxy/item-product-types/dtos/models.mjs +2 -0
  140. package/esm2020/proxy/lines/dtos/index.mjs +2 -0
  141. package/esm2020/proxy/lines/dtos/models.mjs +2 -0
  142. package/esm2020/proxy/pos/dtos/index.mjs +2 -0
  143. package/esm2020/proxy/pos/dtos/models.mjs +2 -0
  144. package/esm2020/proxy/price-lists/dtos/index.mjs +2 -0
  145. package/esm2020/proxy/price-lists/dtos/models.mjs +2 -0
  146. package/esm2020/proxy/price-parameters/dtos/index.mjs +2 -0
  147. package/esm2020/proxy/price-parameters/dtos/models.mjs +2 -0
  148. package/esm2020/proxy/price-parameters/price-parameter-status.enum.mjs +9 -0
  149. package/esm2020/proxy/public-api.mjs +18 -2
  150. package/esm2020/proxy/settings/models.mjs +1 -1
  151. package/fesm2015/hitsoft-kadooglu-keops-config.mjs +140 -3
  152. package/fesm2015/hitsoft-kadooglu-keops-config.mjs.map +1 -1
  153. package/fesm2015/hitsoft-kadooglu-keops-proxy.mjs +556 -21
  154. package/fesm2015/hitsoft-kadooglu-keops-proxy.mjs.map +1 -1
  155. package/fesm2015/hitsoft-kadooglu-keops.mjs +4510 -763
  156. package/fesm2015/hitsoft-kadooglu-keops.mjs.map +1 -1
  157. package/fesm2020/hitsoft-kadooglu-keops-config.mjs +140 -3
  158. package/fesm2020/hitsoft-kadooglu-keops-config.mjs.map +1 -1
  159. package/fesm2020/hitsoft-kadooglu-keops-proxy.mjs +556 -21
  160. package/fesm2020/hitsoft-kadooglu-keops-proxy.mjs.map +1 -1
  161. package/fesm2020/hitsoft-kadooglu-keops.mjs +4462 -732
  162. package/fesm2020/hitsoft-kadooglu-keops.mjs.map +1 -1
  163. package/lib/features/bl-tracking/components/bl-tracking-form.component.d.ts +24 -0
  164. package/lib/features/bl-tracking/components/bl-tracking.component.d.ts +22 -0
  165. package/lib/features/bl-tracking/hit-bl-tracking-routing.module.d.ts +7 -0
  166. package/lib/features/bl-tracking/hit-bl-tracking.module.d.ts +18 -0
  167. package/lib/features/carriers/components/carrier-form.component.d.ts +24 -0
  168. package/lib/features/carriers/components/carriers.component.d.ts +22 -0
  169. package/lib/features/carriers/hit-carriers-routing.module.d.ts +7 -0
  170. package/lib/features/carriers/hit-carriers.module.d.ts +18 -0
  171. package/lib/features/container-loading-counts/components/container-loading-counts.component.d.ts +2 -2
  172. package/lib/features/container-pallet-capacities/components/container-pallet-capacities.component.d.ts +1 -1
  173. package/lib/features/cost-calculation/components/cost-calculation-inputs.component.d.ts +10 -7
  174. package/lib/features/cost-calculation/components/cost-calculation.component.d.ts +16 -8
  175. package/lib/features/cost-calculation/engine/currency.utils.d.ts +2 -2
  176. package/lib/features/cost-calculation/engine/formulas.d.ts +2 -2
  177. package/lib/features/cost-calculation/hit-cost-calculation.module.d.ts +2 -1
  178. package/lib/features/cost-parameter-categories/components/cost-parameter-categories.component.d.ts +0 -1
  179. package/lib/features/cost-parameter-categories/components/cost-parameter-category-form.component.d.ts +1 -5
  180. package/lib/features/cost-parameters/components/cost-parameter-form.component.d.ts +10 -7
  181. package/lib/features/cost-parameters/components/cost-parameters.component.d.ts +6 -6
  182. package/lib/features/destination-ports/components/destination-port-form.component.d.ts +25 -0
  183. package/lib/features/destination-ports/components/destination-ports.component.d.ts +24 -0
  184. package/lib/features/destination-ports/hit-destination-ports-routing.module.d.ts +7 -0
  185. package/lib/features/destination-ports/hit-destination-ports.module.d.ts +18 -0
  186. package/lib/features/fob-inland-definitions/components/fob-inland-definition-form.component.d.ts +24 -0
  187. package/lib/features/fob-inland-definitions/components/fob-inland-definitions.component.d.ts +22 -0
  188. package/lib/features/fob-inland-definitions/hit-fob-inland-definitions-routing.module.d.ts +7 -0
  189. package/lib/features/fob-inland-definitions/hit-fob-inland-definitions.module.d.ts +18 -0
  190. package/lib/features/freight-offers/components/freight-offer-copy.component.d.ts +22 -0
  191. package/lib/features/freight-offers/components/freight-offer-form.component.d.ts +49 -0
  192. package/lib/features/freight-offers/components/freight-offers.component.d.ts +47 -0
  193. package/lib/features/freight-offers/hit-freight-offers-routing.module.d.ts +7 -0
  194. package/lib/features/freight-offers/hit-freight-offers.module.d.ts +19 -0
  195. package/lib/features/incoterms/components/incoterm-form.component.d.ts +24 -0
  196. package/lib/features/incoterms/components/incoterms.component.d.ts +22 -0
  197. package/lib/features/incoterms/hit-incoterms-routing.module.d.ts +7 -0
  198. package/lib/features/incoterms/hit-incoterms.module.d.ts +18 -0
  199. package/lib/features/index.d.ts +21 -0
  200. package/lib/features/item-classifications/components/item-classifications.component.d.ts +66 -0
  201. package/lib/features/item-classifications/hit-item-classifications-routing.module.d.ts +7 -0
  202. package/lib/features/item-classifications/hit-item-classifications.module.d.ts +17 -0
  203. package/lib/features/item-package-groups/components/item-package-group-form.component.d.ts +24 -0
  204. package/lib/features/item-package-groups/components/item-package-groups.component.d.ts +22 -0
  205. package/lib/features/item-package-groups/hit-item-package-groups-routing.module.d.ts +7 -0
  206. package/lib/features/item-package-groups/hit-item-package-groups.module.d.ts +18 -0
  207. package/lib/features/item-package-types/components/item-package-type-form.component.d.ts +24 -0
  208. package/lib/features/item-package-types/components/item-package-types.component.d.ts +22 -0
  209. package/lib/features/item-package-types/hit-item-package-types-routing.module.d.ts +7 -0
  210. package/lib/features/item-package-types/hit-item-package-types.module.d.ts +18 -0
  211. package/lib/features/item-product-types/components/item-product-type-form.component.d.ts +24 -0
  212. package/lib/features/item-product-types/components/item-product-types.component.d.ts +22 -0
  213. package/lib/features/item-product-types/hit-item-product-types-routing.module.d.ts +7 -0
  214. package/lib/features/item-product-types/hit-item-product-types.module.d.ts +18 -0
  215. package/lib/features/lines/components/line-form.component.d.ts +24 -0
  216. package/lib/features/lines/components/lines.component.d.ts +22 -0
  217. package/lib/features/lines/hit-lines-routing.module.d.ts +7 -0
  218. package/lib/features/lines/hit-lines.module.d.ts +18 -0
  219. package/lib/features/pos/components/pos-form.component.d.ts +24 -0
  220. package/lib/features/pos/components/pos.component.d.ts +22 -0
  221. package/lib/features/pos/hit-pos-routing.module.d.ts +7 -0
  222. package/lib/features/pos/hit-pos.module.d.ts +18 -0
  223. package/lib/features/price-parameters/components/price-parameter-form-cost-items.component.d.ts +15 -0
  224. package/lib/features/price-parameters/components/price-parameter-form-discount-rates-modal.component.d.ts +24 -0
  225. package/lib/features/price-parameters/components/price-parameter-form-discount-rates.component.d.ts +22 -0
  226. package/lib/features/price-parameters/components/price-parameter-form-items.component.d.ts +15 -0
  227. package/lib/features/price-parameters/components/price-parameter-form-price-lists.component.d.ts +15 -0
  228. package/lib/features/price-parameters/components/price-parameter-form.component.d.ts +77 -0
  229. package/lib/features/price-parameters/components/price-parameter-price-update-preview-modal.component.d.ts +11 -0
  230. package/lib/features/price-parameters/components/price-parameters.component.d.ts +30 -0
  231. package/lib/features/price-parameters/hit-price-parameters-routing.module.d.ts +7 -0
  232. package/lib/features/price-parameters/hit-price-parameters.module.d.ts +25 -0
  233. package/lib/features/price-parameters/price-parameter-cost-match.service.d.ts +10 -0
  234. package/lib/features/price-parameters/price-parameter-form-data.service.d.ts +25 -0
  235. package/lib/features/price-parameters/price-parameter-l10n-helper.d.ts +2 -0
  236. package/lib/features/price-parameters/price-parameter-lookups.service.d.ts +15 -0
  237. package/lib/features/price-parameters/price-parameter-price-update.service.d.ts +30 -0
  238. package/lib/shared/amount-currency-input/amount-currency-input.component.d.ts +23 -0
  239. package/lib/shared/cost-item-classification.utils.d.ts +11 -0
  240. package/lib/shared/cost-item-rows.builder.d.ts +11 -0
  241. package/lib/shared/pipes/resolve-code-name.pipe.d.ts +11 -0
  242. package/lib/shared/shared-ui.module.d.ts +10 -0
  243. package/lib/utils/business-region.utils.d.ts +7 -0
  244. package/lib/utils/currency.utils.d.ts +2 -0
  245. package/lib/utils/exchange-rate.utils.d.ts +2 -0
  246. package/package.json +1 -1
  247. package/proxy/bl-tracking/dtos/index.d.ts +1 -0
  248. package/proxy/bl-tracking/dtos/models.d.ts +25 -0
  249. package/proxy/business-partners/dtos/index.d.ts +1 -0
  250. package/proxy/business-partners/dtos/models.d.ts +4 -0
  251. package/proxy/business-region.enum.d.ts +6 -0
  252. package/proxy/carriers/dtos/index.d.ts +1 -0
  253. package/proxy/carriers/dtos/models.d.ts +10 -0
  254. package/proxy/container-loading-counts/dtos/models.d.ts +1 -1
  255. package/proxy/controllers/bl-tracking.service.d.ts +14 -0
  256. package/proxy/controllers/business-partner.service.d.ts +11 -0
  257. package/proxy/controllers/carrier.service.d.ts +14 -0
  258. package/proxy/controllers/container-loading-count.service.d.ts +2 -2
  259. package/proxy/controllers/cost-parameter.service.d.ts +1 -2
  260. package/proxy/controllers/destination-port.service.d.ts +17 -0
  261. package/proxy/controllers/fob-inland-definition.service.d.ts +14 -0
  262. package/proxy/controllers/freight-offer.service.d.ts +19 -0
  263. package/proxy/controllers/incoterm.service.d.ts +14 -0
  264. package/proxy/controllers/index.d.ts +15 -0
  265. package/proxy/controllers/item-classification.service.d.ts +17 -0
  266. package/proxy/controllers/item-package-group.service.d.ts +15 -0
  267. package/proxy/controllers/item-package-type.service.d.ts +15 -0
  268. package/proxy/controllers/item-product-type.service.d.ts +15 -0
  269. package/proxy/controllers/item.service.d.ts +3 -1
  270. package/proxy/controllers/line.service.d.ts +14 -0
  271. package/proxy/controllers/pos.service.d.ts +14 -0
  272. package/proxy/controllers/price-list.service.d.ts +13 -0
  273. package/proxy/controllers/price-parameter.service.d.ts +16 -0
  274. package/proxy/cost-parameter-categories/dtos/models.d.ts +0 -4
  275. package/proxy/cost-parameters/dtos/models.d.ts +4 -11
  276. package/proxy/destination-ports/dtos/index.d.ts +1 -0
  277. package/proxy/destination-ports/dtos/models.d.ts +19 -0
  278. package/proxy/fob-inland-definitions/dtos/index.d.ts +1 -0
  279. package/proxy/fob-inland-definitions/dtos/models.d.ts +19 -0
  280. package/proxy/freight-offers/dtos/index.d.ts +1 -0
  281. package/proxy/freight-offers/dtos/models.d.ts +66 -0
  282. package/proxy/incoterms/dtos/index.d.ts +1 -0
  283. package/proxy/incoterms/dtos/models.d.ts +22 -0
  284. package/proxy/item-classifications/dtos/index.d.ts +1 -0
  285. package/proxy/item-classifications/dtos/models.d.ts +34 -0
  286. package/proxy/item-package-groups/dtos/index.d.ts +1 -0
  287. package/proxy/item-package-groups/dtos/models.d.ts +13 -0
  288. package/proxy/item-package-types/dtos/index.d.ts +1 -0
  289. package/proxy/item-package-types/dtos/models.d.ts +13 -0
  290. package/proxy/item-product-types/dtos/index.d.ts +1 -0
  291. package/proxy/item-product-types/dtos/models.d.ts +13 -0
  292. package/proxy/lines/dtos/index.d.ts +1 -0
  293. package/proxy/lines/dtos/models.d.ts +10 -0
  294. package/proxy/pos/dtos/index.d.ts +1 -0
  295. package/proxy/pos/dtos/models.d.ts +10 -0
  296. package/proxy/price-lists/dtos/index.d.ts +1 -0
  297. package/proxy/price-lists/dtos/models.d.ts +10 -0
  298. package/proxy/price-parameters/dtos/index.d.ts +1 -0
  299. package/proxy/price-parameters/dtos/models.d.ts +104 -0
  300. package/proxy/price-parameters/price-parameter-status.enum.d.ts +6 -0
  301. package/proxy/public-api.d.ts +17 -1
  302. package/proxy/settings/models.d.ts +1 -0
  303. package/esm2020/lib/features/cost-parameter-categories/cost-parameter-category-l10n-helper.mjs +0 -9
  304. package/esm2020/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.mjs +0 -11
  305. package/lib/features/cost-parameter-categories/cost-parameter-category-l10n-helper.d.ts +0 -2
  306. package/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.d.ts +0 -8
@@ -3,6 +3,14 @@ import { mapEnumToOptions } from '@abp/ng.core';
3
3
  import * as i0 from '@angular/core';
4
4
  import { Injectable } from '@angular/core';
5
5
 
6
+ var BusinessRegion;
7
+ (function (BusinessRegion) {
8
+ BusinessRegion[BusinessRegion["Undefined"] = 0] = "Undefined";
9
+ BusinessRegion[BusinessRegion["Domestic"] = 1] = "Domestic";
10
+ BusinessRegion[BusinessRegion["International"] = 2] = "International";
11
+ })(BusinessRegion || (BusinessRegion = {}));
12
+ const businessRegionOptions = mapEnumToOptions(BusinessRegion);
13
+
6
14
  var LoadingTargetKind;
7
15
  (function (LoadingTargetKind) {
8
16
  LoadingTargetKind[LoadingTargetKind["Container"] = 1] = "Container";
@@ -17,6 +25,91 @@ var PalletStatus;
17
25
  })(PalletStatus || (PalletStatus = {}));
18
26
  const palletStatusOptions = mapEnumToOptions(PalletStatus);
19
27
 
28
+ class BlTrackingService {
29
+ constructor(restService) {
30
+ this.restService = restService;
31
+ this.apiName = 'KadoogluKeops';
32
+ this.create = (input) => this.restService.request({
33
+ method: 'POST',
34
+ url: '/api/kadoogluKeops/freight/bl-tracking',
35
+ body: input,
36
+ }, { apiName: this.apiName });
37
+ this.delete = (code) => this.restService.request({
38
+ method: 'DELETE',
39
+ url: `/api/kadoogluKeops/freight/bl-tracking/${code}`,
40
+ }, { apiName: this.apiName });
41
+ this.getList = () => this.restService.request({
42
+ method: 'GET',
43
+ url: '/api/kadoogluKeops/freight/bl-tracking',
44
+ }, { apiName: this.apiName });
45
+ this.update = (code, input) => this.restService.request({
46
+ method: 'PUT',
47
+ url: `/api/kadoogluKeops/freight/bl-tracking/${code}`,
48
+ body: input,
49
+ }, { apiName: this.apiName });
50
+ }
51
+ }
52
+ BlTrackingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BlTrackingService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
53
+ BlTrackingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BlTrackingService, providedIn: 'root' });
54
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BlTrackingService, decorators: [{
55
+ type: Injectable,
56
+ args: [{
57
+ providedIn: 'root',
58
+ }]
59
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
60
+
61
+ class BusinessPartnerService {
62
+ constructor(restService) {
63
+ this.restService = restService;
64
+ this.apiName = 'KadoogluKeops';
65
+ this.getList = () => this.restService.request({
66
+ method: 'GET',
67
+ url: '/api/kadoogluKeops/business-partners',
68
+ }, { apiName: this.apiName });
69
+ }
70
+ }
71
+ BusinessPartnerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BusinessPartnerService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
72
+ BusinessPartnerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BusinessPartnerService, providedIn: 'root' });
73
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BusinessPartnerService, decorators: [{
74
+ type: Injectable,
75
+ args: [{
76
+ providedIn: 'root',
77
+ }]
78
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
79
+
80
+ class CarrierService {
81
+ constructor(restService) {
82
+ this.restService = restService;
83
+ this.apiName = 'KadoogluKeops';
84
+ this.create = (input) => this.restService.request({
85
+ method: 'POST',
86
+ url: '/api/kadoogluKeops/freight/carriers',
87
+ body: input,
88
+ }, { apiName: this.apiName });
89
+ this.delete = (code) => this.restService.request({
90
+ method: 'DELETE',
91
+ url: `/api/kadoogluKeops/freight/carriers/${code}`,
92
+ }, { apiName: this.apiName });
93
+ this.getList = () => this.restService.request({
94
+ method: 'GET',
95
+ url: '/api/kadoogluKeops/freight/carriers',
96
+ }, { apiName: this.apiName });
97
+ this.update = (code, input) => this.restService.request({
98
+ method: 'PUT',
99
+ url: `/api/kadoogluKeops/freight/carriers/${code}`,
100
+ body: input,
101
+ }, { apiName: this.apiName });
102
+ }
103
+ }
104
+ CarrierService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CarrierService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
105
+ CarrierService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CarrierService, providedIn: 'root' });
106
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CarrierService, decorators: [{
107
+ type: Injectable,
108
+ args: [{
109
+ providedIn: 'root',
110
+ }]
111
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
112
+
20
113
  class ContainerDefinitionService {
21
114
  constructor(restService) {
22
115
  this.restService = restService;
@@ -58,13 +151,13 @@ class ContainerLoadingCountService {
58
151
  constructor(restService) {
59
152
  this.restService = restService;
60
153
  this.apiName = 'KadoogluKeops';
61
- this.getList = () => this.restService.request({
154
+ this.getItemProductTypes = () => this.restService.request({
62
155
  method: 'GET',
63
- url: '/api/kadoogluKeops/container-loading-counts',
156
+ url: '/api/kadoogluKeops/container-loading-counts/item-product-types',
64
157
  }, { apiName: this.apiName });
65
- this.getProductTypes = () => this.restService.request({
158
+ this.getList = () => this.restService.request({
66
159
  method: 'GET',
67
- url: '/api/kadoogluKeops/container-loading-counts/product-types',
160
+ url: '/api/kadoogluKeops/container-loading-counts',
68
161
  }, { apiName: this.apiName });
69
162
  this.save = (input) => this.restService.request({
70
163
  method: 'POST',
@@ -304,10 +397,6 @@ class CostParameterService {
304
397
  method: 'DELETE',
305
398
  url: `/api/kadoogluKeops/cost-parameters/${code}`,
306
399
  }, { apiName: this.apiName });
307
- this.getCodeLookups = () => this.restService.request({
308
- method: 'GET',
309
- url: '/api/kadoogluKeops/cost-parameters/code-lookups',
310
- }, { apiName: this.apiName });
311
400
  this.getList = () => this.restService.request({
312
401
  method: 'GET',
313
402
  url: '/api/kadoogluKeops/cost-parameters',
@@ -352,6 +441,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
352
441
  }]
353
442
  }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
354
443
 
444
+ class DestinationPortService {
445
+ constructor(restService) {
446
+ this.restService = restService;
447
+ this.apiName = 'KadoogluKeops';
448
+ this.create = (input) => this.restService.request({
449
+ method: 'POST',
450
+ url: '/api/kadoogluKeops/freight/destination-ports',
451
+ body: input,
452
+ }, { apiName: this.apiName });
453
+ this.delete = (code) => this.restService.request({
454
+ method: 'DELETE',
455
+ url: `/api/kadoogluKeops/freight/destination-ports/${code}`,
456
+ }, { apiName: this.apiName });
457
+ this.getCountriesLookup = () => this.restService.request({
458
+ method: 'GET',
459
+ url: '/api/kadoogluKeops/freight/destination-ports/countries-lookup',
460
+ }, { apiName: this.apiName });
461
+ this.getList = () => this.restService.request({
462
+ method: 'GET',
463
+ url: '/api/kadoogluKeops/freight/destination-ports',
464
+ }, { apiName: this.apiName });
465
+ this.getLookupByCountry = (countryCode) => this.restService.request({
466
+ method: 'GET',
467
+ url: `/api/kadoogluKeops/freight/destination-ports/lookup/${countryCode}`,
468
+ }, { apiName: this.apiName });
469
+ this.update = (code, input) => this.restService.request({
470
+ method: 'PUT',
471
+ url: `/api/kadoogluKeops/freight/destination-ports/${code}`,
472
+ body: input,
473
+ }, { apiName: this.apiName });
474
+ }
475
+ }
476
+ DestinationPortService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: DestinationPortService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
477
+ DestinationPortService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: DestinationPortService, providedIn: 'root' });
478
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: DestinationPortService, decorators: [{
479
+ type: Injectable,
480
+ args: [{
481
+ providedIn: 'root',
482
+ }]
483
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
484
+
355
485
  class ExchangeRateService {
356
486
  constructor(restService) {
357
487
  this.restService = restService;
@@ -376,15 +506,289 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
376
506
  }]
377
507
  }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
378
508
 
379
- class ItemService {
509
+ class FobInlandDefinitionService {
510
+ constructor(restService) {
511
+ this.restService = restService;
512
+ this.apiName = 'KadoogluKeops';
513
+ this.create = (input) => this.restService.request({
514
+ method: 'POST',
515
+ url: '/api/kadoogluKeops/freight/fob-inland',
516
+ body: input,
517
+ }, { apiName: this.apiName });
518
+ this.delete = (code) => this.restService.request({
519
+ method: 'DELETE',
520
+ url: `/api/kadoogluKeops/freight/fob-inland/${code}`,
521
+ }, { apiName: this.apiName });
522
+ this.getList = () => this.restService.request({
523
+ method: 'GET',
524
+ url: '/api/kadoogluKeops/freight/fob-inland',
525
+ }, { apiName: this.apiName });
526
+ this.update = (code, input) => this.restService.request({
527
+ method: 'PUT',
528
+ url: `/api/kadoogluKeops/freight/fob-inland/${code}`,
529
+ body: input,
530
+ }, { apiName: this.apiName });
531
+ }
532
+ }
533
+ FobInlandDefinitionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FobInlandDefinitionService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
534
+ FobInlandDefinitionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FobInlandDefinitionService, providedIn: 'root' });
535
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FobInlandDefinitionService, decorators: [{
536
+ type: Injectable,
537
+ args: [{
538
+ providedIn: 'root',
539
+ }]
540
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
541
+
542
+ class FreightOfferService {
380
543
  constructor(restService) {
381
544
  this.restService = restService;
382
545
  this.apiName = 'KadoogluKeops';
546
+ this.copy = (code, input) => this.restService.request({
547
+ method: 'POST',
548
+ url: `/api/kadoogluKeops/freight-offers/${code}/copy`,
549
+ body: input,
550
+ }, { apiName: this.apiName });
551
+ this.create = (input) => this.restService.request({
552
+ method: 'POST',
553
+ url: '/api/kadoogluKeops/freight-offers',
554
+ body: input,
555
+ }, { apiName: this.apiName });
556
+ this.delete = (code) => this.restService.request({
557
+ method: 'DELETE',
558
+ url: `/api/kadoogluKeops/freight-offers/${code}`,
559
+ }, { apiName: this.apiName });
560
+ this.get = (code) => this.restService.request({
561
+ method: 'GET',
562
+ url: `/api/kadoogluKeops/freight-offers/${code}`,
563
+ }, { apiName: this.apiName });
564
+ this.getContainerDefinitionsLookup = () => this.restService.request({
565
+ method: 'GET',
566
+ url: '/api/kadoogluKeops/freight-offers/container-definitions-lookup',
567
+ }, { apiName: this.apiName });
568
+ this.getCountriesLookup = () => this.restService.request({
569
+ method: 'GET',
570
+ url: '/api/kadoogluKeops/freight-offers/countries-lookup',
571
+ }, { apiName: this.apiName });
572
+ this.getList = () => this.restService.request({
573
+ method: 'GET',
574
+ url: '/api/kadoogluKeops/freight-offers',
575
+ }, { apiName: this.apiName });
576
+ this.getUsdRate = () => this.restService.request({
577
+ method: 'GET',
578
+ url: '/api/kadoogluKeops/freight-offers/usd-rate',
579
+ }, { apiName: this.apiName });
580
+ this.update = (code, input) => this.restService.request({
581
+ method: 'PUT',
582
+ url: `/api/kadoogluKeops/freight-offers/${code}`,
583
+ body: input,
584
+ }, { apiName: this.apiName });
585
+ }
586
+ }
587
+ FreightOfferService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FreightOfferService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
588
+ FreightOfferService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FreightOfferService, providedIn: 'root' });
589
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FreightOfferService, decorators: [{
590
+ type: Injectable,
591
+ args: [{
592
+ providedIn: 'root',
593
+ }]
594
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
595
+
596
+ class IncotermService {
597
+ constructor(restService) {
598
+ this.restService = restService;
599
+ this.apiName = 'KadoogluKeops';
600
+ this.create = (input) => this.restService.request({
601
+ method: 'POST',
602
+ url: '/api/kadoogluKeops/freight/incoterms',
603
+ body: input,
604
+ }, { apiName: this.apiName });
605
+ this.delete = (code) => this.restService.request({
606
+ method: 'DELETE',
607
+ url: `/api/kadoogluKeops/freight/incoterms/${code}`,
608
+ }, { apiName: this.apiName });
609
+ this.getList = () => this.restService.request({
610
+ method: 'GET',
611
+ url: '/api/kadoogluKeops/freight/incoterms',
612
+ }, { apiName: this.apiName });
613
+ this.update = (code, input) => this.restService.request({
614
+ method: 'PUT',
615
+ url: `/api/kadoogluKeops/freight/incoterms/${code}`,
616
+ body: input,
617
+ }, { apiName: this.apiName });
618
+ }
619
+ }
620
+ IncotermService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IncotermService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
621
+ IncotermService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IncotermService, providedIn: 'root' });
622
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IncotermService, decorators: [{
623
+ type: Injectable,
624
+ args: [{
625
+ providedIn: 'root',
626
+ }]
627
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
628
+
629
+ class ItemClassificationService {
630
+ constructor(restService) {
631
+ this.restService = restService;
632
+ this.apiName = 'KadoogluKeops';
633
+ this.getCostCategories = () => this.restService.request({
634
+ method: 'GET',
635
+ url: '/api/kadoogluKeops/item-classifications/cost-categories',
636
+ }, { apiName: this.apiName });
383
637
  this.getList = (codePrefix) => this.restService.request({
384
638
  method: 'GET',
385
- url: '/api/kadoogluKeops/items',
639
+ url: '/api/kadoogluKeops/item-classifications',
386
640
  params: { codePrefix },
387
641
  }, { apiName: this.apiName });
642
+ this.getPackagingMaterials = () => this.restService.request({
643
+ method: 'GET',
644
+ url: '/api/kadoogluKeops/item-classifications/packaging-materials',
645
+ }, { apiName: this.apiName });
646
+ this.getSaveStatus = (jobId) => this.restService.request({
647
+ method: 'GET',
648
+ url: '/api/kadoogluKeops/item-classifications/save-status',
649
+ params: { jobId },
650
+ }, { apiName: this.apiName });
651
+ this.startSave = (input) => this.restService.request({
652
+ method: 'POST',
653
+ responseType: 'text',
654
+ url: '/api/kadoogluKeops/item-classifications/save',
655
+ body: input,
656
+ }, { apiName: this.apiName });
657
+ }
658
+ }
659
+ ItemClassificationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemClassificationService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
660
+ ItemClassificationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemClassificationService, providedIn: 'root' });
661
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemClassificationService, decorators: [{
662
+ type: Injectable,
663
+ args: [{
664
+ providedIn: 'root',
665
+ }]
666
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
667
+
668
+ class ItemPackageGroupService {
669
+ constructor(restService) {
670
+ this.restService = restService;
671
+ this.apiName = 'KadoogluKeops';
672
+ this.create = (input) => this.restService.request({
673
+ method: 'POST',
674
+ url: '/api/kadoogluKeops/item-package-groups',
675
+ body: input,
676
+ }, { apiName: this.apiName });
677
+ this.delete = (code) => this.restService.request({
678
+ method: 'DELETE',
679
+ url: `/api/kadoogluKeops/item-package-groups/${code}`,
680
+ }, { apiName: this.apiName });
681
+ this.get = (code) => this.restService.request({
682
+ method: 'GET',
683
+ url: `/api/kadoogluKeops/item-package-groups/${code}`,
684
+ }, { apiName: this.apiName });
685
+ this.getList = () => this.restService.request({
686
+ method: 'GET',
687
+ url: '/api/kadoogluKeops/item-package-groups',
688
+ }, { apiName: this.apiName });
689
+ this.update = (code, input) => this.restService.request({
690
+ method: 'PUT',
691
+ url: `/api/kadoogluKeops/item-package-groups/${code}`,
692
+ body: input,
693
+ }, { apiName: this.apiName });
694
+ }
695
+ }
696
+ ItemPackageGroupService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageGroupService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
697
+ ItemPackageGroupService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageGroupService, providedIn: 'root' });
698
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageGroupService, decorators: [{
699
+ type: Injectable,
700
+ args: [{
701
+ providedIn: 'root',
702
+ }]
703
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
704
+
705
+ class ItemPackageTypeService {
706
+ constructor(restService) {
707
+ this.restService = restService;
708
+ this.apiName = 'KadoogluKeops';
709
+ this.create = (input) => this.restService.request({
710
+ method: 'POST',
711
+ url: '/api/kadoogluKeops/item-package-types',
712
+ body: input,
713
+ }, { apiName: this.apiName });
714
+ this.delete = (code) => this.restService.request({
715
+ method: 'DELETE',
716
+ url: `/api/kadoogluKeops/item-package-types/${code}`,
717
+ }, { apiName: this.apiName });
718
+ this.get = (code) => this.restService.request({
719
+ method: 'GET',
720
+ url: `/api/kadoogluKeops/item-package-types/${code}`,
721
+ }, { apiName: this.apiName });
722
+ this.getList = () => this.restService.request({
723
+ method: 'GET',
724
+ url: '/api/kadoogluKeops/item-package-types',
725
+ }, { apiName: this.apiName });
726
+ this.update = (code, input) => this.restService.request({
727
+ method: 'PUT',
728
+ url: `/api/kadoogluKeops/item-package-types/${code}`,
729
+ body: input,
730
+ }, { apiName: this.apiName });
731
+ }
732
+ }
733
+ ItemPackageTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageTypeService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
734
+ ItemPackageTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageTypeService, providedIn: 'root' });
735
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageTypeService, decorators: [{
736
+ type: Injectable,
737
+ args: [{
738
+ providedIn: 'root',
739
+ }]
740
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
741
+
742
+ class ItemProductTypeService {
743
+ constructor(restService) {
744
+ this.restService = restService;
745
+ this.apiName = 'KadoogluKeops';
746
+ this.create = (input) => this.restService.request({
747
+ method: 'POST',
748
+ url: '/api/kadoogluKeops/item-product-types',
749
+ body: input,
750
+ }, { apiName: this.apiName });
751
+ this.delete = (code) => this.restService.request({
752
+ method: 'DELETE',
753
+ url: `/api/kadoogluKeops/item-product-types/${code}`,
754
+ }, { apiName: this.apiName });
755
+ this.get = (code) => this.restService.request({
756
+ method: 'GET',
757
+ url: `/api/kadoogluKeops/item-product-types/${code}`,
758
+ }, { apiName: this.apiName });
759
+ this.getList = () => this.restService.request({
760
+ method: 'GET',
761
+ url: '/api/kadoogluKeops/item-product-types',
762
+ }, { apiName: this.apiName });
763
+ this.update = (code, input) => this.restService.request({
764
+ method: 'PUT',
765
+ url: `/api/kadoogluKeops/item-product-types/${code}`,
766
+ body: input,
767
+ }, { apiName: this.apiName });
768
+ }
769
+ }
770
+ ItemProductTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemProductTypeService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
771
+ ItemProductTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemProductTypeService, providedIn: 'root' });
772
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemProductTypeService, decorators: [{
773
+ type: Injectable,
774
+ args: [{
775
+ providedIn: 'root',
776
+ }]
777
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
778
+
779
+ class ItemService {
780
+ constructor(restService) {
781
+ this.restService = restService;
782
+ this.apiName = 'KadoogluKeops';
783
+ this.getList = (codePrefix, businessRegion, cpGroupCode) => this.restService.request({
784
+ method: 'GET',
785
+ url: '/api/kadoogluKeops/items',
786
+ params: { codePrefix, businessRegion, cpGroupCode },
787
+ }, { apiName: this.apiName });
788
+ this.getPackagingCost = (itemCode) => this.restService.request({
789
+ method: 'GET',
790
+ url: `/api/kadoogluKeops/items/${itemCode}/packaging-cost`,
791
+ }, { apiName: this.apiName });
388
792
  }
389
793
  }
390
794
  ItemService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
@@ -396,6 +800,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
396
800
  }]
397
801
  }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
398
802
 
803
+ class LineService {
804
+ constructor(restService) {
805
+ this.restService = restService;
806
+ this.apiName = 'KadoogluKeops';
807
+ this.create = (input) => this.restService.request({
808
+ method: 'POST',
809
+ url: '/api/kadoogluKeops/freight/lines',
810
+ body: input,
811
+ }, { apiName: this.apiName });
812
+ this.delete = (code) => this.restService.request({
813
+ method: 'DELETE',
814
+ url: `/api/kadoogluKeops/freight/lines/${code}`,
815
+ }, { apiName: this.apiName });
816
+ this.getList = () => this.restService.request({
817
+ method: 'GET',
818
+ url: '/api/kadoogluKeops/freight/lines',
819
+ }, { apiName: this.apiName });
820
+ this.update = (code, input) => this.restService.request({
821
+ method: 'PUT',
822
+ url: `/api/kadoogluKeops/freight/lines/${code}`,
823
+ body: input,
824
+ }, { apiName: this.apiName });
825
+ }
826
+ }
827
+ LineService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LineService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
828
+ LineService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LineService, providedIn: 'root' });
829
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LineService, decorators: [{
830
+ type: Injectable,
831
+ args: [{
832
+ providedIn: 'root',
833
+ }]
834
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
835
+
399
836
  class PackagingMaterialService {
400
837
  constructor(restService) {
401
838
  this.restService = restService;
@@ -559,6 +996,64 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
559
996
  }]
560
997
  }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
561
998
 
999
+ class PosService {
1000
+ constructor(restService) {
1001
+ this.restService = restService;
1002
+ this.apiName = 'KadoogluKeops';
1003
+ this.create = (input) => this.restService.request({
1004
+ method: 'POST',
1005
+ url: '/api/kadoogluKeops/freight/pos',
1006
+ body: input,
1007
+ }, { apiName: this.apiName });
1008
+ this.delete = (code) => this.restService.request({
1009
+ method: 'DELETE',
1010
+ url: `/api/kadoogluKeops/freight/pos/${code}`,
1011
+ }, { apiName: this.apiName });
1012
+ this.getList = () => this.restService.request({
1013
+ method: 'GET',
1014
+ url: '/api/kadoogluKeops/freight/pos',
1015
+ }, { apiName: this.apiName });
1016
+ this.update = (code, input) => this.restService.request({
1017
+ method: 'PUT',
1018
+ url: `/api/kadoogluKeops/freight/pos/${code}`,
1019
+ body: input,
1020
+ }, { apiName: this.apiName });
1021
+ }
1022
+ }
1023
+ PosService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PosService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
1024
+ PosService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PosService, providedIn: 'root' });
1025
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PosService, decorators: [{
1026
+ type: Injectable,
1027
+ args: [{
1028
+ providedIn: 'root',
1029
+ }]
1030
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
1031
+
1032
+ class PriceListService {
1033
+ constructor(restService) {
1034
+ this.restService = restService;
1035
+ this.apiName = 'KadoogluKeops';
1036
+ this.getItems = (businessRegion, cpGroupCode) => this.restService.request({
1037
+ method: 'GET',
1038
+ url: '/api/kadoogluKeops/price-lists/items',
1039
+ params: { businessRegion, cpGroupCode },
1040
+ }, { apiName: this.apiName });
1041
+ this.getList = (businessRegion, ppTypeCode) => this.restService.request({
1042
+ method: 'GET',
1043
+ url: '/api/kadoogluKeops/price-lists',
1044
+ params: { businessRegion, ppTypeCode },
1045
+ }, { apiName: this.apiName });
1046
+ }
1047
+ }
1048
+ PriceListService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceListService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
1049
+ PriceListService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceListService, providedIn: 'root' });
1050
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceListService, decorators: [{
1051
+ type: Injectable,
1052
+ args: [{
1053
+ providedIn: 'root',
1054
+ }]
1055
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
1056
+
562
1057
  class PriceParameterTypeService {
563
1058
  constructor(restService) {
564
1059
  this.restService = restService;
@@ -596,6 +1091,48 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
596
1091
  }]
597
1092
  }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
598
1093
 
1094
+ class PriceParameterService {
1095
+ constructor(restService) {
1096
+ this.restService = restService;
1097
+ this.apiName = 'KadoogluKeops';
1098
+ this.create = (input) => this.restService.request({
1099
+ method: 'POST',
1100
+ url: '/api/kadoogluKeops/price-parameters',
1101
+ body: input,
1102
+ }, { apiName: this.apiName });
1103
+ this.delete = (docEntry) => this.restService.request({
1104
+ method: 'DELETE',
1105
+ url: `/api/kadoogluKeops/price-parameters/${docEntry}`,
1106
+ }, { apiName: this.apiName });
1107
+ this.get = (docEntry) => this.restService.request({
1108
+ method: 'GET',
1109
+ url: `/api/kadoogluKeops/price-parameters/${docEntry}`,
1110
+ }, { apiName: this.apiName });
1111
+ this.getList = () => this.restService.request({
1112
+ method: 'GET',
1113
+ url: '/api/kadoogluKeops/price-parameters',
1114
+ }, { apiName: this.apiName });
1115
+ this.previewPriceUpdate = (input) => this.restService.request({
1116
+ method: 'POST',
1117
+ url: '/api/kadoogluKeops/price-parameters/preview-price-update',
1118
+ body: input,
1119
+ }, { apiName: this.apiName });
1120
+ this.update = (docEntry, input) => this.restService.request({
1121
+ method: 'PUT',
1122
+ url: `/api/kadoogluKeops/price-parameters/${docEntry}`,
1123
+ body: input,
1124
+ }, { apiName: this.apiName });
1125
+ }
1126
+ }
1127
+ PriceParameterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
1128
+ PriceParameterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterService, providedIn: 'root' });
1129
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterService, decorators: [{
1130
+ type: Injectable,
1131
+ args: [{
1132
+ providedIn: 'root',
1133
+ }]
1134
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
1135
+
599
1136
  class SapSalesPersonService {
600
1137
  constructor(restService) {
601
1138
  this.restService = restService;
@@ -656,16 +1193,6 @@ var CostItemSystemCode;
656
1193
  })(CostItemSystemCode || (CostItemSystemCode = {}));
657
1194
  const costItemSystemCodeOptions = mapEnumToOptions(CostItemSystemCode);
658
1195
 
659
- var CostParameterCategoryParentCode;
660
- (function (CostParameterCategoryParentCode) {
661
- CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code1"] = 1] = "Code1";
662
- CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code2"] = 2] = "Code2";
663
- CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code3"] = 3] = "Code3";
664
- CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code4"] = 4] = "Code4";
665
- CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code5"] = 5] = "Code5";
666
- })(CostParameterCategoryParentCode || (CostParameterCategoryParentCode = {}));
667
- const costParameterCategoryParentCodeOptions = mapEnumToOptions(CostParameterCategoryParentCode);
668
-
669
1196
  var CostParameterStatus;
670
1197
  (function (CostParameterStatus) {
671
1198
  CostParameterStatus[CostParameterStatus["Active"] = 1] = "Active";
@@ -689,11 +1216,19 @@ var ExchangeRateSource;
689
1216
  })(ExchangeRateSource || (ExchangeRateSource = {}));
690
1217
  const exchangeRateSourceOptions = mapEnumToOptions(ExchangeRateSource);
691
1218
 
1219
+ var PriceParameterStatus;
1220
+ (function (PriceParameterStatus) {
1221
+ PriceParameterStatus[PriceParameterStatus["Active"] = 1] = "Active";
1222
+ PriceParameterStatus[PriceParameterStatus["Passive"] = 2] = "Passive";
1223
+ PriceParameterStatus[PriceParameterStatus["InProgress"] = 3] = "InProgress";
1224
+ })(PriceParameterStatus || (PriceParameterStatus = {}));
1225
+ const priceParameterStatusOptions = mapEnumToOptions(PriceParameterStatus);
1226
+
692
1227
  // Auto-generated by proxy-sync.js — do not edit manually.
693
1228
 
694
1229
  /**
695
1230
  * Generated bundle index. Do not edit.
696
1231
  */
697
1232
 
698
- export { ContainerDefinitionService, ContainerLoadingCountService, ContainerLoadingScenarioService, ContainerMixTypeService, ContainerPalletCapacityService, CostGroupRole, CostGroupService, CostItemCalculationType, CostItemService, CostItemSystemCode, CostParameterCategoryParentCode, CostParameterCategoryService, CostParameterService, CostParameterStatus, CostSettingsService, Currency, ExchangeRateService, ExchangeRateSource, ItemService, LoadingTargetKind, PackagingMaterialService, PackagingPriceService, PackagingTypeService, PalletDefinitionService, PalletStatus, PriceParameterTypeService, SapSalesPersonService, costGroupRoleOptions, costItemCalculationTypeOptions, costItemSystemCodeOptions, costParameterCategoryParentCodeOptions, costParameterStatusOptions, currencyOptions, exchangeRateSourceOptions, loadingTargetKindOptions, palletStatusOptions };
1233
+ export { BlTrackingService, BusinessPartnerService, BusinessRegion, CarrierService, ContainerDefinitionService, ContainerLoadingCountService, ContainerLoadingScenarioService, ContainerMixTypeService, ContainerPalletCapacityService, CostGroupRole, CostGroupService, CostItemCalculationType, CostItemService, CostItemSystemCode, CostParameterCategoryService, CostParameterService, CostParameterStatus, CostSettingsService, Currency, DestinationPortService, ExchangeRateService, ExchangeRateSource, FobInlandDefinitionService, FreightOfferService, IncotermService, ItemClassificationService, ItemPackageGroupService, ItemPackageTypeService, ItemProductTypeService, ItemService, LineService, LoadingTargetKind, PackagingMaterialService, PackagingPriceService, PackagingTypeService, PalletDefinitionService, PalletStatus, PosService, PriceListService, PriceParameterService, PriceParameterStatus, PriceParameterTypeService, SapSalesPersonService, businessRegionOptions, costGroupRoleOptions, costItemCalculationTypeOptions, costItemSystemCodeOptions, costParameterStatusOptions, currencyOptions, exchangeRateSourceOptions, loadingTargetKindOptions, palletStatusOptions, priceParameterStatusOptions };
699
1234
  //# sourceMappingURL=hitsoft-kadooglu-keops-proxy.mjs.map